/* ==========================================================
   BODY CONNECTION — v3 · Editorial minimalism
   Flat cream · deep eucalyptus · coral accent · restrained type
   No gradients, no blobs, no arches, no waves.
   ========================================================== */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Surfaces — three-tone for real dimension */
  --bg:        #FBF7EE;   /* off-white primary (almost white, warm) */
  --bg-2:      #ECE4D4;   /* cream — alt sections, gives strong contrast */
  --bg-3:      #E5DBC6;   /* deeper cream — utility bar */
  --paper:     #FFFFFF;   /* pure white — inner cards, dimension layer */
  --white:     #FFFFFF;

  /* Brand */
  --coral:        #EB673B;
  --coral-deep:   #C84D24;
  --coral-soft:   #F58767;

  /* Eucalyptus (secondary accent + dark surfaces) */
  --euc-dark:     #1F2A1F;   /* almost-black with green hint, for footer/CTA */
  --euc:          #5C6E55;   /* mid eucalyptus */
  --euc-soft:     #8E9C84;   /* lighter accent */
  --euc-50:       #DEE3D8;   /* tint for backgrounds */

  /* Text */
  --ink:       #1A1F1B;   /* near-black for headlines */
  --text:      #43473F;   /* body copy */
  --mute:      #7B7969;   /* captions */
  --mute-2:    #A39E8E;   /* tertiary */

  /* Lines */
  --line:      #D6CCB8;   /* warm hairline */
  --line-2:    #E2D9C7;

  /* Type */
  --font-sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Cormorant", "Cormorant Garamond", Georgia, serif;

  /* Radius — sharp, restrained */
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 6px;
  --r-pill: 999px;

  /* Shadows — almost none */
  --shadow-xs: 0 1px 2px rgba(31,42,31,.04);
  --shadow-sm: 0 4px 16px rgba(31,42,31,.06);

  /* Layout */
  --max-w: 1320px;
  --section-y: clamp(96px, 11vw, 168px);
  --container-x: clamp(20px, 4vw, 48px);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Prevents white flash on iOS Safari overscroll — must match body --bg */
  background: #FBF7EE;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--euc); color: var(--bg); }

/* ---------- 3. TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  color: var(--ink);
  margin: 0 0 .4em;
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 500;
}
h1 { font-size: clamp(48px, 7.6vw, 116px); letter-spacing: -0.035em; line-height: 1; font-weight: 500; }
h2 { font-size: clamp(36px, 4.6vw, 64px); letter-spacing: -0.03em; }
h3 { font-size: clamp(22px, 2vw, 28px); letter-spacing: -0.015em; font-weight: 500; }
h4 { font-size: 18px; letter-spacing: -0.005em; font-weight: 500; }
p { margin: 0 0 1em; color: var(--text); }
strong { font-weight: 600; color: var(--ink); }

/* The serif is reserved for ONE accent word in H1s. Nothing else. */
.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--euc);
  letter-spacing: -0.015em;
}
h1 .serif { font-size: 1.02em; line-height: 1; }

.lead {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  max-width: 50ch;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .28em;
  color: var(--coral);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--coral);
}
.eyebrow--euc { color: var(--euc); }
.eyebrow--euc::before { background: var(--euc); }
.eyebrow--mute { color: var(--mute); }
.eyebrow--mute::before { background: var(--mute); }

/* Numbered eyebrow used in sections / cards */
.numbra {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: .14em;
  color: var(--mute);
}

/* ---------- 4. LAYOUT ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-x);
}
.section { padding: var(--section-y) 0; position: relative; }
.section--bg-2 { background: var(--bg-2); }
.section--paper { background: var(--paper); }
.section--euc { background: var(--euc-dark); color: rgba(244,238,227,.72); }
.section--euc h1, .section--euc h2, .section--euc h3 { color: var(--bg); }
.section--euc .serif { color: var(--coral-soft); }
.section--euc .eyebrow { color: var(--coral-soft); }
.section--euc .eyebrow::before { background: var(--coral-soft); }
.section--euc p { color: rgba(244,238,227,.72); }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
}

.divider { height: 1px; background: var(--line); margin: 0; border: 0; }

/* ---------- 5. BUTTONS — sharp, confident ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-weight: 500; font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background .25s, color .25s, border-color .25s, transform .35s var(--ease);
  white-space: nowrap;
}
.btn .arrow {
  display: inline-block; transition: transform .35s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary {
  background: var(--coral); color: var(--bg);
  border-color: var(--coral);
}
.btn--primary:hover { background: var(--coral-deep); border-color: var(--coral-deep); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--euc {
  background: var(--euc); color: var(--bg);
  border-color: var(--euc);
}
.btn--euc:hover { background: var(--euc-dark); border-color: var(--euc-dark); }
.btn--ghost-euc {
  background: transparent; color: var(--euc);
  border-color: var(--euc);
}
.btn--ghost-euc:hover { background: var(--euc); color: var(--bg); }
.btn--ghost-light {
  background: transparent; color: var(--bg);
  border-color: rgba(244,238,227,.4);
}
.btn--ghost-light:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn--sm { padding: 12px 20px; font-size: 11px; }

.tlink {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: color .25s, border-color .25s;
}
.tlink--coral { color: var(--coral); border-bottom-color: var(--coral); }
.tlink--euc { color: var(--euc); border-bottom-color: var(--euc); }
.tlink:hover { color: var(--coral); border-bottom-color: var(--coral); }
.tlink .arrow { transition: transform .35s var(--ease); }
.tlink:hover .arrow { transform: translateX(4px); }

/* ---------- 6. UTILITY BAR ---------- */
.utility {
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
}
.utility__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 40px;
  font-weight: 500;
}
.utility a { color: var(--ink); transition: color .25s; }
.utility a:hover { color: var(--coral); }
.utility__center { color: var(--mute); letter-spacing: .22em; }
.utility__right { display: flex; align-items: center; gap: 18px; }
.utility svg { width: 12px; height: 12px; }
.utility__phone { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 700px) { .utility__center { display: none; } }

/* ---------- 7. HEADER / NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.brand { display: inline-flex; align-items: center; }
.brand img {
  height: 32px; width: auto; display: block;
  transition: opacity .25s;
}
.brand:hover img { opacity: .8; }
.site-footer .brand img { height: 36px; }
@media (max-width: 700px) {
  .brand img { height: 28px; }
}

.nav__menu { display: flex; align-items: center; gap: 36px; }
.nav__menu a {
  position: relative;
  padding: 8px 0;
  font-family: var(--font-sans);
  font-weight: 500; font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink);
  transition: color .25s;
}
.nav__menu a:hover { color: var(--coral); }
.nav__menu a.is-active { color: var(--coral); }
.nav__menu a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--coral);
}

.nav__cta {}
.nav__toggle {
  display: none; background: none; border: 0;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.nav__toggle span { position: relative; width: 22px; height: 1px; background: var(--ink); }
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 1px; background: var(--ink);
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }

@media (max-width: 980px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.is-open .nav__menu {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 88px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 16px var(--container-x) 24px;
  }
  .nav.is-open .nav__menu a { padding: 16px 0; font-size: 14px; border-top: 1px solid var(--line-2); }
  .nav.is-open .nav__menu a:first-child { border-top: 0; }
  .nav.is-open .nav__cta { display: inline-flex; margin: 16px var(--container-x); }
}

/* ---------- 8. HERO — editorial split ---------- */
.hero {
  padding: clamp(40px, 5vw, 64px) 0 clamp(48px, 6vw, 80px);
  background: var(--bg);
  position: relative;
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
@media (max-width: 980px) { .hero__inner { grid-template-columns: 1fr; } }

.hero__title {
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: var(--ink);
  margin: 20px 0 0;
}
.hero__title .serif {
  display: block;
  color: var(--euc);
  font-size: 1em;
  line-height: 1.04;
  margin-top: 0;
}
.hero__sub {
  margin-top: 24px; max-width: 480px;
  font-size: 16px; color: var(--text);
  line-height: 1.65;
}
.hero__cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

.hero__viewing {
  margin-top: 36px;
  display: flex; align-items: center; gap: 16px;
  font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mute);
}
.hero__viewing-line { width: 32px; height: 1px; background: var(--mute); flex: 0 0 auto; }
.hero__viewing strong { color: var(--coral); font-weight: 500; }
.hero__disclaimer {
  margin-top: 12px;
  font-size: 12px; color: var(--mute-2);
  letter-spacing: .04em;
}

.hero__visual {
  position: relative;
}
.hero__photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-sm);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo__label {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(31,42,31,.85);
  color: var(--bg);
  font-size: 10px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--r-sm);
}
.hero__thumbs {
  margin-top: 14px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.hero__thumb {
  position: relative;
  aspect-ratio: 1/1.05;
  overflow: hidden;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  transition: border-color .25s;
  cursor: pointer;
}
.hero__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.hero__thumb:hover img { transform: scale(1.05); }
.hero__thumb.is-active { border-color: var(--coral); }

/* Scroll indicator at bottom of hero */
.scroll-hint {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin-top: clamp(40px, 6vw, 80px);
  font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--mute);
}
.scroll-hint::before {
  content: ""; width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--mute));
}

/* ---------- 8.5 ACCESSIBILITY ---------- */
/* Visually hidden helper — content stays in the DOM for screen readers but
   takes no visible space until something focuses it. */
.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  z-index: 1000;
  background: var(--coral);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: var(--r-sm);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; outline: 2px solid var(--paper); outline-offset: 2px; }

/* Keyboard focus ring — only shows when the user is navigating by keyboard,
   never on mouse click. Coral so it matches the brand without being noisy. */
:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible { outline-offset: 4px; }

/* ---------- 9. PAGE HEAD ---------- */
/* Trimmed for less wasted scroll above the fold on internal pages — the
   pagehead is intro decoration, not the main story of the page. */
.pagehead {
  padding: clamp(48px, 5.5vw, 88px) 0 clamp(32px, 4vw, 56px);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.pagehead__inner { max-width: 800px; }
.crumbs {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; color: var(--mute);
  letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 20px;
}
.crumbs a:hover { color: var(--coral); }
.crumbs span { color: var(--coral); }
.pagehead h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.04;
}
.pagehead h1 .serif { color: var(--euc); }
.pagehead p {
  font-size: 16px; color: var(--text); margin-top: 18px; max-width: 560px;
  line-height: 1.6;
}

/* The first section right after a pagehead doesn't need the full top padding —
   the pagehead's bottom padding already creates breathing room. */
.pagehead + .section { padding-top: clamp(48px, 6vw, 88px); }

/* ---------- 10. SECTION HEADER ---------- */
.section-head {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 48px; margin-bottom: 72px; align-items: end;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}
.section-head h2 { margin: 16px 0 0; font-weight: 500; }
.section-head h2 .serif { color: var(--euc); }
.section-head p { font-size: 16px; color: var(--text); margin: 0; max-width: 44ch; }

/* ---------- 11. SERVICE CARDS — editorial grid ---------- */
.scard {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  transition: transform .35s var(--ease);
}
.scard:hover { transform: translateY(-4px); }
.scard__num {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mute); font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
}
.scard__num .arrow {
  width: 14px; height: 14px;
  display: inline-grid; place-items: center;
  color: var(--ink);
  transition: transform .35s var(--ease), color .25s;
}
.scard:hover .scard__num .arrow { transform: translateX(4px); color: var(--coral); }
.scard__img {
  margin-top: 20px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-sm);
}
.scard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.scard:hover .scard__img img { transform: scale(1.04); }
.scard__title {
  margin-top: 24px;
  font-size: 22px; font-weight: 500; color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.scard__desc {
  margin-top: 10px;
  font-size: 14px; color: var(--text); line-height: 1.55;
}

/* Rich-text output (Trix editor) — both <p> from manual HTML and <div> blocks
   that Trix produces should look like paragraphs. */
.rich p, .rich div { margin: 0 0 1em; }
.rich p:last-child, .rich div:last-child { margin-bottom: 0; }
.rich strong { color: var(--ink); font-weight: 600; }
.rich em { font-family: var(--font-serif); font-style: italic; color: var(--euc); }
.rich a { color: var(--coral); border-bottom: 1px solid var(--coral); }
.rich a:hover { color: var(--coral-deep); border-bottom-color: var(--coral-deep); }
.rich ul, .rich ol { margin: 0 0 1em 1.2em; padding: 0; }
.rich li { margin: 0 0 .25em; }
.rich h1, .rich h2, .rich h3 { margin: 1.4em 0 .5em; }

/* ---------- 12. TEAM CARD — clean editorial portrait ---------- */
.tcard {
  display: block;
  transition: transform .35s var(--ease);
}
.tcard:hover { transform: translateY(-4px); }
.tcard__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--bg-2);
}
.tcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.tcard:hover .tcard__img img { transform: scale(1.04); }
.tcard__body {
  padding-top: 20px;
}
.tcard__role {
  font-size: 10px; font-weight: 500; color: var(--mute);
  text-transform: uppercase; letter-spacing: .26em;
}
.tcard__name {
  margin-top: 8px;
  font-size: 22px; font-weight: 500; color: var(--ink);
  letter-spacing: -0.02em; line-height: 1.15;
}
.tcard__blurb { margin-top: 8px; font-size: 13px; color: var(--text); line-height: 1.55; }
.tcard__more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  font-size: 11px; font-weight: 500; color: var(--ink);
  letter-spacing: .22em; text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  transition: color .25s, border-color .25s;
}
.tcard:hover .tcard__more { color: var(--coral); border-bottom-color: var(--coral); }
.tcard__more::after { content: "→"; transition: transform .35s var(--ease); }
.tcard:hover .tcard__more::after { transform: translateX(3px); }

/* ---------- 13. SPLIT (image + text) ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px); align-items: center;
}
.split--reverse > :first-child { order: 2; }
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse > :first-child { order: 0; }
}
.split__img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-sm);
}
.split__img img { width: 100%; height: 100%; object-fit: cover; }
.split__img--wide { aspect-ratio: 5/6; }
.split__img--landscape { aspect-ratio: 5/4; }

/* Caption with thin line + small caps label */
.caption {
  display: flex; align-items: center; gap: 14px;
  margin-top: 14px;
  font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mute);
}
.caption::before {
  content: ""; width: 28px; height: 1px; background: var(--mute);
}

.split h2 { margin-bottom: 28px; }

/* ---------- 14. EDITORIAL LIST (numbered) ---------- */
.elist {
  display: flex; flex-direction: column;
}
.elist__row {
  display: grid; grid-template-columns: 80px 1fr 1.2fr 56px;
  gap: 32px; align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  transition: padding .35s var(--ease);
}
.elist__row:last-child { border-bottom: 1px solid var(--line); }
.elist__row:hover { padding-left: 12px; }
.elist__num {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--euc); font-weight: 500;
}
.elist__title {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500; color: var(--ink);
  letter-spacing: -0.02em; line-height: 1.15;
}
.elist__desc { font-size: 14px; color: var(--text); line-height: 1.55; max-width: 56ch; }
.elist__arrow {
  font-size: 22px; color: var(--ink);
  transition: transform .35s var(--ease), color .25s;
}
.elist__row:hover .elist__arrow { transform: translateX(8px); color: var(--coral); }
@media (max-width: 800px) {
  .elist__row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .elist__row:hover { padding-left: 0; }
  .elist__arrow { display: none; }
}

/* ---------- 15. BENEFITS — restrained ---------- */
.benefits {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 800px) { .benefits { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .benefits { grid-template-columns: 1fr; } }
.benefit {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background .25s;
}
.benefit:hover { background: var(--paper); }
.benefit__num {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--euc); font-weight: 500;
}
.benefit h4 {
  font-size: 20px; font-weight: 500; color: var(--ink);
  margin: 14px 0 10px;
  letter-spacing: -0.015em;
}
.benefit p { font-size: 14px; color: var(--text); line-height: 1.6; margin: 0; }

/* ---------- 16. CTA STRIP ---------- */
.cta {
  background: var(--euc-dark);
  color: rgba(244,238,227,.78);
  padding: clamp(64px, 8vw, 112px) clamp(40px, 6vw, 88px);
  border-radius: var(--r-md);
  position: relative; overflow: hidden;
}
.cta__inner {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 48px; align-items: center;
}
@media (max-width: 800px) { .cta__inner { grid-template-columns: 1fr; gap: 32px; } }
.cta h2 {
  color: var(--bg);
  font-weight: 500;
  margin: 16px 0 0;
}
.cta h2 .serif { color: var(--coral-soft); }
.cta p { color: rgba(244,238,227,.7); margin-top: 20px; max-width: 50ch; }
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 800px) { .cta__actions { justify-content: flex-start; } }

/* Light variant */
.cta--light { background: var(--bg-2); color: var(--text); }
.cta--light h2 { color: var(--ink); }
.cta--light h2 .serif { color: var(--euc); }
.cta--light p { color: var(--text); }
.cta--light .eyebrow { color: var(--euc); }
.cta--light .eyebrow::before { background: var(--euc); }

/* ---------- 17. FOOTER ---------- */
.site-footer {
  background: var(--euc-dark);
  color: rgba(244,238,227,.6);
  padding: 96px 0 36px;
}
.site-footer h4 {
  color: var(--bg); font-size: 11px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  margin-bottom: 24px;
}
.site-footer__top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(244,238,227,.08);
}
@media (max-width: 980px) { .site-footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .site-footer__top { grid-template-columns: 1fr; } }
.site-footer p { color: rgba(244,238,227,.55); font-size: 13px; line-height: 1.7; }
.site-footer ul li { margin-bottom: 12px; font-size: 13px; }
.site-footer ul a { color: rgba(244,238,227,.7); transition: color .25s; }
.site-footer ul a:hover { color: var(--bg); }
.site-footer .brand__name strong { color: var(--bg); }
.site-footer .brand__name span { color: rgba(244,238,227,.45); }
.site-footer__bottom {
  margin-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 11px; color: rgba(244,238,227,.4);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.socials { display: flex; gap: 8px; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(244,238,227,.15);
  color: rgba(244,238,227,.7);
  transition: background .25s, color .25s, border-color .25s;
}
.socials a:hover { background: var(--coral); color: var(--bg); border-color: var(--coral); }
.socials svg { width: 16px; height: 16px; }

/* ---------- 18. ACCORDION (FAQ) ---------- */
.faq { display: flex; flex-direction: column; }
.faq__item {
  border-top: 1px solid var(--line);
  transition: background .25s;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item[open] { background: var(--paper); }
.faq__item summary {
  list-style: none; padding: 28px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; cursor: pointer;
  font-size: 19px; font-weight: 500;
  color: var(--ink); letter-spacing: -0.015em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-sans); font-weight: 300;
  font-size: 24px; color: var(--euc);
  transition: transform .35s var(--ease);
  flex: 0 0 auto;
  width: 28px; text-align: center;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p { padding: 0 24px 28px; margin: 0; color: var(--text); font-size: 15px; line-height: 1.7; max-width: 75ch; }

/* ---------- 19. BIO / TEAM DETAIL ---------- */
.bio {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 7vw, 96px); align-items: start;
}
@media (max-width: 980px) { .bio { grid-template-columns: 1fr; } }
.bio__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-sm);
}
.bio__img img { width: 100%; height: 100%; object-fit: cover; }
.bio__role {
  color: var(--coral); font-weight: 500;
  text-transform: uppercase; letter-spacing: .22em; font-size: 11px;
}
.bio h1 {
  font-size: clamp(44px, 5.6vw, 80px);
  font-weight: 500; letter-spacing: -0.025em; line-height: 1.02;
  margin: 14px 0 28px;
  color: var(--ink);
}
.bio__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.bio p { color: var(--text); font-size: 16px; line-height: 1.75; }
.bio__qual {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px 36px; margin-top: 36px;
  border-radius: var(--r-sm);
}
.bio__qual h4 {
  font-size: 11px; color: var(--euc);
  letter-spacing: .26em; text-transform: uppercase;
  margin-bottom: 18px; font-weight: 500;
}
.bio__qual ul { display: flex; flex-direction: column; gap: 10px; }
.bio__qual ul li {
  display: flex; align-items: start; gap: 14px;
  font-size: 14px; color: var(--ink);
}
.bio__qual ul li::before {
  content: ""; width: 4px; height: 4px;
  background: var(--euc); margin-top: 9px; flex: 0 0 auto;
}
.bio__cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

/* ---------- 20. TAGS / CHIPS ---------- */
.tag {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  font-size: 10px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--euc);
  border: 1px solid var(--euc-soft);
  border-radius: var(--r-sm);
  background: transparent;
}
.tag--coral { color: var(--coral); border-color: var(--coral); }
.tag--filled { background: var(--bg-2); color: var(--ink); border-color: var(--bg-2); }

/* ---------- 21. CONTACT ---------- */
.contact-grid {
  display: grid; grid-template-columns: .9fr 1.2fr;
  gap: clamp(40px, 6vw, 88px); align-items: start;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: var(--r-sm);
}
.contact-info__row {
  display: flex; gap: 16px; padding: 22px 0;
  border-top: 1px solid var(--line);
}
.contact-info__row:first-of-type { border-top: 0; padding-top: 0; }
.contact-info__icon {
  flex: 0 0 auto; width: 36px; height: 36px;
  border: 1px solid var(--euc); color: var(--euc);
  display: grid; place-items: center;
  border-radius: var(--r-sm);
}
.contact-info__icon svg { width: 16px; height: 16px; }
.contact-info h4 {
  font-size: 10px; color: var(--mute);
  letter-spacing: .26em; text-transform: uppercase;
  margin: 0 0 4px; font-weight: 500;
}
.contact-info p { margin: 0; color: var(--ink); font-weight: 500; font-size: 15px; }

.form { display: grid; gap: 24px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 10px; font-weight: 500; color: var(--mute);
  letter-spacing: .26em; text-transform: uppercase;
}
.field input, .field textarea, .field select {
  font: inherit; padding: 14px 0;
  border: 0; border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  transition: border-color .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-bottom-color: var(--coral);
}
.field textarea { min-height: 100px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--mute-2); }
.field__hint { color: var(--mute-2); font-weight: 400; font-size: 12px; letter-spacing: 0; text-transform: none; margin-left: 6px; }
.field__err  { color: var(--coral); font-size: 13px; line-height: 1.4; margin-top: 2px; }
.field__err ul { list-style: none; padding: 0; margin: 0; }

.form-flash {
    padding: 14px 18px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line);
    font-size: 14px;
    line-height: 1.5;
}
.form-flash--ok  { background: #F2F6EE; border-color: #C7D6B5; color: var(--eucalyptus); }
.form-flash--err { background: #FBEDE7; border-color: #E9C5B5; color: var(--coral); }

/* ---------- 22. UTILS ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mt-8 { margin-top: 64px; }
.mb-0 { margin-bottom: 0 !important; }
.flex { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- 23. ANIMATIONS — restrained ---------- */
/* Pure-CSS fade-up animation. No JS dependency — runs as soon as the browser
   paints the element. Survives any page navigation (full reload, hard-refresh,
   future Turbo, whatever). `both` fill-mode keeps the element at its end state
   after the animation completes. */
@keyframes bc-fadeup {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
[data-anim] {
  animation: bc-fadeup .8s var(--ease) both;
}
[data-anim-delay="1"] { animation-delay: .08s; }
[data-anim-delay="2"] { animation-delay: .16s; }
[data-anim-delay="3"] { animation-delay: .24s; }
[data-anim-delay="4"] { animation-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  [data-anim] { opacity: 1; transform: none; }
}

/* ---------- 24. BOOKING PLACEHOLDER ---------- */
.booking-frame {
  background: var(--paper); border-radius: var(--r-sm);
  padding: 64px 48px;
  text-align: center;
  border: 1px solid var(--line);
}
.booking-frame__icon {
  width: 56px; height: 56px;
  border: 1px solid var(--euc); color: var(--euc);
  display: grid; place-items: center; margin: 0 auto 20px;
  border-radius: var(--r-sm);
}
.booking-frame h3 {
  font-size: 28px; font-weight: 500;
  letter-spacing: -0.02em;
}
.booking-frame__note {
  margin-top: 28px; padding: 14px 18px;
  background: var(--bg);
  border: 1px dashed var(--line);
  font-size: 11px; color: var(--mute);
  letter-spacing: .04em;
  border-radius: var(--r-sm);
}

/* ---------- 25. INFO STRIP (under hero) ---------- */
.info-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.info-strip__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .info-strip__inner { grid-template-columns: 1fr 1fr; } }
.info-strip__item {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--mute); font-weight: 500;
  display: flex; align-items: baseline; gap: 12px;
}
.info-strip__item strong {
  font-family: var(--font-sans);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
}
.info-strip__item .serif {
  font-family: var(--font-serif); font-style: italic;
  font-size: 22px; color: var(--euc);
}
