/* =========================================================
   Ashley LaBorde Vuci, Baton Rouge Realtor
   Shared stylesheet for all pages.

   Table of contents:
     1. Tokens (CSS custom properties)
     2. Reset & base
     3. Typography helpers (eyebrow, headings)
     4. Buttons
     5. Layout primitives (container, section)
     6. Site header + mobile nav
     7. Site footer
     8. Homepage sections
     9. About page sections
    10. Contact page
    11. Placeholder pages
    12. Responsive (<768px)
   ========================================================= */


/* 1. Tokens ------------------------------------------------ */
:root {
  /* Color */
  --bg-cream:       #FAF6F1;
  --bg-tan:         #EDE4D8;
  --text-primary:   #2C2C2A;
  --text-secondary: #5F5E5A;
  --text-muted:     #888780;
  --accent-pink:    #D4537E;
  --accent-dark:    #72243E;
  --white:          #FFFFFF;
  --border-soft:    rgba(0, 0, 0, 0.08);

  /* Radius */
  --radius:      8px;
  --radius-pill: 999px;

  /* Spacing */
  --section-pad-y: 64px;
  --section-pad-x: 32px;
  --container-max: 1200px;

  /* Type */
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}


/* 2. Reset & base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg-cream);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}
a:hover { color: var(--accent-pink); }

p { margin: 0 0 1rem; color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 0.6em;
  line-height: 1.15;
}


/* 3. Typography helpers ------------------------------------ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}
.eyebrow--pink { color: var(--accent-pink); }
.eyebrow--cream { color: var(--bg-cream); }

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}

.section-heading {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.subheading {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 0.75rem;
}

.italic { font-style: italic; }
.pink   { color: var(--accent-pink); }

.lede {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 52ch;
}


/* 4. Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 0.5px solid transparent;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease,
              border-color 200ms ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-cream);
}
.btn-primary:hover {
  background: #1a1a18;
  color: var(--bg-cream);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
}
.btn-secondary:hover {
  background: var(--text-primary);
  color: var(--bg-cream);
  border-color: var(--text-primary);
}

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

.hero__phone-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
}
.hero__phone-note a {
  color: var(--text-secondary);
  font-weight: 500;
}
.hero__phone-note a:hover {
  color: var(--accent-pink);
}


/* 5. Layout primitives ------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.section {
  padding: var(--section-pad-y) var(--section-pad-x);
}
.section--tan      { background: var(--bg-tan); }
.section--cream    { background: var(--bg-cream); }
.section--dark     { background: var(--text-primary); color: var(--bg-cream); }
.section--dark p   { color: rgba(250, 246, 241, 0.75); }
.section--dark h1,
.section--dark h2,
.section--dark h3  { color: var(--bg-cream); }


/* 6. Site header ------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg-cream);
  border-bottom: 0.5px solid var(--border-soft);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
}
.site-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 14px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-logo {
  display: block;
  height: 48px;
  width: auto;
  transition: opacity 160ms ease;
}
.site-logo:hover { opacity: 0.85; }

.nav {
  justify-self: center;
}
.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
.nav__link {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}
.nav__link:hover,
.nav__link.is-active {
  color: var(--text-primary);
}
.nav__link.is-active::after,
.nav__link:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--accent-pink);
}

.site-header__cta { justify-self: end; }

/* Hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after  { top:  6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  transform: translateY(-6px) rotate(-45deg);
}


/* 7. Site footer ------------------------------------------- */
.site-footer {
  border-top: 0.5px solid var(--border-soft);
  background: var(--bg-cream);
}
.site-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.site-footer__social {
  display: flex;
  gap: 20px;
}
.site-footer__social a:hover { color: var(--accent-pink); }


/* 8. Homepage sections ------------------------------------- */

/* Hero */
.hero {
  padding: 72px var(--section-pad-x) 96px;
}
.hero__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__photo {
  position: relative;
  display: flex;
}
.hero__photo .photo-placeholder {
  width: 100%;
  aspect-ratio: auto;
  min-height: 560px;
}
.photo-placeholder {
  background: var(--bg-tan);
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  overflow: hidden;
}
/* When the .photo-placeholder is an <img>, the class needs to act as
   a sized frame instead of a centered text box. */
img.photo-placeholder {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.photo-placeholder--square { aspect-ratio: 1 / 1; }

/* Hero image: fills the stretched column, head kept near top */
.hero__img {
  height: 100%;
  object-position: center top;
}

/* About page portrait: the source has a magazine pull quote baked into
   the bottom-left. We can't hide it with object-fit alone because the
   source aspect is ~3/4; no portrait frame would crop enough from the
   bottom. Instead, the wrapper .about-story__photo acts as a clipping
   frame and the <img> is sized up and pinned to the top, pushing the
   quote below the crop line and focusing on Ashley's face-to-waist. */
.about-story__photo {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-tan);
}
.about-portrait {
  position: absolute;
  top: 0;
  left: 50%;
  width: 170%;
  height: auto;
  transform: translateX(-50%);
  display: block;
}

.stat-card {
  position: absolute;
  top: 24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.18);
  min-width: 160px;
}
.stat-card__eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-pink);
  font-weight: 500;
  margin-bottom: 4px;
}
.stat-card__value {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.stat-card__label {
  font-size: 12px;
  color: var(--text-muted);
}

/* Stats bar (dark) */
.stats-bar {
  padding: 56px var(--section-pad-x);
}
.stats-bar__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-item__value {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  color: var(--bg-cream);
  margin-bottom: 10px;
}
.stat-item__label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 246, 241, 0.6);
}

/* Story section (two-column) */
.story__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

/* Testimonial */
.testimonial {
  text-align: center;
}
.testimonial__inner {
  max-width: 560px;
  margin: 0 auto;
}
.testimonial__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0 0 1.5rem;
}
.testimonial__quote::before { content: "\201C"; margin-right: 0.05em; }
.testimonial__quote::after  { content: "\201D"; margin-left: 0.05em; }
.testimonial__attr {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Testimonials page — the managed list of client reviews (CMS-rendered). */
.testimonials-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-card {
  margin: 0;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 28px 26px;
}
.testimonial-card .testimonial__quote {
  font-size: clamp(18px, 1.8vw, 22px);
  margin: 0 0 1rem;
}
.testimonial-card .testimonial__attr {
  display: block;
}


/* 9. About page sections ----------------------------------- */

.page-header {
  text-align: center;
  padding: 96px var(--section-pad-x) 56px;
}
.page-header__headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin: 0;
}

.about-story__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

/* Subtle text link used as a bio footnote on the about page:
   small, pink, sits above the callout. */
.bio-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-pink);
  transition: color 160ms ease;
}
.bio-link:hover { color: var(--accent-dark); }

.callout {
  margin-top: 2rem;
  background: var(--white);
  border-left: 3px solid var(--accent-pink);
  padding: 22px 26px;
  border-radius: 0 var(--radius) var(--radius) 0;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: center;
}
.callout p { margin: 0; }
.callout__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Production cards (dark section) */
.numbers {
  text-align: center;
}
.numbers__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 2rem auto 1.5rem;
}
.year-card {
  border: 0.5px solid rgba(250, 246, 241, 0.25);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
}
.year-card__year {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 246, 241, 0.6);
  margin-bottom: 10px;
}
.year-card__value {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--bg-cream);
  line-height: 1;
}
.year-card--highlight {
  background: var(--accent-pink);
  border-color: var(--accent-pink);
}
.year-card--highlight .year-card__year { color: rgba(255, 255, 255, 0.8); }
.year-card--highlight .year-card__value { color: var(--white); }

.numbers__note {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(250, 246, 241, 0.75);
  margin-top: 1.5rem;
}

/* Community cards */
.community__header { text-align: center; margin-bottom: 3rem; }
.community__cards {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.community-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.community-card h3 { font-size: 22px; margin: 0 0 0.75rem; }
.community-card p  { font-size: 15px; }

/* CTA band */
.cta-band {
  text-align: center;
}
.cta-band .btn-row { justify-content: center; }
.cta-band p { max-width: 46ch; margin: 0 auto 0.5rem; }


/* 10. Contact page ---------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: calc(100vh - 150px);
}
.contact-left,
.contact-right {
  padding: 80px clamp(24px, 5vw, 64px);
}
.contact-left  { background: var(--bg-cream); }
.contact-right { background: var(--bg-tan); display: flex; align-items: center; }

.contact-blocks {
  margin-top: 2.5rem;
  display: grid;
  gap: 20px;
}
.contact-block {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
}
.contact-block__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-tan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  color: var(--accent-pink);
  font-style: italic;
}
.contact-block__label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-block__value {
  color: var(--text-primary);
  font-size: 15px;
}

.social-pills {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.social-pills a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 0.5px solid var(--border-soft);
  background: var(--white);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.social-pills a:hover {
  border-color: var(--accent-pink);
  color: var(--accent-pink);
}

/* Form card */
.form-card {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.15);
}
.form-card__heading { font-size: 28px; margin-bottom: 0.25rem; }
.form-card__sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { display: block; margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-cream);
  border: 0.5px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color 160ms ease, background-color 160ms ease;
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-sans);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-pink);
  background: var(--white);
}

.interest-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.interest-pill {
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 0.5px solid var(--border-soft);
  background: var(--white);
  color: var(--text-secondary);
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}
.interest-pill:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}
.interest-pill[aria-pressed="true"] {
  background: var(--text-primary);
  color: var(--bg-cream);
  border-color: var(--text-primary);
}

.form-submit { width: 100%; margin-top: 8px; }

.form-success {
  display: none;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--bg-cream);
  border-left: 3px solid var(--accent-pink);
  color: var(--text-primary);
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
}
.form-success.is-visible { display: block; }

.form-error {
  padding: 16px 18px;
  border-radius: var(--radius);
  background: #F6E6E6;
  border-left: 3px solid var(--accent-dark);
  color: var(--accent-dark);
  margin-top: 1rem;
  font-size: 14px;
  line-height: 1.55;
}


/* 11. Placeholder pages ------------------------------------ */
.coming-soon {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 40px var(--section-pad-x) 120px;
}
.coming-soon__badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-pink);
  border: 0.5px solid var(--accent-pink);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}
.coming-soon h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 1rem;
}


/* 11b. Content pages (listings / buyers-sellers / community) */

/* Narrow centered intro block, used on all three content pages
   between the page header and the first real content section. */
.page-intro {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 20px var(--section-pad-x) var(--section-pad-y);
}
.page-intro p { color: var(--text-secondary); }
.page-intro .btn-row { justify-content: center; margin-top: 1.75rem; }

/* Three-column variant of the stats bar (listings page). Collapses
   to a single column on mobile so values like "$90K–$1.2M" don't
   crowd. */
.stats-bar__grid--three { grid-template-columns: repeat(3, 1fr); }

/* Two-column "For Buyers / For Sellers" split (buyers-sellers page) */
.split-services {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.split-services__col h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  margin: 0 0 1.25rem;
  color: var(--text-primary);
}

/* Bulleted list with a small pink dot, tighter and more editorial
   than a default disc bullet. */
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.check-list li:last-child { margin-bottom: 0; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-pink);
}

/* Service areas grid (community page). `grid-auto-flow: column` +
   three fixed rows means items fill the left column top-to-bottom
   before moving to the right column, matching the spec's ordering
   (BR / Ascension / Denham on the left; Zachary / Prairieville /
   West BR on the right). */
.areas__header { text-align: center; margin-bottom: 3rem; }
.areas-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 28px 64px;
}
.area-item {
  position: relative;
  padding-left: 28px;
}
.area-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 1px;
  background: var(--accent-pink);
}
.area-item h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 0.35rem;
  color: var(--text-primary);
}
.area-item p {
  font-size: 15px;
  margin: 0;
}


/* 12. Responsive (<768px) --------------------------------- */
@media (max-width: 767px) {
  :root {
    --section-pad-y: 48px;
    --section-pad-x: 20px;
  }

  /* Header collapses: hide center nav, show hamburger */
  .site-header__inner {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    padding: 12px 20px;
  }
  .site-logo { height: 40px; }
  .nav-toggle { display: inline-flex; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-cream);
    border-bottom: 0.5px solid var(--border-soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height 240ms ease;
  }
  .nav[aria-hidden="false"] { max-height: 400px; }
  .nav__list {
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 4px;
  }
  .nav__link {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 0.5px solid var(--border-soft);
  }
  .nav__list li:last-child .nav__link { border-bottom: none; }
  .site-header__cta .btn { padding: 10px 16px; font-size: 13px; }

  /* Hero */
  .hero { padding: 40px var(--section-pad-x) 64px; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; align-items: stretch; }
  .hero__photo .photo-placeholder {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }
  .stat-card { right: 12px; top: 16px; min-width: 140px; padding: 14px 18px; }
  .stat-card__value { font-size: 26px; }

  /* Stats bar: 2x2 */
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  /* Three-stat listings variant stacks to one column on mobile */
  .stats-bar__grid--three { grid-template-columns: 1fr; gap: 24px; }

  /* Content-page patterns collapse to single column */
  .split-services { grid-template-columns: 1fr; gap: 40px; }
  .areas-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-flow: row;
    gap: 24px;
  }

  /* Story */
  .story__grid { grid-template-columns: 1fr; gap: 32px; }

  /* About */
  .about-story__grid { grid-template-columns: 1fr; gap: 32px; }
  .callout { grid-template-columns: 1fr; gap: 18px; }
  .callout__img { max-width: 320px; }

  /* Production cards */
  .numbers__cards { grid-template-columns: repeat(2, 1fr); }

  /* Community cards */
  .community__cards { grid-template-columns: 1fr; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 56px 24px; }
  .form-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .site-footer__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
