/* =========================================================
   Location Lifestyle, v3 base
   Three directions are layered on top via directions.css.
   ========================================================= */

:root {
  /* palette ------ direction A is the default; overridden by body.dir-* */
  --bone:    #F5F1EA;
  --bone-2:  #ECE6DB;
  --ink:     #1C1A17;
  --ink-2:   rgba(28,26,23,.62);
  --ink-3:   rgba(28,26,23,.38);
  --deep:    #1E3A33;            /* deep tone (used as ink-button alt) */
  --accent:  #C2683D;            /* clay */
  --stone:   #9A9186;
  --hair:    rgba(28,26,23,.10);

  /* type */
  --serif:   "Fraunces", "GT Sectra", "Canela", Georgia, serif;
  --sans:    "Schibsted Grotesk", "Hanken Grotesk", Helvetica, Arial, sans-serif;
  --serif-opsz: 36;     /* optical size for headlines, per direction */
  --serif-wght: 400;

  /* one consistent image grade across the whole page */
  --img-filter: contrast(1.04) saturate(0.92) brightness(0.97) sepia(0.06);
  --img-tint:   linear-gradient(180deg, rgba(28,22,18,.06), rgba(28,22,18,.18));

  /* shape & rhythm */
  --r: 4px;
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "ss02";
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: var(--serif-wght);
  font-variation-settings: "opsz" var(--serif-opsz);
  line-height: 1.04;
  letter-spacing: -0.012em;
  margin: 0;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.lead { font-family: var(--serif); font-variation-settings:"opsz" 36; font-weight: 300; line-height: 1.22; letter-spacing:-0.008em; text-wrap: pretty; }

/* unified graded media wrapper used everywhere we put a background image */
.graded {
  position: relative;
  background-color: #2a2520;
  background-size: cover;
  background-position: center;
  filter: var(--img-filter);
  transition: filter .8s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
.graded::after {
  content: ""; position: absolute; inset: 0;
  background: var(--img-tint);
  pointer-events: none;
}
.graded.no-tint::after { display: none; }

/* =========================================================
   buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r);
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn--accent { background: var(--accent); color: var(--bone); }
.btn--accent:hover { filter: brightness(0.92); }
.btn--ink   { background: var(--ink); color: var(--bone); }
.btn--ink:hover { background: #2a2622; }
.btn--ghost { border: 1px solid currentColor; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bone); }
.btn--ghost-light { border: 1px solid rgba(245,241,234,.45); color: var(--bone); }
.btn--ghost-light:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.arrow {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  line-height: 1;
  font-size: 1em;
  transition: transform .25s ease;
}
.arrow::after { content: "\2192"; display: inline-block; }
.btn:hover .arrow, .textlink:hover .arrow { transform: translateX(3px); }

.textlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.textlink:hover { color: var(--accent); }

/* =========================================================
   nav
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background-color .35s ease, color .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  color: var(--bone);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.wordmark {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: baseline; gap: 6px;
}
.wordmark em { font-style: italic; font-weight: 300; color: var(--accent); }
.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__links a {
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  opacity: .92; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px;
  background: currentColor; transition: right .3s ease;
}
.nav__links a:hover::after { right: 0; }
.nav.is-solid {
  background: color-mix(in srgb, var(--bone) 92%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  color: var(--ink);
  border-bottom-color: var(--hair);
}
.nav__burger { display: none; }

/* =========================================================
   hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--bone);
  overflow: hidden;
  isolation: isolate;
  background: #1a1714;
}
.hero__stage { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 35%;
  filter: var(--img-filter) brightness(0.82) saturate(0.88);
  opacity: 0;
  transition: opacity 1.8s ease;
  transform: scale(1.04);
}
.hero__slide.is-active { opacity: 1; }
.hero__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,8,6,.55) 0%, rgba(10,8,6,.18) 28%, rgba(10,8,6,.78) 70%, rgba(10,8,6,.94) 100%),
    radial-gradient(140% 70% at 20% 90%, rgba(10,8,6,.55) 0%, rgba(10,8,6,0) 60%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero__inner {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: 96px; padding-bottom: 56px;
}
.hero__copy { align-self: end; max-width: 920px; }
.hero h1 {
  font-size: clamp(40px, 6.4vw, 96px);
  font-variation-settings: "opsz" 96;
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 1.02;
}
.hero h1 em { font-style: italic; font-weight: 300; color: color-mix(in srgb, var(--accent) 55%, var(--bone) 45%); }
.hero__sub {
  margin-top: 24px;
  max-width: 640px;
  font-size: 17px; line-height: 1.55;
  color: rgba(245,241,234,.86);
}
.hero__ctas {
  margin-top: 36px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.hero__meta {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; margin-top: 72px;
  border-top: 1px solid rgba(245,241,234,.18);
  padding-top: 20px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,241,234,.66);
}
.hero__meta b { font-weight: 500; color: var(--bone); }

/* category cue under the hero, names the current slide */
.hero__cue {
  position: absolute; right: var(--gutter); top: 96px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,241,234,.66);
  display: inline-flex; gap: 14px; align-items: center;
}
.hero__cue .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.hero__cue .name { min-width: 7ch; display: inline-block; }

/* =========================================================
   generic section
   ========================================================= */
section { position: relative; }
.sec { padding: clamp(72px, 10vw, 140px) 0; }
.sec--tight { padding: clamp(56px, 7vw, 96px) 0; }
.sec__head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 32px; margin-bottom: clamp(40px, 6vw, 72px);
}
.sec__title {
  font-size: clamp(32px, 4.6vw, 64px);
  font-variation-settings: "opsz" 64;
  font-weight: 400;
  max-width: 18ch;
}
.sec__title em { font-style: italic; font-weight: 300; color: var(--deep); }

/* =========================================================
   intro line
   ========================================================= */
.intro {
  padding: clamp(72px, 10vw, 140px) 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.intro__statement {
  font-family: var(--serif);
  font-variation-settings: "opsz" 96;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 54px);
  line-height: 1.14;
  letter-spacing: -0.014em;
  max-width: 22ch;
  margin: 0;
  text-wrap: balance;
}
.intro__statement em { font-style: italic; color: var(--deep); }
.intro__row { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 880px) {
  .intro__row { grid-template-columns: 6fr 5fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
}
.intro__copy { display: flex; flex-direction: column; gap: clamp(20px, 2.4vw, 28px); padding-top: 4px; }
.intro__copy > .eyebrow { margin-bottom: 4px; }
.intro__aside { font-size: 17px; color: var(--ink-2); line-height: 1.6; max-width: 42ch; margin: 0; }

.intro__figure { margin: 0; display: flex; flex-direction: column; gap: 14px; }
.intro__img {
  aspect-ratio: 4 / 5;
  background-size: cover; background-position: center;
  filter: var(--img-filter);
  background-color: #2a2520;
  border-radius: var(--r);
}
.intro__figure figcaption {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 36ch;
}

/* =========================================================
   experiences tiles
   ========================================================= */
.tiles { display: grid; gap: 8px; grid-template-columns: repeat(6, 1fr); }
.tile {
  position: relative; aspect-ratio: 3 / 4; overflow: hidden;
  border-radius: var(--r);
  background: var(--ink); color: var(--bone);
  isolation: isolate;
}
.tile__img { position: absolute; inset: 0; }
.tile::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.0) 30%, rgba(0,0,0,.62) 100%);
}
.tile__body {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px;
  z-index: 3;
  display: flex; flex-direction: column; gap: 4px;
}
.tile__cat {
  font-family: var(--serif); font-size: clamp(22px, 2vw, 30px); font-weight: 400;
  font-variation-settings: "opsz" 36;
  line-height: 1; letter-spacing: -0.01em;
}
.tile__desc { font-size: 13px; color: rgba(245,241,234,.86); }
.tile__num {
  position: absolute; top: 18px; left: 22px; z-index: 3;
  font-size: 11px; letter-spacing: 0.2em; color: rgba(245,241,234,.78);
}
.tile:hover .tile__img { transform: scale(1.06); }
@media (max-width: 1080px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px)  { .tiles { grid-template-columns: repeat(2, 1fr); } .tile { aspect-ratio: 4/5; } .tile__body{padding:16px;} .tile__num{left:16px;} }

/* =========================================================
   ACCESS section
   ========================================================= */
.access { background: var(--bone); }
.access__head {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 80px);
  align-items: end; margin-bottom: clamp(40px, 6vw, 72px);
}
@media (max-width: 880px) { .access__head { grid-template-columns: 1fr; } }
.access__title {
  font-size: clamp(36px, 5.4vw, 76px);
  font-variation-settings: "opsz" 96;
  font-weight: 400; line-height: 1.02; letter-spacing: -0.02em;
  max-width: 14ch;
}
.access__title em { font-style: italic; font-weight: 300; color: var(--deep); }
.access__lead { color: var(--ink-2); font-size: 17px; line-height: 1.6; max-width: 44ch; }

.access__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--hair);
}
@media (max-width: 720px) { .access__list { grid-template-columns: 1fr; } }
.access__item {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 16px; align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--hair);
}
.access__item:nth-child(odd)  { padding-right: clamp(20px, 4vw, 56px); border-right: 1px solid var(--hair); }
.access__item:nth-child(even) { padding-left:  clamp(20px, 4vw, 56px); }
@media (max-width: 720px) {
  .access__item:nth-child(odd)  { padding-right: 0; border-right: 0; }
  .access__item:nth-child(even) { padding-left: 0; }
}
.access__num {
  font-family: var(--serif); font-variation-settings:"opsz" 36;
  font-size: 14px; font-weight: 400; color: var(--accent); letter-spacing: 0.04em;
}
.access__what {
  font-family: var(--serif); font-variation-settings:"opsz" 36;
  font-size: clamp(20px, 2vw, 26px); font-weight: 400; letter-spacing: -0.01em;
}
.access__leadwrap { display: flex; flex-direction: column; gap: 18px; max-width: 44ch; }
.access__framing {
  font-family: var(--serif); font-variation-settings:"opsz" 36;
  font-style: italic; font-weight: 300;
  font-size: 17px; line-height: 1.4; letter-spacing: -0.005em;
  color: var(--deep);
  margin: 0;
}
.access__close {
  margin: clamp(48px, 6vw, 72px) auto 0;
  text-align: center;
  font-family: var(--serif); font-variation-settings:"opsz" 72;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 30ch;
  text-wrap: balance;
}

/* =========================================================
   calendar band
   ========================================================= */
.calendar {
  position: relative;
  isolation: isolate;
  background: var(--bone);
  overflow: hidden;
}
.calendar__bg, .calendar__bg::after {
  position: absolute; inset: 0; pointer-events: none;
}
.calendar__bg { display: none; }   /* off by default, direction A and C enable */
.calendar__inner { position: relative; z-index: 2; }

.cal-grid { display: grid; gap: 24px; grid-template-columns: repeat(4, 1fr); }
.cal-card {
  background: rgba(245,241,234,.04);
  border: 1px solid rgba(245,241,234,.10);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s ease, background-color .3s ease;
}
.cal-card:hover { transform: translateY(-4px); background: rgba(245,241,234,.08); }
.cal-card__img {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  filter: var(--img-filter);
  border-bottom: 1px solid rgba(245,241,234,.08);
}
.cal-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.cal-card__when { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,241,234,.62); }
.cal-card__title { font-family: var(--serif); font-variation-settings:"opsz" 36; font-size: 24px; font-weight: 400; letter-spacing: -0.01em; }
.cal-card__place { font-size: 13px; color: rgba(245,241,234,.72); }
.cal-card__foot {
  margin-top: auto; padding-top: 16px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(245,241,234,.10);
  font-size: 12px; color: rgba(245,241,234,.72);
}
.cal-card__cat { letter-spacing: 0.16em; text-transform: uppercase; }
.cal-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid rgba(245,241,234,.14);
}
.cal-foot__note { font-size: 13px; color: rgba(245,241,234,.7); max-width: 44ch; }
@media (max-width: 1080px) { .cal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .cal-grid { grid-template-columns: 1fr; } }

/* =========================================================
   how it works
   ========================================================= */
.how { display: grid; grid-template-columns: 1.1fr 2fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.how__intro { position: sticky; top: 96px; }
.how__steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: baseline; gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--hair);
}
.step:last-child { border-bottom: 1px solid var(--hair); }
.step__num { font-family: var(--serif); font-variation-settings:"opsz" 36; font-size: 28px; font-weight: 300; color: var(--accent); letter-spacing: -0.01em; }
.step__name { font-family: var(--serif); font-variation-settings:"opsz" 36; font-size: clamp(24px, 2.6vw, 36px); font-weight: 400; letter-spacing: -0.012em; }
.step__desc { font-size: 15px; color: var(--ink-2); max-width: 42ch; margin-top: 8px; }
.step__tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
@media (max-width: 880px) {
  .how { grid-template-columns: 1fr; }
  .how__intro { position: static; }
  .step { grid-template-columns: 56px 1fr; }
  .step__tag { display: none; }
}

/* =========================================================
   featured experience
   ========================================================= */
.featured__lead {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 64px);
  align-items: end; margin-bottom: 32px;
}
@media (max-width: 880px) { .featured__lead { grid-template-columns: 1fr; } }
.featured__title {
  font-size: clamp(36px, 5vw, 76px);
  font-variation-settings: "opsz" 96;
  font-weight: 400; letter-spacing: -0.018em; line-height: 1.02;
}
.featured__title em { font-style: italic; font-weight: 300; color: var(--deep); }
.featured__copy { font-size: 17px; color: var(--ink); max-width: 50ch; line-height: 1.6; }
.featured__copy .muted { color: var(--ink-2); }

.featured__hero {
  position: relative; overflow: hidden; border-radius: var(--r);
  aspect-ratio: 16 / 9;
  background: #1a1714;
}
.featured__hero .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: var(--img-filter);
  transition: transform 1.2s ease;
}
.featured__hero:hover .img { transform: scale(1.03); }
.featured__hero .badge {
  position: absolute; top: 22px; left: 22px;
  background: rgba(245,241,234,.92);
  color: var(--ink);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 8px 12px; border-radius: var(--r);
}
.featured__hero .ovr {
  position: absolute; inset: auto 0 0 0; padding: 32px;
  color: var(--bone);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 100%);
}
.featured__hero .ovr h3 {
  font-size: clamp(26px, 3vw, 44px); font-weight: 400; letter-spacing: -0.015em;
  font-variation-settings:"opsz" 72;
}

.featured__facts {
  margin-top: 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.fact { padding: 20px 24px; border-right: 1px solid var(--hair); }
.fact:last-child { border-right: 0; }
.fact__k { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
.fact__v { font-family: var(--serif); font-variation-settings:"opsz" 36; font-size: 22px; font-weight: 400; margin-top: 6px; letter-spacing: -0.01em; }
@media (max-width: 720px) {
  .featured__facts { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(1), .fact:nth-child(2) { border-bottom: 1px solid var(--hair); }
}

.case-row { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 880px) { .case-row { grid-template-columns: 1fr; } }
.case {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-radius: var(--r); overflow: hidden;
  background: var(--bone-2);
}
.case__img { aspect-ratio: 16/10; background-size: cover; background-position: center; filter: var(--img-filter); transition: transform 1s ease; }
.case:hover .case__img { transform: scale(1.04); }
.case__body { padding: 24px 26px 28px; }
.case__tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
.case__title { font-family: var(--serif); font-variation-settings:"opsz" 36; font-size: clamp(22px, 2.2vw, 30px); font-weight: 400; margin-top: 10px; letter-spacing: -0.01em; }
.case__copy { color: var(--ink-2); font-size: 14px; margin-top: 10px; max-width: 44ch; }
.case__meta { display: flex; gap: 18px; margin-top: 18px; font-size: 12px; color: var(--ink-3); letter-spacing: 0.06em; }
.case__meta span::before { content: "·"; margin-right: 18px; color: var(--ink-3); }
.case__meta span:first-child::before { content: ""; margin: 0; }

/* =========================================================
   range
   ========================================================= */
.range { text-align: center; padding: clamp(24px, 3vw, 56px) 0 clamp(56px, 8vw, 110px); }
.range p {
  font-family: var(--serif); font-variation-settings:"opsz" 96;
  font-size: clamp(24px, 3.2vw, 46px); font-weight: 300;
  line-height: 1.18; letter-spacing: -0.012em; max-width: 22ch;
  margin: 0 auto; text-wrap: balance;
}
.range p em { font-style: italic; color: var(--deep); }
.range .scale {
  margin: 40px auto 0;
  display: inline-flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3);
}
.range .star { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; display: inline-block; align-self: center; }

/* =========================================================
   team
   ========================================================= */
.team__head { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: end; margin-bottom: clamp(40px, 6vw, 72px); }
@media (max-width: 880px) { .team__head { grid-template-columns: 1fr; } }
.team__title { font-size: clamp(34px, 4.6vw, 64px); font-variation-settings:"opsz" 96; font-weight: 400; letter-spacing: -0.018em; max-width: 16ch; }
.team__title em { font-style: italic; font-weight: 300; color: var(--deep); }
.team__lead { font-size: 17px; color: var(--ink-2); max-width: 44ch; line-height: 1.6; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px) clamp(16px, 2.4vw, 32px); }
@media (max-width: 880px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } }
.member { display: flex; flex-direction: column; gap: 14px; }
.member__photo {
  aspect-ratio: 4 / 5;
  background-size: cover; background-position: center top;
  filter: var(--img-filter);
  background-color: #d6cdbf;
  border-radius: var(--r);
}
.member__name { font-family: var(--serif); font-variation-settings:"opsz" 36; font-size: 22px; font-weight: 400; letter-spacing: -0.01em; }
.member__role { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); margin-top: 2px; }
.member__bio { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin-top: 6px; max-width: 36ch; }
.team__sign {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 28px;
  border-top: 1px solid var(--hair);
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.team__sign-line { font-family: var(--serif); font-variation-settings:"opsz" 72; font-style: italic; font-weight: 300; font-size: clamp(22px, 2.4vw, 32px); color: var(--deep); letter-spacing: -0.01em; }
.team__sign-meta { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); }

/* =========================================================
   trust
   ========================================================= */
.trust {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 56px 0;
}
.trust__inner { display: grid; grid-template-columns: 1fr 2.2fr; gap: clamp(32px, 4vw, 64px); align-items: center; }
@media (max-width: 880px) { .trust__inner { grid-template-columns: 1fr; gap: 32px; } }
.trust__note { font-size: 13px; color: var(--ink-2); max-width: 36ch; line-height: 1.6; }
.trust__note b { color: var(--ink); font-weight: 500; }
.trust__logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: clamp(24px, 3vw, 40px) clamp(16px, 2.4vw, 32px);
}
@media (max-width: 1080px) { .trust__logos { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 620px)  { .trust__logos { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px 12px; } }
.logo {
  display: inline-flex; align-items: center; justify-content: center;
  height: 24px;
  color: color-mix(in srgb, var(--ink) 52%, transparent);
  line-height: 1;
  opacity: .9;
  transition: opacity .25s ease, color .25s ease;
  user-select: none;
  white-space: nowrap;
  text-align: center;
}
.logo:hover { opacity: 1; color: var(--ink); }
.logo--sans {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.16em;
  font-size: 11px;
  text-transform: uppercase;
}
.logo--serif {
  font-family: var(--serif);
  font-variation-settings: "opsz" 36;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
}
@media (max-width: 720px) {
  .trust__logos { gap: 18px 12px; }
}

/* =========================================================
   final cta
   ========================================================= */
.final {
  position: relative; overflow: hidden; isolation: isolate;
  color: var(--bone);
  padding: clamp(96px, 14vw, 180px) 0;
  text-align: center;
  background: var(--ink);  /* override per direction with image-backed */
}
.final__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: var(--img-filter) brightness(.5);
  display: none; /* enabled by directions for image-backed */
}
.final__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,18,16,.55), rgba(20,18,16,.85));
  display: none;
}
.final__inner { position: relative; z-index: 2; }
.final h2 { font-size: clamp(40px, 6.2vw, 92px); font-variation-settings:"opsz" 96; font-weight: 300; letter-spacing: -0.02em; }
.final h2 em { font-style: italic; color: color-mix(in srgb, var(--accent) 55%, var(--bone) 45%); }
.final p { color: rgba(245,241,234,.72); max-width: 46ch; margin: 22px auto 0; font-size: 17px; line-height: 1.55; }
.final__form {
  margin: 40px auto 0; max-width: 540px;
  display: flex; flex-direction: column; gap: 8px;
  background: rgba(245,241,234,.06);
  border: 1px solid rgba(245,241,234,.18);
  border-radius: var(--r);
  padding: 6px;
}
.final__form input {
  background: transparent; border: 0; color: var(--bone);
  padding: 14px 14px; font: inherit; font-size: 15px;
  outline: none; width: 100%;
  font-family: var(--sans);
}
.final__form .btn {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 16px 22px;
}
.final__form .hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.final__msg { margin-top: 14px; font-size: 13px; color: var(--accent); text-align: center; min-height: 18px; }
.final__form input::placeholder { color: rgba(245,241,234,.46); }
.final__hint { margin-top: 18px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,241,234,.5); }

/* =========================================================
   footer
   ========================================================= */
footer { background: var(--bone); color: var(--ink); padding: 80px 0 40px; }
.foot { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 880px) { .foot { grid-template-columns: 1fr 1fr; } }
.foot__col h4 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; font-weight: 500; }
.foot__col a, .foot__col p { display: block; font-size: 14px; color: var(--ink-2); margin-bottom: 10px; line-height: 1.55; }
.foot__col a:hover { color: var(--accent); }
.foot__brand .wordmark { font-size: 26px; color: var(--ink); }
.foot__tag { margin-top: 14px; font-size: 14px; color: var(--ink-2); max-width: 30ch; }
.foot__bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em;
}
.foot__bottom a:hover { color: var(--accent); }

/* =========================================================
   scroll motion
   ========================================================= */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal--slow { transition-duration: 1.2s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--slow { opacity: 1; transform: none; transition: none; }
  .hero__slide, .featured__hero .img, .case__img, .tile__img { transition: none !important; }
}

/* =========================================================
   mobile nav
   ========================================================= */
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: var(--r);
    border: 1px solid currentColor;
    position: relative;
    background: transparent;
  }
  .nav__burger span {
    display: block; width: 16px; height: 1px;
    background: currentColor;
    position: relative;
    transition: background-color .2s ease;
  }
  .nav__burger span::before,
  .nav__burger span::after {
    content: ""; position: absolute;
    left: 0; width: 16px; height: 1px;
    background: currentColor;
    transition: transform .25s ease;
  }
  .nav__burger span::before { top: -5px; }
  .nav__burger span::after  { top:  5px; }

  /* OPEN STATE — full-screen overlay */
  body.is-menu-open { overflow: hidden; }
  body.is-menu-open .nav {
    background: var(--bone);
    color: var(--ink);
    border-bottom-color: var(--hair);
  }
  body.is-menu-open .nav__burger span { background-color: transparent; }
  body.is-menu-open .nav__burger span::before { transform: translateY(5px) rotate(45deg); }
  body.is-menu-open .nav__burger span::after  { transform: translateY(-5px) rotate(-45deg); }

  body.is-menu-open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--bone);
    padding: 40px 24px 120px;
    z-index: 49;
    overflow-y: auto;
  }
  body.is-menu-open .nav__links a {
    color: var(--ink);
    font-family: var(--serif);
    font-variation-settings: "opsz" 72;
    font-weight: 300;
    font-size: clamp(28px, 7vw, 40px);
    letter-spacing: -0.012em;
    line-height: 1.1;
    opacity: 1;
    padding: 6px 0;
    border-bottom: none;
  }
  body.is-menu-open .nav__links a::after { display: none; }
  body.is-menu-open .nav__cta {
    display: inline-flex;
    position: fixed;
    bottom: 28px; left: 24px; right: 24px;
    justify-content: center;
    padding: 16px 22px;
    z-index: 50;
  }

  .hero__meta { font-size: 10px; gap: 12px; }
  .hero__meta > div:nth-child(2) { display: none; }
  .hero__cue { display: none; }
}

/* =========================================================
   theme switcher (temporary colour test tool)
   ========================================================= */
.theme {
  position: fixed; right: 18px; bottom: 18px; z-index: 200;
  font-family: var(--sans);
}
.theme__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 14px 9px 10px;
  background: rgba(20,18,16,.88);
  color: #F5F1EA;
  border: 1px solid rgba(245,241,234,.16);
  border-radius: 999px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 26px rgba(0,0,0,.22);
  transition: transform .2s ease, background-color .2s ease;
}
.theme__btn:hover { background: rgba(20,18,16,.96); transform: translateY(-1px); }
.theme__dots { display: inline-flex; gap: 3px; }
.theme__dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid rgba(245,241,234,.22);
  display: inline-block;
}
.theme__btn-label { letter-spacing: 0.1em; }
.theme__btn-num {
  font-variant-numeric: tabular-nums;
  opacity: .65; letter-spacing: 0.04em;
  padding-left: 6px; border-left: 1px solid rgba(245,241,234,.16);
}

.theme__panel {
  position: absolute; right: 0; bottom: calc(100% + 10px);
  width: 320px;
  background: rgba(20,18,16,.96);
  color: #F5F1EA;
  border: 1px solid rgba(245,241,234,.16);
  border-radius: 10px;
  padding: 10px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
  font-family: var(--sans);
}
.theme__panel[hidden] { display: none; }

.theme__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 6px 10px 12px;
  border-bottom: 1px solid rgba(245,241,234,.10);
}
.theme__title { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(245,241,234,.78); }
.theme__hint  { font-size: 10px; letter-spacing: 0.04em; color: rgba(245,241,234,.4); }

.theme__list {
  list-style: none; padding: 8px 2px 2px; margin: 0;
  display: flex; flex-direction: column; gap: 2px;
  max-height: 60vh; overflow: auto;
}
.theme__row {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 10px; align-items: center;
  padding: 9px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color .2s ease;
}
.theme__row:hover { background: rgba(245,241,234,.06); }
.theme__row.is-on { background: rgba(245,241,234,.10); }
.theme__row-num {
  font-size: 10px; letter-spacing: 0.06em; color: rgba(245,241,234,.45);
  font-variant-numeric: tabular-nums; text-align: right;
}
.theme__row-name {
  font-size: 13px; font-weight: 500; color: #F5F1EA; letter-spacing: 0.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.theme__row-swatch {
  display: inline-flex; gap: 2px;
  padding: 2px; background: rgba(245,241,234,.04);
  border-radius: 4px;
}
.theme__row-swatch i {
  width: 14px; height: 14px; display: inline-block; border-radius: 2px;
  border: 1px solid rgba(0,0,0,.18);
}
.theme__row.is-on .theme__row-num { color: rgba(245,241,234,.8); }
.theme__check {
  position: absolute; right: -4px; top: -4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); border: 2px solid rgba(20,18,16,.96);
  display: none;
}
.theme__row.is-on .theme__check { display: block; }
.theme__row { position: relative; }

@media (max-width: 520px) {
  .theme__panel { width: calc(100vw - 36px); }
  .theme__btn-label { display: none; }
}

/* =========================================================
   legal pages, long-form editorial reading layout
   ========================================================= */
.legal-hero { padding: 152px 0 40px; }
.legal-hero .eyebrow { color: var(--ink-2); }
.legal-hero h1 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 96;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: -0.018em;
  line-height: 1.04;
  max-width: 18ch;
  margin: 14px 0 18px;
}
.legal-hero h1 em { color: var(--deep); font-style: italic; }
.legal-hero .legal__meta {
  font-size: 13px; color: var(--ink-3);
  letter-spacing: 0.04em;
}

.legal-body {
  padding: 32px 0 96px;
  max-width: 68ch;
}
.legal-body h2 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 36;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 30px);
  letter-spacing: -0.012em;
  line-height: 1.15;
  margin: 56px 0 14px;
  color: var(--deep);
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 28px 0 8px;
}
.legal-body p {
  font-size: 16px;
  line-height: 1.72;
  color: var(--ink);
  margin: 0 0 16px;
}
.legal-body p.lead {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 28px;
}
.legal-body a { color: var(--accent); border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); transition: border-color .2s ease; }
.legal-body a:hover { border-bottom-color: var(--accent); }
.legal-body ul, .legal-body ol {
  padding-left: 22px;
  margin: 0 0 18px;
}
.legal-body li {
  font-size: 16px; line-height: 1.72; color: var(--ink);
  margin-bottom: 8px;
}
.legal-body li::marker { color: var(--ink-3); }
.legal-body strong { font-weight: 600; color: var(--ink); }
.legal-body .note {
  font-size: 14px; color: var(--ink-2);
  border-left: 2px solid var(--hair);
  padding: 4px 0 4px 18px;
  margin: 24px 0;
  line-height: 1.6;
}
.legal-body hr {
  border: none;
  border-top: 1px solid var(--hair);
  margin: 48px 0;
}

@media (max-width: 720px) {
  .legal-hero { padding: 128px 0 28px; }
  .legal-body { padding: 24px 0 72px; }
  .legal-body h2 { margin-top: 44px; }
}

/* =========================================================
   honeypot (off-screen, accessible-hidden) + form status msg
   ========================================================= */
.hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.final__msg {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(245,241,234,.78);
  min-height: 1.5em;
  letter-spacing: 0.01em;
}
.final__msg[data-tone="ok"]    { color: color-mix(in srgb, var(--bone) 80%, var(--accent) 20%); }
.final__msg[data-tone="error"] { color: color-mix(in srgb, var(--accent) 70%, var(--bone) 30%); }
