/* =========================================================
   OYA by Terralux — calm luxury jungle
   ========================================================= */

:root {
  /* Palette — sand, jungle, ember, ink */
  --sand-50:   #f7f3ec;
  --sand-100:  #efe7d8;
  --sand-200:  #e3d6bf;
  --sand-300:  #cfbb96;
  --bone:      #faf6ee;
  --paper:     #ffffff;

  --ink-900:   #0e120f;
  --ink-800:   #161a16;
  --ink-700:   #20251f;
  --ink-500:   #4a4f47;
  --ink-400:   #6d7268;
  --ink-300:   #969a8f;

  --jungle-900:#1b2a20;
  --jungle-800:#243a2c;
  --jungle-700:#34503c;
  --jungle-500:#5c7a5c;
  --jungle-300:#9fb39b;
  --jungle-100:#dfe7da;

  --ember:     #c0550c;     /* New Earth orange from style guide */
  --gold:      #d8b670;
  --gold-soft: #e8c88a;
  --gold-deep: #b8941a;

  /* Tokens */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-1: 0 2px 10px rgba(14,18,15,0.05);
  --shadow-2: 0 12px 40px rgba(14,18,15,0.10);
  --shadow-3: 0 28px 70px -28px rgba(14,18,15,0.45);

  --ease: cubic-bezier(.4,.0,.2,1);
  --t-fast: .25s var(--ease);
  --t-med:  .45s var(--ease);
  --t-slow: .9s  var(--ease);

  --container: 1280px;
  --gutter: clamp(24px, 5vw, 48px);

  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* =========================================================
   Reset
   ========================================================= */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-800);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--ink-900); }

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 0 0 .6em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.2; }
h4 { font-size: 1.2rem; line-height: 1.3; }

p  { margin: 0 0 1em; color: var(--ink-500); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-700); line-height: 1.7; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--jungle-700);
  font-weight: 500;
  margin: 0 0 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--jungle-700);
  display: inline-block;
  opacity: .6;
}
.eyebrow.is-light { color: var(--sand-200); }
.eyebrow.is-light::before { background: var(--gold); opacity: .8; }

.serif-italic { font-style: italic; color: var(--jungle-700); }

/* =========================================================
   Layout
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(80px, 12vw, 160px) 0; }
.section--tight { padding: clamp(60px, 8vw, 100px) 0; }
.section--dark { background: var(--ink-900); color: var(--sand-100); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--bone); }
.section--dark p { color: rgba(247,243,236,0.72); }
.section--jungle {
  background:
    radial-gradient(1200px 600px at 80% 10%, rgba(216,182,112,0.10), transparent 60%),
    linear-gradient(160deg, var(--jungle-900) 0%, var(--ink-900) 100%);
  color: var(--sand-100);
}
.section--jungle h1, .section--jungle h2, .section--jungle h3 { color: var(--bone); }
.section--jungle p { color: rgba(223,231,218,0.78); }
.section--sand { background: var(--sand-50); }

.grid { display: grid; gap: clamp(24px, 3vw, 40px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split--reverse { grid-template-columns: 1fr 1.05fr; }
.split--reverse > :first-child { order: 2; }
.split--reverse > :last-child  { order: 1; }
@media (max-width: 900px) {
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse > :first-child, .split--reverse > :last-child { order: initial; }
}

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
  max-width: none;
}
@media (max-width: 800px) {
  .section-head--split { grid-template-columns: 1fr; gap: 20px; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn .arrow {
  display: inline-block;
  transition: transform var(--t-fast);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--ink-900);
  color: var(--bone);
}
.btn--primary:hover { background: var(--jungle-800); box-shadow: var(--shadow-2); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--ink-900);
}
.btn--gold:hover { box-shadow: 0 14px 36px -10px rgba(184,148,26,0.55); }

.btn--ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-900);
}
.btn--ghost:hover { background: var(--ink-900); color: var(--bone); }

.btn--ghost-light {
  background: transparent;
  color: var(--bone);
  border-color: rgba(247,243,236,0.45);
}
.btn--ghost-light:hover { background: var(--bone); color: var(--ink-900); border-color: var(--bone); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Inline text link with underline reveal */
.link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-900);
  padding-bottom: 4px;
  position: relative;
}
.link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform var(--t-med);
}
.link:hover::after { transform: scaleX(1.05); }
.link .arrow { transition: transform var(--t-fast); }
.link:hover .arrow { transform: translateX(5px); }
.link--light { color: var(--bone); }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 22px 0;
  transition: background var(--t-med), padding var(--t-med), box-shadow var(--t-med);
}
.site-header.is-scrolled {
  background: rgba(250,246,238,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(14,18,15,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: .02em;
  color: var(--bone);
  transition: color var(--t-med);
}
.brand small {
  font-family: var(--font-sans);
  font-size: .62rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  opacity: .7;
}
.site-header.is-scrolled .brand,
.site-header.is-light .brand { color: var(--ink-900); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: .85;
  position: relative;
  padding: 6px 0;
  transition: opacity var(--t-fast), color var(--t-fast);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-med);
}
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover { opacity: 1; }
.site-header.is-scrolled .nav-links a,
.site-header.is-light .nav-links a { color: var(--ink-800); }

.nav-cta {
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(247,243,236,0.5);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bone);
  transition: all var(--t-fast);
}
.nav-cta:hover { background: var(--bone); color: var(--ink-900); border-color: var(--bone); }
.site-header.is-scrolled .nav-cta,
.site-header.is-light .nav-cta { color: var(--ink-900); border-color: var(--ink-900); }
.site-header.is-scrolled .nav-cta:hover,
.site-header.is-light .nav-cta:hover { background: var(--ink-900); color: var(--bone); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--bone);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: currentColor;
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 1px; background: currentColor;
  transition: transform var(--t-med), top var(--t-med);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }
.site-header.is-scrolled .nav-toggle,
.site-header.is-light .nav-toggle { color: var(--ink-900); }

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink-900);
  color: var(--bone);
  padding: 100px var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform var(--t-slow);
  z-index: 49;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 7vw, 3.2rem);
  color: var(--bone);
}
.mobile-menu .mobile-foot {
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .6;
}

body.menu-open { overflow: hidden; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after  { top: 0; transform: rotate(-45deg); }

/* =========================================================
   Hero — home
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  color: var(--bone);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media video,
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,18,15,0.35) 0%, rgba(14,18,15,0.15) 30%, rgba(14,18,15,0.85) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: clamp(60px, 10vh, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: end;
}
.hero__inner > * { min-width: 0; }
.hero__inner .eyebrow { color: var(--gold-soft); }
.hero__inner .eyebrow::before { background: var(--gold); }
.hero h1 {
  font-weight: 300;
  font-size: clamp(2.4rem, 5.8vw, 5.6rem);
  color: var(--bone);
  margin: 0;
  letter-spacing: -0.015em;
  text-wrap: balance;
  max-width: 16ch;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero .hero-br { display: block; height: 0; }
.hero__sub {
  max-width: 44ch;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  color: rgba(247,243,236,0.85);
  margin: 22px 0 32px;
}
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .hero h1 { max-width: 22ch; }
  .hero .hero-br { display: inline; }
}
@media (max-width: 720px) {
  .hero { text-align: left; }
  .hero h1 { font-size: clamp(2.2rem, 9.5vw, 3.4rem); max-width: 18ch; line-height: 1.05; }
  .hero__sub { max-width: 38ch; margin: 18px 0 26px; }
  .hero__inner { padding-bottom: clamp(80px, 14vh, 120px); }
  .hero .container.hero__inner,
  .hero > .container { padding-left: max(var(--gutter), 28px); padding-right: max(var(--gutter), 28px); }
  .hero .btn-row { gap: 10px; }
  .hero .btn { padding: 14px 22px; font-size: .88rem; }
}

.hero__scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.7);
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 38px;
  background: linear-gradient(180deg, rgba(247,243,236,0.7), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Interior hero (other pages) */
.page-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  color: var(--bone);
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,18,15,0.45) 0%, rgba(14,18,15,0.2) 35%, rgba(14,18,15,0.8) 100%);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: clamp(48px, 8vh, 90px);
  max-width: 800px;
}
.page-hero h1 {
  color: var(--bone);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
}
.page-hero p { color: rgba(247,243,236,0.85); max-width: 560px; font-size: 1.05rem; }

/* =========================================================
   Cards
   ========================================================= */
.card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(14,18,15,0.06);
  transition: transform var(--t-med), box-shadow var(--t-med);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }

.card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.card:hover .card__media img { transform: scale(1.06); }

.card__badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(250,246,238,0.92);
  backdrop-filter: blur(8px);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-900);
}
.card__badge--gold { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--ink-900); }

.card__body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.card__meta {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.card h3 { margin-bottom: .35em; }
.card__body p { color: var(--ink-500); flex: 1; }
.card__foot {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Variant — feature media card on dark */
.media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  color: var(--bone);
  display: flex;
  align-items: end;
}
.media-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.media-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(14,18,15,0.85) 100%);
}
.media-card:hover img { transform: scale(1.05); }
.media-card__body {
  position: relative;
  z-index: 2;
  padding: 32px;
  width: 100%;
}
.media-card h3 { color: var(--bone); margin: 0 0 .2em; }
.media-card p { color: rgba(247,243,236,0.85); margin: 0; }

/* =========================================================
   Intro / brand statement
   ========================================================= */
.brand-statement {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.brand-statement h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.brand-statement h2 em { color: var(--jungle-700); font-style: italic; }
.brand-mark {
  width: 44px; height: 44px;
  margin: 0 auto 28px;
  border-radius: 50%;
  border: 1px solid var(--jungle-300);
  display: grid;
  place-items: center;
  color: var(--jungle-700);
}

/* =========================================================
   Network / locations
   ========================================================= */
.location-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  color: var(--bone);
  display: flex;
  align-items: end;
}
.location-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.location-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,18,15,0.15) 30%, rgba(14,18,15,0.85) 100%);
}
.location-card:hover img { transform: scale(1.05); }
.location-card__body { position: relative; z-index: 2; padding: 30px; width: 100%; }
.location-card__status {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(250,246,238,0.18);
  border: 1px solid rgba(250,246,238,0.3);
  margin-bottom: 14px;
  color: var(--bone);
}
.location-card__status.is-soon { background: rgba(216,182,112,0.22); border-color: rgba(216,182,112,0.45); color: var(--gold-soft); }
.location-card h3 { margin: 0; font-size: 1.7rem; color: var(--bone); }
.location-card span.region {
  display: block;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.7);
  margin-top: 4px;
}

/* =========================================================
   Testimonials
   ========================================================= */
.quote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.4;
  color: var(--ink-900);
  margin: 0 0 28px;
}
.section--dark .quote p,
.section--jungle .quote p { color: var(--bone); }
.quote cite {
  font-style: normal;
  font-size: .76rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--jungle-700);
}
.section--dark .quote cite, .section--jungle .quote cite { color: var(--gold-soft); }
.quote .mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: .5;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }
.quote-card {
  background: var(--paper);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14,18,15,0.06);
}
.quote-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink-800);
  margin: 0 0 20px;
}
.quote-card cite {
  font-style: normal;
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-400);
}

/* =========================================================
   Gallery
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 16px;
}
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius-md); position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }

.gallery .g1 { grid-column: span 5; grid-row: span 4; }
.gallery .g2 { grid-column: span 4; grid-row: span 3; }
.gallery .g3 { grid-column: span 3; grid-row: span 3; }
.gallery .g4 { grid-column: span 3; grid-row: span 3; }
.gallery .g5 { grid-column: span 4; grid-row: span 3; }
.gallery .g6 { grid-column: span 5; grid-row: span 3; }

@media (max-width: 800px) {
  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 90px; }
  .gallery .g1, .gallery .g5, .gallery .g6 { grid-column: span 6; grid-row: span 3; }
  .gallery .g2, .gallery .g3, .gallery .g4 { grid-column: span 3; grid-row: span 2; }
}

/* =========================================================
   Feature row (image + text)
   ========================================================= */
.feature-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-caption {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(250,246,238,0.92);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-800);
}

/* =========================================================
   Lists — what's included etc.
   ========================================================= */
.tick-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--ink-700);
}
.tick-list svg { flex: 0 0 auto; color: var(--jungle-700); margin-top: 4px; }
.section--dark .tick-list li, .section--jungle .tick-list li { color: rgba(247,243,236,0.86); }
.section--dark .tick-list svg, .section--jungle .tick-list svg { color: var(--gold); }

/* Two-column tick list */
.tick-list--2col { grid-template-columns: 1fr 1fr; }
@media (max-width: 700px) { .tick-list--2col { grid-template-columns: 1fr; } }

/* =========================================================
   Stat / number rows
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(14,18,15,0.1);
  border-bottom: 1px solid rgba(14,18,15,0.1);
  padding: 48px 0;
}
.section--dark .stats, .section--jungle .stats { border-color: rgba(247,243,236,0.15); }
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--jungle-700);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.section--dark .stat__num, .section--jungle .stat__num { color: var(--gold); }
.stat__label {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.section--dark .stat__label, .section--jungle .stat__label { color: rgba(247,243,236,0.7); }

/* =========================================================
   Forms
   ========================================================= */
.form { display: grid; gap: 22px; }
.form .field { display: grid; gap: 8px; }
.form .field--row { grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 700px) { .form .field--row { grid-template-columns: 1fr; } }
.form label {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.form input,
.form select,
.form textarea {
  padding: 16px 18px;
  border: 1px solid rgba(14,18,15,0.15);
  border-radius: var(--radius-md);
  background: var(--paper);
  font-size: 1rem;
  color: var(--ink-900);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}
.form textarea { min-height: 140px; resize: vertical; }
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--jungle-700);
  box-shadow: 0 0 0 4px rgba(52,80,60,0.12);
}
.section--dark .form input,
.section--dark .form select,
.section--dark .form textarea,
.section--jungle .form input,
.section--jungle .form select,
.section--jungle .form textarea {
  background: rgba(247,243,236,0.06);
  border-color: rgba(247,243,236,0.2);
  color: var(--bone);
}
.section--dark .form label, .section--jungle .form label { color: rgba(247,243,236,0.7); }
.section--dark .form input:focus, .section--jungle .form input:focus,
.section--dark .form select:focus, .section--jungle .form select:focus,
.section--dark .form textarea:focus, .section--jungle .form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216,182,112,0.18);
}
.form .form-actions { display: flex; justify-content: space-between; gap: 14px; align-items: center; flex-wrap: wrap; }
.form .form-note { font-size: .82rem; color: var(--ink-400); }
.section--dark .form .form-note, .section--jungle .form .form-note { color: rgba(247,243,236,0.55); }

.form-success {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--jungle-700), var(--jungle-500));
  color: var(--bone);
  display: none;
}
.form-success.is-visible { display: block; animation: fadeUp .6s var(--ease); }

/* =========================================================
   Final CTA bands
   ========================================================= */
.cta-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}
.cta-band h2 { font-weight: 300; font-size: clamp(2.2rem, 4.5vw, 3.8rem); margin: 0; }
.cta-band p { max-width: 460px; }
@media (max-width: 900px) { .cta-band { grid-template-columns: 1fr; gap: 24px; } }

/* =========================================================
   FAQ
   ========================================================= */
.faq-group { margin-bottom: 60px; }
.faq-group h3 {
  font-family: var(--font-sans);
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--jungle-700);
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(14,18,15,0.1);
}
.faq-item {
  border-bottom: 1px solid rgba(14,18,15,0.08);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ink-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--jungle-700);
  transition: transform var(--t-fast);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item__answer { padding: 0 0 24px; color: var(--ink-500); max-width: 760px; }

/* =========================================================
   Journal
   ========================================================= */
.post-card { display: flex; flex-direction: column; gap: 18px; }
.post-card .card__media { aspect-ratio: 16/11; border-radius: var(--radius-md); }
.post-card .post-cat {
  font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--jungle-700);
}
.post-card h3 { font-size: 1.4rem; line-height: 1.25; margin: 0; }
.post-card a:hover h3 { color: var(--jungle-700); }
.post-card time { font-size: .82rem; color: var(--ink-400); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--ink-900);
  color: rgba(247,243,236,0.7);
  padding: 100px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(247,243,236,0.1);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand h2 {
  font-family: var(--font-serif);
  color: var(--bone);
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 16px;
}
.footer-brand p { color: rgba(247,243,236,0.6); max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-sans);
  color: var(--gold-soft);
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 22px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a { color: rgba(247,243,236,0.7); font-size: .95rem; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--bone); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .78rem;
  color: rgba(247,243,236,0.45);
  letter-spacing: .08em;
}
.footer-bottom .socials { display: flex; gap: 18px; }
.footer-bottom .socials a { color: rgba(247,243,236,0.6); }
.footer-bottom .socials a:hover { color: var(--gold); }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* =========================================================
   Misc
   ========================================================= */
.divider {
  width: 60px; height: 1px;
  background: var(--jungle-300);
  margin: 28px 0;
}
.section--dark .divider, .section--jungle .divider { background: rgba(216,182,112,0.5); }

.kicker-row {
  display: flex; gap: 30px;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-400);
  border-top: 1px solid rgba(14,18,15,0.1);
  padding-top: 24px;
  margin-top: 40px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Brochures
   ========================================================= */
.brochure-card {
  display: grid;
  grid-template-columns: minmax(140px, 38%) 1fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid rgba(14,18,15,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--ink-900);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.brochure-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.brochure-card__media { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.brochure-card__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.brochure-card:hover .brochure-card__media img { transform: scale(1.06); }
.brochure-card__body { padding: clamp(22px, 2.4vw, 34px); display: flex; flex-direction: column; gap: 10px; }
.brochure-card__body h3 { margin: 0 0 .25em; font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.brochure-card__body p { color: var(--ink-500); margin: 0 0 14px; flex: 1; }
.brochure-card__body .link { color: var(--jungle-700); }
.brochure-card__body .link .arrow { display: inline-block; transition: transform var(--t-fast); }
.brochure-card:hover .link .arrow { transform: translateY(3px); }
@media (max-width: 600px) {
  .brochure-card { grid-template-columns: 1fr; }
  .brochure-card__media { aspect-ratio: 16/10; }
}

/* =========================================================
   Calendly
   ========================================================= */
.calendly-frame {
  background: var(--paper);
  border: 1px solid rgba(14,18,15,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  padding: 6px;
}
.calendly-inline-widget { width: 100%; }
@media (max-width: 700px) {
  .calendly-inline-widget { height: 980px !important; }
}

/* =========================================================
   Responsive polish
   ========================================================= */
@media (max-width: 720px) {
  body { font-size: 15.5px; }
  .section { padding: clamp(64px, 14vw, 100px) 0; }
  .btn-row { width: 100%; }
  .btn-row .btn { flex: 1 1 auto; justify-content: center; }
  .nav-cta { display: none; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band p { max-width: 100%; }
  .hero__scroll { display: none; }
  .feature-caption { font-size: .68rem; padding: 8px 12px; bottom: 14px; left: 14px; }
}
@media (max-width: 480px) {
  .card__body { padding: 22px 22px 26px; }
  .stats { padding: 32px 0; gap: 22px; }
  .footer-top { gap: 30px; }
  .footer-bottom { justify-content: flex-start; }
}
