/* =========================================================================
   Siddhi Decorators — Design System
   Warm artisanal atelier aesthetic. Terracotta + cream + grain texture.
   ========================================================================= */

:root {
  --bg: #F2EBDD;
  --bg-soft: #E8DFCB;
  --bg-warm: #DCC9A8;
  --bg-dark: #1C1410;
  --bg-darker: #100A07;

  --ink: #2A2218;
  --ink-soft: #6B5D4F;
  --ink-mute: #968570;

  --terracotta: #B8552A;
  --terracotta-deep: #8C3E1F;
  --terracotta-light: #D88B5C;

  --gold: #C9A961;
  --gold-deep: #A88845;

  --clay: #C97456;
  --olive: #5A6244;

  --line: #C9BBA6;
  --line-warm: #B8A789;

  --serif: 'Fraunces', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* -----------------------------  Reset  ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 400; line-height: 1.05; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }

::selection { background: var(--terracotta); color: var(--bg); }

/* Skip link for screen readers */
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--ink); color: var(--bg);
  padding: 12px 20px; z-index: 9999;
  text-decoration: none;
  font-size: 14px;
}
.skip-link:focus { top: 0; }

/* Visible focus states */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

/* -----------------------------  Grain overlay  -------------------------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.45;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.16  0 0 0 0 0.13  0 0 0 0 0.09  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  background-size: 280px 280px;
}

/* -----------------------------  Container  ------------------------------ */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* =========================================================================
   ANNOUNCEMENT BAR — scrolling marquee at the very top
   ========================================================================= */
.announce {
  background: var(--ink);
  color: var(--bg);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 50;
}
.announce-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 38s linear infinite;
  padding-left: 100%;
}
.announce span { padding: 0 28px; }
.announce .star { color: var(--terracotta-light); }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* =========================================================================
   STICKY NAV — glass morphism, circular logo mark, pulsing CTA
   ========================================================================= */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(242, 235, 221, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(184, 85, 42, 0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--bg);
  display: grid; place-items: center;
  font-style: italic; font-weight: 500;
  font-size: 22px;
  flex-shrink: 0;
}
.brand-name { font-weight: 400; }
.brand-name em { font-style: italic; color: var(--terracotta); }

.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--terracotta);
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink);
  color: var(--bg);
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav-cta:hover { background: var(--terracotta); transform: translateY(-1px); }
.nav-cta::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6CCB6C;
  box-shadow: 0 0 0 0 rgba(108, 203, 108, 0.7);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(108, 203, 108, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(108, 203, 108, 0); }
  100% { box-shadow: 0 0 0 0 rgba(108, 203, 108, 0); }
}

/* mobile burger */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.nav-burger span {
  position: absolute; left: 8px; right: 8px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), top 0.3s var(--ease);
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 19px; }
.nav-burger span:nth-child(3) { top: 24px; }
.nav-burger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* =========================================================================
   HERO — centered editorial, massive serif, three-line stagger reveal
   ========================================================================= */
.hero {
  position: relative;
  padding: clamp(70px, 12vh, 140px) 0 clamp(70px, 14vh, 160px);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.55; z-index: -1;
}
.hero::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(184, 85, 42, 0.25), transparent 60%);
  top: -150px; left: -160px;
}
.hero::after {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.22), transparent 60%);
  bottom: -120px; right: -140px;
}
.hero-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--terracotta);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 32px; height: 1px; background: var(--terracotta); opacity: 0.45;
}
.hero-h1 {
  font-size: clamp(60px, 10vw, 160px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
}
.hero-h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  animation: line-rise 1s var(--ease) forwards;
}
.hero-h1 .line:nth-child(1) { animation-delay: 0.05s; }
.hero-h1 .line:nth-child(2) { animation-delay: 0.20s; }
.hero-h1 .line:nth-child(3) { animation-delay: 0.35s; }
.hero-h1 em { font-style: italic; color: var(--terracotta); font-weight: 400; }
@keyframes line-rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  max-width: 620px;
  margin: 36px auto 0;
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-soft);
  line-height: 1.7;
  opacity: 0;
  animation: line-rise 1s var(--ease) 0.55s forwards;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center;
  margin-top: 44px;
  opacity: 0;
  animation: line-rise 1s var(--ease) 0.7s forwards;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--bg);
  border: 1px solid var(--terracotta);
}
.btn-primary:hover { background: var(--terracotta-deep); border-color: var(--terracotta-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* Hero meta strip — small trust signals beneath CTAs */
.hero-meta {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 28px;
  margin-top: 56px;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  animation: line-rise 1s var(--ease) 0.85s forwards;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span::before {
  content: '★'; color: var(--terracotta); font-size: 11px;
}

/* =========================================================================
   MARQUEE — scrolling category band (black bg, terracotta stars)
   ========================================================================= */
.marquee {
  background: var(--ink);
  color: var(--bg);
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.marquee-track {
  display: flex; gap: 0;
  white-space: nowrap;
  animation: scroll-left 50s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 300;
}
.marquee-track span { padding: 0 32px; }
.marquee-track .star { color: var(--terracotta); }

/* =========================================================================
   SECTION SCAFFOLDING
   ========================================================================= */
.section { padding: clamp(70px, 11vh, 130px) 0; position: relative; }
.section.dark { background: var(--bg-dark); color: var(--bg); }
.section.cream-soft { background: var(--bg-soft); }

.chapter-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 14px;
}
.chapter-mark::before {
  content: ''; width: 32px; height: 1px; background: var(--terracotta);
}
.section.dark .chapter-mark { color: var(--gold); }
.section.dark .chapter-mark::before { background: var(--gold); }

.section-title {
  font-size: clamp(36px, 5.2vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 96;
  max-width: 760px;
}
.section-title em { font-style: italic; color: var(--terracotta); }
.section.dark .section-title em { color: var(--gold); }

.section-lede {
  margin-top: 28px;
  max-width: 580px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}
.section.dark .section-lede { color: rgba(242, 235, 221, 0.72); }

/* Intro narrative block */
.intro {
  text-align: center;
  padding: clamp(70px, 10vh, 120px) 0;
}
.intro-text {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 300;
  line-height: 1.45;
  max-width: 820px;
  margin: 0 auto;
  color: var(--ink);
}
.intro-text em { font-style: italic; color: var(--terracotta); }

/* =========================================================================
   SCROLL STORY — alternating chapters w/ CSS-generated visuals
   ========================================================================= */
.story-chapter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
  padding: clamp(60px, 9vh, 110px) 0;
  border-top: 1px solid var(--line);
}
.story-chapter:nth-child(even) .story-visual { order: 2; }
.story-chapter:nth-child(even) .story-copy { order: 1; }

.story-copy { max-width: 480px; }
.story-num {
  font-family: var(--serif); font-style: italic;
  color: var(--terracotta);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.story-title {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 22px;
}
.story-title em { font-style: italic; color: var(--terracotta); }
.story-body {
  color: var(--ink-soft); font-size: 16px; line-height: 1.75;
  margin-bottom: 30px;
}
.story-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  margin-bottom: 28px;
}
.story-meta dt {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.story-meta dd {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
  margin: 0;
}
.story-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease);
}
.story-link:hover { gap: 16px; }

/* Visual panels — CSS-generated, no images */
.story-visual {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(28, 20, 16, 0.35);
  isolation: isolate;
}
.story-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.18));
  pointer-events: none;
}

/* Wallpaper — radial glow */
.visual-wallpaper {
  background:
    radial-gradient(circle at 30% 30%, rgba(216, 139, 92, 0.7), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(184, 85, 42, 0.55), transparent 60%),
    linear-gradient(135deg, #C97456, #8C3E1F);
}
.visual-wallpaper::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px);
}

/* Flooring — plank lines */
.visual-flooring {
  background: linear-gradient(180deg, #6B4423 0%, #3D2817 100%);
}
.visual-flooring::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg,
      rgba(255,255,255,0.03) 0 1px,
      transparent 1px 60px),
    repeating-linear-gradient(90deg,
      rgba(0,0,0,0.45) 0 1px,
      transparent 1px 110px);
}

/* WPC louvers — vertical stripes */
.visual-louver {
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
}
.visual-louver::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0.06) 0 1px,
      transparent 1px 3px,
      transparent 3px 22px,
      rgba(0,0,0,0.6) 22px 24px);
}

/* Stretch ceiling — sky gradient */
.visual-ceiling {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.6), transparent 50%),
    linear-gradient(180deg, #6BA4C9 0%, #B8D4E3 50%, #E8DFCB 100%);
}
.visual-ceiling::before {
  content: ''; position: absolute;
  width: 80%; height: 30%; top: 35%; left: 10%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.85), transparent 60%);
  filter: blur(20px);
}

/* Blinds — horizontal slats */
.visual-blinds {
  background: linear-gradient(135deg, #A88845, #6B5D4F);
}
.visual-blinds::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg,
      rgba(0,0,0,0.45) 0 2px,
      transparent 2px 28px);
}

/* Curtains — vertical drape */
.visual-curtain {
  background: linear-gradient(135deg, #8C3E1F, #2A2218);
}
.visual-curtain::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0.06) 0 2px,
      transparent 2px 8px,
      rgba(0,0,0,0.35) 8px 12px);
}

/* Grass — green */
.visual-grass {
  background: linear-gradient(180deg, #7A8C4E, #3D4A26);
}
.visual-grass::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(80deg,
      rgba(0,0,0,0.18) 0 1px,
      transparent 1px 4px),
    repeating-linear-gradient(100deg,
      rgba(255,255,255,0.06) 0 1px,
      transparent 1px 5px);
}

/* Fluted */
.visual-fluted {
  background: linear-gradient(180deg, #C9A961, #8B7335);
}
.visual-fluted::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg,
      rgba(0,0,0,0.25) 0 1px,
      transparent 1px 14px,
      rgba(255,255,255,0.12) 14px 15px);
}

/* =========================================================================
   FEATURE / TESTIMONIAL BAND
   ========================================================================= */
.feature-band {
  background: var(--bg-soft);
  padding: clamp(60px, 10vh, 110px) 0;
  text-align: center;
}
.feature-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.4;
  font-weight: 300;
  max-width: 880px;
  margin: 0 auto;
  color: var(--ink);
}
.feature-quote::before {
  content: '"';
  display: block;
  font-size: 100px;
  color: var(--terracotta);
  line-height: 0.6;
  margin-bottom: 8px;
  opacity: 0.5;
}
.feature-attribution {
  margin-top: 30px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.feature-attribution strong { color: var(--ink); font-weight: 500; }

/* =========================================================================
   SERVICES LIST — horizontal hover-fill rows
   ========================================================================= */
.services-list {
  list-style: none; padding: 0; margin: 50px 0 0;
  border-top: 1px solid var(--line);
}
.services-list li { border-bottom: 1px solid var(--line); }
.services-list a {
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: 28px 4px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease);
}
.services-list a::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--terracotta);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.services-list a:hover::before { transform: translateY(0); }
.services-list a:hover { color: var(--bg); padding-left: 24px; padding-right: 24px; }
.services-list a:hover .svc-num { color: rgba(242, 235, 221, 0.6); }
.services-list a:hover .svc-meta { color: rgba(242, 235, 221, 0.7); }
.services-list a:hover .svc-arrow { transform: translateX(8px); color: var(--bg); }

.svc-num {
  font-family: var(--serif); font-style: italic;
  color: var(--ink-mute);
  font-size: 14px;
  transition: color 0.4s var(--ease);
}
.svc-name {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  line-height: 1.1;
}
.svc-name em { font-style: italic; color: var(--terracotta); transition: color 0.4s var(--ease); }
.services-list a:hover .svc-name em { color: var(--bg); }
.svc-meta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  transition: color 0.4s var(--ease);
}
.svc-arrow {
  font-family: var(--serif);
  font-size: 22px;
  transition: transform 0.4s var(--ease), color 0.4s var(--ease);
}

/* =========================================================================
   MAKERS — dark section with gold accents, centered editorial
   ========================================================================= */
.makers {
  background: var(--bg-dark);
  color: var(--bg);
  padding: clamp(80px, 13vh, 150px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.makers::before, .makers::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.25;
}
.makers::before {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.6), transparent 60%);
  top: -100px; right: -100px;
}
.makers::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184, 85, 42, 0.5), transparent 60%);
  bottom: -100px; left: -100px;
}
.makers-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 14px;
}
.makers-eyebrow::before, .makers-eyebrow::after {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.makers-title {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 300;
  line-height: 1.05;
  margin: 0 auto 36px;
  max-width: 880px;
}
.makers-title em { font-style: italic; color: var(--gold); }
.makers-text {
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 22px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto 40px;
  color: rgba(242, 235, 221, 0.78);
}
.makers-stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  margin-top: 56px;
  padding-top: 50px;
  border-top: 1px solid rgba(201, 169, 97, 0.25);
}
.makers-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.makers-stat span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 235, 221, 0.55);
}

/* =========================================================================
   PROCESS — numbered steps
   ========================================================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.process-step { padding-top: 24px; border-top: 1px solid var(--line); }
.process-num {
  font-family: var(--serif); font-style: italic;
  color: var(--terracotta);
  font-size: 14px;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}
.process-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}
.process-body { color: var(--ink-soft); font-size: 15px; line-height: 1.7; }

/* =========================================================================
   AREAS — service map list
   ========================================================================= */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}
.areas-grid a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  transition: color 0.3s var(--ease), padding 0.3s var(--ease);
}
.areas-grid a:nth-child(odd) { padding-right: 36px; border-right: 1px solid var(--line); }
.areas-grid a:nth-child(even) { padding-left: 36px; }
.areas-grid a:hover { color: var(--terracotta); padding-left: 12px; }
.areas-grid a:nth-child(even):hover { padding-left: 48px; }
.areas-grid a span { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.08em; text-transform: uppercase; }
.areas-note {
  margin-top: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  text-align: center;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}

/* =========================================================================
   CTA SECTION
   ========================================================================= */
.cta {
  background: var(--bg-dark);
  color: var(--bg);
  padding: clamp(80px, 13vh, 140px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; border-radius: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184, 85, 42, 0.3), transparent 60%);
  filter: blur(100px);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.cta-inner { position: relative; }
.cta-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  max-width: 760px;
  margin: 0 auto 28px;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub {
  max-width: 540px;
  margin: 0 auto 44px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(242, 235, 221, 0.72);
}
.cta .btn-ghost { color: var(--bg); border-color: var(--bg); }
.cta .btn-ghost:hover { background: var(--bg); color: var(--ink); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  background: var(--bg-darker);
  color: rgba(242, 235, 221, 0.7);
  padding: clamp(80px, 12vh, 130px) 0 50px;
  position: relative;
}
.footer-flourish {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(80px, 14vw, 180px);
  line-height: 0.85;
  color: var(--bg);
  margin-bottom: 70px;
  letter-spacing: -0.04em;
}
.footer-flourish em { color: var(--terracotta); }
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}
.footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer p, .footer a { font-size: 14px; line-height: 1.75; color: rgba(242, 235, 221, 0.7); }
.footer a:hover { color: var(--gold); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; }
.footer-bio {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(242, 235, 221, 0.85);
  margin-bottom: 22px;
}
.footer-bottom {
  padding-top: 32px;
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(242, 235, 221, 0.45);
}

/* =========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================= */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 200;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.06); }
.wa-float::before {
  content: '';
  position: absolute; inset: -6px;
  border: 2px solid #25D366;
  border-radius: 50%;
  animation: wa-pulse 2.4s var(--ease) infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}
.wa-float svg { width: 32px; height: 32px; }

/* =========================================================================
   BREADCRUMBS (subpages)
   ========================================================================= */
.breadcrumbs {
  padding: 22px 0 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.breadcrumbs li { display: flex; align-items: center; gap: 10px; }
.breadcrumbs li:not(:last-child)::after { content: '›'; color: var(--terracotta); }
.breadcrumbs a:hover { color: var(--terracotta); }
.breadcrumbs li[aria-current="page"] { color: var(--ink); }

/* =========================================================================
   SUBPAGE HERO (smaller, single-line headline)
   ========================================================================= */
.sub-hero {
  padding: clamp(60px, 10vh, 110px) 0 clamp(50px, 8vh, 90px);
  position: relative; overflow: hidden;
  isolation: isolate;
}
.sub-hero::before {
  content: ''; position: absolute; border-radius: 50%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(184, 85, 42, 0.2), transparent 60%);
  filter: blur(80px);
  top: -100px; right: -120px; z-index: -1;
}
.sub-hero h1 {
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 920px;
  font-variation-settings: "opsz" 144;
}
.sub-hero h1 em { font-style: italic; color: var(--terracotta); }
.sub-hero .lede {
  margin-top: 30px;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.sub-hero .ctas { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================================================================
   PROSE BLOCK — long-form locality copy on subpages
   ========================================================================= */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 300;
  margin: 56px 0 20px;
  line-height: 1.15;
}
.prose h2 em { font-style: italic; color: var(--terracotta); }
.prose h3 {
  font-size: 22px;
  font-weight: 500;
  font-family: var(--sans);
  margin: 36px 0 14px;
  letter-spacing: -0.01em;
}
.prose p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 22px;
}
.prose p strong { color: var(--ink); font-weight: 500; }
.prose ul {
  margin: 0 0 22px;
  padding: 0; list-style: none;
}
.prose ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}
.prose ul li::before {
  content: '★';
  position: absolute; left: 0; top: 0;
  color: var(--terracotta);
  font-size: 13px;
  top: 6px;
}

/* =========================================================================
   FAQ ACCORDION
   ========================================================================= */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq details[open] summary { color: var(--terracotta); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  transition: color 0.25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--serif);
  font-size: 32px; font-weight: 300;
  color: var(--terracotta);
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { content: '–'; }
.faq-body {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
  max-width: 700px;
}

/* =========================================================================
   RELATED SERVICES (subpages)
   ========================================================================= */
.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.related a {
  display: block;
  padding: 32px 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.related a:hover { background: var(--ink); color: var(--bg); transform: translateY(-3px); border-color: var(--ink); }
.related-eyebrow {
  font-family: var(--serif); font-style: italic;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.related a:hover .related-eyebrow { color: var(--gold); }
.related h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 14px;
}
.related a span {
  font-size: 13px;
  color: var(--terracotta);
  letter-spacing: 0.04em;
}
.related a:hover span { color: var(--gold); }

/* =========================================================================
   CONTACT PAGE
   ========================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.contact-info dl { margin: 0; }
.contact-info dt {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 28px 0 8px;
}
.contact-info dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
}
.contact-info dd a { color: var(--terracotta); transition: color 0.25s var(--ease); }
.contact-info dd a:hover { color: var(--terracotta-deep); }

.map-frame {
  border: 1px solid var(--terracotta);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 50px;
  box-shadow: 0 20px 50px -25px rgba(28, 20, 16, 0.4);
}
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

/* Form */
.form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-warm);
  padding: 12px 0;
  font-size: 17px;
  font-family: var(--serif);
  color: var(--ink);
  transition: border-color 0.25s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--terracotta);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field.honey { position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; }
.form-msg { font-size: 13px; padding: 14px 18px; border-radius: 4px; display: none; }
.form-msg.success { background: rgba(90, 98, 68, 0.12); color: var(--olive); display: block; }
.form-msg.error { background: rgba(184, 85, 42, 0.12); color: var(--terracotta-deep); display: block; }

/* =========================================================================
   404 PAGE
   ========================================================================= */
.lost {
  min-height: 70vh;
  display: grid; place-items: center;
  text-align: center;
  padding: 80px 0;
}
.lost-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(140px, 24vw, 320px);
  line-height: 0.85;
  color: var(--terracotta);
  letter-spacing: -0.04em;
}
.lost h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  margin: 12px 0 20px;
}
.lost h1 em { font-style: italic; color: var(--terracotta); }
.lost p {
  max-width: 480px;
  margin: 0 auto 36px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

/* =========================================================================
   IntersectionObserver fade-in helper
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================================
   RESPONSIVE — 1024px → 700px → 375px
   ========================================================================= */
@media (max-width: 1024px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .related { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  /* On mobile, drop the glass-morphism blur. backdrop-filter creates
     a containing block that traps the position:fixed drawer inside
     the nav header — known mobile Chromium/Safari quirk.
     Also bump z-index so the .nav stacking context floats above the
     scrim (which is appended to body at z-index 1100). Otherwise the
     drawer — inside .nav — would render below the scrim. */
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--bg);
    z-index: 1102;
  }

  .nav-links { display: none; }
  .nav-burger { display: block; position: relative; z-index: 1102; }
  .nav-cta { padding: 9px 14px; font-size: 12px; }
  .nav-cta::before { width: 7px; height: 7px; }
  .brand { font-size: 18px; gap: 0; }
  .brand-mark { display: none; }
  .brand-name { white-space: nowrap; }

  /* mobile menu drawer */
  .nav-links.is-open {
    display: flex;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(330px, 88%);
    height: 100vh;
    height: 100dvh;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 90px 32px 40px;
    gap: 22px;
    z-index: 1101;
    box-shadow: -20px 0 50px rgba(28, 20, 16, 0.25);
    overflow-y: auto;
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }
  .nav-links.is-open a { font-size: 18px; }

  /* Scrim — JS injects .nav-scrim when menu opens. Tap to close. */
  .nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(28, 20, 16, 0.55);
    z-index: 1100;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s var(--ease);
  }

  .hero { padding: 56px 0 70px; }
  .hero-h1 { font-size: clamp(48px, 14vw, 80px); }

  .story-chapter { grid-template-columns: 1fr; gap: 36px; padding: 60px 0; }
  .story-chapter:nth-child(even) .story-visual { order: 0; }
  .story-chapter:nth-child(even) .story-copy { order: 0; }
  .story-visual { aspect-ratio: 4 / 3; }

  .services-list a {
    grid-template-columns: 36px 1fr auto;
    gap: 14px;
    padding: 22px 4px;
  }
  .svc-meta { display: none; }

  .areas-grid { grid-template-columns: 1fr; }
  .areas-grid a:nth-child(odd),
  .areas-grid a:nth-child(even) {
    padding-right: 0; padding-left: 0; border-right: none;
  }
  .areas-grid a:hover { padding-left: 8px; }
  .areas-grid a:nth-child(even):hover { padding-left: 8px; }

  .footer-cols { grid-template-columns: 1fr; gap: 36px; }
  .footer-flourish { font-size: clamp(70px, 22vw, 130px); }

  .process-grid { grid-template-columns: 1fr; gap: 28px; }

  .makers-stats { gap: 28px 36px; }

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

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

  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 28px; height: 28px; }

  .marquee-track { font-size: clamp(18px, 5vw, 24px); }
  .marquee-track span { padding: 0 18px; }
}

@media (max-width: 380px) {
  .hero-eyebrow::before, .hero-eyebrow::after { width: 18px; }
  .nav-cta span { display: none; }
  .nav-cta::after { content: 'Call'; font-size: 12px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-h1 .line { opacity: 1; transform: none; }
  .hero-sub, .hero-ctas, .hero-meta { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
}
