/* ============================================================
   Aline Baroli — Fisioterapeuta · warm, calm, welcoming
   palette: cream · teal #398D91 · terracotta #C2653B
   ============================================================ */

:root {
  --cream:     #FBF7F0;
  --cream-2:   #F4EDE1;
  --sand:      #EADFCD;
  --ink:       #2D2A26;
  --ink-soft:  #6A645C;
  --ink-faint: #9A938A;
  --line:      rgba(45,42,38,0.12);
  --line-2:    rgba(45,42,38,0.07);

  --teal:      #398D91;
  --teal-deep: #2C6F73;
  --teal-soft: rgba(57,141,145,0.12);
  --terra:     #C2653B;
  --terra-deep:#A4502C;
  --terra-soft:rgba(194,101,59,0.12);

  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 76px);
  --radius: 20px;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Nunito Sans", system-ui, -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --shadow: 0 24px 50px -28px rgba(45,42,38,0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--sans); background: var(--cream); color: var(--ink);
  font-size: 17px; line-height: 1.65; letter-spacing: -0.005em; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--teal); color: #fff; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); }

.wrap { max-width: var(--maxw); margin: 0 auto; width: 100%; }
.section { padding: clamp(64px, 10vh, 120px) var(--gutter); position: relative; }
.section.tight { padding-top: clamp(40px, 6vh, 72px); padding-bottom: clamp(40px, 6vh, 72px); }
.bg-cream2 { background: var(--cream-2); }
.bg-sand { background: var(--sand); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); font-weight: 700;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--terra); }
.eyebrow.center { justify-content: center; }
.lead { color: var(--ink-soft); font-size: clamp(1.05rem, 1.5vw, 1.2rem); }

/* reveal mechanism (Motion-driven; visible if JS never runs) */
html.anim [data-reveal], html.anim [data-stag] > * { opacity: 0; }
@media (prefers-reduced-motion: reduce) { html.anim [data-reveal], html.anim [data-stag] > * { opacity: 1 !important; } }

/* decorative soft blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; pointer-events: none; z-index: 0; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--gutter); transition: background .35s var(--ease-out), box-shadow .35s, padding .35s;
}
.nav.scrolled { background: rgba(251,247,240,0.86); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); padding-top: 11px; padding-bottom: 11px; }
.nav .brand { display: flex; align-items: center; gap: 11px; }
.nav .brand img { height: 38px; width: auto; }
.nav .brand .bname { font-family: var(--serif); font-weight: 600; font-size: 19px; line-height: 1; }
.nav .brand .brole { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); font-weight: 700; margin-top: 3px; }
.nav .links { display: flex; align-items: center; gap: 28px; }
.nav .links a { font-size: 15px; font-weight: 600; color: var(--ink-soft); transition: color .25s; position: relative; }
.nav .links a:hover, .nav .links a[aria-current="page"] { color: var(--ink); }
.nav .links a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; border-radius: 2px; background: var(--terra); }
.nav .lang-switch { font-family: var(--sans); font-weight: 800; font-size: 13px; letter-spacing: 0.06em; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; transition: border-color .25s, color .25s, background .25s; }
.nav .lang-switch:hover { border-color: var(--teal); color: var(--teal); }
.nav .menu-btn { display: none; background: none; border: 0; cursor: pointer; color: var(--ink); padding: 6px; }
.nav .menu-btn svg { width: 26px; height: 26px; }
@media (max-width: 860px) {
  .nav .links { position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); flex-direction: column; align-items: flex-start;
    gap: 8px; background: var(--cream); padding: 92px 32px; transform: translateX(100%); transition: transform .4s var(--ease-out); box-shadow: var(--shadow); }
  .nav.open .links { transform: translateX(0); }
  .nav .links a { font-size: 1.3rem; font-family: var(--serif); padding: 8px 0; }
  .nav .menu-btn { display: inline-flex; z-index: 91; }
  body.menu-open { overflow: hidden; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: 999px; cursor: pointer; border: 1px solid transparent; white-space: nowrap;
  transition: transform .25s var(--ease-out), box-shadow .3s var(--ease-out), background .3s, border-color .25s, color .25s;
}
.btn svg { width: 17px; height: 17px; }
.btn:active { transform: scale(0.97); }
.btn-primary { color: #fff; background: var(--terra); box-shadow: 0 10px 24px -10px rgba(194,101,59,0.6); }
.btn-primary:hover { background: var(--terra-deep); transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(194,101,59,0.6); }
.btn-teal { color: #fff; background: var(--teal); box-shadow: 0 10px 24px -10px rgba(57,141,145,0.55); }
.btn-teal:hover { background: var(--teal-deep); transform: translateY(-2px); }
.btn-ghost { color: var(--ink); border-color: var(--line); background: transparent; }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(120px, 16vh, 180px); overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 64px); align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.2rem); font-weight: 500; }
.hero h1 .accent { color: var(--terra); font-style: italic; }
.hero .hero-sub { margin-top: 22px; max-width: 46ch; }
.hero .hero-cta { margin-top: 32px; display: flex; gap: 13px; flex-wrap: wrap; }
.hero .trust { margin-top: 26px; display: flex; gap: 20px; flex-wrap: wrap; font-size: 14px; color: var(--ink-soft); }
.hero .trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero .trust svg { width: 17px; height: 17px; color: var(--teal); }
@media (max-width: 880px) { .hero .wrap { grid-template-columns: 1fr; } .hero .hero-media { order: -1; } }

/* media frame (photo slot) — looks intentional even before a real photo */
.media-frame {
  position: relative; border-radius: 26px; overflow: hidden; aspect-ratio: 4/5;
  background: radial-gradient(120% 80% at 50% 0%, var(--teal-soft), transparent 58%), linear-gradient(160deg, var(--cream-2), var(--sand));
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.media-frame.round { border-radius: 50%; aspect-ratio: 1; }
/* real photo, when present */
.media-frame img.photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; z-index: 2; }
/* placeholder: rotating decorative rings + centred brand mark */
.media-frame .ring { position: absolute; top: 50%; left: 50%; width: 66%; aspect-ratio: 1; transform: translate(-50%, -50%);
  border: 1.5px dashed rgba(57,141,145,0.30); border-radius: 50%; }
.media-frame .ring::after { content: ""; position: absolute; inset: 13%; border: 1px solid rgba(194,101,59,0.24); border-radius: 50%; }
.media-frame .ph { position: absolute; inset: 0; display: grid; place-items: center; padding: 24px; z-index: 1; }
.media-frame .ph img { width: min(56%, 220px); height: auto; filter: drop-shadow(0 12px 26px rgba(45,42,38,0.14)); }
.media-frame .cap { position: absolute; bottom: 18px; left: 0; right: 0; z-index: 1; text-align: center;
  font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--ink-faint); }
.media-frame .badge { position: absolute; bottom: 16px; left: 16px; right: 16px; z-index: 3; background: rgba(251,247,240,0.92); backdrop-filter: blur(6px);
  border-radius: 14px; padding: 12px 15px; display: flex; align-items: center; gap: 11px; box-shadow: var(--shadow); }
.media-frame .badge .ic { width: 38px; height: 38px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; flex: none; }
.media-frame .badge .ic svg { width: 19px; height: 19px; }
.media-frame .badge b { font-family: var(--serif); font-size: 15px; }
.media-frame .badge small { display: block; color: var(--ink-soft); font-size: 12px; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.shead { max-width: 640px; margin-bottom: 48px; }
.shead.center { margin-inline: auto; text-align: center; }
.shead h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.shead p { margin-top: 14px; color: var(--ink-soft); }

/* ============================================================
   SERVICES
   ============================================================ */
.sgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .sgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .sgrid { grid-template-columns: 1fr; } }
.scard {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s; will-change: transform;
}
.scard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--teal-soft); }
.scard .ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal-deep); margin-bottom: 18px; transition: background .35s var(--ease-out), color .35s, transform .35s var(--ease-out); }
.scard:hover .ic { background: var(--teal); color: #fff; transform: scale(1.08) rotate(-3deg); }
.scard .ic svg { width: 26px; height: 26px; }
.scard h3 { font-size: 1.28rem; }
.scard p { margin-top: 9px; color: var(--ink-soft); font-size: 0.97rem; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 28px 24px; border-radius: var(--radius); background: var(--cream); border: 1px solid var(--line); }
.step-n { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--terra); color: #fff;
  font-family: var(--serif); font-size: 1.1rem; margin-bottom: 16px; box-shadow: 0 8px 18px -8px rgba(194,101,59,0.6); }
.step h3 { font-size: 1.2rem; } .step p { margin-top: 8px; color: var(--ink-soft); font-size: 0.95rem; }

/* ============================================================
   CONDITIONS
   ============================================================ */
.cond-list { display: flex; flex-wrap: wrap; gap: 12px; align-content: flex-start; }
.cond { display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px; border-radius: 999px;
  background: var(--cream); border: 1px solid var(--line); font-weight: 600; font-size: 0.97rem; transition: border-color .25s, transform .25s var(--ease-out); }
.cond svg { color: var(--teal); flex: none; }
.cond:hover { border-color: var(--teal); transform: translateY(-2px); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: 12px; }
.faq-item { background: var(--cream); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: border-color .25s; }
.faq-item[open] { border-color: var(--teal-soft); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--serif); font-size: 1.12rem; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev { color: var(--teal); flex: none; transition: transform .3s var(--ease-out); }
.faq-item[open] .chev { transform: rotate(180deg); }
.faq-item p { padding: 0 22px 20px; color: var(--ink-soft); margin: 0; }

/* ============================================================
   REVIEWS (Google)
   ============================================================ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
@media (max-width: 860px) { .reviews { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reviews { grid-template-columns: 1fr; } }
.rcard { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; text-align: left; }
.rcard .stars { color: var(--terra); letter-spacing: 2px; font-size: 15px; margin-bottom: 12px; }
.rcard .stars .off { color: var(--line); }
.rcard p { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.rcard .rauthor { margin-top: 16px; display: flex; align-items: center; gap: 7px; font-family: var(--serif); font-weight: 600; font-size: 0.98rem; }
.rcard .rauthor svg { color: var(--teal); flex: none; }

/* ============================================================
   LOCATION / MAP
   ============================================================ */
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 4/3; background: var(--cream-2); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.15); }
.addr { display: flex; align-items: flex-start; gap: 9px; margin-top: 18px; font-weight: 600; }
.addr svg { color: var(--terra); flex: none; margin-top: 2px; }

/* ============================================================
   ABOUT / SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: -1; } }
.split-copy h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.split-copy p { margin-top: 16px; color: var(--ink-soft); }
.split-copy .btn { margin-top: 26px; }

.vlist { list-style: none; margin-top: 22px; display: grid; gap: 13px; }
.vlist li { display: flex; gap: 12px; align-items: flex-start; }
.vlist .ck { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--terra-soft); color: var(--terra); display: grid; place-items: center; margin-top: 2px; }
.vlist .ck svg { width: 14px; height: 14px; }
.vlist b { font-weight: 800; } .vlist span.tx { color: var(--ink-soft); }

/* ============================================================
   JOURNEY (training & experience)
   ============================================================ */
.journey { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
@media (max-width: 760px) { .journey { grid-template-columns: 1fr; } }
.jcol h3 { font-size: 1.3rem; margin-bottom: 16px; }
.jcol .vlist { margin-top: 0; }
.langs { margin-top: 20px; color: var(--ink-soft); font-size: 0.97rem; }
.langs b { font-family: var(--serif); font-weight: 600; color: var(--ink); }

/* ============================================================
   CTA BAND
   ============================================================ */
.ctaband { background: var(--teal); color: #fff; border-radius: 0; }
.ctaband .panel { position: relative; overflow: hidden; }
.ctaband h2 { color: #fff; font-size: clamp(2rem, 4.6vw, 3rem); max-width: 18ch; }
.ctaband p { color: rgba(255,255,255,0.85); margin-top: 14px; max-width: 46ch; }
.ctaband .row { margin-top: 28px; display: flex; gap: 13px; flex-wrap: wrap; }
.ctaband .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.ctaband .btn-ghost:hover { border-color: #fff; color: var(--teal); background: #fff; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 5vw, 56px); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.channels { display: grid; gap: 14px; margin-top: 8px; }
.channel { display: flex; gap: 14px; align-items: center; padding: 16px 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--cream); transition: border-color .25s, transform .25s var(--ease-out); }
.channel:hover { border-color: var(--teal); transform: translateX(3px); }
.channel .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--teal-soft); color: var(--teal-deep); display: grid; place-items: center; flex: none; }
.channel .ic svg { width: 21px; height: 21px; }
.channel b { font-family: var(--serif); font-size: 1.02rem; } .channel small { display: block; color: var(--ink-soft); }

.form { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--cream-2);
  border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; resize: vertical; transition: border-color .25s, background .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); background: #fff; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form .row2 { grid-template-columns: 1fr; } }
.form .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
.form .consent { font-size: 12px; color: var(--ink-faint); margin-top: 14px; }
.form .consent a { color: var(--teal); text-decoration: underline; }
#form-status { margin-top: 14px; font-weight: 700; display: none; }
#form-status.ok { display: block; color: var(--teal-deep); }
#form-status.err { display: block; color: var(--terra-deep); }

/* ============================================================
   LEGAL / PROSE
   ============================================================ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { font-size: clamp(2.2rem, 5vw, 3rem); margin-bottom: 10px; }
.prose .updated { color: var(--ink-faint); font-size: 14px; margin-bottom: 36px; }
.prose h2 { font-size: 1.5rem; margin: 34px 0 12px; }
.prose h3 { font-size: 1.15rem; margin: 22px 0 8px; }
.prose p, .prose li { color: var(--ink-soft); margin-bottom: 12px; }
.prose ul { padding-left: 22px; margin-bottom: 12px; }
.prose a { color: var(--teal); text-decoration: underline; }
.prose .todo { background: var(--terra-soft); border-left: 3px solid var(--terra); padding: 10px 14px; border-radius: 8px; font-size: 14px; color: var(--terra-deep); }

/* ============================================================
   COOKIE / DATA BANNER
   ============================================================ */
.cookie {
  position: fixed; left: 50%; bottom: 18px; z-index: 98; width: min(720px, calc(100vw - 32px));
  transform: translate(-50%, 140%); opacity: 0; transition: transform .45s var(--ease-out), opacity .45s var(--ease-out);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: space-between;
  background: var(--cream); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 16px 20px;
}
.cookie.show { transform: translate(-50%, 0); opacity: 1; }
.cookie p { margin: 0; font-size: 14px; color: var(--ink-soft); flex: 1 1 300px; }
.cookie p a { color: var(--teal); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex: none; }
.btn-cookie { padding: 10px 18px; font-size: 14px; }
@media (max-width: 560px) { .cookie { bottom: 12px; } .cookie-btns { width: 100%; } .btn-cookie { flex: 1; justify-content: center; } }

/* ============================================================
   SCROLL PROGRESS + FLOATING ACTIONS
   ============================================================ */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 95; transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--teal), var(--terra)); }

.fab-top { position: fixed; right: 22px; bottom: 22px; z-index: 96; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: var(--cream); color: var(--ink);
  display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow); opacity: 0; transform: translateY(12px) scale(0.8); pointer-events: none;
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), color .25s, border-color .25s; }
.fab-top.show { opacity: 1; transform: none; pointer-events: auto; }
.fab-top:hover { color: var(--teal); border-color: var(--teal); transform: translateY(-3px); }

.fab { position: fixed; left: 20px; bottom: 20px; z-index: 96; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.fab-toggle { width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer; background: var(--terra); color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 28px -10px rgba(194,101,59,0.7); transition: transform .35s var(--ease-out), background .25s; }
.fab-toggle:hover { background: var(--terra-deep); }
.fab-toggle svg { transition: transform .35s var(--ease-out); }
.fab.open .fab-toggle { background: var(--teal-deep); }
.fab.open .fab-toggle svg { transform: rotate(135deg); }
.fab-action { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow);
  opacity: 0; transform: translateY(14px) scale(0.6); pointer-events: none; transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), filter .2s; }
.fab.open .fab-action { opacity: 1; transform: none; pointer-events: auto; }
.fab.open .fab-action:nth-child(4) { transition-delay: .04s; }
.fab.open .fab-action:nth-child(3) { transition-delay: .08s; }
.fab.open .fab-action:nth-child(2) { transition-delay: .12s; }
.fab.open .fab-action:nth-child(1) { transition-delay: .16s; }
.fab-action:hover { filter: brightness(1.08); transform: scale(1.08) !important; }
.fab-action.wa { background: #25D366; } .fab-action.em { background: var(--teal); }
.fab-action.fb { background: #1877F2; } .fab-action.ig { background: radial-gradient(circle at 30% 110%, #FEDA75, #FA7E1E 30%, #D62976 55%, #962FBF 80%, #4F5BD5); }
@media (max-width: 600px) { .fab { left: 16px; bottom: 16px; } .fab-top { right: 16px; bottom: 16px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #E9E4DB; padding: 64px var(--gutter) 40px; }
.footer .wrap { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 980px) { .footer .wrap { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .footer .wrap { grid-template-columns: 1fr; gap: 30px; } }
.footer .fbrand img { width: clamp(200px, 24vw, 260px); height: auto; margin: -10px 0 10px -8px; }
.footer .fbrand p { color: rgba(233,228,219,0.7); max-width: 34ch; font-size: 14px; }
.footer h5 { font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--teal); margin-bottom: 14px; }
.footer a, .footer .fitem { display: block; color: rgba(233,228,219,0.82); font-size: 14px; margin-bottom: 10px; transition: color .25s; }
.footer a:hover { color: #fff; }
.footer .legal { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,0.12); margin-top: 30px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: rgba(233,228,219,0.55); }
.footer .legal a { display: inline; margin: 0; color: rgba(233,228,219,0.7); }
.footer .legal .lnks { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE REFINEMENTS (tablet + mobile)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --gutter: clamp(20px, 5vw, 56px); }
  .hero .wrap { gap: clamp(28px, 4vw, 48px); }
}
@media (max-width: 760px) {
  .hero { padding-top: clamp(100px, 15vh, 132px); }
  .section { padding-top: clamp(52px, 8vh, 84px); padding-bottom: clamp(52px, 8vh, 84px); }
  .shead { margin-bottom: 34px; }
  .hero h1 { max-width: 18ch; }
  .hero .trust { gap: 14px; }
  .split, .hero .wrap, .contact-grid, .showcase .wrap { gap: 30px; }
  .media-frame { aspect-ratio: 5/4; max-width: 460px; margin-inline: auto; }
  .media-frame.round { max-width: 320px; }
  .ctaband .panel, .cta-band { text-align: center; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .hero-cta, .ctaband .row { width: 100%; }
  .hero-cta .btn, .ctaband .row .btn { flex: 1 1 46%; justify-content: center; }
  .scard, .step, .principle, .channel, .faq-item summary { padding-left: 18px; padding-right: 18px; }
  .scard { padding-top: 24px; padding-bottom: 24px; }
  .nav { padding-left: 18px; padding-right: 18px; }
  .map-wrap { aspect-ratio: 4/3 !important; }
  .eyebrow { font-size: 12px; }
  .footer { padding-left: 22px; padding-right: 22px; }
}
