/* ==========================================================================
   BELLA VIDA — Saúde Domiciliar
   Design system / global styles
   Premium healthcare: navy + petroleum blue + gold accent, soft purple for sleep.
   ========================================================================== */

/* ----- Design tokens ----- */
:root{
  /* Brand */
  --navy:        #0B2D4D;   /* azul profundo */
  --petrol:      #0E4D6B;   /* azul petróleo */
  --blue:        #1C6E9C;   /* brand blue (footer) */
  --blue-bright: #2E8FC4;   /* "vida" blue */
  --blue-50:     #EAF3F9;
  --blue-100:    #D4E6F1;
  --gold:        #C2A15A;   /* swoosh accent */
  --gold-soft:   #D8BE86;
  --gold-50:     #F6EFDF;
  --purple:      #4B3F7A;   /* roxo suave (apneia, dark) */
  --purple-deep: #2A2350;
  --wa:          #25D366;   /* WhatsApp */
  --wa-dark:     #1EBE5A;

  /* Neutrals */
  --bg:          #FFFFFF;
  --bg-soft:     #F4F7FA;
  --bg-softer:   #FAFBFD;
  --line:        #E4EBF2;
  --line-strong: #D2DDE7;
  --ink:         #16293A;   /* headings */
  --text:        #3C4D5C;   /* body */
  --muted:       #6A7C8B;   /* secondary text */

  /* Type */
  --font-head: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Geometry */
  --radius-s: 10px;
  --radius:   16px;
  --radius-l: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(11,45,77,.05);
  --shadow:    0 14px 40px -18px rgba(11,45,77,.22);
  --shadow-lg: 0 30px 70px -28px rgba(11,45,77,.34);

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(64px, 9vw, 128px);
}

/* ----- Reset ----- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:var(--bg);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:var(--font-head); color:var(--ink); margin:0; line-height:1.12; letter-spacing:-.02em; font-weight:800; text-wrap:balance; }
p{ margin:0; text-wrap:pretty; }
ul{ margin:0; padding:0; list-style:none; }
:focus-visible{ outline:3px solid var(--blue-bright); outline-offset:2px; border-radius:4px; }

/* ----- Layout ----- */
.container{ width:100%; max-width:var(--container); margin-inline:auto; padding-inline:var(--gutter); }
.container-wide{ max-width:1340px; }
.section{ padding-block:var(--section-y); }
.section--soft{ background:var(--bg-soft); }
.section--tight{ padding-block:clamp(44px,6vw,80px); }

/* ----- Type helpers ----- */
.display{ font-size:clamp(2.4rem, 5.4vw, 4rem); line-height:1.04; }
.h1{ font-size:clamp(2rem, 4vw, 3rem); }
.h2{ font-size:clamp(1.7rem, 3.2vw, 2.6rem); }
.h3{ font-size:clamp(1.25rem, 2vw, 1.6rem); }
.lead{ font-size:clamp(1.08rem, 1.5vw, 1.3rem); color:var(--muted); line-height:1.6; }
.eyebrow{
  display:inline-flex; align-items:center; gap:.55em;
  font-family:var(--font-head); font-weight:700; font-size:.78rem;
  letter-spacing:.16em; text-transform:uppercase; color:var(--blue);
}
.eyebrow::before{ content:""; width:26px; height:2px; background:var(--gold); border-radius:2px; }
.eyebrow--center{ }
.text-muted{ color:var(--muted); }
.text-gold{ color:var(--gold); }
.section-head{ max-width:680px; }
.section-head--center{ margin-inline:auto; text-align:center; }
.section-head .eyebrow{ margin-bottom:18px; }
.section-head p{ margin-top:16px; }

/* ----- Buttons ----- */
.btn{
  --bg:var(--navy); --fg:#fff;
  display:inline-flex; align-items:center; justify-content:center; gap:.6em;
  font-family:var(--font-head); font-weight:700; font-size:1rem;
  padding:15px 26px; border-radius:14px; border:1.5px solid transparent;
  background:var(--bg); color:var(--fg);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor:pointer; text-align:center;
}
.btn svg{ width:1.15em; height:1.15em; flex:none; }
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--navy); color:#fff; box-shadow:var(--shadow); }
.btn-primary:hover{ background:var(--petrol); box-shadow:var(--shadow-lg); }
.btn-blue{ background:var(--blue); color:#fff; box-shadow:var(--shadow); }
.btn-blue:hover{ background:var(--petrol); }
.btn-wa{ background:var(--wa); color:#fff; box-shadow:0 14px 30px -12px rgba(37,211,102,.6); }
.btn-wa:hover{ background:var(--wa-dark); }
.btn-gold{ background:var(--gold); color:#241a05; }
.btn-gold:hover{ background:var(--gold-soft); }
.btn-ghost{ background:transparent; color:var(--navy); border-color:var(--line-strong); }
.btn-ghost:hover{ border-color:var(--navy); background:var(--bg-soft); }
.btn-ghost-light{ background:rgba(255,255,255,.08); color:#fff; border-color:rgba(255,255,255,.35); }
.btn-ghost-light:hover{ background:rgba(255,255,255,.16); border-color:#fff; }
.btn-lg{ padding:18px 32px; font-size:1.06rem; }
.btn-block{ width:100%; }
.btn-row{ display:flex; flex-wrap:wrap; gap:14px; }

/* ----- WhatsApp floating ----- */
.wa-float{
  position:fixed; right:clamp(16px,3vw,28px); bottom:clamp(16px,3vw,28px); z-index:80;
  display:inline-flex; align-items:center; gap:12px;
  background:var(--wa); color:#fff; padding:13px 20px 13px 15px; border-radius:999px;
  font-family:var(--font-head); font-weight:700; font-size:.98rem;
  box-shadow:0 18px 40px -14px rgba(37,211,102,.7);
  transition:transform .25s ease, box-shadow .25s ease;
}
.wa-float:hover{ transform:translateY(-3px) scale(1.02); }
.wa-float svg{ width:26px; height:26px; flex:none; }
.wa-float .wa-float__txt{ }
@media (max-width:560px){
  .wa-float .wa-float__txt{ display:none; }
  .wa-float{ padding:15px; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:70;
  transition:background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom:1px solid transparent;
}
.site-header__inner{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  height:84px;
}
.site-header.is-scrolled{
  background:rgba(255,255,255,.78);
  backdrop-filter:saturate(180%) blur(18px);
  -webkit-backdrop-filter:saturate(180%) blur(18px);
  box-shadow:0 8px 30px -18px rgba(11,45,77,.3);
  border-bottom-color:var(--line);
}
.site-header__logo{ display:inline-flex; align-items:center; }
.site-header__logo img{ height:46px; width:auto; transition:height .3s ease; }
.site-header.is-scrolled .site-header__logo img{ height:42px; }
.logo--white{ display:none; }
/* Dark-hero theme: white logo + white nav until the glass header kicks in */
.site-header--on-dark:not(.is-scrolled) .logo--color{ display:none; }
.site-header--on-dark:not(.is-scrolled) .logo--white{ display:inline-block; }
.site-header--on-dark:not(.is-scrolled) .nav a{ color:#fff; }
.site-header--on-dark:not(.is-scrolled) .nav a:hover{ color:var(--gold-soft); }
.site-header--on-dark:not(.is-scrolled) .nav a.is-active{ color:#fff; }
.site-header--on-dark:not(.is-scrolled) .nav-toggle{ background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.4); }
.site-header--on-dark:not(.is-scrolled) .nav-toggle span{ background:#fff; }
.nav{ display:flex; align-items:center; gap:4px; }
.nav a{
  font-family:var(--font-head); font-weight:600; font-size:.98rem; color:var(--ink);
  padding:10px 16px; border-radius:999px; transition:color .2s, background .2s; position:relative;
}
.nav a:hover{ color:var(--blue); }
.nav a.is-active{ color:var(--blue); }
.nav a.is-active::after{
  content:""; position:absolute; left:16px; right:16px; bottom:4px; height:2px;
  background:var(--gold); border-radius:2px;
}
.header-actions{ display:flex; align-items:center; gap:14px; }
.nav-toggle{ display:none; }

@media (max-width:1000px){
  .nav, .header-actions .btn-wa{ display:none; }
  .nav-toggle{
    display:inline-flex; flex-direction:column; gap:5px; justify-content:center;
    width:46px; height:46px; border-radius:12px; border:1px solid var(--line-strong);
    background:#fff;
  }
  .nav-toggle span{ display:block; width:20px; height:2px; background:var(--navy); margin-inline:auto; border-radius:2px; transition:.25s; }
  .nav-toggle.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2){ opacity:0; }
  .nav-toggle.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
}

/* Mobile drawer */
.mobile-menu{
  position:fixed; inset:0; z-index:69; background:rgba(11,45,77,.45);
  backdrop-filter:blur(4px); opacity:0; pointer-events:none; transition:opacity .3s ease;
}
.mobile-menu.is-open{ opacity:1; pointer-events:auto; }
.mobile-menu__panel{
  position:absolute; top:0; right:0; height:100%; width:min(380px,86vw);
  background:#fff; padding:96px 28px 32px; display:flex; flex-direction:column; gap:6px;
  transform:translateX(100%); transition:transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow:var(--shadow-lg);
}
.mobile-menu.is-open .mobile-menu__panel{ transform:translateX(0); }
.mobile-menu__panel a{
  font-family:var(--font-head); font-weight:600; font-size:1.15rem; color:var(--ink);
  padding:14px 14px; border-radius:12px; border-bottom:1px solid var(--line);
}
.mobile-menu__panel a:hover{ background:var(--bg-soft); color:var(--blue); }
.mobile-menu__panel .btn{ margin-top:18px; color: var(--line); }

/* ==========================================================================
   HERO (generic page hero)
   ========================================================================== */
.page-hero{
  position:relative; padding-top:148px; padding-bottom:clamp(48px,7vw,84px);
  background:
    radial-gradient(120% 120% at 88% -10%, rgba(46,143,196,.16), transparent 55%),
    linear-gradient(180deg, var(--blue-50), #fff 88%);
  overflow:hidden;
}
.page-hero::after{
  content:""; position:absolute; right:-6%; top:-30%; width:46%; height:160%;
  background:radial-gradient(circle, rgba(194,161,90,.12), transparent 62%); pointer-events:none;
}
.page-hero__bg{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0;
}
.page-hero__overlay{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background:rgba(255,255,255,.72);
}
.page-hero>.container{ position:relative; z-index:2; }
/* landing heroes */
.apnea-hero{
  position:relative; overflow:hidden;
  padding:160px 0 clamp(60px,8vw,110px);
  color:#fff;
  background:radial-gradient(120% 100% at 80% 0%,rgba(91,75,138,.55),transparent 60%),
             linear-gradient(160deg,#1B1640,#2A2350 45%,#0E4D6B);
}
.apnea-hero::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(ellipse 70% 80% at 82% 40%, rgba(194,161,90,.18), transparent 65%);
}
.apnea-hero__bg{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0;
}
.apnea-hero__overlay{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background:radial-gradient(120% 100% at 80% 0%,rgba(91,75,138,.60),transparent 60%),
             linear-gradient(160deg,rgba(27,22,64,.88),rgba(42,35,80,.82) 45%,rgba(14,77,107,.80));
}
.apnea-hero > .container{ position:relative; z-index:2; }

.mentor-hero{
  position:relative; overflow:hidden;
  padding:160px 0 clamp(56px,7vw,100px);
  color:#fff;
  background:linear-gradient(155deg,#0B2D4D,#0E4D6B 60%,#123A52);
}
.mentor-hero::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(90deg,transparent 60%,rgba(194,161,90,.1)),
             repeating-linear-gradient(135deg,rgba(255,255,255,.03) 0 2px,transparent 2px 26px);
}
.mentor-hero__bg{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0;
}
.mentor-hero__overlay{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(155deg,rgba(11,45,77,.88),rgba(14,77,107,.82) 60%,rgba(18,58,82,.85));
}
.mentor-hero > .container{ position:relative; z-index:2; }

@media(max-width:760px){
  .page-hero::after, .apnea-hero::after, .mentor-hero::after{ display:none; }
  .page-hero{ padding-top:100px !important; }
  .apnea-hero, .mentor-hero{ padding-top:100px; padding-bottom:60px; }
}
.breadcrumb{ display:flex; flex-wrap:wrap; gap:8px; align-items:center; font-size:.86rem; color:var(--muted); margin-bottom:22px; }
.breadcrumb a:hover{ color:var(--blue); }
.breadcrumb span.sep{ opacity:.5; }

/* ----- Media placeholder ----- */
.ph{
  position:relative; border-radius:var(--radius-l); overflow:hidden; background:var(--blue-50);
  background-image:repeating-linear-gradient(135deg, rgba(28,110,156,.06) 0 14px, rgba(28,110,156,.11) 14px 28px);
  border:1px solid var(--line); display:grid; place-items:center; color:var(--blue); min-height:240px;
}
.ph__label{
  font-family:"Fira Mono", ui-monospace, monospace; font-size:.78rem; letter-spacing:.04em;
  text-transform:uppercase; color:var(--blue); background:rgba(255,255,255,.78);
  padding:8px 14px; border-radius:999px; border:1px solid var(--line); text-align:center; max-width:80%;
}
.ph--dark{ background:rgba(255,255,255,.05); background-image:repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 14px, rgba(255,255,255,.1) 14px 28px); border-color:rgba(255,255,255,.16); color:#fff; }
.ph--dark .ph__label{ background:rgba(255,255,255,.12); color:#fff; border-color:rgba(255,255,255,.2); }

/* ==========================================================================
   CARDS
   ========================================================================== */
.card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-l);
  padding:30px; box-shadow:var(--shadow-sm); transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.card-hover:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:var(--blue-100); }
.grid{ display:grid; gap:24px; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
@media (max-width:980px){ .grid-4{ grid-template-columns:repeat(2,1fr);} .grid-3{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:640px){ .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr; } }

/* two-column content split — collapses on mobile */
.col-2{ display:grid; grid-template-columns:1fr 1fr; }
@media(max-width:760px){
  .col-2{ grid-template-columns:1fr; }
  .col-2 aside>.card{ position:relative; top:auto; }
}

.icon-badge{
  width:58px; height:58px; border-radius:16px; display:grid; place-items:center; margin-bottom:20px;
  background:var(--blue-50); color:var(--blue);
}
.icon-badge svg{ width:28px; height:28px; }
.icon-badge--gold{ background:var(--gold-50); color:#9c7d2f; }
.card h3{ font-size:1.22rem; margin-bottom:10px; }
.card p{ color:var(--muted); font-size:.99rem; }

/* Service card */
.service-card{ display:flex; flex-direction:column; height:100%; }
.service-card .service-card__media{ height:180px; margin:-30px -30px 22px; border-radius:0; }
.service-card__tag{
  position:absolute; top:14px; left:14px; font-family:var(--font-head); font-weight:700; font-size:.72rem;
  letter-spacing:.04em; text-transform:uppercase; padding:6px 12px; border-radius:999px; background:#fff; color:var(--blue);
  box-shadow:var(--shadow-sm);
}
.service-card__tag--gold{ background:var(--gold); color:#241a05; }
.service-card__tag--purple{ background:var(--purple); color:#fff; }
.more{
  margin-top:auto; padding-top:18px; display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-head); font-weight:700; color:var(--blue); font-size:.98rem;
}
.more svg{ width:18px; height:18px; flex:none; transition:transform .2s; }
.card-hover:hover .more svg{ transform:translateX(4px); }

/* feature list with check */
.checklist{ display:grid; gap:14px; }
.checklist li{ display:flex; gap:14px; align-items:flex-start; }
.checklist li .chk{
  flex:none; width:26px; height:26px; border-radius:50%; background:var(--blue-50); color:var(--blue);
  display:grid; place-items:center; margin-top:1px;
}
.checklist li .chk svg{ width:15px; height:15px; }
.checklist.checklist--gold li .chk{ background:var(--gold-50); color:#9c7d2f; }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
@media (max-width:760px){ .stats{ grid-template-columns:repeat(2,1fr); } }
.stat{ text-align:center; }
.stat__num{ font-family:var(--font-head); font-weight:800; font-size:clamp(2.4rem,5vw,3.4rem); color:#fff; line-height:1; letter-spacing:-.03em; }
.stat__num .suffix{ color:var(--gold-soft); }
.stat__label{ margin-top:10px; color:rgba(255,255,255,.78); font-size:.96rem; }

/* ==========================================================================
   TESTIMONIALS (carousel)
   ========================================================================== */
.tcarousel{ position:relative; }
.tcarousel__track{ display:flex; overflow:hidden; scroll-snap-type:x mandatory; gap:24px; }
.tcarousel__slide{ flex:0 0 100%; scroll-snap-align:start; }
.tquote{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-l); padding:clamp(28px,4vw,48px);
  box-shadow:var(--shadow-sm); max-width:840px; margin-inline:auto; text-align:center;
}
.tquote__mark{ font-family:var(--font-head); font-size:4rem; line-height:.6; color:var(--gold); height:34px; }
.tquote blockquote{ margin:0; font-size:clamp(1.2rem,2.2vw,1.3rem); color:var(--ink); font-family:var(--font-head); font-weight:600; line-height:1.4; }
.tquote__author{ margin-top:24px; color:var(--muted); font-weight:600; }
.tnav{ display:flex; gap:12px; justify-content:center; align-items:center; margin-top:28px; }
.tnav button{
  width:48px; height:48px; border-radius:50%; border:1px solid var(--line-strong); background:#fff; color:var(--navy);
  display:grid; place-items:center; transition:.2s;
}
.tnav button:hover{ background:var(--navy); color:#fff; border-color:var(--navy); }
.tdots{ display:flex; gap:8px; align-items:center; }
.tdots button{ width:9px; height:9px; padding:0; border-radius:50%; background:var(--line-strong); border:none; transition:.2s; }
.tdots button.is-active{ background:var(--gold); width:26px; border-radius:999px; }

/* ==========================================================================
   ACCORDION / FAQ
   ========================================================================== */
.accordion{ display:grid; gap:14px; }
.acc-item{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; transition:border-color .2s, box-shadow .2s; }
.acc-item.is-open{ border-color:var(--blue-100); box-shadow:var(--shadow-sm); }
.acc-head{
  width:100%; text-align:left; background:none; border:none; padding:22px 24px;
  display:flex; gap:20px; align-items:center; justify-content:space-between;
  font-family:var(--font-head); font-weight:700; font-size:1.06rem; color:var(--ink);
}
.acc-head .acc-ico{ flex:none; width:30px; height:30px; border-radius:50%; background:var(--blue-50); color:var(--blue); display:grid; place-items:center; transition:.3s; }
.acc-item.is-open .acc-ico{ background:var(--blue); color:#fff; transform:rotate(45deg); }
.acc-body{ max-height:0; overflow:hidden; transition:max-height .4s ease; }
.acc-item.is-open .acc-body{ max-height:640px; }
.acc-body__inner{ color:var(--muted); }
.acc-body__pad{ padding:0 24px 24px; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner{
  position:relative; overflow:hidden; border-radius:var(--radius-xl); padding:clamp(40px,6vw,72px);
  background:linear-gradient(120deg, var(--navy), var(--petrol) 60%, var(--blue));
  color:#fff; text-align:center;
}
.cta-banner::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 85% 10%, rgba(194,161,90,.25), transparent 45%); }
.cta-banner > *{ position:relative; }
.cta-banner h2{ color:#fff; }
.cta-banner p{ color:rgba(255,255,255,.82); max-width:620px; margin:18px auto 30px; }

/* dark section (apneia) */
.section--dark{ background:linear-gradient(150deg, var(--purple-deep), var(--purple) 55%, var(--petrol)); color:#fff; position:relative; overflow:hidden; }
.section--dark h1,.section--dark h2,.section--dark h3{ color:#fff; }
.section--dark .lead, .section--dark p{ color:rgba(255,255,255,.8); }
.section--navy{ background:linear-gradient(160deg, var(--navy), var(--petrol)); color:#fff; }
.section--navy h2{ color:#fff; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-l); padding:clamp(26px,4vw,40px); box-shadow:var(--shadow); }
.field{ margin-bottom:18px; }
.field label{ display:block; font-family:var(--font-head); font-weight:600; font-size:.92rem; color:var(--ink); margin-bottom:8px; }
.field .req{ color:var(--gold); }
.input, .select, .textarea{
  width:100%; font-family:inherit; font-size:1rem; color:var(--ink); background:var(--bg-softer);
  border:1.5px solid var(--line-strong); border-radius:12px; padding:14px 16px; transition:border-color .2s, box-shadow .2s, background .2s;
}
.input:focus,.select:focus,.textarea:focus{ outline:none; border-color:var(--blue-bright); background:#fff; box-shadow:0 0 0 4px rgba(46,143,196,.12); }
.textarea{ resize:vertical; min-height:120px; }
.field--error .input,.field--error .select,.field--error .textarea{ border-color:#e0526a; background:#fdf3f5; }
.field__error{ display:none; color:#c8344f; font-size:.84rem; margin-top:6px; font-weight:500; }
.field--error .field__error{ display:block; }
.form-note{ font-size:.84rem; color:var(--muted); }
.form-success{
  display:none; text-align:center; padding:30px;
}
.form-success.is-on{ display:block; }
.form-success .check{ width:62px; height:62px; border-radius:50%; background:var(--wa); color:#fff; display:grid; place-items:center; margin:0 auto 18px; }

/* contact split */
.contact-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:40px; align-items:start; }
@media (max-width:880px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-info li{ display:flex; gap:16px; align-items:flex-start; padding:16px 0; border-bottom:1px solid var(--line); }
.contact-info li .ci-ico{ flex:none; width:46px; height:46px; border-radius:14px; background:var(--blue-50); color:var(--blue); display:grid; place-items:center; }
.contact-info li .ci-ico svg{ width:22px; height:22px; }
.contact-info b{ display:block; font-family:var(--font-head); color:var(--ink); }
.contact-info span{ color:var(--muted); font-size:.96rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background:var(--blue); color:#fff; }
.site-footer__main{ padding-block:clamp(48px,6vw,76px); display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; }
@media (max-width:920px){ .site-footer__main{ grid-template-columns:1fr 1fr; gap:36px; } }
@media (max-width:520px){ .site-footer__main{ grid-template-columns:1fr; } }
.site-footer__logo img{ height:74px; width:auto; margin-bottom:20px; }
.site-footer p{ color:rgba(255,255,255,.78); font-size:.96rem; max-width:34ch; }
.footer-col h4{ font-family:var(--font-head); color:var(--gold-soft); font-size:.82rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:18px; font-weight:700; }
.footer-col a{ display:block; padding:7px 0; color:rgba(255,255,255,.84); font-size:.96rem; transition:color .2s, padding .2s; }
.footer-col a:hover{ color:#fff; padding-left:5px; }
.footer-col--contact a, .footer-col--contact .fc-line{ display:flex; align-items:center; gap:10px; }
.footer-col--contact a:hover{ padding-left:0; }
.footer-col--contact svg{ width:17px; height:17px; flex:none; color:var(--gold-soft); }
.social{ display:flex; gap:12px; margin-top:22px; }
.social a{ width:42px; height:42px; border-radius:50%; background:rgba(255,255,255,.14); display:grid; place-items:center; transition:.2s; }
.social a:hover{ background:#fff; color:var(--blue); }
.social svg{ width:19px; height:19px; }
.site-footer__bar{ border-top:1px solid rgba(255,255,255,.16); padding-block:22px; }
.site-footer__bar .container{ display:flex; flex-wrap:wrap; gap:12px; justify-content:space-between; align-items:center; }
.site-footer__bar, .site-footer__bar a{ color:rgba(255,255,255,.7); font-size:.86rem; }
.site-footer__bar a:hover{ color:#fff; }
.footer-credit b{ color:var(--gold-soft); }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@media (prefers-reduced-motion:no-preference){
  .reveal{ opacity:0; transform:translateY(26px); }
  .reveal.is-in{ opacity:1; transform:none; }
  .reveal.is-in.animating{ animation:revealUp .7s cubic-bezier(.16,1,.3,1) backwards; }
  .reveal.is-in.animating[data-delay="1"]{ animation-delay:.08s; }
  .reveal.is-in.animating[data-delay="2"]{ animation-delay:.16s; }
  .reveal.is-in.animating[data-delay="3"]{ animation-delay:.24s; }
  .reveal.is-in.animating[data-delay="4"]{ animation-delay:.32s; }
}
@keyframes revealUp{ from{ opacity:0; transform:translateY(26px); } to{ opacity:1; transform:none; } }

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-center{ text-align:center; }
.mx-auto{ margin-inline:auto; }
.mt-0{ margin-top:0; } .mt-2{ margin-top:8px; } .mt-3{ margin-top:16px; } .mt-4{ margin-top:24px; } .mt-5{ margin-top:32px; } .mt-6{ margin-top:48px; }
.mb-4{ margin-bottom:24px; }
.flex{ display:flex; } .items-center{ align-items:center; } .gap-3{ gap:16px; }
.maxw-720{ max-width:720px; } .maxw-640{ max-width:640px; }
.pill{ display:inline-flex; width: fit-content; align-items:center; gap:8px; padding:7px 16px; border-radius:999px; background:#fff; border:1px solid var(--line); font-family:var(--font-head); font-weight:600; font-size:.86rem; color:var(--blue); box-shadow:var(--shadow-sm); white-space:nowrap; }
.pill svg{ width:16px; height:16px; }
.divider{ height:1px; background:var(--line); border:none; margin:0; }
.cat-chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:30px}
.cat-chips a, .cat-chips button{font-family:var(--font-head);font-weight:600;font-size:.88rem;padding:9px 16px;border-radius:999px;border:1.5px solid var(--line-strong);background:#fff;color:var(--ink);transition:.2s}
.cat-chips a:hover,.cat-chips button:hover,.cat-chips a.is-active,.cat-chips button.is-active{border-color:var(--blue);color:var(--blue)}
iframe {
  max-width: 100%;
}