/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --color-bg:          #F7F2E9;
  --color-bg-alt:      #EFE7D8;
  --color-surface:     #FFFFFF;
  --color-deep-green:  #006937;
  --color-green-mid:   #009147;
  --color-sage:        #93A799;
  --color-charcoal:    #2A2823;
  --color-gold:        #39B44A;
  --color-gold-pale:   #BFE6C6;

  --color-text:        var(--color-charcoal);
  --color-text-muted:  #555249;
  --color-text-dim:    #706E60;
  --color-on-dark:     #F3EEE2;
  --color-on-dark-mut: #B7C2B8;

  --color-border:      rgba(0, 105, 55, 0.16);
  --color-border-soft: rgba(0, 105, 55, 0.10);

  --shadow-sm: 0 2px 14px rgba(42, 40, 35, 0.06);
  --shadow-md: 0 12px 40px rgba(42, 40, 35, 0.10);

  --radius-sm: 4px;
  --radius-md: 6px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, -apple-system, sans-serif;
}

/* ═══════════════════════════════════════════
   RESET + BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--color-deep-green); letter-spacing: 0.005em; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px; }
::selection { background: var(--color-gold-pale); color: var(--color-deep-green); }

/* ═══════════════════════════════════════════
   PROGRESS BAR
═══════════════════════════════════════════ */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--color-gold);
  z-index: 200; pointer-events: none;
  transition: width 0.12s linear;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   KICKER / LABEL
═══════════════════════════════════════════ */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 18px;
}
.kicker::before {
  content: ''; display: inline-block; width: 28px; height: 1px;
  background: var(--color-gold);
}
.kicker--inverse { color: var(--color-gold-pale); }
.kicker--inverse::before { background: var(--color-gold-pale); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out),
              background 0.3s var(--ease-out), color 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn--primary { background: var(--color-deep-green); color: var(--color-on-dark); }
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 105, 55, 0.28);
  background: var(--color-green-mid);
}
.btn--gold { background: var(--color-gold); color: var(--color-deep-green); }
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(57, 180, 74, 0.32);
  background: var(--color-gold-pale);
}
.btn--lg { padding: 16px 36px; font-size: 0.88rem; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--color-border);
  box-shadow: 0 1px 32px rgba(42, 40, 35, 0.11);
}
.nav__inner {
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  height: 84px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo-img {
  height: 52px; width: auto;
  filter: drop-shadow(0 1px 10px rgba(247, 242, 233, 0.7));
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-size: 0.84rem; letter-spacing: 0.02em; font-weight: 500;
  color: var(--color-deep-green);
  transition: color 0.3s var(--ease-out);
  position: relative;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px;
  background: currentColor; transition: right 0.35s var(--ease-out);
}
.nav__link:hover { color: var(--color-gold); }
.nav__link:hover::after { right: 0; }
.nav__cta { padding: 11px 24px; font-size: 0.8rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   HAMBURGER TOGGLE
═══════════════════════════════════════════ */
.nav__toggle {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; width: 42px; height: 42px; flex-shrink: 0;
  color: var(--color-deep-green);
  border-radius: var(--radius-sm);
  transition: background 0.25s var(--ease-out);
}
.nav__toggle:hover { background: rgba(0, 105, 55, 0.08); }
.nav__toggle-bar {
  display: block; width: 22px; height: 1.5px;
  background: currentColor; transform-origin: center;
  transition: transform 0.35s var(--ease-out), opacity 0.2s var(--ease-out);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ═══════════════════════════════════════════
   MOBILE NAVIGATION DRAWER
═══════════════════════════════════════════ */
.nav__drawer {
  position: fixed; inset: 0; z-index: 150;
  visibility: hidden; pointer-events: none;
}
.nav__drawer.is-open { visibility: visible; pointer-events: all; }

.nav__drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 105, 55, 0.45);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.38s var(--ease-out);
}
.nav__drawer.is-open .nav__drawer-backdrop { opacity: 1; }

.nav__drawer-panel {
  position: absolute; top: 0; right: 0;
  width: min(320px, 88vw); height: 100%;
  background: var(--color-deep-green);
  padding: 22px 28px 40px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.42s var(--ease-out);
  overflow-y: auto;
}
.nav__drawer.is-open .nav__drawer-panel { transform: translateX(0); }

.nav__drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 36px;
}
.nav__drawer-brand {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; color: var(--color-on-dark); opacity: 0.7;
}
.nav__drawer-close {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-on-dark-mut); border-radius: var(--radius-sm);
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.nav__drawer-close:hover {
  background: rgba(243, 238, 226, 0.12); color: var(--color-on-dark);
}
.nav__drawer-links {
  display: flex; flex-direction: column; flex: 1;
  border-top: 1px solid rgba(243, 238, 226, 0.12);
}
.nav__drawer-link {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6vw, 1.85rem); font-weight: 500;
  color: var(--color-on-dark);
  padding: 16px 0;
  border-bottom: 1px solid rgba(243, 238, 226, 0.1);
  transition: color 0.3s var(--ease-out), padding-left 0.3s var(--ease-out);
}
.nav__drawer-link:hover { color: var(--color-gold-pale); padding-left: 10px; }
.nav__drawer-cta { margin-top: 28px; width: 100%; }

/* ═══════════════════════════════════════════
   CURTAIN — first-load reveal (GSAP-driven)
═══════════════════════════════════════════ */
.curtain {
  position: fixed; inset: 0; z-index: 500;
  pointer-events: none;
}
.curtain__panel {
  position: absolute; top: 0; bottom: 0; width: 50%;
  background: linear-gradient(160deg, var(--color-deep-green) 0%, #004A26 100%);
  pointer-events: auto;
}
.curtain__panel--left  { left: 0; }
.curtain__panel--right { right: 0; }
.curtain__panel--mobile { left: 0; width: 100%; display: none; }
.curtain__seam {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; transform: translateX(-50%);
  background: linear-gradient(180deg, transparent 0%, var(--color-gold-pale) 50%, transparent 100%);
  opacity: 0.55;
}
.curtain.is-done { display: none; }

/* ═══════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════ */
section { position: relative; padding: 128px 0; }
.section-header { max-width: 640px; margin: 0 0 60px; }
.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.18; margin-bottom: 18px;
}
.section-sub {
  color: var(--color-text-muted);
  font-size: clamp(0.92rem, 2vw, 1.02rem); line-height: 1.75; max-width: 520px;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
  min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 0 96px;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  transform: scale(1.09);
  transition: transform 4.5s var(--ease-out);
}
#hero.is-loaded .hero__img { transform: scale(1); }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 110% 80% at 50% 50%, rgba(247, 242, 233, 0.44) 0%, rgba(247, 242, 233, 0.24) 45%, rgba(247, 242, 233, 0.06) 80%, transparent 100%),
    linear-gradient(0deg, rgba(247, 242, 233, 0.22) 0%, rgba(247, 242, 233, 0.08) 55%, rgba(247, 242, 233, 0.16) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  max-width: 700px; text-align: center; margin: 0 auto;
  color: var(--color-text);
}
.hero__content::before {
  content: '';
  position: absolute; z-index: -1;
  inset: -7% -6%;
  background: radial-gradient(ellipse 72% 66% at 50% 48%,
    rgba(247, 242, 233, 0.62) 0%,
    rgba(247, 242, 233, 0.40) 42%,
    rgba(247, 242, 233, 0.16) 68%,
    transparent 100%);
  filter: blur(14px);
  pointer-events: none;
}
.hero__trust {
  font-size: 0.84rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-deep-green); font-weight: 600;
  text-shadow: 0 0 16px rgba(247, 242, 233, 1), 0 1px 8px rgba(247, 242, 233, 1), 0 1px 2px rgba(247, 242, 233, 0.9);
}
.hero__headline {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  font-weight: 600; line-height: 1.1; letter-spacing: 0.005em;
  text-wrap: balance;
  color: #004F29;
  text-shadow: 0 2px 28px rgba(247, 242, 233, 0.96), 0 1px 5px rgba(247, 242, 233, 0.96), 0 0 14px rgba(247, 242, 233, 0.85);
}
.hero__headline em {
  font-style: italic; font-weight: 500;
  color: #004F29;
}
.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 400; line-height: 1.6;
  color: #00592F;
  max-width: 480px;
  text-shadow: 0 1px 18px rgba(247, 242, 233, 0.96), 0 1px 6px rgba(247, 242, 233, 0.95), 0 0 8px rgba(247, 242, 233, 0.85);
}
.hero__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 10px; }

/* ═══════════════════════════════════════════
   IMAGE PLACEHOLDER FALLBACKS
═══════════════════════════════════════════ */
.media-fallback {
  display: none;
  position: absolute; inset: 0; z-index: 1;
  align-items: center; justify-content: center; text-align: center;
  padding: 32px;
}
[data-media].is-missing .media-fallback { display: flex; }
[data-media].is-missing img[data-fallback] { visibility: hidden; }
.media-fallback__text {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; line-height: 1.6; letter-spacing: 0.01em;
  max-width: 280px;
}
.media-fallback--hero {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(57, 180, 74, 0.14) 0%, transparent 60%),
    linear-gradient(150deg, var(--color-green-mid) 0%, var(--color-deep-green) 100%);
}
.media-fallback--hero .media-fallback__text {
  color: var(--color-gold-pale);
  border: 1px solid rgba(191, 230, 198, 0.3);
  border-radius: var(--radius-sm); padding: 18px 26px;
}
.media-fallback--light {
  background: linear-gradient(150deg, var(--color-bg-alt) 0%, var(--color-sage) 140%);
}
.media-fallback--light .media-fallback__text {
  color: var(--color-deep-green);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); padding: 16px 24px;
  background: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════════════
   INTRO / PHILOSOPHY
═══════════════════════════════════════════ */
#intro { background: var(--color-bg); }
.intro__inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 96px; align-items: center;
}
.intro__text { display: flex; flex-direction: column; gap: 22px; }
.intro__cta { align-self: center; margin-top: 6px; }
.intro__lead {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.05rem); font-weight: 500;
  color: var(--color-deep-green); line-height: 1.4;
}
.intro__body {
  font-size: clamp(0.95rem, 2vw, 1.05rem); color: var(--color-text-muted);
  line-height: 1.85; max-width: 480px;
}
.intro__image { position: relative; }
.intro__image img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  transition: transform 0.8s var(--ease-out);
}
.intro__image:hover img { transform: scale(1.03); }
.intro__image figcaption {
  margin-top: 14px; font-size: 0.84rem; letter-spacing: 0.02em;
  color: var(--color-text-dim); font-style: italic; font-family: var(--font-display);
}



/* ═══════════════════════════════════════════
   GALLERY / WORK
═══════════════════════════════════════════ */
#work { background: var(--color-bg); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px 36px;
}
.gallery__card { display: flex; flex-direction: column; gap: 16px; }
.gallery__frame {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); background: var(--color-bg-alt);
}
.gallery__frame img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: contain;
  transition: transform 0.9s var(--ease-out);
}
.gallery__card:hover .gallery__frame img { transform: scale(1.045); }
.gallery__card figcaption { display: flex; flex-direction: column; gap: 5px; }
.gallery__card figcaption strong {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.15rem; color: var(--color-deep-green); line-height: 1.3;
}
.gallery__card figcaption span {
  font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.6; max-width: 42ch;
}

/* ═══════════════════════════════════════════
   WORK IN MOTION
═══════════════════════════════════════════ */
#motion { background: var(--color-bg-alt); }
.motion__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.motion__card { display: flex; flex-direction: column; gap: 14px; }
.motion__frame {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); background: var(--color-charcoal);
  max-width: 320px; width: 100%; margin: 0 auto;
}
.motion__frame video {
  width: 100%; aspect-ratio: 9 / 16; object-fit: cover; display: block;
  border-radius: var(--radius-md);
}
.motion__card figcaption { display: flex; flex-direction: column; gap: 5px; }
.motion__card figcaption strong {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.05rem; color: var(--color-deep-green); line-height: 1.3;
}
.motion__card figcaption span {
  font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.6; max-width: 100%;
}
/* Swipe arrows — hidden by default, shown only on mobile scroll row */
.motion__viewport { position: relative; }
.motion__nav {
  display: none;
  position: absolute; top: calc(56.9vw + 4px);
  transform: translateY(-50%);
  z-index: 4;
  width: 36px; height: 36px; border-radius: 50%;
  align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-deep-green);
  box-shadow: 0 4px 16px rgba(0, 105, 55, 0.22);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  transition: opacity 0.3s var(--ease-out), background 0.25s var(--ease-out);
}
.motion__nav:hover { background: #fff; }
.motion__nav:active { transform: translateY(-50%) scale(0.92); }
.motion__nav--prev { left: 6px; }
.motion__nav--next { right: 6px; }
.motion__nav.is-disabled { opacity: 0; pointer-events: none; }

/* ═══════════════════════════════════════════
   ABOUT JAMIE
═══════════════════════════════════════════ */
#about { background: var(--color-bg-alt); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 96px; row-gap: 24px;
  align-items: start;
}
.about__bio-top {
  grid-column: 1; grid-row: 1;
  display: flex; flex-direction: column; gap: 20px;
}
.about__bio-rest {
  grid-column: 1; grid-row: 2;
  display: flex; flex-direction: column; gap: 20px;
}
.about__cta { margin-top: 12px; }
.about__bio-top h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.18;
}
.term {
  font: inherit; font-style: italic; color: var(--color-gold);
  padding: 0; border-bottom: 1px dotted var(--color-gold);
  transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.term:hover, .term:focus-visible { color: var(--color-deep-green); border-color: var(--color-deep-green); }
.about__body {
  font-size: clamp(0.95rem, 2vw, 1.04rem);
  color: var(--color-text-muted); line-height: 1.85; max-width: 480px;
}
.about__photos {
  grid-column: 2; grid-row: 1 / 3;
  display: flex; flex-direction: column; gap: 20px;
}
.about__photo { position: relative; }
.about__photo img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top;
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
}
.about__detail { position: relative; }
.about__detail img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
}
.about__detail figcaption {
  margin-top: 10px; font-size: 0.83rem; letter-spacing: 0.01em;
  color: var(--color-text-dim); font-style: italic; font-family: var(--font-display);
}

/* ═══════════════════════════════════════════
   THE CRAFT
═══════════════════════════════════════════ */
#craft { background: var(--color-bg); }
#craft::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: url('images/image8.jpeg') center 35% / cover no-repeat;
  opacity: 0.13;
  pointer-events: none;
}
.craft__inner {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start;
  position: relative; z-index: 1;
}
.craft__header { display: flex; flex-direction: column; gap: 16px; }
.craft__intro {
  font-size: clamp(0.95rem, 2vw, 1.04rem);
  color: var(--color-text-muted); line-height: 1.85;
  margin-top: 4px;
}
.about__craft-sub {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.1rem; color: var(--color-text-muted);
  line-height: 1.5;
}
.craft__steps { display: flex; flex-direction: column; }
.craft__steps li {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 28px 0; border-top: 1px solid var(--color-border);
  align-items: baseline;
}
.craft__steps li:last-child { border-bottom: 1px solid var(--color-border); }
.craft__num {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.3rem; color: var(--color-gold); font-weight: 500;
}
.craft__body h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 8px; }
.craft__body p { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.75; max-width: 400px; }

/* ═══════════════════════════════════════════
   GOOGLE REVIEWS
═══════════════════════════════════════════ */
#reviews { background: var(--color-bg); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.reviews__card {
  display: flex; flex-direction: column; gap: 18px;
  padding: 38px 32px 30px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.reviews__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold-pale);
}
.reviews__mark {
  font-family: var(--font-display); font-style: italic;
  font-size: 3rem; line-height: 1; color: var(--color-gold);
}
.reviews__card blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.12rem; line-height: 1.6; color: var(--color-text); flex-grow: 1;
}
.reviews__card figcaption {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 16px; border-top: 1px solid var(--color-border-soft);
}
.reviews__stars { font-size: 0.85rem; letter-spacing: 0.12em; color: var(--color-gold); }
.reviews__card figcaption strong {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.02rem; color: var(--color-deep-green); line-height: 1.3;
}
.reviews__meta {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-text-dim);
}
.reviews__more { margin-top: 44px; text-align: center; }
.reviews__more a {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  color: var(--color-gold); border-bottom: 2px solid var(--color-gold);
  padding-bottom: 4px;
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.reviews__more a:hover { color: var(--color-deep-green); border-color: var(--color-deep-green); }

/* ═══════════════════════════════════════════
   SHOWCASE IMAGES
═══════════════════════════════════════════ */
#showcase { background: var(--color-bg); }
.showcase__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.showcase__card { display: flex; flex-direction: column; gap: 14px; }
.showcase__frame {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); background: var(--color-bg-alt);
}
.showcase__frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; }
.showcase__card figcaption {
  font-family: var(--font-display); font-style: italic;
  font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.5;
}

/* ═══════════════════════════════════════════
   SERVICE AREAS
═══════════════════════════════════════════ */
#areas { background: var(--color-bg-alt); }
.areas__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 96px; align-items: start; }
.areas__text { display: flex; flex-direction: column; gap: 20px; }
.areas__text h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); line-height: 1.2; }
.areas__text p { font-size: clamp(0.95rem, 2vw, 1.04rem); color: var(--color-text-muted); line-height: 1.85; max-width: 480px; }
.areas__list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--color-border);
  align-self: stretch;
}
.areas__list li {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 500;
  color: var(--color-deep-green);
  padding: 18px 6px;
  border-bottom: 1px solid var(--color-border);
}
.areas__list li:nth-child(odd)  { border-right: 1px solid var(--color-border); padding-left: 0; }
.areas__list li:nth-child(even) { padding-left: 24px; }

/* ═══════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════ */
#contact { background: var(--color-deep-green); overflow: hidden; }
#contact::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 18% 25%, rgba(57, 180, 74, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(147, 167, 153, 0.12) 0%, transparent 55%);
  pointer-events: none;
}
.finalcta {
  position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.finalcta h2 {
  font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.2;
  color: var(--color-on-dark);
}
.finalcta p {
  font-size: clamp(0.98rem, 2vw, 1.1rem); color: var(--color-on-dark-mut);
  line-height: 1.75; max-width: 460px;
}
.finalcta .btn { margin-top: 8px; }
.finalcta__hint {
  font-size: 0.78rem; letter-spacing: 0.06em; line-height: 1.5;
  color: var(--color-on-dark-mut); font-style: italic; font-family: var(--font-display);
}
.finalcta__phone {
  font-size: 0.98rem; line-height: 1.6; color: var(--color-on-dark);
  margin-top: 2px;
}
.finalcta__phone a {
  color: var(--color-gold); font-weight: 500;
  border-bottom: 1px solid var(--color-gold);
  transition: opacity 0.3s var(--ease-out);
}
.finalcta__phone a:hover { opacity: 0.78; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { background: var(--color-bg-alt); padding: 64px 0 40px; }
.footer__inner {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
}
.footer__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--color-deep-green);
}
.footer__brand em { font-style: normal; color: var(--color-gold); font-weight: 500; }
.footer__tagline { font-size: 0.86rem; color: var(--color-text-muted); max-width: 440px; line-height: 1.7; }
.footer__links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 16px;
  margin-top: 4px;
}
.footer__links a {
  font-size: 0.8rem; letter-spacing: 0.04em; color: var(--color-text-muted);
  transition: color 0.3s var(--ease-out);
}
.footer__links a:hover { color: var(--color-gold); }
.footer__contact {
  font-size: 0.84rem; letter-spacing: 0.04em; color: var(--color-deep-green);
  font-weight: 500; padding: 4px 2px; border-bottom: 1px solid var(--color-gold);
  transition: color 0.3s var(--ease-out);
}
.footer__contact:hover { color: var(--color-gold); }
.footer__social {
  display: flex; justify-content: center; gap: 16px;
  margin-bottom: 10px;
}
.footer__social-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 1.25rem; font-weight: 500; letter-spacing: 0.02em;
  color: var(--color-deep-green);
  border-bottom: 1px solid var(--color-gold-pale);
  padding-bottom: 4px;
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.footer__social-link:hover { color: var(--color-gold); border-color: var(--color-gold); }
.footer__copy { font-size: 0.74rem; color: var(--color-text-dim); margin-top: 4px; }
.footer__built {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.74rem; color: var(--color-text-dim); margin-top: 2px;
}

/* ═══════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════ */
.gallery__frame, .showcase__frame { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(10, 10, 10, 0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease;
  cursor: zoom-out;
}
.lightbox.is-open { opacity: 1; pointer-events: all; }
.lightbox__img {
  max-width: 90vw; max-height: 86vh;
  object-fit: contain; border-radius: 3px;
  cursor: default;
}
.lightbox__close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.22); }

/* ═══════════════════════════════════════════
   GARDEN GLOSSARY DRAWER
═══════════════════════════════════════════ */
.glossary {
  position: fixed; inset: 0; z-index: 600;
  visibility: hidden; pointer-events: none;
}
.glossary.is-open { visibility: visible; pointer-events: all; }
.glossary__backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 105, 55, 0.45);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.4s var(--ease-out);
}
.glossary.is-open .glossary__backdrop { opacity: 1; }
.glossary__panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(440px, 92vw);
  background: var(--color-bg);
  padding: 70px 36px 48px;
  box-shadow: -16px 0 56px rgba(42, 40, 35, 0.22);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
  overflow-y: auto;
}
.glossary.is-open .glossary__panel { transform: translateX(0); }
.glossary__close {
  position: absolute; top: 20px; right: 20px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-deep-green); border-radius: var(--radius-sm);
  transition: background 0.25s var(--ease-out);
}
.glossary__close:hover { background: rgba(0, 105, 55, 0.08); }
.glossary__entry { display: none; flex-direction: column; gap: 16px; }
.glossary__entry.is-active { display: flex; }
.glossary__entry h3 {
  font-size: clamp(1.7rem, 4vw, 2.2rem); font-style: italic; line-height: 1.15;
}
.glossary__entry p {
  font-size: 1rem; line-height: 1.85; color: var(--color-text-muted);
}
@media (max-width: 600px) {
  .glossary__panel { padding: 64px 26px 40px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 960px)
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  section { padding: 84px 0; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta    { display: none; }

  /* Intro */
  .intro__inner { grid-template-columns: 1fr; gap: 44px; }
  .intro__image { max-width: 460px; }

  /* Gallery stays 2-col (already 2-col) */
  .gallery__grid { gap: 28px 24px; }

  /* Motion — 2-col at tablet */
  .motion__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }

  /* About */
  .about__inner { display: flex; flex-direction: column; gap: 40px; }
  .about__body { max-width: 100%; }

  /* Reviews */
  .reviews__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .reviews__card:last-child { grid-column: 1 / -1; max-width: 100%; }

  /* Showcase */
  .showcase__grid { grid-template-columns: 1fr; }

  /* Areas */
  .areas__inner { grid-template-columns: 1fr; gap: 44px; }
  .areas__list { max-width: 460px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  body { line-height: 1.6; }
  section:not(#hero) { padding: 56px 0; }
  .container { padding: 0 20px; }

  /* Nav */
  .nav__inner { height: 72px; padding: 0 20px; }
  .nav__logo-img { height: 38px; }

  /* Curtain — single full-screen panel rises bottom-to-top */
  .curtain__panel--left,
  .curtain__panel--right,
  .curtain__seam { display: none; }
  .curtain__panel--mobile { display: block; }

  /* Hero — must fill full screen, no override of min-height */
  #hero { min-height: 100dvh; padding: 100px 0 64px; }
  .hero__scrim {
    background:
      radial-gradient(ellipse 130% 100% at 50% 50%, rgba(247, 242, 233, 0.52) 0%, rgba(247, 242, 233, 0.32) 40%, rgba(247, 242, 233, 0.1) 75%, transparent 100%),
      linear-gradient(0deg, rgba(247, 242, 233, 0.28) 0%, rgba(247, 242, 233, 0.1) 55%, rgba(247, 242, 233, 0.22) 100%);
  }
  .hero__content { gap: 14px; max-width: 100%; }
  .hero__trust { font-size: 0.68rem; letter-spacing: 0.12em; }
  .hero__headline { font-size: clamp(2rem, 9vw, 2.8rem); line-height: 1.12; }
  .hero__sub { font-size: 0.94rem; max-width: 100%; }
  .hero__ctas { flex-direction: column; gap: 10px; width: 100%; margin-top: 6px; }
  .hero__ctas .btn { width: 100%; }

  /* Section headers */
  .section-header { margin-bottom: 28px; }
  .section-header h2 { font-size: clamp(1.5rem, 7vw, 1.9rem); margin-bottom: 10px; }
  .section-sub { font-size: 0.88rem; line-height: 1.65; }
  .kicker { font-size: 0.66rem; margin-bottom: 12px; gap: 8px; }
  .kicker::before { width: 20px; }

  /* Intro */
  .intro__lead { font-size: 1.35rem; }
  .intro__body { font-size: 0.92rem; }
  .intro__image { max-width: 100%; }
  .intro__image img { aspect-ratio: 4 / 3; }

  /* Gallery — compact 2-col (already 2-col desktop), captions trimmed to title */
  .gallery__grid { gap: 16px 12px; }
  .gallery__card { gap: 8px; }
  .gallery__card figcaption strong { font-size: 0.82rem; line-height: 1.35; }
  .gallery__card figcaption span { display: none; }

  /* Motion — horizontal scroll-snap on mobile */
  .motion__grid {
    display: flex; gap: 14px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    margin: 0 -20px; padding: 4px 20px 14px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .motion__grid::-webkit-scrollbar { display: none; }
  .motion__card {
    flex: 0 0 64vw; max-width: 64vw;
    scroll-snap-align: start;
  }
  .motion__frame { max-width: 100%; margin: 0; }
  .motion__card figcaption strong { font-size: 0.92rem; }
  .motion__card figcaption span { max-width: 100%; }
  .motion__nav { display: flex; }

  /* About — photo after first paragraph on mobile */
  .about__inner { display: flex; flex-direction: column; gap: 28px; }
  .about__bio-top h2 { font-size: clamp(1.5rem, 7vw, 1.9rem); }
  .about__body { font-size: 0.92rem; }
  .about__photo img { aspect-ratio: 3 / 4; }

  /* Craft */
  .craft__inner { display: flex; flex-direction: column; gap: 36px; }
  .about__craft-sub { font-size: 0.94rem; }
  .craft__steps li { grid-template-columns: 40px 1fr; gap: 14px; padding: 20px 0; }
  .craft__num { font-size: 1.05rem; }
  .craft__body h3 { font-size: 1rem; margin-bottom: 5px; }
  .craft__body p { font-size: 0.85rem; line-height: 1.65; }

  /* Reviews — horizontal scroll-snap row, one card height on screen */
  .reviews__grid {
    display: flex; gap: 14px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    margin: 0 -20px; padding: 4px 20px 14px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .reviews__grid::-webkit-scrollbar { display: none; }
  .reviews__card,
  .reviews__card:last-child {
    flex: 0 0 84vw; max-width: 84vw;
    scroll-snap-align: start;
    padding: 26px 22px 22px; gap: 14px;
  }
  .reviews__mark { font-size: 2.4rem; }
  .reviews__card blockquote { font-size: 1rem; }
  .reviews__more { margin-top: 22px; }

  /* Areas */
  .areas__text h2 { font-size: clamp(1.5rem, 7vw, 1.9rem); }
  .areas__text p { font-size: 0.92rem; }
  .areas__list li { font-size: 1rem; padding: 14px 6px; }
  .areas__list li:nth-child(even) { padding-left: 18px; }

  /* Final CTA */
  .finalcta { gap: 14px; }
  .finalcta h2 { font-size: clamp(1.6rem, 8vw, 2.1rem); }
  .finalcta p { font-size: 0.92rem; }
  .finalcta .btn { width: 100%; }

  /* Footer */
  .footer { padding: 48px 0 32px; }
  .footer__brand { font-size: 1.02rem; }
  .footer__tagline { font-size: 0.82rem; }
  .footer__links { gap: 4px 12px; }
  .footer__links a { font-size: 0.75rem; }
}

/* ═══════════════════════════════════════════
   SMALL PHONES (≤ 380px)
═══════════════════════════════════════════ */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero__headline { font-size: 1.85rem; }
  /* Areas: single column */
  .areas__list { grid-template-columns: 1fr; }
  .areas__list li:nth-child(odd) { border-right: none; }
  .areas__list li:nth-child(even) { padding-left: 6px; }
}

/* ═══════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .curtain { display: none; }
  .hero__img { transform: scale(1); }
}
