/* ==========================================================================
   Luxcompass — site stylesheet
   Design tokens + reusable components, translated from the Claude Design
   prototype (claude.ai/design project 41a88cee) into a static, framework-free
   production stylesheet. Single source of truth: design.md.
   ========================================================================== */

/* --- Design tokens ------------------------------------------------------- */
:root {
  /* Palette (design.md §2) */
  --ink:          #1F2937;  /* headings, nav text, dark sections, footer      */
  --camel:        #8B7355;  /* buttons, links, accents, active states         */
  --deeper-camel: #7A6547;  /* button hover, secondary accent                 */
  --espresso:     #3A342E;  /* body text                                      */
  --cream:        #F7F3ED;  /* primary page background                        */
  --stone:        #C4B5A0;  /* secondary surfaces, dividers, eyebrow on dark  */
  --white:        #FFFFFF;  /* elevated cards, form fields                    */
  --taupe:        #A89985;  /* borders, meta text, tagline, copyright         */
  --line:         #E4DBCF;  /* hairline borders on light backgrounds          */
  --line-dark:    #34404E;  /* hairline borders on ink                        */
  --hero-body:    #E6DFD4;  /* hero paragraph on ink                          */
  --status:       #8FA0AE;  /* muted status/disclaimer on ink                 */

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Rhythm */
  --content: 1140px;
  --gap-section: 96px;
  --radius: 2px;
}

/* --- Reset / base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--espresso);
  background: var(--cream);
  overflow-x: hidden;                 /* guard against decorative overflow    */
}

img { max-width: 100%; display: block; }

a { color: var(--camel); }
a:hover { color: var(--deeper-camel); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--ink); }

/* --- Layout helpers ------------------------------------------------------ */
.container { max-width: var(--content); margin: 0 auto; padding: 0 32px; width: 100%; }

.section { padding: var(--gap-section) 32px; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--ink   { background: var(--ink); color: var(--cream); }

.section__head { text-align: center; max-width: 640px; margin: 0 auto; }
.section__head--gap { margin-bottom: 52px; }

.eyebrow {
  font-size: 13px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--camel); font-weight: 600;
}
.eyebrow--stone { color: var(--stone); }
.eyebrow--sm { font-size: 12px; color: var(--taupe); }

.h-section {
  font-family: var(--serif); font-weight: 500; font-size: 44px;
  line-height: 1.15; color: var(--ink); margin: 16px 0 0;
}
.section--ink .h-section { color: var(--cream); }

.lead { font-size: 17px; line-height: 1.75; color: var(--espresso); margin: 24px 0 0; }
.section--ink .lead { color: var(--stone); }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 15px 34px; border-radius: var(--radius);
  border: 1px solid transparent; transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.btn-primary { background: var(--camel); color: var(--cream); border-color: var(--camel); }
.btn-primary:hover { background: var(--deeper-camel); border-color: var(--deeper-camel); color: var(--cream); transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); font-size: 13px; letter-spacing: 1px; padding: 13px 28px; }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn-on-ink { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-on-ink:hover { background: var(--stone); border-color: var(--stone); color: var(--ink); }

/* --- Navigation ---------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream); border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--content); margin: 0 auto; padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px 24px;
}
.nav__brand {
  text-decoration: none; font-family: var(--sans); font-weight: 600;
  font-size: 18px; letter-spacing: 4px; color: var(--ink); white-space: nowrap;
}
.nav__links { display: flex; align-items: center; gap: 12px 22px; }
.nav__link {
  text-decoration: none; text-transform: uppercase; letter-spacing: 1px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  color: var(--ink); padding-bottom: 3px; white-space: nowrap;
  border-bottom: 1px solid transparent;
}
.nav__link:hover { color: var(--camel); }
.nav__link.is-active { color: var(--camel); border-bottom-color: var(--camel); }

.nav__has-dropdown { position: relative; display: flex; align-items: center; }
.nav__caret { font-size: 9px; }
.nav__dropdown {
  position: absolute; top: 100%; left: 0; padding-top: 10px; z-index: 60;
  display: none;
}
.nav__has-dropdown:hover .nav__dropdown,
.nav__has-dropdown:focus-within .nav__dropdown { display: block; }
.nav__dropdown-inner {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  min-width: 200px; box-shadow: 0 8px 24px rgba(31,41,55,.1);
  display: flex; flex-direction: column;
}
.nav__sub {
  text-decoration: none; text-transform: uppercase; letter-spacing: 1px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  padding: 12px 18px; white-space: nowrap; color: var(--ink);
}
.nav__sub:hover { background: #EFE8DD; color: var(--ink); }
.nav__sub.is-active { color: var(--camel); }

.nav__right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.nav__langs { display: flex; align-items: center; gap: 10px; }
.nav__lang {
  text-decoration: none; font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 1px; color: var(--taupe);
}
.nav__lang.is-active { color: var(--camel); }
.nav__cta {
  text-decoration: none; background: var(--camel); color: var(--cream);
  border: 1px solid var(--camel); border-radius: var(--radius);
  font-family: var(--sans); font-weight: 600; font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase; padding: 12px 22px;
}
.nav__cta:hover { background: var(--deeper-camel); border-color: var(--deeper-camel); color: var(--cream); }

.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 8px; color: var(--ink);
}
.nav__toggle svg { display: block; }

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative; min-height: 640px; display: flex; align-items: center;
  overflow: hidden; background: var(--ink);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(31,41,55,.72) 0%, rgba(31,41,55,.35) 45%, rgba(31,41,55,.05) 100%);
}
.hero__inner {
  position: relative; max-width: var(--content); margin: 0 auto; padding: 0 32px;
  width: 100%; pointer-events: none;
}
.hero__copy { max-width: 520px; }
.hero__copy .btn { pointer-events: auto; }
.hero__title {
  font-family: var(--serif); font-weight: 500; font-size: 72px; line-height: 1.05;
  color: var(--cream); margin: 20px 0 0;
}
.hero__text { font-size: 18px; line-height: 1.7; color: var(--hero-body); margin: 24px 0 0; }
.hero .btn { margin-top: 34px; }

/* --- Split (text + image) ------------------------------------------------ */
.split { max-width: var(--content); margin: 0 auto; display: grid; gap: 72px; align-items: center; }
.split--halves { grid-template-columns: 1fr 1fr; }
.split--founder { grid-template-columns: 1.2fr 1fr; gap: 56px; }
.split--enquiry { grid-template-columns: 1fr 1fr; align-items: start; }
.split__title { font-family: var(--serif); font-weight: 500; font-size: 44px; line-height: 1.15; color: var(--ink); margin: 16px 0 0; }
.split__media { position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.ratio-5-6  { aspect-ratio: 5/6; }
.ratio-9-13 { aspect-ratio: 9/13; }

.feature-blocks { display: grid; gap: 32px; margin-top: 36px; }
.feature-blocks h3 { font-family: var(--serif); font-weight: 600; font-size: 24px; color: var(--ink); margin: 0; }
.feature-blocks p { font-size: 16px; line-height: 1.7; color: var(--espresso); margin: 10px 0 0; }

/* --- Showreel / video ---------------------------------------------------- */
.showreel { max-width: 960px; margin: 0 auto; text-align: center; }
.showreel .h-section { font-size: 40px; line-height: 1.2; }
.showreel__frame {
  position: relative; margin-top: 40px; aspect-ratio: 16/9; background: var(--ink);
  border: 1px solid var(--stone); display: flex; align-items: center; justify-content: center;
}
.showreel__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.showreel__ph { text-align: center; color: var(--stone); }
.showreel__ph-label { margin-top: 14px; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.showreel__note { font-size: 15px; color: var(--taupe); margin: 18px 0 0; }

/* --- Practice cards ------------------------------------------------------ */
.cards-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; margin-top: 56px; align-items: stretch; }
.card {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  border: 1px solid var(--line); background: var(--white);
  transition: border-color .18s;
}
.card:hover { border-color: var(--camel); }
.card--feature { border-color: var(--camel); box-shadow: 0 18px 40px -28px rgba(31,41,55,.4); }
.card--feature:hover { border-color: var(--deeper-camel); }
.card__media { display: block; position: relative; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__media--raised { margin-top: -14px; }
.ratio-1-1  { aspect-ratio: 1/1; }
.ratio-9-10 { aspect-ratio: 9/10; }
.card__body { padding: 30px 28px 32px; }
.card__kicker { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--taupe); font-weight: 600; }
.card__kicker--camel { color: var(--camel); }
.card__title { font-family: var(--serif); font-weight: 600; font-size: 26px; color: var(--ink); margin: 10px 0 0; }
.card__text { font-size: 15px; line-height: 1.7; color: var(--espresso); margin: 12px 0 0; }
.card__note { font-size: 13px; line-height: 1.6; color: var(--taupe); margin: 10px 0 0; }
.card__more { display: inline-block; margin-top: 18px; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--camel); font-weight: 600; text-decoration: none; }

/* --- Feature tiles (What to expect) -------------------------------------- */
.tiles-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; }
.tile { background: var(--white); border: 1px solid var(--line); padding: 32px 26px; }
.tile h3 { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--ink); margin: 0; }
.tile p { font-size: 15px; line-height: 1.7; color: var(--espresso); margin: 12px 0 0; }

/* --- Testimonials -------------------------------------------------------- */
.quotes-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
.quote { margin: 0; background: var(--white); border: 1px solid var(--line); padding: 34px 30px; }
.quote blockquote { margin: 0; font-family: var(--serif); font-size: 23px; line-height: 1.4; color: var(--ink); }
.quote figcaption { margin-top: 22px; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--taupe); font-weight: 600; }

/* --- Enquiry form -------------------------------------------------------- */
.enquiry__intro .lead { color: var(--stone); }
.enquiry__aside { font-size: 14px; line-height: 1.7; color: var(--taupe); margin: 22px 0 0; }
.form { display: grid; gap: 18px; }
.form input, .form select, .form textarea {
  background: var(--white); border: 1px solid var(--stone); border-radius: var(--radius);
  padding: 15px 16px; font-family: var(--sans); font-size: 15px; color: var(--espresso);
  width: 100%;
}
.form textarea { resize: vertical; }
.form__note { font-size: 13px; line-height: 1.6; color: var(--stone); margin: -6px 0 0; }
.form__status { font-size: 14px; color: var(--status); min-height: 1em; }
.form__legal { font-size: 12px; line-height: 1.6; color: var(--status); margin: 2px 0 0; }
.form__legal a, .enquiry__intro a { color: var(--stone); }
.form .btn { justify-self: start; }

/* --- Footer -------------------------------------------------------------- */
.footer { background: var(--ink); color: var(--stone); font-family: var(--sans); }
.footer__inner { max-width: var(--content); margin: 0 auto; padding: 72px 32px 40px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer__brand { font-weight: 600; font-size: 18px; letter-spacing: 4px; color: var(--cream); }
.footer__tag { font-family: var(--serif); font-size: 26px; line-height: 1.3; color: var(--cream); margin: 22px 0 0; font-weight: 500; }
.footer__col-title { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--taupe); margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer__links a { text-decoration: none; color: var(--stone); }
.footer__links a:hover { color: var(--cream); }
.footer__social { display: flex; gap: 18px; margin-top: 22px; }
.footer__social a { color: var(--stone); }
.footer__social a:hover { color: var(--cream); }
.footer__bar {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: var(--taupe);
}

/* --- Sub-hero (interior pages) ------------------------------------------- */
.subhero {
  position: relative; min-height: 460px; display: flex; align-items: flex-end;
  overflow: hidden; background: var(--ink);
}
.subhero__media { position: absolute; inset: 0; }
.subhero__media img { width: 100%; height: 100%; object-fit: cover; }
.subhero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(31,41,55,.85) 0%, rgba(31,41,55,.2) 70%);
}
.subhero__inner { position: relative; max-width: var(--content); margin: 0 auto; padding: 0 32px 56px; width: 100%; }
.subhero__title { font-family: var(--serif); font-weight: 500; font-size: 60px; line-height: 1.05; color: var(--cream); margin: 16px 0 0; }

/* --- Prose (narrow reading column) --------------------------------------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose .lede { font-family: var(--serif); font-size: 30px; line-height: 1.4; color: var(--ink); margin: 0; font-weight: 500; }
.prose p { font-size: 17px; line-height: 1.75; margin: 18px 0 0; }
.prose p:first-of-type { margin-top: 0; }
.prose .lede + p { margin-top: 28px; }

/* --- "You'll leave with" list -------------------------------------------- */
.leave-with ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 16px; }
.leave-with li { font-size: 18px; line-height: 1.6; color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 16px; }
.leave-with li:last-child { border-bottom: 0; padding-bottom: 0; }

/* --- 3 columns with top rule --------------------------------------------- */
.cols-3-rule { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 44px; }
.cols-3-rule > div { border-top: 2px solid var(--camel); padding-top: 22px; }
.cols-3-rule h3 { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--ink); margin: 0; }
.cols-3-rule p { font-size: 16px; line-height: 1.7; margin: 10px 0 0; }

/* --- Detail split (image + steps), interior ------------------------------ */
.split__steps { display: grid; gap: 24px; margin-top: 28px; }
.split__steps h3 { font-family: var(--serif); font-weight: 600; font-size: 21px; color: var(--ink); margin: 0; }
.split__steps p { font-size: 16px; line-height: 1.7; margin: 8px 0 0; }
.ratio-6-7 { aspect-ratio: 6/7; }

/* --- Price / investment block -------------------------------------------- */
.price { max-width: 560px; margin: 0 auto; text-align: center; }
.price__label { font-family: var(--serif); font-size: 22px; color: var(--stone); margin: 14px 0 0; }
.price__amount { font-family: var(--serif); font-weight: 600; font-size: 60px; line-height: 1; color: var(--cream); margin: 6px 0 0; }
.price__note { font-size: 16px; line-height: 1.7; color: var(--stone); margin: 20px auto 0; max-width: 440px; }
.price .btn { margin-top: 30px; }

/* --- FAQ accordion (native <details>) ------------------------------------ */
.faq { max-width: 820px; margin: 0 auto; }
.faq__list { border-top: 1px solid var(--line); margin-top: 8px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; padding: 24px 4px;
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__q { font-family: var(--serif); font-weight: 600; font-size: 24px; color: var(--ink); margin: 0; }
.faq__chevron { flex: none; color: var(--camel); transition: transform .2s; }
.faq__item[open] .faq__chevron { transform: rotate(180deg); }
.faq__a { font-size: 16px; line-height: 1.75; color: var(--espresso); margin: 0 4px 24px; max-width: 680px; }

/* --- Journey timeline ---------------------------------------------------- */
.journey { max-width: 900px; margin: 0 auto; }
.journey__head { text-align: center; max-width: 620px; margin: 0 auto; }
.journey__intro { font-size: 16px; line-height: 1.7; color: var(--espresso); margin: 16px 0 0; }
.journey__track { position: relative; margin-top: 44px; padding: 8px 0; }
.journey__line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #DACEBB; transform: translateX(-50%); z-index: 0; }
.journey__fill { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--camel); border-radius: 2px; transform-origin: top; }
.journey__track.is-enhanced .journey__fill { height: 0; transition: height .12s linear; }
.journey__cap { position: relative; z-index: 1; display: flex; justify-content: center; }
.journey__cap span { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 11px 26px; border-radius: 2px; }
.journey__cap--start span { background: var(--ink); color: var(--cream); }
.journey__cap--end span { background: var(--camel); color: var(--cream); }
.journey__cap--start { padding-bottom: 8px; }
.journey__cap--end { padding-top: 8px; }
.journey__steps { list-style: none; margin: 0; padding: 0; }
.journey__row { display: grid; grid-template-columns: 1fr 72px 1fr; align-items: stretch; position: relative; z-index: 1; }
.journey__card {
  grid-row: 1; align-self: center; background: var(--white); border: 1px solid var(--line);
  padding: 24px 26px; max-width: 360px; width: 100%; margin: 20px 28px; transition: border-color .2s;
}
.journey__card:hover { border-color: var(--camel); }
.journey__row:nth-child(odd)  .journey__card { grid-column: 1; justify-self: end; text-align: right; }
.journey__row:nth-child(even) .journey__card { grid-column: 3; justify-self: start; text-align: left; }
.journey__card > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px; justify-content: space-between; }
.journey__card > summary::-webkit-details-marker { display: none; }
.journey__row:nth-child(odd) .journey__card > summary { flex-direction: row-reverse; }
.journey__meta { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--taupe); font-weight: 600; }
.journey__title { font-family: var(--serif); font-weight: 600; font-size: 23px; color: var(--ink); margin: 6px 0 0; }
.journey__chevron { flex: none; color: var(--camel); transition: transform .2s; }
.journey__card[open] .journey__chevron { transform: rotate(180deg); }
.journey__detail { font-size: 15px; line-height: 1.7; color: var(--espresso); margin: 14px 0 0; }
.journey__mid { grid-column: 2; grid-row: 1; display: flex; align-items: center; justify-content: center; }
.journey__dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--stone);
  border: 3px solid var(--cream); box-shadow: 0 0 0 1px #DACEBB; transition: all .25s ease;
}
.journey__row.is-active .journey__dot { width: 20px; height: 20px; background: var(--ink); border: 4px solid var(--camel); }
.journey__labelwrap { grid-row: 1; display: flex; align-items: center; padding: 20px 28px; }
.journey__row:nth-child(odd)  .journey__labelwrap { grid-column: 3; justify-content: flex-start; }
.journey__row:nth-child(even) .journey__labelwrap { grid-column: 1; justify-content: flex-end; }
.journey__marker {
  background: #EBE3D6; color: var(--ink); font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; padding: 11px 24px; border-radius: 2px; border: 1px solid #DACEBB;
  transition: all .25s ease; white-space: nowrap;
}
.journey__row.is-active .journey__marker { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* --- Page head (text-only hero) ------------------------------------------ */
.pagehead { max-width: var(--content); margin: 0 auto; }
.pagehead h1 { font-family: var(--serif); font-weight: 500; font-size: 60px; line-height: 1.05; color: var(--ink); margin: 16px 0 0; max-width: 760px; }
.section--ink .pagehead h1 { color: var(--cream); }
.pagehead--contact h1 { font-size: 52px; line-height: 1.1; }

/* --- About (sticky portrait + bio) --------------------------------------- */
.about { max-width: var(--content); margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
.about__aside { position: sticky; top: 110px; }
.about__portrait { position: relative; aspect-ratio: 1100/1600; }
.about__portrait img { width: 100%; height: 100%; object-fit: cover; }
.about__name { font-size: 13px; letter-spacing: 1px; color: var(--taupe); font-weight: 600; margin-top: 14px; }
.about__lede { font-family: var(--serif); font-size: 28px; line-height: 1.4; color: var(--ink); margin: 0; }
.about__body p { font-size: 17px; line-height: 1.75; margin: 18px 0 0; }
.about__body .about__lede { margin: 0; }
.about__body h2 { font-family: var(--serif); font-weight: 600; font-size: 28px; color: var(--ink); margin: 44px 0 0; }
.about__meta { font-size: 13px; line-height: 1.7; color: var(--taupe); margin: 20px 0 0; }
.about__note { font-size: 15px; line-height: 1.7; color: var(--taupe); margin: 22px 0 0; }

/* --- Contact ------------------------------------------------------------- */
.contact { max-width: var(--content); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact__channels { margin-top: 40px; display: grid; gap: 26px; }
.contact__label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--taupe); font-weight: 600; }
.contact__value { font-size: 18px; color: var(--cream); text-decoration: none; }
.contact__value:hover { color: var(--stone); }
.contact__fineprint { font-size: 14px; line-height: 1.7; color: var(--status); margin: 34px 0 0; max-width: 420px; }
.contact__form-card { background: #26313F; padding: 34px; border: 1px solid var(--line-dark); }
.contact__form-card .form__status { color: var(--stone); }

@media (max-width: 900px) {
  .pagehead h1 { font-size: 42px; }
  .pagehead--contact h1 { font-size: 40px; }
  .about, .contact { grid-template-columns: 1fr; gap: 40px; }
  .about__aside { position: static; }
  .about__portrait { max-width: 360px; }
}

/* --- Legal --------------------------------------------------------------- */
.legal { max-width: 760px; margin: 0 auto; }
.legal h1 { font-family: var(--serif); font-weight: 500; font-size: 52px; line-height: 1.1; color: var(--ink); margin: 14px 0 0; }
.legal__disclaimer { font-size: 15px; line-height: 1.7; color: var(--taupe); margin: 16px 0 0; }
.legal h2 { font-family: var(--serif); font-weight: 600; font-size: 28px; color: var(--ink); margin: 44px 0 0; }
.legal p { font-size: 16px; line-height: 1.75; margin: 14px 0 0; }

/* --- "What's included" list (on the dark investment section) ------------- */
.included { max-width: 760px; margin: 0 auto 64px; }
.included__list { margin-top: 24px; border-top: 1px solid var(--line-dark); }
.included__row {
  display: grid; grid-template-columns: 190px 1fr; gap: 24px;
  padding: 22px 4px; border-bottom: 1px solid var(--line-dark); align-items: start;
}
.included__label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--taupe); font-weight: 600; }
.included__text { font-size: 17px; line-height: 1.6; color: var(--hero-body); margin: 0; }
@media (max-width: 640px) {
  .included__row { grid-template-columns: 1fr; gap: 6px; }
}

/* --- Scroll reveal (only hides when JS is present; fail-open otherwise) --- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 980px) {
  :root { --gap-section: 72px; }
  .hero__title { font-size: 54px; }
  .h-section, .split__title { font-size: 36px; }
  .split--halves, .split--founder, .split--enquiry { grid-template-columns: 1fr; gap: 40px; }
  .split--founder .split__media { order: -1; }
  .cards-3, .quotes-3 { grid-template-columns: 1fr; }
  .card__media--raised { margin-top: 0; }
  .tiles-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  /* Mobile nav: collapse links + langs behind a toggle */
  .nav__toggle { display: inline-flex; order: 3; }
  .nav__links, .nav__right {
    display: none; order: 4; width: 100%; flex-direction: column;
    align-items: flex-start; gap: 4px; padding-top: 12px;
  }
  .nav.is-open .nav__links, .nav.is-open .nav__right { display: flex; }
  .nav__inner { flex-wrap: wrap; }
  .nav__has-dropdown { flex-direction: column; align-items: flex-start; }
  .nav__dropdown { position: static; display: block; padding-top: 6px; }
  .nav__dropdown-inner { box-shadow: none; border: 0; min-width: 0; }
  .nav__sub { padding: 8px 0; }
  .nav__right { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 16px; }
}

@media (max-width: 560px) {
  .section, .hero__inner { padding-left: 22px; padding-right: 22px; }
  .container { padding: 0 22px; }
  .hero__title { font-size: 44px; }
  .tiles-4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .subhero__title { font-size: 44px; }
  .prose .lede { font-size: 25px; }
  .cols-3-rule { grid-template-columns: 1fr; gap: 20px; }
  .price__amount { font-size: 48px; }

  /* Journey → single left rail; marker label sits ABOVE each card (its own row)
     so nothing overlaps the card meta text or blocks the summary tap target. */
  .journey__track { padding-left: 8px; }
  .journey__line { left: 18px; }
  .journey__cap { justify-content: flex-start; }
  .journey__row { grid-template-columns: 36px 1fr; grid-template-rows: auto auto; column-gap: 8px; }
  /* dot rail (column 1) spans both rows */
  .journey__mid,
  .journey__row:nth-child(odd) .journey__mid,
  .journey__row:nth-child(even) .journey__mid {
    grid-column: 1; grid-row: 1 / span 2; justify-content: center; align-items: flex-start; padding-top: 2px;
  }
  /* marker label: row 1 */
  .journey__labelwrap,
  .journey__row:nth-child(odd) .journey__labelwrap,
  .journey__row:nth-child(even) .journey__labelwrap {
    grid-column: 2; grid-row: 1; justify-content: flex-start; align-items: center; padding: 0; margin: 0 0 8px;
  }
  .journey__marker { margin: 0; }
  /* card: row 2, full width */
  .journey__card,
  .journey__row:nth-child(odd) .journey__card,
  .journey__row:nth-child(even) .journey__card {
    grid-column: 2; grid-row: 2; justify-self: stretch; align-self: start; text-align: left; max-width: none; margin: 0 0 22px;
  }
  .journey__row:nth-child(odd) .journey__card > summary { flex-direction: row; }
}

@media (max-width: 560px) {
  .subhero__title { font-size: 38px; }
  .faq__q { font-size: 20px; }
}

/* --- Reduced motion ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .nav__link, .footer__links a { transition: none; }
  html { scroll-behavior: auto; }
}
