/* ============================================
   RENEE DALTON — FASHION DESIGN
   Core Stylesheet
   Fonts: Cinzel (brand/headings) | Montserrat (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ============================================
   COLOR PALETTE
   ──────────────────────────────────────────
   --bg-base      #FAF8F4   Warm ivory — primary background
   --bg-surface   #F0ECE4   Warm linen — cards, alternating sections
   --bg-deep      #E8E3DB   Border fills, image placeholder backgrounds
   --ink          #1A1A1A   Near-black — primary text (softer than pure black)
   --ink-mid      #5A5249   Warm mid-gray — body copy, descriptions
   --ink-light    #9E8B7B   Taupe — captions, labels, secondary UI
   --green        #107214   Shamrock — signature brand accent
   --green-deep   #0A5410   Deep forest — hover state on green elements
   --champagne    #C4A87A   Warm gold — optional luxury highlight accent
   --black        #000000   Pure black — hero sections, dark bands, footer
   --white        #FFFFFF   Pure white — text on dark backgrounds only
   ============================================ */

:root {
  --bg-base:     #FAF8F4;
  --bg-surface:  #F0ECE4;
  --bg-deep:     #E8E3DB;
  --ink:         #1A1A1A;
  --ink-mid:     #5A5249;
  --ink-light:   #9E8B7B;
  --green:       #107214;
  --green-deep:  #0A5410;
  --champagne:   #C4A87A;
  --black:       #000000;
  --white:       #FFFFFF;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--bg-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
.cinzel { font-family: 'Cinzel', serif; }

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #107214;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section--dark {
  background: #000;
  color: #fff;
}

.section--cream {
  background: var(--bg-surface);
}

.text-center { text-align: center; }
.text-right  { text-align: right; }

.divider {
  width: 40px;
  height: 1px;
  background: #107214;
  margin: 1.5rem auto;
}

.divider--left {
  margin-left: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn:hover {
  background: var(--ink);
  color: var(--bg-base);
}

.btn--dark {
  border-color: #fff;
  color: #fff;
}

.btn--dark:hover {
  background: var(--white);
  color: var(--ink);
}

.btn--green {
  border-color: #107214;
  color: #107214;
}

.btn--green:hover {
  background: #107214;
  color: #fff;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 0;
}

.nav.scrolled {
  background: rgba(250, 248, 244, 0.97);
  box-shadow: 0 1px 0 rgba(26,26,26,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 5%;
}

.nav__logo {
  height: 42px;
  width: auto;
}

/* Two logos: light version on dark bg, dark version on light bg */
.nav__logo--light { display: block; }
.nav__logo--dark  { display: none; }

.nav.scrolled .nav__logo--light { display: none; }
.nav.scrolled .nav__logo--dark  { display: block; mix-blend-mode: multiply; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s ease;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: #107214;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

.nav__links a:hover,
.nav__links a.active {
  color: #107214;
}

.nav.scrolled .nav__links a {
  color: var(--ink);
}

.nav.scrolled .nav__links a:hover,
.nav.scrolled .nav__links a.active {
  color: var(--green);
}

.nav__cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  transition: all 0.3s ease;
}

.nav__cta:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.nav.scrolled .nav__cta {
  border-color: var(--ink);
  color: var(--ink);
}

.nav.scrolled .nav__cta:hover {
  background: var(--ink);
  color: var(--bg-base);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease;
}

.nav.scrolled .nav__hamburger span {
  background: var(--ink);
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-base);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--ink);
  transition: color 0.3s ease;
}

.nav__mobile a:hover {
  color: var(--green);
}

.nav__mobile-close {
  position: absolute;
  top: 28px;
  right: 5%;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--ink);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.55;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero__bg.loaded {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.25) 60%,
    rgba(0,0,0,0.6) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 5%;
  max-width: 800px;
}

.hero__logo {
  width: 260px;
  margin: 0 auto 2.5rem;
}

.hero__tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.hero__sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  animation: scrollBounce 2s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   INTRODUCTION / MARQUEE
   ============================================ */
.marquee-section {
  padding: 22px 0;
  background: #000;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0 2.5rem;
}

.marquee-track span.dot {
  color: #107214;
  padding: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro {
  padding: 110px 0;
  background: var(--bg-base);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro__text .eyebrow {
  margin-bottom: 1.2rem;
}

.intro__text h2 {
  margin-bottom: 1.5rem;
}

.intro__text p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--ink-mid);
  margin-bottom: 1.2rem;
}

.intro__image {
  position: relative;
}

.intro__image-frame {
  aspect-ratio: 3/4;
  background: var(--bg-deep);
  overflow: hidden;
  position: relative;
}

.intro__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.intro__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid #107214;
  z-index: -1;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 110px 0;
  background: var(--bg-surface);
}

.services__header {
  text-align: center;
  margin-bottom: 70px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  background: var(--bg-base);
  overflow: hidden;
  cursor: pointer;
}

.service-card__image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-deep);
  position: relative;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

/* Placeholder image styling when no img src */
.service-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(0,0,0,0.12);
}

.service-card__body {
  padding: 32px 28px 36px;
}

.service-card__number {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: #107214;
  margin-bottom: 0.75rem;
}

.service-card__title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--ink-mid);
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 110px 0;
  background: #000;
  color: #fff;
}

.process__header {
  text-align: center;
  margin-bottom: 80px;
}

.process__header .divider {
  background: #107214;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.process-step {
  background: #000;
  padding: 50px 36px;
  position: relative;
}

.process-step__num {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.process-step__icon {
  width: 32px;
  height: 1px;
  background: #107214;
  margin-bottom: 1.5rem;
}

.process-step__title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.process-step__desc {
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
}

/* ============================================
   GALLERY / LOOKBOOK
   ============================================ */
.gallery {
  padding: 110px 0;
  background: var(--bg-base);
}

.gallery__header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 8px;
}

.gallery__item {
  overflow: hidden;
  background: var(--bg-deep);
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

/* Placeholder */
.gallery__item-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__item:nth-child(1) { grid-column: span 7; aspect-ratio: 7/5; }
.gallery__item:nth-child(2) { grid-column: span 5; aspect-ratio: 5/5; }
.gallery__item:nth-child(3) { grid-column: span 4; aspect-ratio: 4/5; }
.gallery__item:nth-child(4) { grid-column: span 4; aspect-ratio: 4/5; }
.gallery__item:nth-child(5) { grid-column: span 4; aspect-ratio: 4/5; }

.gallery__cta {
  text-align: center;
  margin-top: 50px;
}

/* ============================================
   ABOUT / DESIGNER STORY
   ============================================ */
.about {
  padding: 110px 0;
  background: var(--bg-surface);
}

.about__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 90px;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image-frame {
  aspect-ratio: 4/5;
  background: var(--bg-deep);
  overflow: hidden;
}

.about__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image-caption {
  margin-top: 16px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-align: right;
}

.about__text .eyebrow {
  margin-bottom: 1.2rem;
}

.about__text h2 {
  margin-bottom: 1.5rem;
}

.about__text p {
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--ink-mid);
  margin-bottom: 1.3rem;
}

.about__signature {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #107214;
  margin-top: 2rem;
  margin-bottom: 0.25rem;
}

.about__signature-title {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 110px 0;
  background: #000;
  color: #fff;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 70px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.testimonial-card__quote {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  line-height: 1;
  color: #107214;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}

.testimonial-card__text {
  font-size: 0.87rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  margin-bottom: 2rem;
  font-weight: 300;
}

.testimonial-card__author {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}

.testimonial-card__location {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 110px 0;
  background: var(--bg-base);
}

.contact__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 90px;
}

.contact__info .eyebrow {
  margin-bottom: 1.2rem;
}

.contact__info h2 {
  margin-bottom: 1.5rem;
}

.contact__info p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--ink-mid);
  margin-bottom: 2.5rem;
}

.contact__detail {
  margin-bottom: 1.5rem;
}

.contact__detail-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #107214;
  margin-bottom: 0.3rem;
}

.contact__detail-value {
  font-size: 0.88rem;
  color: var(--ink);
}

.contact__social {
  display: flex;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.contact__social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--ink);
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact__social-link:hover {
  background: #107214;
  border-color: #107214;
  color: #fff;
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  padding: 14px 16px;
  border: 1px solid var(--bg-deep);
  border-radius: 0;
  background: var(--bg-base);
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #107214;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit {
  align-self: flex-start;
}

.form-note {
  font-size: 0.72rem;
  color: #999;
  letter-spacing: 0.05em;
  margin-top: -10px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #000;
  color: rgba(255,255,255,0.6);
  padding: 70px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand .footer__logo {
  height: 36px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
}

.footer__brand p {
  font-size: 0.8rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
}

.footer__brand .shamrock {
  color: #107214;
  font-size: 1.2rem;
  margin-top: 1.5rem;
  display: block;
}

.footer__col-title {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: #107214;
}

.footer__bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

.footer__legal a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: rgba(255,255,255,0.6);
}

/* ============================================
   PAGE HERO (Inner pages)
   ============================================ */
.page-hero {
  padding-top: 80px;
  background: #000;
  color: #fff;
  text-align: center;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/page-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
}

.page-hero .eyebrow {
  margin-bottom: 1rem;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.breadcrumb a {
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #107214;
}

.breadcrumb__sep {
  color: #107214;
}

/* ============================================
   IMAGE PLACEHOLDERS (for development)
   ============================================ */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 300px;
}

.img-placeholder__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.15s; }
.fade-up-delay-2 { transition-delay: 0.3s; }
.fade-up-delay-3 { transition-delay: 0.45s; }
.fade-up-delay-4 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .intro__grid,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .gallery__item:nth-child(1) { grid-column: span 12; }
  .gallery__item:nth-child(2) { grid-column: span 12; }
  .gallery__item:nth-child(3) { grid-column: span 12; }
  .gallery__item:nth-child(4) { grid-column: span 6; }
  .gallery__item:nth-child(5) { grid-column: span 6; }

  .process__steps {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .intro__image-accent {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__logo {
    width: 200px;
  }

  .container {
    width: 92%;
  }
}
