:root {
  --forest: #2d4628;
  --forest-deep: #20351d;
  --terracotta: #8d2b00;
  --terracotta-soft: #a8441b;
  --gold: #fbd175;
  --sage: #ddebd4;
  --cream: #fffce5;
  --ink: #25251f;
  --muted: #6d6a5c;
  --line: rgba(45, 70, 40, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --shadow: 0 24px 70px rgba(33, 45, 29, 0.14);
  --container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { position: fixed; inset-inline: 0; width: 100%; overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--gold);
  color: var(--forest-deep);
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: clamp(78px, 9vw, 138px) 0; }
.section-sm { padding: clamp(54px, 6vw, 88px) 0; }
.section-dark {
  background: linear-gradient(180deg, var(--forest) 0%, #24391f 100%);
  color: var(--cream);
}
.section-sage { background: var(--sage); }
.section-gold { background: var(--gold); color: var(--forest-deep); }
.section-pattern {
  background: linear-gradient(180deg, var(--forest) 0%, #24391f 100%);
  color: var(--cream);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--terracotta);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.section-dark .eyebrow, .section-pattern .eyebrow { color: var(--gold); }
.hero .eyebrow, .page-hero .eyebrow, .feature-band .eyebrow { color: var(--gold); }
.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.03em;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5.5rem); }
h2 { font-size: clamp(2.5rem, 5.2vw, 5.2rem); }
h3 { font-size: clamp(1.45rem, 2.4vw, 2.25rem); }
.lead { max-width: 720px; font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: var(--muted); }
.section-dark .lead, .section-pattern .lead, .feature-band .lead { color: rgba(255,252,229,.9); }
.section-heading { max-width: 880px; margin-bottom: clamp(38px, 6vw, 72px); }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .lead { margin-inline: auto; }
.draft-note { color: var(--muted); font-size: .88rem; font-style: italic; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--cream);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--terracotta-soft); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.btn-secondary { background: transparent; border-color: currentColor; }
.btn-secondary:hover { background: var(--cream); color: var(--forest); }
.btn-gold { background: var(--gold); color: var(--forest-deep); }
.btn-gold:hover { background: var(--cream); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button-row.center { justify-content: center; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: var(--cream);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(32,53,29,.96); box-shadow: 0 8px 40px rgba(0,0,0,.16); backdrop-filter: blur(12px); }
.header-inner { width: var(--container); height: 82px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 176px; height: 48px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links a { position: relative; color: inherit; font-size: .79rem; font-weight: 700; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--gold); transition: right .2s ease; }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links .btn { min-height: 44px; padding: 10px 18px; }
.nav-links .btn-gold { color: #20351d; }
.header-phone { color: var(--gold); white-space: nowrap; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; color: white; cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 19px; height: 2px; margin: 4px auto; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-open .menu-toggle span { opacity: 0; }
.menu-open .menu-toggle::before { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  display: grid;
  align-items: end;
  padding: 155px 0 80px;
  background: var(--forest-deep);
  color: var(--cream);
  isolation: isolate;
}
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url("assets/hero-spread.jpg") center 55% / cover no-repeat; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(21,38,18,.92) 0%, rgba(21,38,18,.68) 48%, rgba(21,38,18,.17) 100%), linear-gradient(0deg, rgba(21,38,18,.58), transparent 55%); }
.hero-content { max-width: 850px; }
.hero h1 { max-width: 790px; margin-bottom: 22px; }
.hero .lead { max-width: 610px; color: rgba(255,252,229,.84); }
.hero .button-row { margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 14px 32px; margin-top: 32px; font-size: .86rem; color: rgba(255,252,229,.82); }
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; }
.hero-trust span::before { content: "✦"; color: var(--gold); }
.hero-floating {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 7px solid var(--cream);
  border-radius: 22px;
  box-shadow: var(--shadow);
  will-change: transform;
  animation: hero-float 7s ease-in-out infinite;
}
.hero-floating img { width: 100%; height: 100%; object-fit: cover; }
.hero-floating.one { --rot: 6deg; width: 190px; height: 245px; top: 20%; right: 7%; }
.hero-floating.two { --rot: -7deg; width: 160px; height: 160px; right: 23%; bottom: 8%; border-radius: 50%; animation-duration: 9s; animation-delay: -2.5s; }
.hero-floating.three { --rot: -4deg; width: 125px; height: 158px; top: 6%; right: 23%; animation-duration: 8s; animation-delay: -4s; }
@keyframes hero-float {
  0%, 100% { transform: translate3d(var(--mx, 0px), calc(var(--shift, 0px) + var(--my, 0px)), 0) rotate(var(--rot, 0deg)); }
  50% { transform: translate3d(var(--mx, 0px), calc(var(--shift, 0px) + var(--my, 0px) - 10px), 0) rotate(var(--rot, 0deg)); }
}
.fud-note { margin: 14px 0 0; font-size: .85rem; color: rgba(255,252,229,.72); }
.fud-note::before { content: "✓ "; color: var(--gold); }


.split { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; gap: clamp(42px, 8vw, 110px); }
.split.reverse .visual { order: 2; }
.visual-stack { position: relative; min-height: 620px; }
.visual-stack .main-photo { position: absolute; inset: 0 10% 8% 0; width: 78%; height: 82%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.visual-stack .accent-photo { position: absolute; right: 0; bottom: 0; width: 45%; height: 42%; object-fit: cover; border: 8px solid var(--cream); border-radius: 50%; box-shadow: var(--shadow); }
.visual-stack .illustration { position: absolute; top: -4%; right: -3%; width: 34%; filter: drop-shadow(0 16px 25px rgba(31,53,29,.2)); }
.copy-block p { max-width: 650px; color: var(--muted); font-size: clamp(1.02rem, 1.4vw, 1.15rem); }
.copy-block .button-row { margin-top: 30px; }
.guided-copy { text-align: justify; text-align-last: left; hyphens: none; overflow-wrap: normal; word-break: normal; }

.icon-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.icon-list article { padding: 24px; background: rgba(255,255,255,.46); border: 1px solid rgba(45,70,40,.11); border-radius: var(--radius); }
.icon-list img { width: 62px; height: 62px; margin-bottom: 20px; border-radius: 50%; object-fit: cover; }
.icon-list h3 { margin-bottom: 8px; font-size: 1.35rem; }
.icon-list p { margin: 0; color: var(--muted); font-size: .91rem; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--forest); color: var(--cream); box-shadow: 0 14px 35px rgba(31,53,29,.12); }
.service-card img { width: min(225px, 72%); aspect-ratio: 1 / 1; height: auto; margin: 32px auto 0; border: 6px solid rgba(255,252,229,.14); border-radius: 50%; object-fit: cover; transition: transform .55s ease; }
.service-card:hover img { transform: scale(1.045); }
.service-card-content { padding: 25px; text-align: center; }
.service-card h3 { margin-bottom: 11px; font-size: 1.75rem; }
.service-card p { color: rgba(255,252,229,.7); font-size: .91rem; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--gold); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.feature-band { position: relative; min-height: 640px; display: grid; align-items: center; overflow: hidden; background: var(--forest-deep); color: var(--cream); }
.feature-band::before { content: ""; position: absolute; inset: -9% 0; background: linear-gradient(90deg, rgba(19,37,17,.93) 0%, rgba(19,37,17,.78) 42%, rgba(19,37,17,.3) 100%), url("assets/yoga-brunch.jpg") center / cover no-repeat; transform: translateY(var(--parallax, 0px)); }
.feature-band .container { position: relative; }
.feature-band-content { max-width: 720px; padding: 100px 0; }
.feature-band h2 { margin-bottom: 20px; }

.steps-flow { display: grid; grid-template-columns: 1fr minmax(270px, 350px) 1fr; gap: clamp(28px, 5vw, 70px); align-items: stretch; }
.steps-col { display: grid; gap: clamp(150px, 18vw, 250px); align-content: start; }
.steps-col-offset { padding-top: clamp(210px, 26vw, 350px); }
.step { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.55); box-shadow: 0 18px 45px rgba(31,53,29,.08); }
.step-number { display: block; margin-bottom: 28px; color: var(--terracotta); font-family: var(--serif); font-size: 4.5rem; line-height: 1; }
.step h3 { margin-bottom: 12px; }
.step p { color: var(--muted); }
.step-copy-narrow { max-width: 270px; font-size: .9rem; }
.steps-visual-col { position: relative; }
.steps-visual { position: sticky; top: 105px; margin: 0; height: min(640px, calc(100vh - 200px)); }
.steps-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.steps-word { position: absolute; top: 50%; left: -0.42em; transform: translateY(-50%) rotate(180deg); writing-mode: vertical-rl; color: var(--cream); font-family: var(--serif); font-size: clamp(3.2rem, 5vw, 5.2rem); letter-spacing: .02em; line-height: 1; text-shadow: 0 8px 35px rgba(20,35,17,.45); pointer-events: none; }

.stat-band { border-block: 1px solid var(--line); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat-value { display: block; color: var(--terracotta); font-family: var(--serif); font-size: clamp(2.6rem, 4.5vw, 4rem); line-height: 1; }
.stat p { margin: 12px 0 0; color: var(--muted); font-size: .9rem; }
.draft-note.center { margin: 30px 0 0; text-align: center; }

.testimonials { overflow: hidden; }
.testimonial-title { max-width: 560px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { display: flex; flex-direction: column; gap: 14px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.5); }
.testimonial-card .stars { color: #d9a12f; font-size: 1.05rem; letter-spacing: 3px; }
.testimonial-card p { margin: 0; font-size: .98rem; }
.testimonial-card footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-card footer strong { display: block; font-size: .92rem; }
.testimonial-card .role { color: var(--muted); font-size: .8rem; }
.avatar { flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--forest); color: var(--cream); font-size: .74rem; font-weight: 800; letter-spacing: .02em; }
.cutout {
  position: absolute;
  z-index: 3;
  margin: 0;
  pointer-events: none;
  filter: drop-shadow(0 26px 34px rgba(31,53,29,.32));
  transform: translate3d(var(--mx, 0px), calc(var(--shift, 0px) + var(--my, 0px)), 0) rotate(var(--rot, 0deg));
  will-change: transform;
  animation: hero-float 9s ease-in-out infinite;
}
.deco {
  position: absolute;
  z-index: 2;
  margin: 0;
  pointer-events: none;
  filter: drop-shadow(0 10px 14px rgba(31,53,29,.22));
  transform: translateY(var(--shift, 0px)) rotate(var(--rot, 0deg));
  will-change: transform;
}
.cutout-about { --rot: -7deg; width: min(400px, 30vw); right: 2.5%; bottom: -46px; }
.deco-tomato-about { --rot: -14deg; width: 54px; top: 90px; right: 7%; }
.deco-leaf-services { --rot: 26deg; width: 88px; top: 64px; right: 6%; }
.deco-tomato-services { --rot: 12deg; width: 50px; bottom: 84px; left: 3.5%; }
.deco-leaf-steps { --rot: -32deg; width: 72px; top: 52px; left: 8%; }
.cutout-testimonial { --rot: 6deg; width: min(250px, 19vw); top: 44px; right: 5%; animation-duration: 8s; }
.cutout-quote { --rot: 9deg; width: min(310px, 23vw); right: -20px; top: 50%; margin-top: -150px; animation-duration: 10s; animation-delay: -3s; }
.quote-stamp { position: absolute; top: 168px; right: calc(5% + 138px); width: 126px; height: 126px; color: var(--terracotta); pointer-events: none; }
.quote-stamp svg { width: 100%; height: 100%; animation: spin 22s linear infinite; }
.quote-stamp text { fill: currentColor; font-size: 12.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.quote-stamp .quote-mark { position: absolute; inset: 0; display: grid; place-items: center; padding-top: .3em; font-family: var(--serif); font-size: 3.6rem; line-height: 1; }
@keyframes spin { to { transform: rotate(1turn); } }

.gallery-watermark { position: absolute; top: 4%; left: 50%; transform: translate(-50%, var(--shift, 0px)); color: transparent; -webkit-text-stroke: 1px rgba(255,252,229,.13); font-family: var(--serif); font-size: clamp(7rem, 22vw, 21rem); line-height: 1; white-space: nowrap; pointer-events: none; will-change: transform; }
.section-dark .container { position: relative; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 150px; grid-auto-flow: dense; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); background: var(--sage); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .3s ease; }
.gallery-item:hover img { transform: scale(1.04); filter: saturate(1.08); }
.gallery-item:nth-child(1) { grid-column: span 6; grid-row: span 3; }
.gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 3; }
.gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 6; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(7) { grid-column: span 6; grid-row: span 2; }
.gallery-item:nth-child(8) { grid-column: span 6; grid-row: span 2; }
.gallery-item:nth-child(n+9) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(n+13) { grid-column: span 6; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filter-btn { padding: 10px 17px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--forest); cursor: pointer; font-size: .78rem; font-weight: 700; }
.filter-btn.active, .filter-btn:hover { background: var(--forest); color: var(--cream); }
.gallery-item.is-hidden { display: none; }

.quote-panel {
  position: relative;
  padding: clamp(52px, 7vw, 90px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-color: var(--terracotta);
  background-image: linear-gradient(rgba(126,37,0,.88), rgba(126,37,0,.88)), url("assets/pattern-terracotta.png");
  background-position: center top;
  background-size: 960px auto;
  color: var(--cream);
}
.quote-panel::before { content: "“"; position: absolute; right: 4%; top: -30%; color: rgba(255,255,255,.08); font-family: var(--serif); font-size: 30rem; line-height: 1; }
.quote-panel h2 { position: relative; max-width: 900px; margin-bottom: 28px; }
.quote-panel .lead { position: relative; color: rgba(255,252,229,.92); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.3); }
.blog-card img { width: 100%; height: 245px; object-fit: cover; }
.blog-card-content { padding: 26px; }
.blog-card .meta { color: var(--terracotta); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.blog-card h3 { margin: 13px 0; font-size: 1.75rem; }
.blog-card p { color: var(--muted); font-size: .94rem; }

.contact-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.contact-card { padding: 32px; border-radius: var(--radius); background: var(--forest); color: var(--cream); }
.contact-card a { color: var(--gold); text-decoration: none; }
.contact-card ul { padding: 0; margin: 26px 0 0; list-style: none; }
.contact-card li { padding: 13px 0; border-top: 1px solid rgba(255,255,255,.13); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--forest-deep); font-size: .78rem; font-weight: 800; letter-spacing: .04em; }
.field input, .field textarea, .field select { width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.66); color: var(--ink); }
.field textarea { min-height: 150px; resize: vertical; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; color: var(--muted); }
.checkbox input { margin-top: 5px; }

.page-hero { position: relative; min-height: 520px; display: grid; align-items: end; padding: 155px 0 75px; overflow: hidden; background: var(--forest-deep); color: var(--cream); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(20,38,18,.91),rgba(20,38,18,.38)); }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 950px; margin-bottom: 18px; }
.page-hero .lead { color: rgba(255,252,229,.78); }
.page-hero[data-image="about"] { background: var(--forest-deep) url("assets/shopmockup1.jpg") right 58% / cover no-repeat; }
.page-hero[data-image="about"]::after { background: linear-gradient(90deg, rgba(20,38,18,.97) 0%, rgba(20,38,18,.85) 40%, rgba(20,38,18,.3) 100%); }
.page-hero[data-image="about"] h1 { max-width: 580px; }
.page-hero[data-image="about"] .lead { max-width: 540px; }
.page-hero .guided-copy { text-align: left; }
.page-hero[data-image="services"] { background: var(--forest-deep) url("assets/wedding-canapes.jpg") center 50% / cover no-repeat; }
.page-hero[data-image="gallery"] { background: var(--forest-deep) url("assets/sweet-buffet.jpg") center 52% / cover no-repeat; }
.page-hero[data-image="blog"] { background: var(--forest-deep) url("assets/banana-bread.jpg") center 50% / cover no-repeat; }
.page-hero[data-image="contact"] { background: var(--forest-deep) url("assets/charcuterie.jpg") center 50% / cover no-repeat; }

.menu-sections { display: grid; gap: 24px; }
.menu-section { display: grid; grid-template-columns: .7fr 1.3fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.32); }
.menu-section img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.menu-section-copy { padding: clamp(32px, 5vw, 64px); }
.menu-section-copy h2 { font-size: clamp(2.2rem, 4vw, 4.3rem); }
.menu-section-copy p { max-width: 720px; font-size: 1rem; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; list-style: none; }
.pill-list li { padding: 7px 12px; border-radius: 999px; background: var(--sage); color: var(--forest); font-size: .78rem; }

.faq { display: grid; gap: 10px; max-width: 900px; margin: auto; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.35); }
.faq summary { display: flex; justify-content: space-between; padding: 20px 22px; cursor: pointer; color: var(--forest-deep); font-weight: 800; list-style: none; }
.faq summary::after { content: "+"; color: var(--terracotta); font-size: 1.4rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 22px 22px; margin: 0; color: var(--muted); }

.closing-cta-section { padding: clamp(58px, 7vw, 92px) 0; background: var(--cream); }
.closing-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 82px);
  border-radius: var(--radius-lg);
  background-color: var(--terracotta);
  background-image: linear-gradient(rgba(126,37,0,.88), rgba(126,37,0,.88)), url("assets/pattern-terracotta.png");
  background-position: center top;
  background-size: 960px auto;
  color: var(--cream);
}
.closing-cta h2 { max-width: 880px; margin-bottom: 24px; }
.closing-cta .lead { max-width: 760px; color: rgba(255,252,229,.9); }
.closing-cta .btn { margin-top: 10px; }
.closing-cta .fud-note { color: rgba(255,252,229,.88); }

.site-footer {
  background: var(--forest);
  color: var(--cream);
}
.footer-main { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 50px; padding: 72px 0; }
.footer-logo { width: 210px; margin-bottom: 24px; }
.footer-main h3 { margin-bottom: 18px; font-family: var(--sans); font-size: .79rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-main p, .footer-main a { color: rgba(255,252,229,.68); text-decoration: none; }
.footer-nav { display: grid; gap: 10px; }
.made-by { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 9px; margin-top: 28px; text-decoration: none; }
.made-by-label { color: rgba(255,252,229,.5); font-size: .66rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.made-by-logo { display: inline-block; padding: 3px 10px 5px; border-radius: 3px; background: #fff; color: #0a0a0a; font-family: Arial, Helvetica, sans-serif; font-size: 1.3rem; font-weight: 900; letter-spacing: -.05em; line-height: 1.15; transition: transform .2s ease; }
.made-by-logo em { font-style: normal; color: #FF4D00; }
.made-by:hover .made-by-logo { transform: translateY(-2px); }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0 30px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.48); font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.thank-you { min-height: 100svh; display: grid; place-items: center; padding: 110px 20px; background-color: var(--forest); background-image: linear-gradient(rgba(45,70,40,.78), rgba(45,70,40,.78)), url("assets/pattern-green.png"); background-position: center top; background-size: 960px auto; color: var(--cream); text-align: center; }
.thank-you-card { max-width: 760px; }
.thank-you-card img { width: 210px; margin: 0 auto 35px; }

@media (max-width: 980px) {
  .brand, .menu-toggle { position: relative; z-index: 102; }
  .menu-toggle { display: block; }
  .nav-links { position: fixed; inset: 0; z-index: 101; display: grid; place-content: center; gap: 25px; background: var(--forest-deep); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s ease, visibility .2s ease; text-align: center; }
  .nav-links a { font-size: 1.1rem; }
  .menu-open .nav-links { opacity: 1; visibility: visible; pointer-events: auto; }
  .split, .contact-shell { grid-template-columns: 1fr; }
  .split.reverse .visual { order: initial; }
  .visual-stack { min-height: 560px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .steps-flow { display: flex; flex-direction: column; gap: 18px; }
  .steps-col, .steps-col-offset { display: contents; }
  .steps-visual-col { order: 0; }
  .steps-visual { position: static; height: 340px; }
  .step-1 { order: 1; }
  .step-2 { order: 2; }
  .step-3 { order: 3; }
  .reveal-left, .reveal-right { transform: translateY(28px); }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 640px; }
  .cutout-testimonial, .cutout-quote, .quote-stamp { display: none; }
  .cutout-about { width: 240px; bottom: -46px; }
  .page-hero[data-image="about"] { min-height: auto; padding: 405px 0 70px; background: var(--forest-deep); }
  .page-hero[data-image="about"]::before { content: ""; position: absolute; inset: 0 0 auto; height: 350px; background: url("assets/shopmockup1.jpg") 58% center / cover no-repeat; }
  .page-hero[data-image="about"]::after { inset: 0 0 auto; height: 350px; background: linear-gradient(180deg, rgba(20,38,18,.36), rgba(20,38,18,.08)); }
  .page-hero[data-image="about"] h1, .page-hero[data-image="about"] .lead { max-width: 640px; }
}

@media (max-width: 700px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  .header-inner { height: 70px; }
  .brand img { width: 150px; }
  .hero { min-height: auto; padding: 150px 0 52px; align-items: end; }
  .hero-content { max-width: none; }
  .hero h1 { font-size: 2.75rem; }
  .hero .lead { font-size: 1rem; line-height: 1.55; }
  .hero::after { background: linear-gradient(0deg,rgba(19,37,17,.95) 0%,rgba(19,37,17,.63) 65%,rgba(19,37,17,.3) 100%); }
  .hero-floating.one { display: none; }
  .hero-floating.two { display: none; }
  .hero-floating.three { display: none; }
  .button-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-trust { gap: 9px; flex-direction: column; }
  .icon-list, .service-grid, .blog-grid, .form-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .deco { display: none; }
  .cutout-about { width: 190px; right: 4%; bottom: -36px; }
  .visual-stack { min-height: 450px; }
  .visual-stack .main-photo { width: 85%; height: 80%; }
  .visual-stack .accent-photo { width: 48%; height: 42%; }
  .feature-band { min-height: 600px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 185px; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:first-child { grid-column: 1 / -1; grid-row: span 2; }
  .contact-shell { gap: 30px; }
  .field.full { grid-column: auto; }
  .menu-section { grid-template-columns: 1fr; }
  .menu-section-copy { padding: 30px 22px; }
  .quote-panel, .closing-cta { padding: 38px 24px; border-radius: 24px; background-size: 680px auto; }
  .closing-cta-section { padding: 56px 0; }
  .closing-cta h2 { font-size: 2.45rem; }
  .menu-section img { min-height: 270px; max-height: 400px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .page-hero { min-height: 500px; }
  .page-hero[data-image="about"] { padding: 355px 0 60px; }
  .page-hero[data-image="about"]::before, .page-hero[data-image="about"]::after { height: 320px; }
  .page-hero[data-image="about"] h1, .page-hero[data-image="about"] .lead { max-width: none; }
  .page-hero[data-image="about"] h1 { font-size: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
