/* ==========================================================================
   MCA Email Leads — warm, open, light-first system
   Cream ground, deep evergreen ink, emerald accent, apricot highlight.
   ========================================================================== */

:root {
  --paper: #FCFAF6;
  --surface: #FFFFFF;
  --surface-2: #F5F1E9;

  --ink: #10201A;
  --ink-2: #172E25;

  --text: #16241E;
  --text-2: #4C5E56;
  --muted: #7C8A83;
  --on-dark: #F2F7F4;
  --on-dark-2: #A9BFB5;
  --mint: #6FE3B4;

  --line: #E6DFD2;
  --line-2: #D9D0C0;
  --line-dark: rgba(255, 255, 255, 0.14);

  --accent: #0E9F6E;
  --accent-deep: #07683F;
  --accent-soft: #E4F5EC;
  --warm: #F08A4B;
  --warm-soft: #FDEDE1;
  --red: #D9534F;

  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --max: 1240px;
  --gut: clamp(1.15rem, 4vw, 2.75rem);
  --r: 14px;
  --r-sm: 9px;
  --shadow: 0 2px 4px rgba(20,40,32,.04), 0 12px 28px -14px rgba(20,40,32,.16);
  --shadow-lg: 0 4px 8px rgba(20,40,32,.05), 0 28px 56px -24px rgba(20,40,32,.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.022em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); letter-spacing: -.032em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.7rem); letter-spacing: -.028em; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
h4 { font-size: 1.02rem; }
p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); position: relative; z-index: 1; }
.narrow { max-width: 820px; }

/* ---------------------------------- bits --------------------------------- */

.eyebrow {
  font-family: var(--font-mono); font-size: .69rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-deep);
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; border-radius: 2px; background: var(--accent); flex: none; }
.eyebrow.plain::before { display: none; }

.lede { font-size: clamp(1.05rem, 1.5vw, 1.24rem); color: var(--text-2); max-width: 62ch; line-height: 1.6; }
.mono { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.pill {
  display: inline-flex; align-items: center; gap: .42rem;
  font-family: var(--font-body); font-weight: 600; font-size: .78rem;
  padding: .36rem .8rem; border: 1px solid var(--line-2); border-radius: 100px;
  color: var(--text-2); background: var(--surface);
}
.pill.gold { border-color: transparent; color: var(--accent-deep); background: var(--accent-soft); }
.pill.teal { border-color: transparent; color: #A2521E; background: var(--warm-soft); }
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; letter-spacing: -.01em;
  padding: .88rem 1.6rem; border: 1px solid var(--accent); border-radius: 100px;
  background: var(--accent); color: #fff; cursor: pointer;
  box-shadow: 0 1px 2px rgba(7,104,63,.2), 0 10px 22px -12px rgba(14,159,110,.7);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--text); border-color: var(--line-2); box-shadow: none; }
.btn.ghost:hover { background: var(--surface); border-color: var(--accent); color: var(--accent-deep); box-shadow: var(--shadow); }
.btn.sm { padding: .6rem 1.15rem; font-size: .92rem; }
.btn.block { width: 100%; }

/* --------------------------------- header -------------------------------- */

.topbar { background: var(--accent-soft); color: var(--accent-deep); font-size: .82rem; position: relative; z-index: 3; border-bottom: 1px solid #D3EDE0; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 40px; }
.topbar a { color: var(--accent-deep); font-weight: 600; }
.topbar a:hover { color: var(--accent); }
.topbar .tb-right { display: flex; gap: 1.35rem; }
@media (max-width: 720px) { .topbar .tb-left { display: none; } .topbar .wrap { justify-content: center; } }

header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252,250,246,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }

.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand svg { display: block; flex: none; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -.03em; line-height: 1.05; }
.brand-sub { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .17em; color: var(--muted); text-transform: uppercase; margin-top: 2px; }

nav.main { display: flex; gap: .3rem; align-items: center; }
nav.main a {
  font-family: var(--font-display); font-weight: 500; font-size: .97rem;
  color: var(--text-2); padding: .5rem .8rem; border-radius: 100px;
  transition: background .15s ease, color .15s ease;
}
nav.main a:hover { background: var(--surface-2); color: var(--text); }
nav.main a.active { background: var(--accent-soft); color: var(--accent-deep); font-weight: 600; }

.nav-toggle { display: none; background: var(--surface); border: 1px solid var(--line-2); border-radius: 100px; color: var(--text); padding: .5rem .9rem; font-family: var(--font-display); font-weight: 600; font-size: .85rem; cursor: pointer; }

@media (max-width: 1020px) {
  nav.main { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: .6rem var(--gut) 1.1rem; box-shadow: var(--shadow); }
  nav.main.open { display: flex; }
  nav.main a { padding: .85rem .6rem; border-radius: var(--r-sm); }
  .nav-toggle { display: block; }
  header.site .btn { display: none; }
}

/* ---------------------------------- hero --------------------------------- */

.hero { position: relative; padding: clamp(2.5rem, 5vw, 4.5rem) 0 0; }
.hero::after {
  content: ''; position: absolute; top: -12%; right: -10%;
  width: 55vw; height: 55vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,159,110,.11), transparent 62%);
  pointer-events: none; z-index: 0;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 .hl { color: var(--accent-deep); }
.hero h1 .out { color: var(--warm); }

.hero-shot { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/11; }
.hero-shot img { width: 100%; height: 100%; object-fit: cover; }
.hero-shot::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,32,26,.22), transparent 45%); }
.hero-shot .tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(255,255,255,.94); color: var(--text);
  border-radius: 100px; padding: .5rem 1rem;
  font-family: var(--font-display); font-weight: 600; font-size: .88rem;
  display: flex; align-items: center; gap: .5rem; box-shadow: var(--shadow);
}
.hero-shot .tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin: 1.7rem 0 0; padding: 0; }
.hero-trust li { list-style: none; font-size: .92rem; color: var(--text-2); display: flex; gap: .45rem; align-items: center; }
.hero-trust li::before { content: '✓'; color: var(--accent); font-weight: 700; }

.statbar { margin-top: clamp(2.5rem, 5vw, 4rem); }
.statbar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.statbar .cell { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.4rem 1.35rem; box-shadow: var(--shadow); }
.statbar .v { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.35rem); font-weight: 700; color: var(--accent-deep); line-height: 1; letter-spacing: -.03em; }
.statbar .l { font-size: .86rem; color: var(--text-2); margin-top: .5rem; line-height: 1.4; }
@media (max-width: 780px) { .statbar .wrap { grid-template-columns: 1fr 1fr; } }

/* --------------------------------- sections ------------------------------ */

.section { padding: clamp(3.25rem, 6vw, 5.75rem) 0; position: relative; }
.section.alt { background: var(--surface-2); }
.section-head { max-width: 780px; margin-bottom: clamp(1.85rem, 3.5vw, 2.9rem); }
.section-head p { color: var(--text-2); margin-top: .9rem; }

/* dark inverted block — `.paper` kept as an alias for existing markup */
.section.paper, .section.dark { background: linear-gradient(170deg, #EDF8F2 0%, #FBF6EE 100%); color: var(--text); }
.section.paper h2, .section.dark h2, .section.paper h3, .section.dark h3 { color: var(--text); }
.section.paper p, .section.dark p { color: var(--text-2); }
.section.paper .eyebrow, .section.dark .eyebrow { color: var(--accent-deep); }
.section.paper .eyebrow::before, .section.dark .eyebrow::before { background: var(--accent); }
.section.paper .card, .section.dark .card { background: var(--surface); border-color: #D8EAE0; }
.section.paper .card h3, .section.dark .card h3 { color: var(--text); }
.section.paper .card p, .section.dark .card p { color: var(--text-2); }
.section.paper a.card:hover, .section.dark a.card:hover { border-color: var(--accent); }
.section.paper .card .idx, .section.dark .card .idx { color: var(--accent); }
.section.paper .card .arrow, .section.dark .card .arrow { color: var(--accent-deep); }
.section.paper .spec, .section.dark .spec { background: var(--surface); border-color: #D8EAE0; }
.section.paper .spec-row, .section.dark .spec-row { border-color: #E6EFE9; }
.section.paper .spec-row dt, .section.dark .spec-row dt { background: #F4FAF7; border-color: #E6EFE9; color: var(--muted); }
.section.paper .spec-row dd, .section.dark .spec-row dd { color: var(--text); }
.section.paper .linkgrid a, .section.dark .linkgrid a { background: var(--surface); border-color: #D8EAE0; color: var(--text-2); }
.section.paper .linkgrid a:hover, .section.dark .linkgrid a:hover { border-color: var(--accent); color: var(--accent-deep); }
.section.paper .mono, .section.dark .mono { color: var(--muted); }
.section.paper .checks li, .section.dark .checks li { color: var(--text-2); }
.section.paper .btn.ghost, .section.dark .btn.ghost { color: var(--text); border-color: var(--line-2); }
.section.paper .btn.ghost:hover, .section.dark .btn.ghost:hover { background: var(--surface); color: var(--accent-deep); border-color: var(--accent); }

/* --------------------------------- cards --------------------------------- */

.grid { display: grid; gap: 1rem; }
.grid.c2 { grid-template-columns: repeat(2, 1fr); }
.grid.c3 { grid-template-columns: repeat(3, 1fr); }
.grid.c4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid.c3, .grid.c4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid.c2, .grid.c3, .grid.c4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: .65rem;
  position: relative; box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
a.card:hover h3 { color: var(--accent-deep); }
.card h3 { transition: color .18s ease; }
.card p { color: var(--text-2); font-size: .95rem; margin: 0; }
.card .idx { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.card .arrow { font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--accent-deep); margin-top: auto; padding-top: .5rem; }

.spec { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); overflow: hidden; box-shadow: var(--shadow); }
.spec-row { display: grid; grid-template-columns: 195px 1fr; border-bottom: 1px solid var(--line); }
.spec-row:last-child { border-bottom: 0; }
.spec-row dt { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 1rem 1.15rem; border-right: 1px solid var(--line); background: var(--surface-2); }
.spec-row dd { margin: 0; padding: 1rem 1.15rem; font-size: .96rem; color: var(--text); }
@media (max-width: 620px) {
  .spec-row { grid-template-columns: 1fr; }
  .spec-row dt { border-right: 0; border-bottom: 1px solid var(--line); }
}

.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.checks li { display: grid; grid-template-columns: 22px 1fr; gap: .7rem; align-items: start; color: var(--text-2); font-size: .97rem; }
.checks li::before {
  content: '✓'; color: var(--accent-deep); font-weight: 700; font-size: .78rem;
  background: var(--accent-soft); border-radius: 50%;
  width: 20px; height: 20px; display: grid; place-items: center; margin-top: .22rem;
}
.checks.teal li::before { color: #A2521E; background: var(--warm-soft); }
.tags { display: flex; flex-wrap: wrap; gap: .45rem; }

.steps { counter-reset: s; display: grid; gap: 1rem; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.6rem 1.5rem 1.6rem 4.4rem; counter-increment: s;
  box-shadow: var(--shadow); position: relative;
}
.step::before {
  content: counter(s); position: absolute; left: 1.5rem; top: 1.6rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-deep);
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  display: grid; place-items: center;
}
.step h3 { margin-bottom: .45rem; }
.step p { color: var(--text-2); font-size: .95rem; margin: 0; }

.cmp { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; font-size: .95rem; background: var(--surface); box-shadow: var(--shadow); }
.cmp th, .cmp td { padding: .95rem 1.1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.cmp tr:last-child td { border-bottom: 0; }
.cmp thead th { font-family: var(--font-display); font-weight: 600; font-size: .92rem; background: var(--surface-2); color: var(--text); }
.cmp thead th:nth-child(2) { color: var(--accent-deep); }
.cmp td:first-child { font-weight: 600; color: var(--text); width: 24%; }
.cmp td:nth-child(2) { background: var(--accent-soft); }
.cmp td:nth-child(3) { color: var(--text-2); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.linkgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: .6rem; }
.linkgrid a {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: .85rem 1.05rem; font-size: .94rem; color: var(--text-2);
  display: flex; justify-content: space-between; gap: .6rem; align-items: center;
  transition: border-color .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.linkgrid a:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.linkgrid a .ab { font-family: var(--font-mono); font-size: .7rem; color: var(--muted); }
.linkgrid a:hover .ab { color: var(--accent); }

.faq { display: grid; gap: .6rem; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); transition: border-color .15s ease; }
.faq details[open] { border-color: var(--accent); }
.faq summary { cursor: pointer; list-style: none; padding: 1.15rem 3.2rem 1.15rem 1.3rem; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-deep);
  display: grid; place-items: center; font-size: 1.05rem; line-height: 1;
}
.faq details[open] summary { color: var(--accent-deep); }
.faq details[open] summary::after { content: '–'; }
.faq .a { padding: 0 1.3rem 1.3rem; color: var(--text-2); font-size: .97rem; max-width: 78ch; }

.cta-band {
  border-radius: var(--r); color: var(--text);
  background: linear-gradient(120deg, #E8F7EF 0%, #FDF2E7 100%);
  border: 1.5px solid #BEE6D3;
  padding: clamp(2rem, 4vw, 3.25rem);
  display: grid; grid-template-columns: 1.4fr .6fr; gap: 2rem; align-items: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: var(--text); margin-bottom: .8rem; }
.cta-band p { color: var(--text-2); margin: 0; }
.cta-band .eyebrow { color: var(--accent-deep); }
.cta-band .eyebrow::before { background: var(--accent); }
.cta-band .acts { display: flex; flex-direction: column; gap: .7rem; }
.cta-band .btn.ghost { color: var(--text); background: rgba(255,255,255,.75); border-color: #BEE6D3; }
.cta-band .btn.ghost:hover { background: #fff; color: var(--accent-deep); border-color: var(--accent); }
@media (max-width: 820px) { .cta-band { grid-template-columns: 1fr; } }

.form-panel { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: clamp(1.4rem, 3vw, 1.9rem); box-shadow: var(--shadow-lg); }
.form-panel .fh { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; border-bottom: 1px solid var(--line); padding-bottom: .9rem; margin-bottom: 1.3rem; }
.form-panel .fh h3 { font-size: 1.3rem; }
.field { margin-bottom: .95rem; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--text-2); margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--paper);
  border: 1px solid var(--line-2); border-radius: var(--r-sm);
  color: var(--text); font-family: var(--font-body); font-size: .97rem; padding: .72rem .85rem;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: var(--surface); border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14,159,110,.15);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 18px) 53%, calc(100% - 13px) 53%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .85rem; line-height: 1.6; }
.form-msg { margin-top: .85rem; font-size: .92rem; }
.form-msg.err { color: var(--red); }
.form-msg.ok { color: var(--accent-deep); }

.crumbs { font-size: .85rem; color: var(--muted); padding: 1.1rem 0 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.crumbs a:hover { color: var(--accent-deep); }
.crumbs span.sep { color: var(--line-2); }

.phero { padding: clamp(2rem, 4vw, 3.4rem) 0 clamp(2rem, 3.5vw, 2.9rem); position: relative; }
.phero::after { content: ''; position: absolute; top: -30%; right: -8%; width: 46vw; height: 46vw; border-radius: 50%; background: radial-gradient(circle, rgba(14,159,110,.1), transparent 62%); pointer-events: none; }
.phero h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.phero .lede { margin-top: 1.15rem; }
.phero .acts { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }

.prose { max-width: 74ch; }
.prose h2 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); margin: 2.4rem 0 .8rem; }
.prose p { color: var(--text-2); }
.prose > p:first-of-type { font-size: 1.13rem; color: var(--text); }

footer.site { background: var(--surface-2); color: var(--text-2); padding: clamp(2.75rem, 5vw, 4rem) 0 0; position: relative; z-index: 1; border-top: 1px solid var(--line); }
footer.site .brand-name { color: var(--text); }
footer.site .divider { background: var(--line-2); }
.foot-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 2rem; }
@media (max-width: 980px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-col h4 { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 1rem; font-weight: 500; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.foot-col a { font-size: .92rem; color: var(--text-2); }
.foot-col a:hover { color: var(--accent-deep); }
.foot-about p { font-size: .93rem; color: var(--text-2); max-width: 34ch; }
.foot-bottom { border-top: 1px solid var(--line-2); margin-top: 2.6rem; padding: 1.4rem 0; }
.foot-bottom .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .85rem; }
.foot-bottom a:hover { color: var(--accent-deep); }
.disclaimer { font-size: .8rem; color: var(--muted); line-height: 1.7; max-width: 100ch; padding-bottom: 1.5rem; }

.mt0 { margin-top: 0; } .mt1 { margin-top: 1rem; } .mt2 { margin-top: 2rem; } .mt3 { margin-top: 3rem; }
.mb1 { margin-bottom: 1rem; } .mb2 { margin-bottom: 2rem; }
.center { text-align: center; }
.two-col { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 940px) { .two-col { grid-template-columns: 1fr; } }
.sticky { position: sticky; top: 100px; }
@media (max-width: 940px) { .sticky { position: static; } }
.divider { height: 1px; background: var(--line); margin: clamp(2rem, 4vw, 3rem) 0; border: 0; }

.rv { opacity: 0; transform: translateY(14px); animation: rise .6s cubic-bezier(.22,1,.36,1) forwards; }
.rv:nth-child(2) { animation-delay: .07s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .rv { animation: none; opacity: 1; transform: none; }
  * { transition: none !important; }
  html { scroll-behavior: auto; }
}
::selection { background: var(--accent-soft); color: var(--accent-deep); }

.cal-wrap { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); overflow: hidden; min-height: 720px; box-shadow: var(--shadow); }
.cal-wrap iframe { width: 100%; min-height: 720px; border: 0; display: block; }
.cal-fallback { padding: 2.5rem 1.5rem; text-align: center; color: var(--text-2); }

/* ==========================================================================
   IMAGERY
   ========================================================================== */

a.card.shot { padding: 0; overflow: hidden; min-height: 0; }
.card.shot .shot-img { display: block; position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card.shot .shot-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.36,1); }
a.card.shot:hover .shot-img img { transform: scale(1.06); }
.card.shot .shot-body { padding: 1.25rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: .4rem; background: var(--surface); }
.card.shot h3 { color: var(--text); }
a.card.shot:hover h3 { color: var(--accent-deep); }
.card.shot .idx { color: var(--accent); }
.card.shot .arrow { color: var(--accent-deep); }

.split { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.split.flip .split-media { order: 2; }
.split-media { position: relative; min-height: 400px; overflow: hidden; }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-body { padding: clamp(1.75rem, 3.5vw, 3rem); background: var(--surface); display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .split-media { min-height: 230px; }
}

.section.textured { position: relative; overflow: hidden; }
.section.textured .plate { position: absolute; inset: 0; z-index: 0; }
.section.textured .plate img { width: 100%; height: 100%; object-fit: cover; opacity: .07; }
.section.textured .plate::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, var(--paper), rgba(252,250,246,.75) 50%, var(--paper)); }
.section.textured .wrap { position: relative; z-index: 2; }

.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); overflow: hidden; padding: .9rem 0; margin-top: clamp(2.5rem, 5vw, 4rem); }
.ticker-track { display: flex; gap: 2.5rem; width: max-content; animation: slide 46s linear infinite; }
.ticker-track span { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--text-2); white-space: nowrap; display: flex; align-items: center; gap: 2.5rem; }
.ticker-track span::after { content: '●'; color: var(--accent); font-size: .45rem; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

.cta-band.shot .band-img { position: absolute; inset: 0; }
.cta-band.shot .band-img img { width: 100%; height: 100%; object-fit: cover; opacity: .16; }
.cta-band.shot .band-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, #EAF8F1 22%, rgba(253,242,231,.86) 78%); }
.cta-band.shot > * { position: relative; z-index: 2; }

.phero.shot .phero-img {
  position: absolute; top: 50%; right: var(--gut); transform: translateY(-50%);
  width: 34%; max-width: 420px; aspect-ratio: 4/3;
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); z-index: 1;
}
.phero.shot .phero-img img { width: 100%; height: 100%; object-fit: cover; }
.phero.shot .wrap { position: relative; z-index: 2; }
.phero.shot .wrap > * { max-width: 60%; }
@media (max-width: 900px) {
  .phero.shot .phero-img { display: none; }
  .phero.shot .wrap > * { max-width: 100%; }
}
