/* ================================================================
   MudaGym — design system
   Brand: charcoal #282828 · Muda yellow #FEBF12 · off-white #FAF9F7
   Type: Sintony (headings) · Quicksand (body)
   ================================================================ */

/* Self-hosted fonts (latin subsets) - no network dependency */
@font-face { font-family: 'Sintony'; font-style: normal; font-weight: 400; font-display: swap; src: url('assets/fonts/sintony-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Sintony'; font-style: normal; font-weight: 700; font-display: swap; src: url('assets/fonts/sintony-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Quicksand'; font-style: normal; font-weight: 400; font-display: swap; src: url('assets/fonts/quicksand-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Quicksand'; font-style: normal; font-weight: 500; font-display: swap; src: url('assets/fonts/quicksand-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Quicksand'; font-style: normal; font-weight: 600; font-display: swap; src: url('assets/fonts/quicksand-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Quicksand'; font-style: normal; font-weight: 700; font-display: swap; src: url('assets/fonts/quicksand-latin-700-normal.woff2') format('woff2'); }

:root {
  --ink: #282828;
  --yellow: #FEBF12;
  --paper: #FAF9F7;
  --grey: #F3F3F3;
  --ink-55: rgba(40,40,40,0.55);
  --ink-70: rgba(40,40,40,0.7);
  --ink-78: rgba(40,40,40,0.78);
  --hairline: rgba(40,40,40,0.12);
  --paper-60: rgba(250,249,247,0.6);
  --paper-72: rgba(250,249,247,0.72);
  --r-card: 16px;
  --r-btn: 10px;
  --sintony: 'Sintony', sans-serif;
  --quicksand: 'Quicksand', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--quicksand);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color 0.15s ease-out; }
img { display: block; max-width: 100%; }

/* Language toggle: body[data-lang] shows one language, hides the other */
body[data-lang="en"] .lang-nl { display: none !important; }
body[data-lang="nl"] .lang-en { display: none !important; }
span.lang-en, span.lang-nl { display: inline; }

.wrap { max-width: 1360px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

/* ---------------- typography ---------------- */
h1, h2, h3 { font-family: var(--sintony); font-weight: 700; letter-spacing: -0.01em; margin: 0; }
.h-display { font-size: clamp(44px, 6.6vw, 92px); line-height: 1.0; letter-spacing: -0.02em; }
.h-hero    { font-size: clamp(40px, 5.6vw, 76px); line-height: 1.02; letter-spacing: -0.02em; }
h2 { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.1; }
h3 { font-size: 20px; line-height: 1.3; }
.lead { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.7; font-weight: 500; color: var(--ink-78); text-wrap: pretty; }
.muted { color: var(--ink-70); }
.overline {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.26em;
  color: var(--ink-55); text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.dark .overline { color: var(--paper-60); }
.ticks { display: inline-flex; gap: 3px; }
.ticks i { width: 3px; height: 14px; background: var(--yellow); transform: skewX(-18deg); }
.dot { color: var(--yellow); }

/* ---------------- header ---------------- */
#mg-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(40,40,40,0);
  transition: border-color 0.25s ease-out, padding 0.25s ease-out;
  padding: 18px 0;
}
#mg-header.scrolled { border-bottom-color: var(--hairline); padding: 12px 0; }
#mg-header .bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo-lockup { display: flex; align-items: center; gap: 12px; }
.logo-lockup img { height: 34px; width: auto; }
.logo-word { display: flex; flex-direction: column; line-height: 1; }
.logo-word b { font-family: var(--sintony); font-weight: 700; font-size: 19px; letter-spacing: 0.14em; }
.logo-word small { font-size: 10.5px; font-weight: 700; letter-spacing: 0.28em; color: rgba(40,40,40,0.5); margin-top: 4px; }
#mg-nav { display: flex; gap: 30px; font-size: 15px; font-weight: 600; }
#mg-nav a:hover { color: #9A7208; }
#mg-nav a.active { box-shadow: inset 0 -2px 0 var(--yellow); padding-bottom: 4px; }
.header-right { display: flex; align-items: center; gap: 18px; }
.lang-switch { display: flex; gap: 2px; font-size: 13px; font-weight: 700; }
.lang-switch button {
  padding: 5px 10px; border-radius: 999px; border: none; cursor: pointer;
  font-family: var(--quicksand); font-size: 13px; font-weight: 700;
  background: transparent; color: rgba(40,40,40,0.45);
  transition: background 0.2s ease-out, color 0.2s ease-out;
}
.lang-switch button.on { background: var(--ink); color: var(--paper); }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-block; font-weight: 700; font-size: 17px;
  padding: 18px 34px; border-radius: var(--r-btn); cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out, border-color 0.15s ease-out;
  border: none; font-family: var(--quicksand); text-align: center;
}
.btn:active { transform: translateY(0); }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover { color: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(254,191,18,0.45); }
.btn-ghost { border: 1.5px solid rgba(40,40,40,0.28); color: var(--ink); font-weight: 600; padding: 16.5px 32.5px; }
.btn-ghost:hover { border-color: var(--ink); background: rgba(40,40,40,0.04); color: var(--ink); }
.btn-ink { background: var(--ink); color: var(--paper); font-size: 15px; padding: 12px 22px; }
.btn-ink:hover { background: #3a3a3a; color: var(--paper); transform: translateY(-1px); }
.btn-sm { font-size: 15px; padding: 13px 24px; }
.arrow-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; border-bottom: 2px solid var(--yellow); padding-bottom: 4px;
}
.arrow-link:hover { color: #9A7208; }

/* ---------------- sections ---------------- */
section { padding: clamp(80px, 9vw, 140px) 32px; }
section.tight { padding: clamp(56px, 6vw, 96px) 32px; }
.dark { background: var(--ink); color: var(--paper); }
.dark .lead { color: var(--paper-72); }
.sand { background: #F5F0E6; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; margin-bottom: clamp(44px, 5vw, 72px); }
.section-head p { font-size: 16.5px; line-height: 1.65; font-weight: 500; color: rgba(40,40,40,0.65); max-width: 380px; margin: 0; }

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  padding: clamp(56px, 7vw, 104px) 32px clamp(64px, 7vw, 110px);
  background-image: repeating-linear-gradient(90deg, rgba(40,40,40,0.035) 0 1px, transparent 1px 240px);
}
.hero-ghost {
  position: absolute; top: 6%; right: -2%;
  font-family: var(--sintony); font-weight: 700;
  font-size: clamp(160px, 24vw, 360px); line-height: 0.8;
  color: transparent; -webkit-text-stroke: 1px rgba(40,40,40,0.06);
  pointer-events: none; user-select: none;
}
.hero-grid {
  max-width: 1360px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 5vw, 88px); align-items: end; position: relative;
}
.hero-img { position: relative; height: clamp(460px, 44vw, 640px); }
.hero-img .frame { position: absolute; inset: 24px -24px -24px 24px; border: 1.5px solid var(--yellow); border-radius: 18px; pointer-events: none; }
.hero-img img.photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-card); }
.hero-caption {
  position: absolute; bottom: 22px; left: 22px;
  background: rgba(40,40,40,0.9); backdrop-filter: blur(6px);
  color: var(--paper); border-radius: 12px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; pointer-events: none;
  font-size: 13.5px; font-weight: 600; line-height: 1.35;
}
.hero-caption small { display: block; color: var(--paper-60); font-weight: 500; font-size: 13px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.bfr-strip {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 40px;
  font-size: 14.5px; font-weight: 600; color: var(--ink-70);
  border-top: 1px solid rgba(40,40,40,0.14); padding-top: 18px; max-width: 560px;
}
.bfr-strip:hover { color: rgba(40,40,40,0.95); }
.bfr-chip {
  font-family: var(--sintony); font-weight: 700; font-size: 11px; letter-spacing: 0.2em;
  background: var(--ink); color: var(--yellow); padding: 5px 9px; border-radius: 5px; flex-shrink: 0;
}

/* ---------------- marquee ---------------- */
.marquee {
  border-top: 1px solid rgba(40,40,40,0.1); border-bottom: 1px solid rgba(40,40,40,0.1);
  overflow: hidden; padding: 18px 0; background: var(--paper);
}
.marquee-track { display: flex; width: max-content; animation: mgMarquee 36s linear infinite; }
.marquee-track span {
  font-family: var(--sintony); font-weight: 700; font-size: 15px; letter-spacing: 0.3em;
  color: var(--ink-55); padding: 0 28px;
  display: inline-flex; align-items: center; gap: 56px; white-space: nowrap;
}
.marquee-track span i {
  width: 6px; height: 6px; background: var(--yellow);
  border-radius: 1px; transform: rotate(45deg); display: inline-block;
}

/* ---------------- cards ---------------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.card {
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-card);
  padding: 30px 26px; transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(40,40,40,0.08); border-color: rgba(40,40,40,0.2); }
.card .num {
  font-family: var(--sintony); font-weight: 700; font-size: 34px;
  color: transparent; -webkit-text-stroke: 1px rgba(40,40,40,0.35); margin-bottom: 18px; display: block;
}
.card h3 { margin-bottom: 10px; }
.card p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-70); font-weight: 500; }
.card.gold, .card.active { background: var(--ink); border-color: var(--ink); }
.card.gold .num, .card.active .num { -webkit-text-stroke: 1px rgba(254,191,18,0.95); }
.card.gold h3, .card.active h3 { color: var(--paper); }
.card.gold p, .card.active p { color: var(--paper-72); }
.card-grid.clickable .card { cursor: pointer; }

/* personas */
.persona-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.persona {
  border: 1px solid var(--hairline); border-radius: var(--r-card);
  padding: 32px 28px; background: #fff; display: flex; flex-direction: column; gap: 8px;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.persona:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(40,40,40,0.08); }
.persona .plabel { font-size: 12.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-55); }
.persona h3 { font-size: 22px; }
.persona p { margin: 0; font-size: 15.5px; color: var(--ink-70); font-weight: 500; flex: 1; }
.persona .arrow-link { margin-top: 14px; font-size: 14.5px; }

/* checklists */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: baseline; font-weight: 500; color: var(--ink-78); }
.checks li::before { content: ""; width: 9px; height: 9px; background: var(--yellow); border-radius: 2px; transform: rotate(45deg) translateY(-1px); flex-shrink: 0; }
.dark .checks li { color: var(--paper-72); }

/* split layout */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: clamp(48px, 6vw, 96px); align-items: center; }
.photo-stack { position: relative; }
.photo-stack img { border-radius: var(--r-card); width: 100%; object-fit: cover; }
.photo-stack .accent-frame { position: absolute; inset: 20px -20px -20px 20px; border: 1.5px solid var(--yellow); border-radius: 18px; pointer-events: none; z-index: -1; }

/* quotes */
.quote-list { border-top: 1px solid rgba(40,40,40,0.14); display: flex; flex-direction: column; }
.quote-list blockquote {
  margin: 0; padding: 18px 0; border-bottom: 1px solid rgba(40,40,40,0.14);
  font-size: 18px; font-weight: 600; font-style: normal;
}
.quote-list blockquote::before { content: "“"; color: var(--yellow); font-family: var(--sintony); font-size: 26px; margin-right: 8px; }

/* testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.testi {
  background: rgba(250,249,247,0.05); border: 1px solid rgba(250,249,247,0.12);
  border-radius: var(--r-card); padding: 30px 26px;
}
.testi .stars { color: var(--yellow); letter-spacing: 4px; font-size: 15px; margin-bottom: 14px; }
.testi p { margin: 0; font-size: 17px; font-weight: 600; line-height: 1.55; color: var(--paper); }

/* timeline (numbered steps) */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; counter-reset: step; }
.step {
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-card); padding: 28px 24px;
  position: relative;
}
.step .snum {
  font-family: var(--sintony); font-weight: 700; font-size: 15px;
  background: var(--ink); color: var(--yellow); width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.step h3 { font-size: 17px; margin-bottom: 10px; }
.step ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.step ul li { font-size: 14.5px; color: var(--ink-70); font-weight: 500; display: flex; gap: 9px; align-items: baseline; }
.step ul li::before { content: ""; width: 7px; height: 7px; background: var(--yellow); border-radius: 2px; transform: rotate(45deg); flex-shrink: 0; }

/* icon row (body areas) */
.icon-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; text-align: center; }
.icon-row .cell { background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-card); padding: 26px 16px 20px; }
.icon-row img { height: 64px; width: auto; margin: 0 auto 14px; }
.icon-row b { font-size: 14.5px; font-weight: 700; }

/* price card */
.price-card {
  background: #fff; border: 1.5px solid var(--ink); border-radius: 20px;
  padding: clamp(32px, 4vw, 52px); position: relative; overflow: hidden;
}
.price-card .flag {
  position: absolute; top: 0; right: 0; background: var(--yellow); color: var(--ink);
  font-family: var(--sintony); font-weight: 700; font-size: 12px; letter-spacing: 0.18em;
  padding: 10px 18px; border-bottom-left-radius: 14px; text-transform: uppercase;
}
.price-big { font-family: var(--sintony); font-weight: 700; font-size: clamp(44px, 5vw, 64px); line-height: 1; }
.price-big small { font-size: 18px; font-weight: 600; font-family: var(--quicksand); color: var(--ink-55); }
.price-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(28px, 4vw, 56px); margin-top: 34px; }
.price-cols h3 { font-size: 15px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }

/* pyramid */
.pyramid-wrap { position: relative; }
.pyr-label { font-family: var(--sintony); font-weight: 700; font-size: 14px; }
.pyr-band { transition: fill 0.25s ease-out; cursor: default; }
.pyr-band:hover { fill: #FFD34D; }

/* forms */
.form-grid { display: grid; gap: 16px; }
.form-grid label { font-size: 13.5px; font-weight: 700; letter-spacing: 0.06em; display: block; margin-bottom: 7px; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; padding: 15px 16px; border-radius: var(--r-btn);
  border: 1.5px solid rgba(40,40,40,0.2); background: #fff;
  font-family: var(--quicksand); font-size: 16px; color: var(--ink);
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(254,191,18,0.35);
}
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* footer */
footer { border-top: 1px solid var(--hairline); padding: clamp(56px, 6vw, 88px) 32px 0; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(32px, 5vw, 72px); }
.foot-grid h4 { font-family: var(--sintony); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; margin: 0 0 18px; }
.foot-grid a, .foot-grid p { display: block; font-size: 15px; font-weight: 500; color: var(--ink-70); margin: 0 0 10px; }
.foot-grid a:hover { color: var(--ink); }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--hairline); font-size: 13.5px; color: var(--ink-55); }

/* whatsapp float + mobile bar */
#mg-whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  transition: transform 0.15s ease-out;
}
#mg-whatsapp-float:hover { transform: scale(1.07); }
#mg-bottombar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 55;
  background: rgba(250,249,247,0.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--hairline); padding: 12px 16px; gap: 10px;
}
#mg-bottombar .btn { flex: 1; font-size: 15px; padding: 14px 10px; }

/* reveal on scroll */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; transition-delay: 0 !important; }
  [data-reveal] .prow, [data-reveal] .testi, [data-reveal] .step { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee-track { animation: none; }
  .fade-1, .fade-2, .fade-3, .fade-4, #mg-cookies.show { animation: none !important; }
}

@keyframes mgMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes mgFadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.fade-1 { animation: mgFadeUp 0.6s ease-out both; }
.fade-2 { animation: mgFadeUp 0.6s ease-out 0.08s both; }
.fade-3 { animation: mgFadeUp 0.6s ease-out 0.16s both; }
.fade-4 { animation: mgFadeUp 0.6s ease-out 0.24s both; }

/* ---------------- responsive ---------------- */
@media (max-width: 960px) {
  #mg-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img { margin-top: 24px; height: 420px; }
  .foot-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  #mg-bottombar { display: flex; }
  #mg-whatsapp-float { bottom: 92px; }
  #mg-header .btn-ink { display: none; }
  .lang-switch { display: flex; }
  body { padding-bottom: 76px; }
  .form-2col { grid-template-columns: 1fr; }
  section { padding-left: 20px; padding-right: 20px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .wrap, .wrap-narrow { padding: 0 4px; }
}

/* ================= Claude-design consistency layer ================= */

/* isometric pyramid */
.pyr-tier { cursor: default; }
.pyr-tier polygon { stroke: rgba(40,40,40,0.28); stroke-width: 0.8; stroke-linejoin: round; transition: fill 0.25s ease-out; }
.pyr-tier .f-top { fill: #FCF9F2; } .pyr-tier .f-r { fill: #E6DFCE; } .pyr-tier .f-l { fill: #CFC6B0; }
.pyr-tier.gold .f-top, .pyr-tier:hover .f-top { fill: #FFD34D; }
.pyr-tier.gold .f-r,  .pyr-tier:hover .f-r  { fill: #FEBF12; }
.pyr-tier.gold .f-l,  .pyr-tier:hover .f-l  { fill: #DBA30C; }
.pyr-lab { font-family: var(--sintony); font-size: 14.5px; fill: #282828; font-weight: 400; transition: font-weight 0.15s; }
.pyr-tier.gold .pyr-lab, .pyr-tier:hover .pyr-lab { font-weight: 700; }
.pyr-line { stroke: rgba(40,40,40,0.3); stroke-width: 1; }
.method-ghost { position: absolute; bottom: -4%; left: -2%; font-family: var(--sintony); font-weight: 700; font-size: clamp(120px, 16vw, 240px); line-height: 0.8; color: transparent; -webkit-text-stroke: 1px rgba(40,40,40,0.06); pointer-events: none; user-select: none; }

/* persona rows (horizontal list, per Claude design) */
.prow-list { border-bottom: 1px solid rgba(40,40,40,0.14); }
.prow {
  display: grid; grid-template-columns: 74px 1.05fr 1.65fr 44px;
  gap: 28px; align-items: center; padding: 30px 14px;
  border-top: 1px solid rgba(40,40,40,0.14); border-radius: 0;
  transition: background 0.2s ease-out, border-radius 0.2s ease-out, padding 0.2s ease-out;
}
a.prow { cursor: pointer; }
.prow .pnum { font-family: var(--sintony); font-weight: 700; font-size: 40px; color: transparent; -webkit-text-stroke: 1px rgba(40,40,40,0.3); line-height: 1; }
.prow .plabel { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-55); margin-bottom: 8px; }
.prow .ptitle { display: block; font-family: var(--sintony); font-weight: 700; font-size: 24px; line-height: 1.15; }
.prow .ptext { font-size: 15.5px; line-height: 1.6; font-weight: 500; color: var(--ink-70); }
.prow .parrow { font-size: 22px; color: var(--yellow); justify-self: end; transition: transform 0.2s ease-out; }
.prow:hover { background: var(--ink); border-radius: 14px; border-top-color: transparent; padding-left: 26px; padding-right: 26px; }
.prow:hover + .prow { border-top-color: transparent; }
.prow:hover .pnum { -webkit-text-stroke: 1px rgba(254,191,18,0.95); }
.prow:hover .ptitle { color: var(--paper); }
.prow:hover .plabel { color: rgba(250,249,247,0.55); }
.prow:hover .ptext { color: rgba(250,249,247,0.72); }
.prow:hover .parrow { transform: translateX(6px); }
@media (max-width: 900px) {
  .prow { grid-template-columns: 54px 1fr; }
  .prow .ptext { grid-column: 2; }
  .prow .parrow { display: none; }
  .prow .pnum { font-size: 30px; }
}

/* founders photo collage: rowing shot on top, team photo below with a clear gap */
.collage { position: relative; }
.collage .c-main { width: 94%; border-radius: 18px; object-fit: cover; }
.collage .c-over {
  position: relative; display: block; width: 46%; margin: 30px 0 0 30%;
  border-radius: 18px; border: 7px solid #fff;
  box-shadow: 0 26px 56px rgba(40,40,40,0.18); object-fit: cover;
}
.collage .c-mark { position: absolute; left: 8%; bottom: 9%; display: inline-flex; gap: 5px; }
.collage .c-mark i { width: 7px; height: 30px; background: var(--yellow); transform: skewX(-18deg); }

/* dash quotes (yellow bar markers, no characters) */
.dash-quotes { display: grid; gap: 16px; margin: 20px 0 24px; }
.dash-quotes blockquote { margin: 0; display: flex; gap: 16px; font-size: 18px; font-weight: 700; line-height: 1.5; }
.dash-quotes blockquote::before { content: ""; width: 22px; height: 3px; background: var(--yellow); border-radius: 2px; flex-shrink: 0; margin-top: 11px; }

/* full-bleed image with overlay card */
.overlay-sec { padding: 0; position: relative; }
.overlay-sec .ov-img { width: 100%; height: clamp(420px, 52vw, 680px); object-fit: cover; display: block; }
.ov-card {
  position: relative; background: #fff; border-radius: 18px;
  padding: clamp(30px, 4vw, 48px); max-width: 600px;
  margin: clamp(-200px, -16vw, -140px) auto 0 clamp(20px, 6vw, 96px);
  box-shadow: 0 30px 70px rgba(40,40,40,0.16);
}
.ov-card .checks.two { grid-template-columns: 1fr 1fr; }
.ov-card .ov-foot { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; border-top: 1px solid var(--hairline); margin-top: 26px; padding-top: 24px; }
.ov-card .ov-foot p { margin: 0; font-size: 15px; font-weight: 600; color: var(--ink-70); }
.ov-spacer { height: clamp(56px, 7vw, 110px); }
@media (max-width: 700px) { .ov-card { margin-left: 16px; margin-right: 16px; } }

/* testimonials refinements */
.testi .mark { display: inline-flex; gap: 4px; margin-top: 18px; }
.testi .mark i { width: 5px; height: 18px; background: var(--yellow); transform: skewX(-18deg); }

/* final CTA glow */
.cta-glow { position: relative; overflow: hidden; }
.cta-glow::after { content: ""; position: absolute; left: 50%; bottom: -40%; width: 90%; height: 80%; transform: translateX(-50%); background: radial-gradient(ellipse at center, rgba(254,191,18,0.14) 0%, rgba(254,191,18,0) 65%); pointer-events: none; }
.cta-glow > * { position: relative; z-index: 1; }

/* footer ghost watermark - full letters, page ends exactly at their baseline */
.foot-ghost { overflow: hidden; margin-top: clamp(32px, 5vw, 56px); text-align: center; pointer-events: none; user-select: none; line-height: 0; }
.foot-ghost span { font-family: var(--sintony); font-weight: 700; font-size: clamp(90px, 15vw, 250px); line-height: 1; letter-spacing: 0.02em; color: transparent; -webkit-text-stroke: 1.5px rgba(40,40,40,0.07); white-space: nowrap; display: block; margin-bottom: -0.22em; }
.foot-links { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }

/* GDPR cookie consent */
#mg-cookies {
  position: fixed; left: 26px; bottom: 26px; z-index: 70;
  max-width: 420px; background: var(--ink); color: var(--paper);
  border-radius: 16px; padding: 24px 26px;
  box-shadow: 0 24px 60px rgba(40,40,40,0.35);
  display: none;
}
#mg-cookies.show { display: block; animation: mgFadeUp 0.45s ease-out both; }
#mg-cookies p { margin: 0 0 18px; font-size: 14.5px; line-height: 1.6; color: var(--paper-72); }
#mg-cookies p b { color: var(--paper); }
#mg-cookies .row { display: flex; gap: 10px; flex-wrap: wrap; }
#mg-cookies .btn { font-size: 14.5px; padding: 12px 20px; }
#mg-cookies .btn-ghost { border-color: rgba(250,249,247,0.35); color: var(--paper); }
#mg-cookies .btn-ghost:hover { border-color: var(--paper); background: rgba(250,249,247,0.08); color: var(--paper); }
#mg-cookies a { color: var(--paper); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 768px) {
  #mg-cookies { left: 12px; right: 12px; bottom: 88px; max-width: none; }
}

/* ================= tournament round 1 fixes ================= */

/* buttons: neutralize UA default background (cookie ghost button was illegible) */
.btn { background: transparent; }
.btn-yellow { background: var(--yellow); }
.btn-ink { background: var(--ink); }

/* why-grid: 5-up on wide screens, no orphan card */
@media (min-width: 1180px) {
  .card-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
  .card-grid.cols-5 .card { padding: 26px 20px; }
}

/* adjacent dark sections: visible boundary, no dead void */
section.dark + section.dark { padding-top: clamp(40px, 4.5vw, 72px); border-top: 1px solid rgba(250,249,247,0.1); }

/* price presentation */
.price-big small { display: block; margin-top: 10px; line-height: 1.4; }
.price-card .flag { background: var(--ink); color: var(--yellow); }

/* ration the yellow: step bullets go neutral, checks stay yellow */
.step ul li::before { background: rgba(40,40,40,0.35); }

/* normalize split-section media heights */
.split .photo-stack img { width: 100%; height: clamp(360px, 32vw, 500px); object-fit: cover; }

/* map fallback: never a blank box */
.map-wrap { position: relative; min-height: 280px; border-radius: 16px; overflow: hidden; border: 1px solid var(--hairline); background: #F5F0E6; }
.map-wrap .map-fallback { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; font-weight: 600; color: var(--ink-70); padding: 20px; }
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* mobile navigation */
#mg-burger {
  display: none; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px; z-index: 90; position: relative;
}
#mg-burger i { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease-out, opacity 0.2s ease-out; }
#mg-burger.open i:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
#mg-burger.open i:nth-child(2) { opacity: 0; }
#mg-burger.open i:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
#mg-mobile-menu {
  position: fixed; inset: 0; background: var(--paper); z-index: 85;
  display: none; flex-direction: column; padding: 110px 30px 30px;
}
#mg-mobile-menu.open { display: flex; }
#mg-mobile-menu a.mnav {
  font-family: var(--sintony); font-weight: 700; font-size: 27px;
  padding: 16px 0; border-bottom: 1px solid var(--hairline);
}
#mg-mobile-menu a.mnav.active { color: #9A7208; }
#mg-mobile-menu .btn { margin-top: 28px; }
body.menu-open { overflow: hidden; }
@media (max-width: 960px) { #mg-burger { display: flex; } }

/* ================= tournament round 2 fixes ================= */

/* pricing cards: equal height, CTA pinned to the bottom */
.price-card { display: flex; flex-direction: column; }
.price-card > :last-child { margin-top: auto; padding-top: 30px; }
.price-card > a.btn { align-self: flex-start; }

/* pyramid legibility: deeper tier contrast, calmer gold, tighter cap */
.pyr-tier .f-top { fill: #F8F2E2; } .pyr-tier .f-r { fill: #DED4B9; } .pyr-tier .f-l { fill: #C3B693; }
.pyr-tier.gold .f-top, .pyr-tier:hover .f-top { fill: #F7CD4F; }
.pyr-line { stroke-width: 1.5; }
.pyramid-wrap svg { max-width: 460px !important; margin: 0 auto; display: block; }

/* marquee: soft edge fade instead of hard clip */
.marquee { -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }

/* map fallback: street-grid texture so it never reads unfinished */
.map-wrap { min-height: 340px;
  background-image: repeating-linear-gradient(0deg, rgba(40,40,40,0.05) 0 1px, transparent 1px 40px),
                    repeating-linear-gradient(90deg, rgba(40,40,40,0.05) 0 1px, transparent 1px 40px); }

/* compact mobile chrome: cookie banner and sticky bar leave the hero alone */
@media (max-width: 768px) {
  #mg-cookies { padding: 16px 18px; }
  #mg-cookies p { font-size: 13px; margin-bottom: 12px; }
  #mg-cookies .btn { font-size: 13.5px; padding: 10px 16px; }
}
@media (max-width: 480px) {
  #mg-bottombar .btn-ghost { display: none; }
}

/* discreet builder credit */
.foot-credit { text-align: center; font-size: 12.5px; font-weight: 500; color: rgba(40,40,40,0.4); margin: 26px 0 0; }
.foot-credit a { color: rgba(40,40,40,0.55); border-bottom: 1px solid rgba(40,40,40,0.2); padding-bottom: 1px; transition: color 0.15s ease-out, border-color 0.15s ease-out; }
.foot-credit a:hover { color: var(--ink); border-color: var(--yellow); }

/* ================= tournament round 3 fixes ================= */

/* consent pending: bottom bar yields to the cookie banner on mobile */
body.consent-pending #mg-bottombar { display: none !important; }
@media (max-width: 480px) {
  #mg-cookies { padding: 12px 14px; }
  #mg-cookies p { font-size: 12.5px; margin-bottom: 10px; }
}

/* map embed sits in-brand when it loads */
.map-wrap iframe { filter: grayscale(1) sepia(0.06) contrast(1.02); }

/* founders mark hugs the team photo instead of floating */
.collage .c-mark { left: 13%; bottom: 13%; }

/* ================= round 4: push-to-10 polish ================= */

/* keyboard focus visibility (was invisible everywhere but form fields) */
a:focus-visible, button:focus-visible, .btn:focus-visible, [role="button"]:focus-visible {
  outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 6px;
}
.dark a:focus-visible, .dark button:focus-visible, .dark .btn:focus-visible,
#mg-whatsapp-float:focus-visible { outline-color: var(--yellow); }
.card-grid.clickable .card:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
a.prow:focus-visible { outline: none; background: var(--ink); border-radius: 14px; border-top-color: transparent; }
a.prow:focus-visible .pnum { -webkit-text-stroke: 1px rgba(254,191,18,0.95); }
a.prow:focus-visible .ptitle { color: var(--paper); }
a.prow:focus-visible .plabel { color: rgba(250,249,247,0.55); }
a.prow:focus-visible .ptext { color: rgba(250,249,247,0.72); }
a.prow:focus-visible .parrow { transform: translateX(6px); }

/* nav: yellow underline wipes in on hover and focus */
#mg-nav a { transition: color 0.15s ease-out, box-shadow 0.2s ease-out; padding-bottom: 4px; }
#mg-nav a:hover, #mg-nav a:focus-visible { box-shadow: inset 0 -2px 0 var(--yellow); }

/* sticky header: constant height, animate only the border (no scroll reflow) */
#mg-header, #mg-header.scrolled { padding: 15px 0; }

/* yellow rationed: check-list markers go neutral, accent stays on ticks/CTAs/stars */
.checks li::before { background: rgba(40,40,40,0.32); }
.dark .checks li::before { background: rgba(250,249,247,0.45); }

/* quotes read considered, not loud */
.dash-quotes blockquote { font-weight: 600; }
.quote-list blockquote { font-weight: 500; }

/* calmer card rhythm */
.card-grid, .persona-grid, .testi-grid, .steps { gap: 20px; }
@media (min-width: 1180px) { .card-grid, .persona-grid, .testi-grid, .steps { gap: 22px; } }

/* footer credit: discreet but legible (was ~2.6:1) */
.foot-credit { color: rgba(40,40,40,0.52); }

/* reveal cascade: rows/steps/testimonials wave in (hover-transform-free elements only) */
[data-reveal] .prow, [data-reveal] .testi, [data-reveal] .step {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
[data-reveal].in .prow, [data-reveal].in .testi, [data-reveal].in .step { opacity: 1; transform: none; }
[data-reveal].in .prow:nth-child(2), [data-reveal].in .testi:nth-child(2), [data-reveal].in .step:nth-child(2) { transition-delay: 0.07s; }
[data-reveal].in .prow:nth-child(3), [data-reveal].in .testi:nth-child(3), [data-reveal].in .step:nth-child(3) { transition-delay: 0.14s; }
[data-reveal].in .prow:nth-child(4), [data-reveal].in .testi:nth-child(4), [data-reveal].in .step:nth-child(4) { transition-delay: 0.21s; }

/* pyramid labels: larger, semibold, legible for all ages (accessibility) */
.pyramid-wrap svg { max-width: 540px !important; }
.pyr-lab { font-size: 24px; font-weight: 600; }
.pyr-tier.gold .pyr-lab, .pyr-tier:hover .pyr-lab { font-weight: 700; }

/* ================= health screen (BFR intake) ================= */
.contact-top { margin-bottom: clamp(28px, 4vw, 44px); }
.healthcheck { border: 1px solid var(--hairline); background: #fff; border-radius: 16px; padding: clamp(22px, 3vw, 32px); }
.healthcheck .hc-head { display: flex; align-items: center; gap: 11px; }
.healthcheck .hc-head h3 { font-family: var(--sintony); font-weight: 700; font-size: 19px; margin: 0; }
.hc-intro { font-size: 15px; color: var(--ink-70); margin: 10px 0 20px; font-weight: 500; line-height: 1.55; }
.hc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 620px) { .hc-grid { grid-template-columns: 1fr; } }
.hc-item {
  display: flex; gap: 12px; align-items: flex-start;
  border: 1.5px solid var(--hairline); border-radius: 10px; padding: 13px 15px;
  cursor: pointer; font-size: 14.5px; font-weight: 500; line-height: 1.4;
  transition: border-color 0.15s ease-out, background 0.15s ease-out;
}
.hc-item:hover { border-color: rgba(40,40,40,0.35); }
.hc-item input { margin: 2px 0 0; width: 18px; height: 18px; accent-color: var(--ink); flex-shrink: 0; cursor: pointer; }
.hc-item.checked { border-color: var(--ink); background: rgba(254,191,18,0.08); }
.hc-item:has(input:checked) { border-color: var(--ink); background: rgba(254,191,18,0.08); }
.hc-none { margin-top: 10px; font-weight: 600; }
.hc-none.checked, .hc-none:has(input:checked) { background: rgba(40,40,40,0.04); border-color: var(--ink); }
.hc-reassure { display: flex; gap: 11px; align-items: flex-start; margin-top: 18px; font-size: 14px; color: var(--ink-70); font-weight: 500; line-height: 1.5; }
.hc-reassure::before { content: ""; width: 8px; height: 8px; background: var(--yellow); border-radius: 2px; transform: rotate(45deg); flex-shrink: 0; margin-top: 6px; }
.hc-confid { display: flex; gap: 9px; align-items: center; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--hairline); font-size: 13.5px; color: var(--ink-55); font-weight: 600; }
.hc-consent { display: flex; gap: 11px; align-items: flex-start; margin-top: 16px; font-size: 14.5px; font-weight: 500; line-height: 1.45; cursor: pointer; }
.hc-consent input { margin: 2px 0 0; width: 18px; height: 18px; accent-color: var(--ink); flex-shrink: 0; cursor: pointer; }

/* ================= BFR animated explainer ================= */
.bfr-explainer .split { align-items: center; }
.bfrdiagram { position: relative; background: var(--sand); border-radius: 24px; border: 1px solid var(--hairline); overflow: hidden; aspect-ratio: 4/4.3; display: flex; align-items: center; justify-content: center; }
.bfrdiagram::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg,rgba(40,40,40,.035) 0 1px,transparent 1px 44px),repeating-linear-gradient(90deg,rgba(40,40,40,.035) 0 1px,transparent 1px 44px); pointer-events: none; }
.bfrdiagram svg { width: 84%; height: auto; position: relative; z-index: 1; overflow: visible; }
.bfr-badge { position: absolute; left: 20px; bottom: 20px; z-index: 2; background: rgba(40,40,40,.92); color: var(--paper); border-radius: 12px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; }
.bfr-badge b { font-family: var(--sintony); font-size: 22px; color: var(--yellow); line-height: 1; }
.bfr-badge span { font-size: 12.5px; font-weight: 600; line-height: 1.35; color: rgba(250,249,247,.72); }
.bfr-steps { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 4px; }
.bfr-step { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--hairline); align-items: start; }
.bfr-step:last-child { border-bottom: 1px solid var(--hairline); }
.bfr-step .n { font-family: var(--sintony); font-weight: 700; font-size: 19px; color: transparent; -webkit-text-stroke: 1px rgba(40,40,40,.4); }
.bfr-step h3 { font-family: var(--sintony); font-weight: 700; font-size: 17px; margin: 0 0 4px; }
.bfr-step p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--ink-70); font-weight: 500; }
.bfr-load { margin-top: 24px; display: grid; gap: 11px; }
.bfr-load .lr { display: grid; grid-template-columns: 120px 1fr 60px; gap: 14px; align-items: center; font-size: 13px; font-weight: 600; color: var(--ink-70); }
.bfr-load .bar { height: 10px; border-radius: 999px; background: rgba(40,40,40,.08); overflow: hidden; }
.bfr-load .bar i { display: block; height: 100%; border-radius: 999px; }
.bfr-load .bar .trad { width: 80%; background: rgba(40,40,40,.32); }
.bfr-load .bar .bfr { width: 26%; background: var(--yellow); }
.bfr-load b { font-family: var(--sintony); font-weight: 700; color: var(--ink); text-align: right; }
.bfr-flow { stroke: var(--yellow); stroke-width: 5; fill: none; stroke-linecap: round; stroke-dasharray: 14 20; animation: bfrflow 1.8s linear infinite; }
@keyframes bfrflow { to { stroke-dashoffset: -68; } }
.bfr-pool { animation: bfrpool 3.2s ease-in-out infinite; }
@keyframes bfrpool { 0%,100% { opacity: .28; } 50% { opacity: .62; } }
.bfr-glow { animation: bfrglow 3.2s ease-in-out infinite; transform-origin: 221px 330px; }
@keyframes bfrglow { 0%,100% { opacity: .22; transform: scale(.96); } 50% { opacity: .48; transform: scale(1.04); } }
.bfr-cuff { animation: bfrcuff 3.2s ease-in-out infinite; transform-origin: 221px 150px; }
@keyframes bfrcuff { 0%,100% { transform: scaleX(1); } 50% { transform: scaleX(.985); } }
.bfr-bub { animation: bfrbub 3.6s ease-in-out infinite; }
.bfr-bub2 { animation: bfrbub 3.6s ease-in-out .9s infinite; }
.bfr-bub3 { animation: bfrbub 3.6s ease-in-out 1.8s infinite; }
@keyframes bfrbub { 0% { transform: translateY(0); opacity: 0; } 18% { opacity: .9; } 80% { opacity: .15; } 100% { transform: translateY(-96px); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .bfr-flow,.bfr-pool,.bfr-glow,.bfr-cuff,.bfr-bub,.bfr-bub2,.bfr-bub3 { animation: none; } .bfr-pool { opacity: .5; } .bfr-glow { opacity: .38; } }

/* phone field with country-code dropdown */
.phone-field { display: flex; }
.phone-field select { width: auto; flex-shrink: 0; font-size: 16px; border-top-right-radius: 0; border-bottom-right-radius: 0; border-right: none; padding: 15px 12px; cursor: pointer; }
.phone-field input { flex: 1; border-top-left-radius: 0; border-bottom-left-radius: 0; }
.phone-field select:focus, .phone-field input:focus { position: relative; z-index: 1; }

/* ================= contact page premium polish ================= */
/* unified phone field with custom chevron */
.phone-field {
  display: flex; border: 1.5px solid rgba(40,40,40,0.2); border-radius: var(--r-btn); background: #fff;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}
.phone-field:focus-within { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(254,191,18,0.35); }
.phone-field select, .phone-field input { border: none; border-radius: 0; background: transparent; }
.phone-field select:focus, .phone-field input:focus { outline: none; box-shadow: none; }
.phone-field select {
  width: auto; flex-shrink: 0; font-size: 16px; padding: 15px 34px 15px 15px; cursor: pointer;
  -webkit-appearance: none; appearance: none;
  border-right: 1px solid rgba(40,40,40,0.14);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%23282828' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center;
}
.phone-field input { flex: 1; padding-left: 15px; }

/* elevated contact cards */
.contact-aside .card, .contact-aside .map-wrap {
  border-radius: 18px; border-color: rgba(40,40,40,0.07);
  box-shadow: 0 1px 2px rgba(40,40,40,0.04), 0 18px 42px rgba(40,40,40,0.08);
}
.contact-aside .card { padding: 28px 30px; margin-bottom: 18px; transition: transform 0.2s ease-out, box-shadow 0.2s ease-out; }
.contact-aside .card:hover { transform: translateY(-2px); box-shadow: 0 1px 2px rgba(40,40,40,0.04), 0 24px 52px rgba(40,40,40,0.1); }
.contact-aside .map-wrap { overflow: hidden; }

/* WhatsApp card */
.wa-card { position: relative; }
.wa-glyph { width: 52px; height: 52px; border-radius: 14px; background: rgba(37,211,102,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.btn-whatsapp {
  background: #25D366; color: #fff; display: inline-flex; align-items: center; gap: 10px;
  font-size: 15.5px; padding: 15px 26px; box-shadow: 0 10px 24px rgba(37,211,102,0.32);
}
.btn-whatsapp:hover { background: #20bd5b; color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37,211,102,0.42); }

/* address list with icons */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.contact-list li { display: flex; gap: 13px; align-items: center; font-size: 15.5px; font-weight: 500; color: var(--ink-78); line-height: 1.45; }
.contact-list a { font-weight: 700; }
.contact-list a:hover { color: #9A7208; }
.cico { flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px; background: var(--grey); color: var(--ink); display: flex; align-items: center; justify-content: center; }
.cico svg { width: 17px; height: 17px; }
