/* =========================================================
   AMC Capital Partners — design tokens
   ========================================================= */
:root {
  --green-950: #050f0a;
  --green-900: #081a12;
  --green-800: #0c261a;
  --green-700: #123524;
  --green-600: #1a4a33;
  --brand:     #0f4a2b;          /* logo green */
  --ivory:     #f3efe6;
  --ivory-2:   #e8e2d4;
  --paper:     #faf8f3;
  --ink:       #0d1a13;
  --ink-soft:  #4a564f;
  --gold:      #b89a5e;
  --gold-soft: #d8c393;
  --line-dark: rgba(243, 239, 230, .14);
  --line-light: rgba(13, 26, 19, .14);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --pad: clamp(16px, 4vw, 64px);
  --ease: cubic-bezier(.65, .05, 0, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--green-900);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--gold); color: var(--green-900); }

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(96px, 14vw, 200px) 0; position: relative; }
.section--light { background: var(--ivory); color: var(--ink); }
.section--dark  { background: var(--green-900); color: var(--ivory); }

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
  display: inline-flex; align-items: center; gap: 14px; opacity: .8;
}
.eyebrow .num { font-family: var(--serif); font-style: italic; font-size: 16px; letter-spacing: 0; color: var(--gold); }
.eyebrow--center { display: flex; justify-content: center; text-align: center; }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(184,154,94,.25); }

.h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(40px, 6.2vw, 96px); line-height: .98; letter-spacing: -.02em;
}
.h2 em, .hero__title em { font-style: italic; font-weight: 400; color: var(--gold); }
.section--light .h2 em { color: var(--brand); }
.h2--sm { font-size: clamp(34px, 4.6vw, 72px); line-height: 1.04; }

.lead { font-family: var(--serif); font-size: clamp(24px, 2.6vw, 38px); line-height: 1.22; font-weight: 400; letter-spacing: -.01em; }
.body { font-size: clamp(15px, 1.1vw, 17px); color: var(--ink-soft); max-width: 46ch; }
.section--dark .body { color: rgba(243,239,230,.68); }

.section-head { display: grid; gap: 28px; margin-bottom: clamp(56px, 8vw, 110px); }
.section-head--split { grid-template-columns: 1fr; }
@media (min-width: 960px) {
  .section-head--split { grid-template-columns: 1fr 2.4fr; align-items: start; }
  .section-head--split .eyebrow { padding-top: 14px; }
}

/* SplitText helpers */
.split-line { overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }

/* ---------- Buttons / links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px; font-size: 13px; font-weight: 500; letter-spacing: .04em;
  position: relative; overflow: hidden; isolation: isolate;
}
.btn--ghost { border: 1px solid currentColor; }
.btn::before {
  content: ""; position: absolute; inset: 0; background: var(--gold); z-index: -1;
  transform: translateY(101%); border-radius: inherit; transition: transform .6s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--green-900); border-color: var(--gold); }

.link-arrow {
  display: inline-flex; gap: 12px; align-items: center; font-weight: 500; font-size: 15px;
  padding-bottom: 6px; border-bottom: 1px solid currentColor; width: fit-content;
}
.link-arrow span { transition: transform .5s var(--ease-out); }
.link-arrow:hover span { transform: translateX(6px); }

/* ---------- Logo (mask so it can take any colour) ---------- */
.logo-mask {
  display: block; width: 150px; aspect-ratio: 1200 / 399;
  background: currentColor;
  -webkit-mask: url("../assets/img/logo-green.png") center / contain no-repeat;
          mask: url("../assets/img/logo-green.png") center / contain no-repeat;
}

/* ---------- Bridge SVG motif ---------- */
.bridge path { stroke: currentColor; stroke-width: 1.4; vector-effect: non-scaling-stroke; stroke-linecap: round; }
.bridge .b-tower { stroke-width: 2; }

/* =========================================================
   LOADER
   ========================================================= */
.loader {
  position: fixed; inset: 0; z-index: 100; background: var(--green-950); color: var(--ivory);
  display: grid; place-items: center;
}
.loader__inner { width: min(560px, 82vw); display: grid; justify-items: center; }
.bridge--loader { width: 100%; color: var(--gold); overflow: visible; }
.loader__word { display: grid; justify-items: center; margin-top: -8px; }
.loader__amc { font-family: var(--serif); font-size: clamp(64px, 12vw, 128px); font-weight: 500; line-height: .9; letter-spacing: .04em; }
.loader__sub { font-size: 11px; letter-spacing: .6em; text-transform: uppercase; margin-top: 14px; padding-left: .6em; opacity: .7; }
.loader__count { position: absolute; right: var(--pad); bottom: var(--pad); font-family: var(--serif); font-size: clamp(40px, 6vw, 80px); line-height: 1; opacity: .5; }

/* =========================================================
   CURSOR + PROGRESS
   ========================================================= */
.cursor { position: fixed; top: 0; left: 0; z-index: 90; pointer-events: none; mix-blend-mode: difference; }
.cursor__dot, .cursor__ring { position: fixed; top: 0; left: 0; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor__dot { width: 6px; height: 6px; background: #fff; }
.cursor__ring {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.8);
  display: grid; place-items: center;
  transition: width .45s var(--ease-out), height .45s var(--ease-out), background .3s, border-color .3s;
}
.cursor__label { font-style: normal; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #000; opacity: 0; transition: opacity .25s; }
.cursor.is-link .cursor__ring { width: 64px; height: 64px; }
.cursor.is-label .cursor__ring { width: 92px; height: 92px; background: #fff; border-color: #fff; }
.cursor.is-label .cursor__label { opacity: 1; }
.cursor.is-label .cursor__dot { opacity: 0; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

.progress { position: fixed; left: 0; top: 0; width: 100%; height: 2px; z-index: 60; }
.progress span { display: block; height: 100%; background: var(--gold); transform-origin: 0 50%; transform: scaleX(0); }

/* =========================================================
   HEADER + MENU
   ========================================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 32px;
  padding: 22px var(--pad);
  color: var(--ivory);
  transition: transform .7s var(--ease), background .5s, padding .5s, color .5s;
}
.header.is-scrolled {
  padding-top: 14px; padding-bottom: 14px;
  background: rgba(8, 26, 18, .72);
  -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line-dark);
}
.header.is-hidden { transform: translateY(-110%); }
.header__logo { margin-right: auto; }
.nav { display: none; gap: 34px; }
.nav__link { font-size: 13px; letter-spacing: .06em; position: relative; padding: 6px 0; }
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform .6s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }
.header__cta { display: none; }

.burger { width: 44px; height: 44px; display: grid; place-content: center; gap: 7px; position: relative; z-index: 2; }
.burger span { display: block; width: 26px; height: 1.5px; background: currentColor; transition: transform .6s var(--ease); }
.menu-open .burger span:first-child { transform: translateY(4.25px) rotate(45deg); }
.menu-open .burger span:last-child  { transform: translateY(-4.25px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav, .header__cta { display: flex; }
  .burger { display: none; }
}

.menu {
  position: fixed; inset: 0; z-index: 45; background: var(--green-950);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 120px var(--pad) 40px;
  clip-path: inset(0 0 100% 0); visibility: hidden;
}
.menu__nav { display: grid; gap: 4px; }
.menu__nav a {
  font-family: var(--serif); font-size: clamp(44px, 11vw, 80px); line-height: 1.05;
  display: flex; align-items: baseline; gap: 18px;
}
.menu__nav i { font-size: 14px; color: var(--gold); font-family: var(--sans); font-style: normal; letter-spacing: .1em; }
.menu__foot { display: grid; gap: 6px; font-size: 14px; opacity: .7; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; height: 100vh; height: 100svh; min-height: 620px;
  overflow: hidden; color: var(--ivory);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero__media { position: absolute; inset: -6% 0 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.18); }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,15,10,.62) 0%, rgba(5,15,10,.12) 34%, rgba(5,15,10,.35) 62%, rgba(5,15,10,.94) 100%),
    radial-gradient(120% 80% at 20% 90%, rgba(15,74,43,.55), transparent 60%);
}
.grain {
  position: absolute; inset: -50%; pointer-events: none; opacity: .09; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 20% { transform: translate(-3%,2%); } 40% { transform: translate(2%,-3%); }
  60% { transform: translate(-2%,-1%); } 80% { transform: translate(3%,3%); }
}

.hero__content { position: relative; z-index: 2; padding: 0 var(--pad); }
.hero__eyebrow { margin-bottom: clamp(20px, 3vw, 36px); }
.hero__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(56px, 11.5vw, 210px); line-height: .9; letter-spacing: -.035em;
}
.line { display: block; overflow: hidden; padding-bottom: .06em; }
.line > span { display: inline-block; }
.line--italic { font-style: italic; font-weight: 400; color: var(--gold-soft); padding-left: clamp(0px, 9vw, 180px); }

.hero__bottom {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: 24px; align-items: end;
  padding: clamp(28px, 4vw, 56px) var(--pad) clamp(28px, 3.5vw, 48px);
}
.hero__lead { max-width: 38ch; font-size: 15px; color: rgba(243,239,230,.78); }
.hero__meta { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .7; }
@media (min-width: 900px) {
  .hero__bottom { grid-template-columns: 1fr auto 1fr; }
  .hero__meta { text-align: right; }
}
.scroll-cue { display: none; flex-direction: column; align-items: center; gap: 12px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; }
@media (min-width: 900px) { .scroll-cue { display: flex; } }
.scroll-cue__line { width: 1px; height: 64px; background: rgba(243,239,230,.25); position: relative; overflow: hidden; }
.scroll-cue__line::after {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 40%; background: var(--gold);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue { 0% { transform: translateY(-100%); } 100% { transform: translateY(260%); } }

.bridge--hero {
  position: absolute; left: 0; right: 0; bottom: 18%; width: 100%; height: 30vh; z-index: 1;
  color: rgba(216,195,147,.55); pointer-events: none;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about__grid { display: grid; gap: clamp(40px, 6vw, 96px); align-items: center; }
@media (min-width: 960px) { .about__grid { grid-template-columns: 5fr 6fr; } }
.about__media { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 2px; }
.about__media img { width: 100%; height: 118%; object-fit: cover; }
.about__text { display: grid; gap: 32px; }
.about .body { color: var(--ink-soft); }

.reveal-img { clip-path: inset(100% 0 0 0); }
.no-js .reveal-img, .reduced .reveal-img { clip-path: none; }

.scrub-words .w { opacity: .14; transition: none; }

.stats {
  margin-top: clamp(80px, 10vw, 150px);
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
}
@media (min-width: 960px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 32px 20px 8px 0; display: grid; gap: 12px; border-right: 1px solid var(--line-light); padding-left: 20px; }
.stat:first-child { padding-left: 0; }
.stat:nth-child(2n) { border-right: 0; }
@media (min-width: 960px) {
  .stat:nth-child(2n) { border-right: 1px solid var(--line-light); }
  .stat:last-child { border-right: 0; }
}
@media (max-width: 959px) { .stat:nth-child(3) { padding-left: 0; } }
.stat__n { font-family: var(--serif); font-size: clamp(54px, 7vw, 110px); line-height: 1; color: var(--brand); letter-spacing: -.03em; }
.stat__n b { font-weight: 500; }
.stat__l { font-size: 13px; color: var(--ink-soft); letter-spacing: .02em; }

/* =========================================================
   SERVICES — horizontal
   ========================================================= */
.services { position: relative; overflow: hidden; }
.services__pin { position: relative; padding: clamp(96px, 12vw, 160px) 0; }
.services__track { display: flex; flex-direction: column; gap: 64px; padding: 0 var(--pad); }
.services__intro { display: grid; gap: 28px; align-content: center; }
.services__hint { display: none; align-items: center; gap: 14px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; opacity: .6; }
.services__hint-line { width: 56px; height: 1px; background: currentColor; }
.services__bar { display: none; }

.card { display: grid; gap: 28px; }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 2px; position: relative; }
.card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(8,26,18,.5)); }
.card__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) contrast(1.05); transform: scale(1.12); transition: transform 1.2s var(--ease-out), filter .8s; }
.card:hover .card__media img { transform: scale(1.02); filter: saturate(1) contrast(1.05); }
.card__body { display: grid; gap: 14px; grid-template-columns: auto 1fr; column-gap: 20px; }
.card__num { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 22px; line-height: 1.4; }
.card__title { font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 3.2vw, 50px); line-height: 1; letter-spacing: -.01em; }
.card__body p { grid-column: 2; font-size: 15px; color: rgba(243,239,230,.68); max-width: 44ch; }

@media (min-width: 1024px) {
  .services__pin { height: 100vh; padding: 0; display: flex; align-items: center; }
  .services__track { flex-direction: row; align-items: center; gap: 6vw; padding: 0 8vw 0 var(--pad); will-change: transform; }
  .services__intro { flex: 0 0 34vw; }
  .services__hint { display: flex; }
  .card { flex: 0 0 min(34vw, 560px); }
  .card:nth-of-type(even) { margin-top: 14vh; }
  .card:nth-of-type(odd)  { margin-bottom: 10vh; }
  .card__media { aspect-ratio: 5 / 4; }
  .services__bar { display: block; position: absolute; left: var(--pad); right: var(--pad); bottom: 48px; height: 1px; background: var(--line-dark); }
  .services__bar span { display: block; height: 100%; background: var(--gold); transform-origin: 0 50%; transform: scaleX(0); }
}

/* =========================================================
   COMPLIANCE
   ========================================================= */
.comp-grid { display: grid; gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
@media (min-width: 900px) { .comp-grid { grid-template-columns: repeat(3, 1fr); } }
.comp {
  background: var(--ivory); padding: clamp(28px, 3vw, 48px); display: grid; gap: 18px; align-content: start;
  position: relative; overflow: hidden; transition: background .6s var(--ease-out);
}
.comp::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--brand);
  transform: scaleX(0); transform-origin: left; transition: transform .8s var(--ease);
}
.comp:hover { background: var(--paper); }
.comp:hover::before { transform: scaleX(1); }
.comp__badge { height: 64px; display: flex; align-items: center; margin-bottom: 12px; }
.comp__badge img { max-height: 56px; width: auto; filter: grayscale(1) brightness(.55) contrast(1.2); opacity: .9; transition: filter .6s, opacity .6s; }
.comp:hover .comp__badge img { filter: none; opacity: 1; }
.comp__badge--text { font-family: var(--serif); font-size: 52px; font-weight: 600; color: var(--brand); letter-spacing: -.02em; }
.comp h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1.1; }
.comp p { font-size: 14.5px; color: var(--ink-soft); }

/* =========================================================
   PREAMBLE
   ========================================================= */
.preamble { position: relative; padding: clamp(110px, 16vw, 240px) 0; overflow: hidden; }
.preamble .eyebrow { margin-bottom: 56px; color: var(--gold-soft); }
.preamble__text {
  font-family: var(--serif); font-size: clamp(26px, 3.6vw, 56px); line-height: 1.18; font-weight: 400;
  text-align: center; max-width: 1180px; margin: 0 auto; letter-spacing: -.01em; position: relative; z-index: 1;
}
.preamble__text p:first-child { font-style: italic; color: var(--gold-soft); margin-bottom: .4em; }
.preamble__text p:last-child  { font-style: italic; margin-top: .4em; }
.swiss-cross {
  position: absolute; width: min(70vw, 780px); aspect-ratio: 1; left: 50%; top: 50%;
  transform: translate(-50%, -50%); opacity: .045; pointer-events: none;
  background:
    linear-gradient(var(--ivory), var(--ivory)) center / 20% 62.5% no-repeat,
    linear-gradient(var(--ivory), var(--ivory)) center / 62.5% 20% no-repeat;
}

/* =========================================================
   WHY SWITZERLAND
   ========================================================= */
.why__grid { display: grid; gap: 56px; }
@media (min-width: 1024px) {
  .why__grid { grid-template-columns: 1fr 1fr; gap: 8vw; align-items: start; }
  .why__sticky { position: sticky; top: 110px; }
}
.why__sticky { display: grid; gap: 28px; }
.why__media { aspect-ratio: 3 / 2; overflow: hidden; margin-top: 20px; border-radius: 2px; }
.why__media img { width: 100%; height: 120%; object-fit: cover; }
.why__list { display: grid; }
.why__list .lead { padding-bottom: 48px; }
.why__item {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px;
  padding: 40px 0; border-top: 1px solid var(--line-light); position: relative;
}
.why__item::after {
  content: ""; position: absolute; left: 0; top: -1px; height: 1px; width: 100%; background: var(--brand);
  transform: scaleX(var(--p, 0)); transform-origin: left;
}
.why__n { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--brand); line-height: 1.2; }
.why__item h3 { font-family: var(--serif); font-size: clamp(28px, 2.6vw, 40px); font-weight: 500; line-height: 1.05; margin-bottom: 12px; }
.why__item p { color: var(--ink-soft); max-width: 44ch; }

/* =========================================================
   PARTNERS
   ========================================================= */
.partners { padding-bottom: clamp(80px, 10vw, 140px); }
.marquee {
  overflow: hidden; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light);
  -webkit-mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: clamp(64px, 10vw, 160px); padding: 44px clamp(32px, 5vw, 80px); }
.marquee__group img { height: clamp(36px, 4vw, 56px); width: auto; filter: grayscale(1); opacity: .75; transition: filter .5s, opacity .5s; }
.marquee__group img.is-mono { height: clamp(28px, 3vw, 40px); }
.marquee__group img.is-tall { height: clamp(40px, 4.4vw, 60px); }
.marquee__group img.is-short { height: clamp(22px, 2.4vw, 32px); }
.marquee__group img:hover { filter: none; opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   CONTACT / FOOTER
   ========================================================= */
.contact { position: relative; overflow: hidden; padding: clamp(110px, 14vw, 200px) 0 32px; }
.contact .container { position: relative; z-index: 2; }
.contact__title {
  font-family: var(--serif); font-weight: 500; font-size: clamp(56px, 10vw, 180px); line-height: .92; letter-spacing: -.035em;
  margin: 36px 0 clamp(40px, 5vw, 72px);
}
.contact__mail {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 28px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
  font-family: var(--serif); font-size: clamp(17px, 3.8vw, 54px); line-height: 1.1; overflow-wrap: anywhere;
  transition: color .4s;
}
.contact__mail svg { flex: 0 0 auto; width: clamp(28px, 3vw, 44px); height: auto; stroke: currentColor; fill: none; stroke-width: 1.2; transition: transform .6s var(--ease-out); }
.contact__mail:hover { color: var(--gold-soft); }
.contact__mail:hover svg { transform: rotate(45deg); }

.contact__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 24px; padding: 56px 0; }
@media (min-width: 900px) { .contact__grid { grid-template-columns: repeat(4, 1fr); } }
.contact__col h4 { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; font-weight: 500; color: var(--gold); margin-bottom: 14px; }
.contact__col a, .contact__col p { font-size: 15px; color: rgba(243,239,230,.8); }
.contact__col a:hover { color: var(--ivory); }

.contact__giant { position: relative; color: rgba(243,239,230,.9); margin-top: 20px; }
.contact__giant span {
  display: block; font-family: var(--serif); font-weight: 500; text-align: center;
  font-size: clamp(120px, 34vw, 560px); line-height: .78; letter-spacing: .02em;
  background: linear-gradient(180deg, var(--ivory) 20%, rgba(243,239,230,.05) 95%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bridge--footer { position: absolute; left: -2%; width: 104%; top: -6%; height: 70%; color: var(--gold); z-index: 1; }

.contact__legal {
  display: flex; flex-wrap: wrap; gap: 12px 32px; justify-content: space-between;
  padding-top: 28px; margin-top: 12px; border-top: 1px solid var(--line-dark);
  font-size: 12px; letter-spacing: .08em; color: rgba(243,239,230,.55);
}
.to-top:hover { color: var(--ivory); }

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .grain, .scroll-cue__line::after, .marquee__track { animation: none; }
  .loader { display: none; }
  .reveal-img { clip-path: none; }
  .scrub-words .w { opacity: 1; }
  .hero__media img { transform: none; }
}
