@charset "UTF-8";
/* LaShesta Turner
   Fonts: Pinyon Script, Cormorant Garamond, Jost */

:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.25rem, 1rem + 0.9vw, 1.625rem);
  --text-xl: clamp(1.6rem, 1.2rem + 1.6vw, 2.5rem);
  --text-2xl: clamp(2.2rem, 1.3rem + 3vw, 4rem);
  --text-3xl: clamp(2.8rem, 1rem + 5vw, 6rem);
  --text-hero: clamp(3rem, 0.6rem + 7vw, 7.5rem);

  /* 4px spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Fonts */
  --font-script: 'Pinyon Script', 'Brush Script MT', cursive;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --font-logo: 'Century Gothic', 'Questrial', 'URW Gothic', 'Futura', 'Avant Garde', 'Jost', sans-serif;

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  --transition-interactive: 240ms cubic-bezier(0.16, 1, 0.3, 1);
  --content-default: 1200px;
  --content-narrow: 760px;
}

/* ---- DARK (default) ---- */
:root,
[data-theme='dark'] {
  --color-bg: #0a0a0b;
  --color-surface: #101012;
  --color-surface-2: #151518;
  --color-surface-offset: #1b1b1f;
  --color-surface-offset-2: #222227;
  --color-divider: #1d1d21;
  --color-border: #26262b;
  --color-border-strong: #383840;

  --color-text: #f4f0e8;
  --color-text-muted: #a8a299;
  --color-text-faint: #6a655d;
  --color-text-inverse: #0a0a0b;

  --color-gold: #c9a96a;
  --color-gold-bright: #e4c887;
  --color-gold-hover: #d6b878;
  --color-gold-soft: rgba(201, 169, 106, 0.12);
  --color-gold-line: rgba(201, 169, 106, 0.32);
  --color-gold-glow: rgba(201, 169, 106, 0.22);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.6);
}

/* ---- LIGHT (toggle) ---- */
[data-theme='light'] {
  --color-bg: #f6f2ea;
  --color-surface: #fffdf8;
  --color-surface-2: #f2ede2;
  --color-surface-offset: #ece6da;
  --color-surface-offset-2: #e3dccb;
  --color-divider: #e6e0d3;
  --color-border: #ddd5c4;
  --color-border-strong: #c4baa3;

  --color-text: #1b1813;
  --color-text-muted: #5d564c;
  --color-text-faint: #8a8275;
  --color-text-inverse: #fffdf8;

  --color-gold: #9a7b3e;
  --color-gold-bright: #ab8a47;
  --color-gold-hover: #856a30;
  --color-gold-soft: rgba(154, 123, 62, 0.1);
  --color-gold-line: rgba(154, 123, 62, 0.35);
  --color-gold-glow: rgba(154, 123, 62, 0.18);

  --shadow-sm: 0 1px 2px rgba(27, 24, 19, 0.08);
  --shadow-md: 0 10px 30px rgba(27, 24, 19, 0.1);
  --shadow-lg: 0 30px 70px rgba(27, 24, 19, 0.14);
}

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

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-20);
  hanging-punctuation: first last;
}

body {
  min-height: 100dvh;
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  text-wrap: balance;
  line-height: 1.05;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
}
p, li, figcaption { text-wrap: pretty; max-width: 70ch; }

::selection { background: var(--color-gold); color: var(--color-text-inverse); }
:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; border-radius: var(--radius-sm); }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; transition: color var(--transition-interactive); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Cursive accent utility */
.script { font-family: var(--font-script); font-weight: 400; letter-spacing: 0; color: var(--color-gold); }

/* =========================================================
   Layout helpers
   ========================================================= */
.container { width: 100%; max-width: var(--content-default); margin-inline: auto; padding-inline: var(--space-6); }
.section { padding-block: clamp(var(--space-16), 8vw, var(--space-32)); position: relative; }
.section--tight { padding-block: clamp(var(--space-12), 5vw, var(--space-24)); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-3);
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-gold);
  margin-bottom: var(--space-5);
}
.eyebrow::before { content: ''; width: 2.5rem; height: 1px; background: var(--color-gold-line); }

.section-title {
  font-size: var(--text-2xl);
  max-width: 20ch;
  font-weight: 500;
}
.section-title .script { display: inline; font-size: 1.12em; line-height: 0.8; margin-left: 0.06em; }

.section-lede { color: var(--color-text-muted); font-size: var(--text-base); max-width: 50ch; margin-top: var(--space-5); font-weight: 300; }
.section-head { margin-bottom: var(--space-14); }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-8); flex-wrap: wrap; }
.section-head--row .section-lede { margin-top: 0; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  line-height: 1; min-height: 3.25rem;
  padding: var(--space-4) var(--space-8); border-radius: var(--radius-full);
  border: 1px solid transparent;
  position: relative; overflow: hidden; isolation: isolate;
  text-indent: 0.12em; /* re-centre against trailing letter-spacing */
  transition: background var(--transition-interactive), color var(--transition-interactive), border-color var(--transition-interactive), transform var(--transition-interactive), box-shadow var(--transition-interactive);
  white-space: nowrap; flex-shrink: 0;
}
.btn > * { position: relative; z-index: 1; }
/* shine sweep */
.btn::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-18deg); opacity: 0; pointer-events: none; z-index: 0;
}
.btn:hover::after { animation: btn-sheen 900ms cubic-bezier(0.16,1,0.3,1) forwards; }
@keyframes btn-sheen {
  0%   { left: -60%; opacity: 0; }
  18%  { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--color-gold); color: var(--color-text-inverse); }
.btn--primary:hover { background: var(--color-gold-hover); transform: translateY(-2px); box-shadow: 0 12px 32px -8px rgba(201,169,106,0.55); }

.btn--ghost { background: transparent; color: var(--color-text); border-color: var(--color-border-strong); }
.btn--ghost:hover { border-color: var(--color-gold); color: var(--color-gold); transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(201,169,106,0.35); }

.btn--block { width: 100%; }
.btn .arrow { transition: transform var(--transition-interactive); }
.btn:hover .arrow { transform: translateX(4px); }

/* =========================================================
   Header / Nav
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in oklab, var(--color-bg) 80%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--color-divider);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.header--hidden { transform: translateY(-100%); }
.header--scrolled { box-shadow: var(--shadow-sm); }

.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); padding-block: var(--space-5); }

.brand { display: flex; align-items: center; gap: var(--space-3); }
.brand__mark { width: 38px; height: auto; flex-shrink: 0; display: block; }
.brand__name { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500; letter-spacing: 0.03em; line-height: 1.05; color: var(--color-text); white-space: nowrap; }
.brand__name .dot { color: var(--color-gold); }

.nav__links { display: flex; align-items: center; gap: var(--space-2); }
.nav__link {
  font-size: var(--text-xs); font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-text-muted); padding: var(--space-2) var(--space-4);
  transition: color var(--transition-interactive);
}
.nav__link:hover { color: var(--color-text); }
.nav__link.is-active { color: var(--color-gold); }

.nav__actions { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }

.theme-toggle {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: var(--radius-full); border: 1px solid var(--color-border-strong); color: var(--color-text-muted);
  transition: color var(--transition-interactive), border-color var(--transition-interactive);
}
.theme-toggle:hover { color: var(--color-gold); border-color: var(--color-gold); }

.nav__cta { display: inline-flex; }
.nav__burger { display: none; width: 44px; height: 44px; place-items: center; border: 1px solid var(--color-border-strong); border-radius: var(--radius-full); color: var(--color-text); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: var(--color-bg);
  display: flex; flex-direction: column; padding: var(--space-12) var(--space-6);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  min-height: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease, visibility 0s linear 0.45s;
}
.mobile-menu > * { flex-shrink: 0; }
.mobile-menu.is-open {
  transform: translateY(0); visibility: visible; opacity: 1; pointer-events: auto;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease, visibility 0s;
}
.mobile-menu__close { align-self: flex-end; width: 44px; height: 44px; place-items: center; border: 1px solid var(--color-border-strong); border-radius: var(--radius-full); }
.mobile-menu__links { display: flex; flex-direction: column; gap: var(--space-1); margin-top: var(--space-8); }
.mobile-menu__links a {
  font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 500;
  padding: var(--space-3) 0; border-bottom: 1px solid var(--color-divider); color: var(--color-text);
}
.mobile-menu__links a:hover { color: var(--color-gold); }

@media (max-width: 1080px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: grid; }
}

/* =========================================================
   HERO - split layout with real headshot
   ========================================================= */
.hero { position: relative; min-height: 92dvh; display: flex; align-items: center; overflow: hidden; isolation: isolate; padding-top: var(--space-20); }
.hero__bg { position: absolute; inset: 0; z-index: -2; background: radial-gradient(ellipse at 72% 38%, rgba(201,169,106,0.07) 0%, transparent 55%), var(--color-bg); }
.hero__grain {
  position: absolute; inset: 0; z-index: -1; opacity: 0.04; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(var(--space-10), 6vw, var(--space-20)); align-items: center; width: 100%; padding-block: var(--space-20); }
.hero__text { max-width: 34rem; }
.hero__title { font-size: var(--text-hero); line-height: 0.9; max-width: 13ch; }
.hero__title .script { font-size: 1.18em; line-height: 0.75; display: block; }
.hero__meta { display: flex; flex-wrap: wrap; gap: var(--space-6) var(--space-10); margin-top: var(--space-8); align-items: center; }
.hero__meta p { color: var(--color-text-muted); font-size: var(--text-base); max-width: 50ch; font-weight: 300; }
.hero__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.hero__portrait { position: relative; justify-self: center; }
.hero__portrait img { width: 100%; max-width: 400px; aspect-ratio: 4/5; object-fit: cover; object-position: center 20%; border-radius: var(--radius-lg); box-shadow: 0 24px 64px rgba(0,0,0,0.55); }
.hero__portrait::before { content: ''; position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px; border: 1px solid rgba(201,169,106,0.18); border-radius: calc(var(--radius-lg) + 10px); pointer-events: none; }
.hero__portrait::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); box-shadow: inset 0 0 0 1px rgba(201,169,106,0.22); pointer-events: none; }
.hero__scroll {
  position: absolute; bottom: var(--space-6); right: var(--space-6);
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-text-faint);
  writing-mode: vertical-rl;
}
.hero__scroll::after { content: ''; width: 1px; height: 48px; background: linear-gradient(var(--color-gold), transparent); }
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .hero__portrait { order: -1; max-width: 260px; }
  .hero__portrait img { max-width: 260px; }
  .hero__scroll { display: none; }
}

/* Marquee */
.marquee { border-block: 1px solid var(--color-divider); background: var(--color-surface); overflow: hidden; padding-block: var(--space-5); }
.marquee__track { display: flex; gap: var(--space-10); white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: var(--space-10); font-family: var(--font-body); font-style: normal; font-size: var(--text-sm); letter-spacing: 0.08em; color: var(--color-text-muted); }
.marquee__item .star { color: var(--color-gold); font-size: 0.7em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   PHOTOGRAPHY GALLERY
   ========================================================= */
.gallery { background: var(--color-bg); }

.filters { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-10); }
.filter-btn {
  font-size: var(--text-xs); font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  padding: var(--space-3) var(--space-5); border-radius: var(--radius-full);
  border: 1px solid var(--color-border-strong); color: var(--color-text-muted);
  transition: all var(--transition-interactive);
}
.filter-btn:hover { color: var(--color-text); border-color: var(--color-text-faint); }
.filter-btn.is-active { background: var(--color-gold); color: var(--color-text-inverse); border-color: var(--color-gold); }

.gallery__grid { columns: 3 320px; column-gap: var(--space-4); }
.shot { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--color-surface); cursor: pointer; border: 1px solid var(--color-divider); display: inline-block; width: 100%; break-inside: avoid; margin-bottom: var(--space-4); }
.shot img { width: 100%; height: auto; display: block; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.shot:hover img { transform: scale(1.04); }

.shot__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--space-6); background: linear-gradient(180deg, transparent 38%, rgba(10,10,11,0.9) 100%);
  opacity: 0; transition: opacity var(--transition-interactive);
}
.shot:hover .shot__overlay, .shot:focus-within .shot__overlay { opacity: 1; }
.shot__cat { font-size: var(--text-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-gold); }
.shot__title { font-family: var(--font-display); font-size: var(--text-lg); color: #fff; margin-top: var(--space-1); font-weight: 500; }
.shot__book { margin-top: var(--space-4); align-self: flex-start; font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-gold); display: inline-flex; align-items: center; gap: var(--space-2); border-bottom: 1px solid var(--color-gold-line); padding-bottom: 2px; }

@media (max-width: 820px) {
  .gallery__grid { columns: 2 260px; }
}
@media (max-width: 520px) {
  .gallery__grid { columns: 1; }
}

/* =========================================================
   DAY TRADING - 1House.TV packages
   ========================================================= */
.trading { background: var(--color-surface); border-block: 1px solid var(--color-divider); }
.trading__layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: var(--space-12); align-items: center; }
@media (max-width: 880px) { .trading__layout { grid-template-columns: 1fr; gap: var(--space-10); } }

.trading__visual { position: relative; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--color-border); aspect-ratio: 4 / 3; }
.trading__visual img { width: 100%; height: 100%; object-fit: cover; }
.trading__visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,0.05), rgba(10,10,11,0.45)); }
.trading__badge {
  position: absolute; top: var(--space-5); left: var(--space-5); z-index: 2;
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: rgba(10,10,11,0.65); backdrop-filter: blur(8px); border: 1px solid var(--color-gold-line);
  border-radius: var(--radius-full); padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-gold);
}

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); margin-top: var(--space-10); }
@media (max-width: 880px) { .pkg-grid { grid-template-columns: 1fr; } }
.pkg {
  position: relative; display: flex; flex-direction: column; padding: var(--space-8);
  border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-surface-2);
  transition: border-color var(--transition-interactive), transform var(--transition-interactive);
}
.pkg:hover { border-color: var(--color-gold); transform: translateY(-4px); }
.pkg--featured { border-color: var(--color-gold-line); background: linear-gradient(180deg, var(--color-gold-soft), var(--color-surface-2)); }
.pkg__tag { position: absolute; top: var(--space-4); right: var(--space-5); font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-gold); }
.pkg__name { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; }
.pkg__price { font-family: var(--font-display); font-size: var(--text-xl); color: var(--color-text); margin-top: var(--space-1); }
.pkg__price .per { font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-faint); margin-left: var(--space-1); }
.pkg__features { list-style: none; margin: var(--space-5) 0 var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); }
.pkg__features li { font-size: var(--text-sm); color: var(--color-text-muted); display: flex; gap: var(--space-3); align-items: flex-start; }
.pkg__features li::before { content: '\2726'; color: var(--color-gold); font-size: 0.85em; margin-top: 0.15em; flex-shrink: 0; }
.pkg__btn { margin-top: auto; }

.trading__note { font-size: var(--text-xs); color: var(--color-text-faint); margin-top: var(--space-5); text-align: center; }

/* =========================================================
   GARDENING
   ========================================================= */
.garden { background: var(--color-bg); }
.garden__layout { display: grid; grid-template-columns: 5fr 6fr; gap: var(--space-12); align-items: center; }
@media (max-width: 880px) { .garden__layout { grid-template-columns: 1fr; gap: var(--space-10); } }
.garden__media { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid var(--color-border); }
.garden__media img { width: 100%; height: 100%; object-fit: cover; }
.garden__chip {
  position: absolute; bottom: var(--space-5); left: var(--space-5);
  background: rgba(10,10,11,0.65); backdrop-filter: blur(8px); border: 1px solid var(--color-gold-line);
  border-radius: var(--radius-full); padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-gold);
}
.season-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); margin-top: var(--space-6); }
.season { padding: var(--space-5); border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-surface); }
.season__name { font-family: var(--font-display); font-style: italic; font-size: var(--text-base); color: var(--color-gold); }
.season__crop { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: var(--space-1); }

/* =========================================================
   BRANDING / WEBSITES
   ========================================================= */
.branding { background: var(--color-surface); border-block: 1px solid var(--color-divider); }
.branding__layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(var(--space-10), 5vw, var(--space-16)); align-items: start; }
.branding__visual { position: relative; }
.branding__visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 30%; border-radius: var(--radius-lg); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.branding__visual::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); box-shadow: inset 0 0 0 1px rgba(201,169,106,0.2); pointer-events: none; }
.branding__chip { position: absolute; bottom: var(--space-5); left: var(--space-5); background: rgba(10,10,11,0.85); border: 1px solid rgba(201,169,106,0.3); padding: var(--space-2) var(--space-4); border-radius: var(--radius-full); font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-gold); }
@media (max-width: 860px) { .branding__layout { grid-template-columns: 1fr; } .branding__visual { max-width: 340px; } }
.brand-list { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-8); }
.brand-service {
  display: flex; align-items: center; gap: var(--space-5); padding: var(--space-6) var(--space-7);
  border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-surface-2);
  transition: border-color var(--transition-interactive), transform var(--transition-interactive);
}
.brand-service:hover { border-color: var(--color-gold); transform: translateX(6px); }
.brand-service__num { font-family: var(--font-script); font-size: var(--text-2xl); color: var(--color-gold); line-height: 1; min-width: 2ch; }
.brand-service__title { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; }
.brand-service__desc { font-size: var(--text-sm); color: var(--color-text-muted); }
.brand-service__cta { margin-left: auto; font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-gold); white-space: nowrap; }

@media (max-width: 640px) {
  .brand-service { flex-wrap: wrap; }
  .brand-service__cta { margin-left: 0; margin-top: var(--space-2); }
}

/* =========================================================
   CONTENT CREATOR (Blog + Social combined)
   ========================================================= */
.creator { background: var(--color-bg); }
.creator__grid { display: grid; grid-template-columns: 2fr 1fr; gap: var(--space-12); align-items: start; }
@media (max-width: 920px) { .creator__grid { grid-template-columns: 1fr; gap: var(--space-10); } }

.blog__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
@media (max-width: 640px) { .blog__grid { grid-template-columns: 1fr; } }

.post-card { display: flex; flex-direction: column; border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; background: var(--color-surface); transition: border-color var(--transition-interactive), transform var(--transition-interactive); }
.post-card:hover { border-color: var(--color-gold); transform: translateY(-4px); }
.post-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__body { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-2); flex: 1; }
.post-card__meta { display: flex; gap: var(--space-3); font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-faint); }
.post-card__meta .cat { color: var(--color-gold); }
.post-card__title { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; line-height: 1.2; }
.post-card__excerpt { font-size: var(--text-sm); color: var(--color-text-muted); flex: 1; }
.post-card__read { margin-top: var(--space-2); font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-gold); display: inline-flex; align-items: center; gap: var(--space-2); }

/* Social rail */
.social-rail { position: sticky; top: 7rem; display: flex; flex-direction: column; gap: var(--space-4); }
.social-card { border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; background: var(--color-surface); transition: border-color var(--transition-interactive); }
.social-card:hover { border-color: var(--color-gold); }
.social-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.social-card__media img { width: 100%; height: 100%; object-fit: cover; }
.social-card__body { padding: var(--space-4) var(--space-5); }
.social-card__head { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-2); }
.social-card__avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--color-gold-soft); border: 1px solid var(--color-gold-line); display: grid; place-items: center; color: var(--color-gold); font-family: var(--font-script); font-size: var(--text-base); }
.social-card__handle { font-size: var(--text-sm); font-weight: 500; }
.social-card__platform { font-size: var(--text-xs); color: var(--color-text-faint); }
.social-card__caption { font-size: var(--text-sm); color: var(--color-text-muted); }
.social-card__stats { display: flex; gap: var(--space-4); font-size: var(--text-xs); color: var(--color-text-faint); margin-top: var(--space-2); }

.social__handles { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-6); }
.social-handle { display: inline-flex; align-items: center; gap: var(--space-2); padding: var(--space-2) var(--space-4); border: 1px solid var(--color-border-strong); border-radius: var(--radius-full); font-size: var(--text-xs); letter-spacing: 0.08em; transition: all var(--transition-interactive); }
.social-handle:hover { border-color: var(--color-gold); color: var(--color-gold); }

/* =========================================================
   BOOKING CTA BANNER
   ========================================================= */
.book-cta {
  position: relative; overflow: hidden; text-align: center;
  background:
    radial-gradient(110% 110% at 50% 0%, var(--color-gold-soft), transparent 55%),
    var(--color-surface);
  border: 1px solid var(--color-gold-line); border-radius: var(--radius-xl);
  padding: clamp(var(--space-12), 6vw, var(--space-24));
}
.book-cta__script { font-family: var(--font-script); font-size: var(--text-2xl); color: var(--color-gold); display: block; line-height: 0.6; margin-bottom: var(--space-2); }
.book-cta__title { font-size: var(--text-3xl); max-width: 18ch; margin-inline: auto; }
.book-cta p { color: var(--color-text-muted); margin-inline: auto; margin-top: var(--space-5); }
.book-cta__actions { display: flex; gap: var(--space-3); justify-content: center; margin-top: var(--space-10); flex-wrap: wrap; }

/* =========================================================
   BOOKING MODAL
   ========================================================= */
.booking-overlay {
  position: fixed; inset: 0; z-index: 300; background: rgba(6,6,7,0.72); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: var(--space-4);
  opacity: 0; visibility: hidden; transition: opacity var(--transition-interactive), visibility var(--transition-interactive);
}
.booking-overlay.is-open { opacity: 1; visibility: visible; }
.booking {
  width: 100%; max-width: 560px; max-height: 92dvh; overflow-y: auto;
  background: var(--color-surface); border: 1px solid var(--color-border-strong); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); transform: translateY(18px) scale(0.98); transition: transform var(--transition-interactive);
}
.booking-overlay.is-open .booking { transform: translateY(0) scale(1); }
.booking__head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-4); padding: var(--space-8) var(--space-8) var(--space-5); border-bottom: 1px solid var(--color-divider); }
.booking__head h3 { font-size: var(--text-xl); }
.booking__head .script { color: var(--color-gold); }
.booking__head p { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: var(--space-1); }
.booking__close { width: 40px; height: 40px; flex-shrink: 0; display: grid; place-items: center; border: 1px solid var(--color-border-strong); border-radius: var(--radius-full); color: var(--color-text-muted); }
.booking__close:hover { color: var(--color-gold); border-color: var(--color-gold); }
.booking__body { padding: var(--space-8); }

.field { margin-bottom: var(--space-4); }
.field__label { display: block; font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: var(--space-2); }
.field__input, .field__select, .field__textarea {
  width: 100%; padding: var(--space-3) var(--space-4); background: var(--color-surface-2);
  border: 1px solid var(--color-border-strong); border-radius: var(--radius-md); color: var(--color-text);
  font-size: var(--text-sm); font-family: var(--font-body); transition: border-color var(--transition-interactive);
}
.field__input:focus, .field__select:focus, .field__textarea:focus { outline: none; border-color: var(--color-gold); box-shadow: 0 0 0 3px var(--color-gold-soft); }
.field__textarea { min-height: 84px; resize: vertical; }
.field__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 480px) { .field__row { grid-template-columns: 1fr; } }

.session-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-2); }
.session-type { text-align: left; padding: var(--space-4) var(--space-5); border: 1px solid var(--color-border-strong); border-radius: var(--radius-md); background: var(--color-surface-2); transition: all var(--transition-interactive); }
.session-type:hover { border-color: var(--color-text-faint); }
.session-type.is-selected { border-color: var(--color-gold); background: var(--color-gold-soft); }
.session-type__name { font-family: var(--font-display); font-weight: 600; font-size: var(--text-base); }
.session-type__price { font-size: var(--text-xs); color: var(--color-gold); margin-top: var(--space-1); letter-spacing: 0.05em; }

.booking__success { text-align: center; padding: var(--space-14) var(--space-8); }
.booking__success svg { width: 60px; height: 60px; color: var(--color-gold); margin-inline: auto; }
.booking__success h3 { font-size: var(--text-xl); margin-top: var(--space-5); }
.booking__success .script { color: var(--color-gold); display: block; font-size: var(--text-2xl); line-height: 0.6; margin-bottom: var(--space-3); }
.booking__success p { color: var(--color-text-muted); margin-top: var(--space-3); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { border-top: 1px solid var(--color-divider); background: var(--color-surface); padding-block: var(--space-20) var(--space-8); }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-8); margin-bottom: var(--space-14); }
@media (max-width: 700px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 500; letter-spacing: 0.03em; line-height: 1.05; }
.footer__brand .dot { color: var(--color-gold); }
.footer__tag { color: var(--color-text-muted); font-size: var(--text-sm); margin-top: var(--space-5); max-width: 36ch; font-weight: 300; }
.footer__col h4 { font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-faint); margin-bottom: var(--space-4); font-weight: 400; }
.footer__col ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer__col a { font-size: var(--text-sm); color: var(--color-text-muted); }
.footer__col a:hover { color: var(--color-gold); }
.footer__bottom { display: flex; justify-content: space-between; gap: var(--space-4); padding-top: var(--space-6); border-top: 1px solid var(--color-divider); font-size: var(--text-xs); color: var(--color-text-faint); flex-wrap: wrap; }

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

.gallery__grid .reveal:nth-child(1) { transition-delay: 0ms; }
.gallery__grid .reveal:nth-child(2) { transition-delay: 80ms; }
.gallery__grid .reveal:nth-child(3) { transition-delay: 160ms; }
.gallery__grid .reveal:nth-child(4) { transition-delay: 240ms; }
.gallery__grid .reveal:nth-child(5) { transition-delay: 320ms; }
.gallery__grid .reveal:nth-child(6) { transition-delay: 400ms; }

.pkg-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.pkg-grid .reveal:nth-child(2) { transition-delay: 100ms; }
.pkg-grid .reveal:nth-child(3) { transition-delay: 200ms; }

.brand-list .reveal:nth-child(1) { transition-delay: 0ms; }
.brand-list .reveal:nth-child(2) { transition-delay: 100ms; }
.brand-list .reveal:nth-child(3) { transition-delay: 200ms; }

.season-grid .season:nth-child(1) { transition-delay: 0ms; }
.season-grid .season:nth-child(2) { transition-delay: 80ms; }
.season-grid .season:nth-child(3) { transition-delay: 160ms; }
.season-grid .season:nth-child(4) { transition-delay: 240ms; }

/* Motion and hover states */

/* ---- Garden art panel ---- */
.garden__media--art { aspect-ratio: 4 / 3; background: var(--color-bg); }
.garden__art { width: 100%; height: 100%; display: block; }
.garden__art-grow path,
.garden__art-grow ellipse {
  opacity: 0;
  animation: garden-grow 1400ms cubic-bezier(0.16,1,0.3,1) forwards;
}
.garden__art-grow path { stroke-dasharray: 320; stroke-dashoffset: 320; }
.garden__art-grow path:nth-child(1) { animation-delay: 60ms; }
.garden__art-grow path:nth-child(2) { animation-delay: 180ms; }
.garden__art-grow path:nth-child(3) { animation-delay: 260ms; }
.garden__art-grow path:nth-child(4) { animation-delay: 140ms; }
.garden__art-grow path:nth-child(5) { animation-delay: 300ms; }
.garden__art-grow path:nth-child(6) { animation-delay: 360ms; }
.garden__art-grow path:nth-child(7) { animation-delay: 220ms; }
.garden__art-grow path:nth-child(8) { animation-delay: 400ms; }
.garden__art-grow path:nth-child(9) { animation-delay: 320ms; }
.garden__art-grow path:nth-child(10){ animation-delay: 460ms; }
.garden__art-grow ellipse { animation: garden-leaf 900ms cubic-bezier(0.16,1,0.3,1) forwards; animation-delay: 620ms; }
@keyframes garden-grow { to { opacity: 1; stroke-dashoffset: 0; } }
@keyframes garden-leaf { from { opacity: 0; } to { opacity: 1; } }
.garden__art-bloom circle { opacity: 0; animation: garden-leaf 900ms ease forwards; animation-delay: 820ms; }
/* glow on the sun disc */
.garden__media--art::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 55% at 70% 30%, rgba(228,200,135,0.10), transparent 70%);
  animation: garden-breathe 9s ease-in-out infinite;
}
@keyframes garden-breathe { 0%,100% { opacity: 0.55; } 50% { opacity: 1; } }

/* ---- Scroll reveal ---- */
.reveal { transition: opacity 900ms cubic-bezier(0.16,1,0.3,1), transform 900ms cubic-bezier(0.16,1,0.3,1), filter 900ms ease; }
.reveal:not(.is-visible) { filter: blur(6px); }
.reveal.is-visible { filter: blur(0); }

/* ---- Header ---- */
.header { transition: background 400ms ease, backdrop-filter 400ms ease, border-color 400ms ease, padding 400ms ease; }
.header.is-scrolled {
  background: rgba(10,10,11,0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--color-gold-line);
  box-shadow: 0 12px 40px -20px rgba(0,0,0,0.9);
}
[data-theme='light'] .header.is-scrolled { background: rgba(246,242,234,0.78); }

/* scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-bright));
  z-index: 999; pointer-events: none;
  box-shadow: 0 0 14px var(--color-gold-glow);
}

/* ---- Hero ---- */
.hero__text > *,
.hero__portrait { opacity: 0; animation: hero-rise 1200ms cubic-bezier(0.16,1,0.3,1) forwards; }
.hero__text .eyebrow    { animation-delay: 120ms; }
.hero__text .hero__title{ animation-delay: 260ms; }
.hero__text .hero__meta { animation-delay: 420ms; }
.hero__portrait         { animation-delay: 340ms; }
@keyframes hero-rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

/* slow zoom on the portrait */
.hero__portrait img { animation: kenburns 22s ease-in-out infinite alternate; will-change: transform; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }

/* gold wash behind the hero */
.hero__bg::after {
  content: ''; position: absolute; inset: -20%;
  background: radial-gradient(45% 40% at 30% 25%, var(--color-gold-glow), transparent 70%);
  animation: hero-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes hero-drift {
  from { transform: translate3d(-3%, -2%, 0) scale(1); }
  to   { transform: translate3d(4%, 3%, 0) scale(1.12); }
}

/* scroll cue */
.hero__scroll { position: relative; }
.hero__scroll::after {
  content: ''; position: absolute; left: 50%; bottom: -34px; width: 1px; height: 28px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
  animation: scroll-cue 2.2s ease-in-out infinite;
}
@keyframes scroll-cue { 0%,100% { opacity: 0.2; transform: scaleY(0.5); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---- Section headings ---- */
.eyebrow { display: inline-flex; align-items: center; gap: var(--space-3); }
.eyebrow::after {
  content: ''; height: 1px; width: 0; background: var(--color-gold-line);
  transition: width 900ms cubic-bezier(0.16,1,0.3,1) 200ms;
}
.reveal.is-visible .eyebrow::after,
.is-visible .eyebrow::after { width: 56px; }

/* ---- Gallery ---- */
.shot { transition: border-color 400ms ease, box-shadow 500ms ease, transform 500ms cubic-bezier(0.16,1,0.3,1); }
.shot:hover {
  border-color: var(--color-gold-line);
  box-shadow: 0 28px 70px -30px rgba(0,0,0,0.9), 0 0 0 1px var(--color-gold-soft);
  transform: translateY(-4px);
}
.shot__overlay { transition: opacity 420ms ease; }
.shot__cat, .shot__title, .shot__book {
  transform: translateY(12px); opacity: 0;
  transition: transform 520ms cubic-bezier(0.16,1,0.3,1), opacity 420ms ease;
}
.shot:hover .shot__cat,    .shot:focus-within .shot__cat    { transform: none; opacity: 1; transition-delay: 60ms; }
.shot:hover .shot__title,  .shot:focus-within .shot__title  { transform: none; opacity: 1; transition-delay: 120ms; }
.shot:hover .shot__book,   .shot:focus-within .shot__book   { transform: none; opacity: 1; transition-delay: 180ms; }

/* expand glyph */
.shot__expand {
  position: absolute; top: var(--space-4); right: var(--space-4);
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: var(--radius-full); border: 1px solid var(--color-gold-line);
  background: rgba(10,10,11,0.6); backdrop-filter: blur(8px); color: var(--color-gold);
  opacity: 0; transform: scale(0.85); pointer-events: none;
  transition: opacity 380ms ease, transform 380ms cubic-bezier(0.16,1,0.3,1);
  z-index: 2;
}
.shot:hover .shot__expand, .shot:focus-within .shot__expand { opacity: 1; transform: scale(1); }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000; display: none;
  align-items: center; justify-content: center; padding: var(--space-8);
  background: rgba(6,6,7,0.94); backdrop-filter: blur(10px);
  opacity: 0; transition: opacity 320ms ease;
}
.lightbox.is-open { display: flex; }
.lightbox.is-visible { opacity: 1; }
.lightbox__figure { max-width: min(1100px, 92vw); max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: var(--space-4); }
.lightbox__img {
  max-width: 100%; max-height: 76vh; width: auto; height: auto; display: block;
  border-radius: var(--radius-md); box-shadow: 0 40px 120px -30px rgba(0,0,0,0.95);
  transform: scale(0.94); opacity: 0;
  transition: transform 520ms cubic-bezier(0.16,1,0.3,1), opacity 420ms ease;
}
.lightbox.is-visible .lightbox__img { transform: scale(1); opacity: 1; }
.lightbox__caption {
  font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-text);
  text-align: center;
}
.lightbox__caption span {
  display: block; font-family: var(--font-body); font-size: var(--text-xs);
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-gold); margin-bottom: var(--space-1);
}
.lightbox__close, .lightbox__nav {
  position: absolute; display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: var(--radius-full);
  border: 1px solid var(--color-border-strong); background: rgba(10,10,11,0.7);
  color: var(--color-text); transition: all var(--transition-interactive);
}
.lightbox__close:hover, .lightbox__nav:hover { border-color: var(--color-gold); color: var(--color-gold); }
.lightbox__close { top: var(--space-6); right: var(--space-6); }
.lightbox__nav--prev { left: var(--space-6); top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: var(--space-6); top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lightbox__nav--prev { left: var(--space-3); }
  .lightbox__nav--next { right: var(--space-3); }
}

/* ---- Pricing cards: lift the featured tier ---- */
.pkg { transition: transform 500ms cubic-bezier(0.16,1,0.3,1), border-color 400ms ease, box-shadow 500ms ease; }
.pkg:hover { transform: translateY(-6px); border-color: var(--color-gold-line); box-shadow: 0 30px 70px -34px rgba(0,0,0,0.9); }
.pkg--featured { position: relative; }
.pkg--featured::before {
  content: ''; position: absolute; inset: -1px; border-radius: inherit; pointer-events: none;
  background: linear-gradient(150deg, var(--color-gold-line), transparent 45%, var(--color-gold-line));
  opacity: 0.5; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude; -webkit-mask-composite: xor; padding: 1px;
}
.pkg__price { transition: color 400ms ease; }
.pkg:hover .pkg__price { color: var(--color-gold-bright); }

/* ---- Marquee ---- */
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---- Booking modal ---- */
.booking { transition: transform 520ms cubic-bezier(0.16,1,0.3,1), opacity 360ms ease; }
.booking-overlay:not(.is-open) .booking { transform: translateY(18px) scale(0.97); opacity: 0; }

/* ---- Nav links ---- */
.nav__link { position: relative; }
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--color-gold); transition: width 380ms cubic-bezier(0.16,1,0.3,1);
}
.nav__link:hover::after { width: 100%; }

/* ---- 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:not(.is-visible) { filter: none; opacity: 1; transform: none; }
  .hero__text > *, .hero__portrait { opacity: 1; }
}

/* hero eyebrow sits outside a .reveal wrapper - draw its rule on load */
.hero .eyebrow::after { width: 56px; transition-delay: 500ms; }

/* Process + FAQ */
.container--narrow { max-width: var(--content-narrow); }

/* ---- Process ---- */
.process { border-block: 1px solid var(--color-divider); }
.process__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6);
  margin-top: var(--space-12); list-style: none; padding: 0; counter-reset: none;
}
@media (max-width: 900px) { .process__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process__grid { grid-template-columns: 1fr; } }
.process__step {
  position: relative; padding: var(--space-8) var(--space-6) var(--space-8);
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  background: var(--color-surface);
  transition: transform 500ms cubic-bezier(0.16,1,0.3,1), border-color 400ms ease, box-shadow 500ms ease;
}
.process__step:hover {
  transform: translateY(-6px); border-color: var(--color-gold-line);
  box-shadow: 0 28px 60px -34px rgba(0,0,0,0.9);
}
/* hairline between steps */
.process__step::after {
  content: ''; position: absolute; top: 50%; right: calc(var(--space-6) * -1 - 1px);
  width: var(--space-6); height: 1px; background: var(--color-gold-line); opacity: 0.5;
}
.process__step:last-child::after { display: none; }
@media (max-width: 900px) { .process__step::after { display: none; } }
.process__num {
  display: inline-block; font-family: var(--font-display); font-style: italic;
  font-size: var(--text-xl); color: var(--color-gold); line-height: 1;
}
.process__title {
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: 500;
  color: var(--color-text); margin-top: var(--space-3);
}
.process__desc { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: var(--space-2); line-height: 1.65; }

/* ---- FAQ ---- */
.faq__list { margin-top: var(--space-10); display: flex; flex-direction: column; gap: var(--space-3); }
.faq__item {
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  background: var(--color-surface); overflow: hidden;
  transition: border-color 400ms ease, background 400ms ease;
}
.faq__item[open] { border-color: var(--color-gold-line); background: var(--color-surface-2); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-6); cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: var(--text-base); font-weight: 500;
  color: var(--color-text); transition: color var(--transition-interactive);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--color-gold); }
.faq__icon { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; background: var(--color-gold);
  transition: transform 320ms cubic-bezier(0.16,1,0.3,1), opacity 320ms ease;
}
.faq__icon::before { top: 6px; left: 0; width: 14px; height: 1.5px; }
.faq__icon::after  { left: 6px; top: 0; width: 1.5px; height: 14px; }
.faq__item[open] .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__a {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.75;
  animation: faq-open 420ms cubic-bezier(0.16,1,0.3,1);
}
@keyframes faq-open { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---- Pricing ---- */
.pkg__features li.is-off { color: var(--color-text-faint); opacity: 0.55; }
.pkg__features li.is-off::before { content: '\2014'; color: var(--color-text-faint); }
.pkg__features li strong { color: var(--color-text); font-weight: 500; }
.pkg__features li em { font-style: italic; color: var(--color-gold); }
.pkg--featured .pkg__features li:not(.is-off)::before { color: var(--color-gold-bright); }

/* form error state */
.form-error {
  margin-top: var(--space-3); text-align: center;
  font-size: var(--text-xs); color: #e58b7b;
}

/* ---- Garden section: charcoal, gold, lime green ---- */
#garden {
  --garden-lime: #6faa2a;
  --garden-lime-bright: #8fce3d;
  --garden-line: rgba(111,170,42,0.28);
  --garden-glow: rgba(111,170,42,0.14);
  background: linear-gradient(180deg, var(--color-bg) 0%, #0d100b 50%, var(--color-bg) 100%);
}
#garden .eyebrow { color: var(--garden-lime-bright); }
#garden .eyebrow::after { background: var(--garden-line); }
#garden .section-title .script { color: var(--garden-lime-bright); }
#garden .season { border-color: rgba(111,170,42,0.18); }
#garden .season:hover { border-color: var(--garden-line); }
#garden .season__name { color: var(--garden-lime-bright); }
#garden .garden__chip {
  border-color: var(--garden-line);
  color: var(--garden-lime-bright);
  background: rgba(10,12,8,0.72);
}

.garden__media--logo {
  aspect-ratio: 4 / 3;
  display: grid; place-items: center;
  background: radial-gradient(70% 60% at 50% 45%, rgba(111,170,42,0.10), transparent 72%), #0b0d09;
  border: 1px solid rgba(111,170,42,0.16);
  padding: var(--space-8);
}
.garden__media--logo img {
  width: 100%; max-width: 460px; height: auto; object-fit: contain;
  filter: drop-shadow(0 18px 44px rgba(111,170,42,0.18));
}

/* follow block */
.garden__follow { margin-top: var(--space-8); }
.garden__follow-label {
  font-size: var(--text-xs); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-text-muted); margin-bottom: var(--space-4);
}
.garden__social { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.garden__social-link {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-5); border-radius: var(--radius-full);
  border: 1px solid var(--garden-line); color: var(--garden-lime-bright);
  font-size: var(--text-sm); letter-spacing: 0.04em;
  transition: all var(--transition-interactive);
}
.garden__social-link svg { width: 17px; height: 17px; flex-shrink: 0; }
.garden__social-link:hover {
  background: var(--garden-glow);
  border-color: var(--garden-lime-bright);
  color: #a8e055;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(111,170,42,0.45);
}

/* garden: real photo panel + brand lockup */
.garden__media--photo { aspect-ratio: 3 / 4; overflow: hidden; border: 1px solid rgba(111,170,42,0.18); }
.garden__media--photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 900ms cubic-bezier(0.16,1,0.3,1); }
.garden__media--photo:hover img { transform: scale(1.04); }
.garden__brand { display: block; width: 100%; max-width: 300px; height: auto; margin-bottom: var(--space-5); }
@media (max-width: 820px) { .garden__brand { max-width: 240px; } }

/* =========================================================
   Touch + small-screen refinements
   ========================================================= */

/* Hover overlays must never swallow taps on touch devices */
.shot__overlay { pointer-events: none; }
.shot:hover .shot__overlay, .shot:focus-within .shot__overlay { pointer-events: auto; }

@media (hover: none) {
  /* no hover on touch: keep photos clean, tap opens the lightbox */
  .shot__overlay { display: none; }
  .shot__expand { opacity: 1; transform: scale(1); }
  .hero__portrait img { animation: none; }
}

/* Tap targets: 44px minimum on any touch device, at any width */
@media (pointer: coarse), (max-width: 1024px) {
  .footer__col ul a,
  .footer__legal a {
    display: inline-flex; align-items: center; min-height: 44px;
  }
  .brand-service__cta { display: inline-flex; align-items: center; min-height: 44px; }
  .theme-toggle, .booking__close, .lightbox__close, .lightbox__nav {
    min-width: 44px; min-height: 44px;
  }
  .brand { min-height: 44px; display: inline-flex; align-items: center; }
  .menu-toggle { min-width: 44px; min-height: 44px; }
}

/* Tablet: give the two-column layouts room before they stack */
@media (max-width: 1024px) and (min-width: 821px) {
  .gallery__grid { columns: 2 300px; }
}

/* Phones: tighten type and spacing so nothing feels cramped */
@media (max-width: 520px) {
  .btn { width: 100%; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .pkg-grid { grid-template-columns: 1fr; }
  .lightbox { padding: var(--space-4); }
  .lightbox__figure { max-width: 100%; }
  .lightbox__img { max-height: 68vh; }
  .lightbox__close { top: var(--space-3); right: var(--space-3); }
  .garden__social { flex-direction: column; align-items: stretch; }
  .garden__social-link { justify-content: center; }
}

/* Landscape phones: don't let the hero eat the whole screen */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: auto; padding-block: var(--space-16); }
}

@media (pointer: coarse), (max-width: 1024px) {
  .booking__close { min-width: 46px; min-height: 46px; box-sizing: border-box; }
  /* inline prose links: grow the hit area without breaking the line */
  .trading__note a, .footer__tag a { padding: 8px 2px; }
}

/* =========================================================
   Unified corner language: rounded boxes, not pills.
   Everything shares the same radius family so nothing
   reads as a different shape from anything else.
   ========================================================= */
.btn,
.filter-btn,
.pkg__btn,
.garden__social-link,
.trading__badge,
.garden__chip,
#garden .garden__chip,
.branding__chip,
.theme-toggle,
.booking__close,
.mobile-menu__close,
.lightbox__close,
.lightbox__nav,
.shot__expand {
  border-radius: var(--radius-md);
}

/* square-ish icon buttons look better slightly softer than text boxes */
.theme-toggle,
.booking__close,
.mobile-menu__close,
.lightbox__close,
.lightbox__nav,
.shot__expand {
  border-radius: var(--radius-md);
}

/* =========================================================
   Centred section headers over their card grids
   ========================================================= */

/* Branding: heading + lede centred above the three service rows */
.branding__content .section-head { max-width: none !important; text-align: center; }
.branding__content .section-head .eyebrow { justify-content: center; }
.branding__content .section-head .section-lede { margin-left: auto; margin-right: auto; max-width: 60ch; }
.brand-service { text-align: left; }

/* Garden: heading, lede and follow block centred above the four season cards */
.garden__text { text-align: center; }
.garden__text .eyebrow { justify-content: center; }
.garden__text .section-lede { margin-left: auto; margin-right: auto; max-width: 52ch; }
.garden__brand { margin-left: auto; margin-right: auto; }
.garden__follow { text-align: center; }
.garden__social { justify-content: center; }
.season { text-align: center; }

/* Process: stack the heading above the lede, both centred over the four steps */
.process .section-head--row {
  display: block; text-align: center;
}
.process .section-head--row .eyebrow { justify-content: center; }
.process .section-head--row .section-lede {
  margin: var(--space-4) auto 0; max-width: 56ch;
}
.process__step { text-align: center; }
.process__step .process__num { display: block; }

/* keep the connecting hairline visually centred on the taller cards */
.process__step::after { top: 50%; }

/* =========================================================
   Wordmark: legible serif + calligraphy flourish, sized down
   ========================================================= */
.brand__name {
  font-size: var(--text-base);
  letter-spacing: 0.02em;
  display: inline-flex; align-items: baseline; gap: 0.28em;
}
.brand__name .script {
  font-family: var(--font-script);
  font-size: 1.5em;
  line-height: 0.9;
  color: var(--color-gold);
}
.brand__mark { width: 30px; }
.footer__brand .script {
  font-family: var(--font-script);
  font-size: 1.35em;
  line-height: 0.9;
  color: var(--color-gold);
}

/* =========================================================
   Centred headers over their grids: photography + trading
   ========================================================= */
#photography .section-head--row,
.trading__text {
  display: block; text-align: center;
}
#photography .section-head--row .eyebrow,
.trading__text .eyebrow { justify-content: center; }
#photography .section-head--row .section-lede,
.trading__text .section-lede {
  margin: var(--space-4) auto 0; max-width: 56ch;
}
.filters { justify-content: center; }
#trading .trading__note { text-align: center; }

/* =========================================================
   Mobile: centre the hero and every section header
   ========================================================= */
@media (max-width: 900px) {
  .hero__text { text-align: center; }
  .hero__text .eyebrow { justify-content: center; }
  .hero__title { text-align: center; }
  .hero__meta p { margin-left: auto; margin-right: auto; max-width: 46ch; }
  .hero__actions { align-items: center; }

  .section-head,
  .section-head--row { text-align: center; }
  .section-head .eyebrow,
  .section-head--row .eyebrow { justify-content: center; }
  .section-head .section-lede,
  .section-head--row .section-lede { margin-left: auto; margin-right: auto; }

  .process .section-head--row,
  #photography .section-head--row,
  .trading__text { display: block; }

  .pkg, .process__step, .brand-service, .season { text-align: center; }
  .brand-service { flex-direction: column; align-items: center; gap: var(--space-2); }
  .pkg__features { align-items: center; }
  .pkg__features li { justify-content: center; text-align: left; }
}

/* Trading: header full-width and centred above the chart and the three plans */
.trading__text { max-width: 62ch; margin-left: auto; margin-right: auto; }
.trading__terms { color: var(--color-text-muted); font-size: var(--text-sm); margin-top: var(--space-4); }
.trading__visual-wrap { max-width: 760px; margin: var(--space-10) auto 0; }

/* keep the gold dot tight against the name */
.brand__name { gap: 0; }
.brand__name .script { margin-left: 0.22em; }
.brand__name .dot, .footer__brand .dot { margin-left: 0.04em; }

/* hero buttons: centred and equal width on phones */
@media (max-width: 900px) {
  .hero__actions { width: 100%; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
}

/* =========================================================
   Centred sections: the heading BLOCK must centre too.
   .section-title is capped at 20ch, so without auto margins
   it sits hard left even when its text is centred.
   ========================================================= */
#photography .section-head--row .section-title,
.trading__text .section-title,
.process .section-head--row .section-title,
.branding__content .section-head .section-title,
.garden__text .section-title,
#photography .section-head--row .eyebrow,
.trading__text .eyebrow,
.process .section-head--row .eyebrow,
.branding__content .section-head .eyebrow,
.garden__text .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .section-head .section-title,
  .section-head--row .section-title,
  .garden__text .section-title,
  .trading__text .section-title,
  .hero__title {
    margin-left: auto; margin-right: auto;
  }
  .section-head .eyebrow,
  .section-head--row .eyebrow { margin-left: auto; margin-right: auto; }
}
