/* =========================================================
   MBOBOYU MEDICAL POLYCLINIC — Design System
   Palette: deep pine teal + warm amber, sand background
   Type: Fraunces (display) / Work Sans (body & UI)
   Signature motif: bilingual Swahili/English eyebrows +
   a "care pathway" step-line used across the site.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Work+Sans:wght@400;500;600;700;800&display=swap');

:root{
  /* colors */
  --ink:        #17211E;
  --ink-soft:   #4B5A56;
  --ink-faint:  #7C8B86;
  --bg:         #F7F4EC;
  --bg-alt:     #EFE9DA;
  --surface:    #FFFFFF;
  --line:       #E1D9C6;

  --pine:       #0B4B45;
  --pine-dark:  #082F2B;
  --pine-tint:  #E7F0EC;
  --pine-tint-2:#D8E9E2;

  --amber:      #DDA22E;
  --amber-dark: #B87F1C;
  --amber-tint: #FBF0DA;

  --rust:       #A6412B;
  --rust-tint:  #F7E6E1;

  --ok:         #1E7A52;
  --ok-tint:    #E5F5EC;

  /* type */
  --display: 'Fraunces', serif;
  --body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* layout */
  --maxw: 1220px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(11,40,36,.06);
  --shadow: 0 14px 40px rgba(11,40,36,.10);
  --shadow-lg: 0 24px 60px rgba(11,40,36,.16);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--body);
  color:var(--ink);
  background:var(--bg);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--display); color:var(--pine-dark); margin:0; line-height:1.15; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; }

:focus-visible{ outline:3px solid var(--amber); outline-offset:2px; }

.container{
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
}

/* =========================================================
   EYEBROW / LABEL (signature bilingual motif)
   ========================================================= */
.eyebrow{
  display:inline-flex;
  align-items:baseline;
  gap:8px;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:var(--pine);
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:22px;
  height:2px;
  background:var(--amber);
  align-self:center;
}
.eyebrow .sw{
  font-family:var(--display);
  font-style:italic;
  font-weight:500;
  text-transform:none;
  letter-spacing:0;
  color:var(--amber-dark);
  font-size:.95rem;
}

.section{ padding:96px 0; }
.section.tight{ padding:64px 0; }
.section.alt{ background:var(--surface); }
.section.tint{ background:var(--pine-tint); }
.section.dark{ background:var(--pine-dark); color:#EAF3F0; }
.section.dark h2, .section.dark h3{ color:#fff; }
.section.dark .eyebrow{ color:var(--amber); }
.section.dark .eyebrow::before{ background:#fff; }

.section-head{
  max-width:660px;
  margin-bottom:52px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(1.8rem, 3vw, 2.5rem); font-weight:600; }
.section-head p{ margin-top:14px; color:var(--ink-soft); font-size:1.05rem; }
.section.dark .section-head p{ color:#C7DAD5; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 28px;
  border-radius:100px;
  font-weight:600;
  font-size:.98rem;
  border:1px solid transparent;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--amber); color:var(--pine-dark); box-shadow:0 10px 24px rgba(221,162,46,.35); }
.btn-primary:hover{ background:var(--amber-dark); box-shadow:0 14px 30px rgba(221,162,46,.42); }
.btn-outline{ background:transparent; border-color:rgba(255,255,255,.5); color:inherit; }
.btn-outline:hover{ background:rgba(255,255,255,.12); }
.btn-line{ background:transparent; border-color:var(--pine); color:var(--pine); }
.btn-line:hover{ background:var(--pine); color:#fff; }
.btn-ghost{ background:var(--pine-tint); color:var(--pine-dark); }
.btn-ghost:hover{ background:var(--pine-tint-2); }
.btn-sm{ padding:10px 18px; font-size:.85rem; }
.btn-block{ width:100%; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.top-bar{
  background:var(--pine-dark);
  color:#DCEAE6;
  font-size:.82rem;
}
.top-bar .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:9px;
  padding-bottom:9px;
  flex-wrap:wrap;
  gap:8px;
}
.top-bar a{ color:#DCEAE6; }
.top-bar .top-emergency{
  display:flex; align-items:center; gap:8px;
  color:#F3C77A; font-weight:700;
}
.top-bar .top-info{ display:flex; gap:22px; flex-wrap:wrap; }
.top-bar .top-info span{ display:inline-flex; gap:7px; align-items:center; opacity:.9; }

.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(247,244,236,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 24px;
  max-width:var(--maxw);
  margin:0 auto;
  gap:20px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ width:52px; height:52px; border-radius:50%; object-fit:cover; border:2px solid var(--pine-tint-2); }
.brand-text h1{ font-size:1.05rem; font-weight:700; letter-spacing:.01em; }
.brand-text p{ font-size:.72rem; color:var(--amber-dark); font-family:var(--display); font-style:italic; }

.main-nav{ display:flex; align-items:center; gap:2px; }
.main-nav a{
  padding:10px 16px;
  font-size:.92rem;
  font-weight:600;
  color:var(--ink-soft);
  border-radius:100px;
  transition:background .2s ease, color .2s ease;
}
.main-nav a:hover{ background:var(--pine-tint); color:var(--pine-dark); }
.main-nav a.active{ background:var(--pine); color:#fff; }

.nav-actions{ display:flex; align-items:center; gap:12px; }

/* language switcher */
.lang-switch{
  display:flex; align-items:center;
  background:var(--pine-tint);
  border-radius:100px;
  padding:3px;
  gap:2px;
}
.lang-btn{
  border:none; background:transparent;
  padding:7px 13px;
  border-radius:100px;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.03em;
  color:var(--pine);
  transition:background .2s ease, color .2s ease;
}
.lang-btn.active{ background:var(--pine); color:#fff; }
.lang-btn:not(.active):hover{ background:var(--pine-tint-2); }

.menu-toggle{
  display:none;
  background:var(--pine-tint);
  border:none;
  width:44px; height:44px;
  border-radius:12px;
  font-size:1.1rem;
  color:var(--pine-dark);
  align-items:center; justify-content:center;
}

/* =========================================================
   PAGE HERO (interior pages)
   ========================================================= */
.page-hero{
  background:linear-gradient(160deg, var(--pine-dark), var(--pine) 70%);
  color:#fff;
  padding:70px 0 84px;
  position:relative;
  overflow:hidden;
}
.page-hero::after{
  content:"";
  position:absolute; right:-120px; top:-120px;
  width:360px; height:360px; border-radius:50%;
  background:radial-gradient(circle, rgba(221,162,46,.30), transparent 70%);
}
.page-hero .eyebrow{ color:var(--amber); }
.page-hero .eyebrow::before{ background:#fff; }
.page-hero h1{ color:#fff; font-size:clamp(2.1rem,4vw,3rem); font-weight:600; max-width:760px; }
.page-hero p{ color:#CFE3DD; margin-top:14px; max-width:600px; font-size:1.05rem; }
.crumb{ display:flex; gap:8px; font-size:.85rem; color:#BFDBD3; margin-bottom:18px; }
.crumb a{ color:#fff; font-weight:600; }

/* =========================================================
   HOME HERO
   ========================================================= */
.hero{
  position:relative;
  background:var(--bg);
  overflow:hidden;
  padding:64px 0 0;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:50px;
  align-items:center;
}
.hero-copy .eyebrow{ }
.hero-copy h1{
  font-size:clamp(2.3rem, 4.4vw, 3.4rem);
  font-weight:600;
  letter-spacing:-.01em;
}
.hero-copy h1 em{ font-style:italic; color:var(--amber-dark); }
.hero-copy p{ margin-top:20px; font-size:1.12rem; color:var(--ink-soft); max-width:520px; }
.hero-actions{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }

.hero-stats{
  display:flex; gap:28px; margin-top:44px; flex-wrap:wrap;
}
.hero-stats div strong{ display:block; font-family:var(--display); font-size:1.5rem; color:var(--pine-dark); }
.hero-stats div span{ font-size:.82rem; color:var(--ink-faint); }

.hero-visual{ position:relative; }
.hero-visual .frame{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  aspect-ratio:4/5;
}
.hero-visual .frame img{ width:100%; height:100%; object-fit:cover; }
.floating-card{
  position:absolute;
  background:var(--surface);
  border-radius:var(--radius);
  box-shadow:var(--shadow-lg);
  padding:18px 20px;
  display:flex;
  align-items:center;
  gap:14px;
  max-width:230px;
}
.floating-card.slot{ left:-38px; bottom:36px; }
.floating-card.badge{ right:-24px; top:28px; }
.floating-card .ic{
  width:44px; height:44px; border-radius:12px;
  background:var(--pine-tint); color:var(--pine);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; flex-shrink:0;
}
.floating-card strong{ display:block; font-size:.95rem; color:var(--pine-dark); }
.floating-card span{ font-size:.78rem; color:var(--ink-faint); }

/* =========================================================
   EMERGENCY BANNER
   ========================================================= */
.emergency-banner{
  background:var(--rust);
  color:#fff;
}
.emergency-banner .container{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 24px; gap:16px; flex-wrap:wrap;
}
.emergency-banner .msg{ display:flex; align-items:center; gap:12px; font-weight:600; }
.emergency-banner .msg .pulse{
  width:11px; height:11px; border-radius:50%; background:#fff;
  box-shadow:0 0 0 0 rgba(255,255,255,.7);
  animation:pulse 1.8s infinite;
  flex-shrink:0;
}
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(255,255,255,.55); }
  70%{ box-shadow:0 0 0 10px rgba(255,255,255,0); }
  100%{ box-shadow:0 0 0 0 rgba(255,255,255,0); }
}
.emergency-banner a.call{
  background:#fff; color:var(--rust); font-weight:700;
  padding:9px 18px; border-radius:100px; font-size:.9rem;
  display:inline-flex; align-items:center; gap:8px;
}

/* =========================================================
   PATHWAY (signature step strip)
   ========================================================= */
.pathway{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  position:relative;
  margin-top:20px;
}
.pathway::before{
  content:"";
  position:absolute; top:26px; left:6%; right:6%; height:2px;
  background:repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 18px);
}
.pathway-step{ position:relative; padding:0 18px; text-align:left; }
.pathway-step .num{
  width:54px; height:54px; border-radius:50%;
  background:var(--surface); border:2px solid var(--pine);
  color:var(--pine); font-family:var(--display); font-weight:600; font-size:1.2rem;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px; position:relative; z-index:1;
}
.pathway-step h4{ font-size:1.05rem; margin-bottom:8px; }
.pathway-step p{ color:var(--ink-soft); font-size:.92rem; }

/* =========================================================
   CARDS — generic
   ========================================================= */
.card{
  background:var(--surface);
  border-radius:var(--radius);
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  transition:transform .25s ease, box-shadow .25s ease;
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }

/* why choose us */
.why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.why-card{ padding:32px 26px; }
.why-card .ic{
  width:52px; height:52px; border-radius:14px;
  background:var(--pine-tint); color:var(--pine);
  display:flex; align-items:center; justify-content:center; font-size:1.3rem;
  margin-bottom:20px;
}
.why-card h3{ font-size:1.1rem; margin-bottom:10px; }
.why-card p{ color:var(--ink-soft); font-size:.94rem; }

/* stats */
.stats-strip{
  display:grid; grid-template-columns:repeat(4,1fr);
  background:var(--pine-dark); color:#fff;
  border-radius:var(--radius-lg);
  overflow:hidden;
}
.stat{ padding:38px 26px; text-align:center; border-right:1px solid rgba(255,255,255,.12); }
.stat:last-child{ border-right:none; }
.stat strong{ display:block; font-family:var(--display); font-size:2.1rem; color:var(--amber); }
.stat span{ font-size:.85rem; color:#C7DAD5; }

/* services / departments */
.services-grid, .dept-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.service-card{ padding:0; overflow:hidden; }
.service-card .thumb{ aspect-ratio:4/3; overflow:hidden; }
.service-card .thumb img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.service-card:hover .thumb img{ transform:scale(1.06); }
.service-card .body{ padding:22px; }
.service-card h3{ font-size:1.08rem; margin-bottom:8px; }
.service-card p{ color:var(--ink-soft); font-size:.9rem; margin-bottom:14px; }
.service-card .tag{
  display:inline-block; font-size:.72rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.06em; color:var(--pine); background:var(--pine-tint);
  padding:4px 10px; border-radius:100px; margin-bottom:12px;
}
.service-link{ font-weight:700; font-size:.88rem; color:var(--pine); display:inline-flex; gap:6px; align-items:center; }
.service-link:hover{ color:var(--amber-dark); }

/* doctors */
.doctors-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.doctor-card{ overflow:hidden; text-align:center; }
.doctor-card .photo{ aspect-ratio:1/1; overflow:hidden; background:var(--pine-tint); }
.doctor-card .photo img{ width:100%; height:100%; object-fit:cover; }
.doctor-card .body{ padding:22px 18px 26px; }
.doctor-card h3{ font-size:1.08rem; }
.doctor-card .role{ color:var(--amber-dark); font-weight:700; font-size:.86rem; margin:6px 0 10px; }
.doctor-card .meta{ font-size:.82rem; color:var(--ink-faint); margin-bottom:16px; display:flex; flex-direction:column; gap:4px; }
.doctor-card .meta span{ display:flex; align-items:center; justify-content:center; gap:6px; }
.doctor-actions{ display:flex; gap:8px; }
.doctor-actions .btn{ flex:1; padding:10px 12px; font-size:.82rem; }

/* testimonials */
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.testi-card{ padding:28px; }
.testi-card .stars{ color:var(--amber); font-size:.9rem; margin-bottom:14px; letter-spacing:2px; }
.testi-card p.quote{ color:var(--ink); font-size:.98rem; font-style:italic; margin-bottom:20px; }
.testi-who{ display:flex; align-items:center; gap:12px; }
.testi-who .av{
  width:42px; height:42px; border-radius:50%; background:var(--pine-tint);
  color:var(--pine); display:flex; align-items:center; justify-content:center;
  font-family:var(--display); font-weight:600;
}
.testi-who strong{ display:block; font-size:.92rem; }
.testi-who span{ font-size:.78rem; color:var(--ink-faint); }

/* articles / news */
.article-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.article-card{ overflow:hidden; }
.article-card .thumb{ aspect-ratio:16/10; overflow:hidden; }
.article-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.article-card .body{ padding:22px; }
.article-card .date{ font-size:.78rem; color:var(--ink-faint); font-weight:600; text-transform:uppercase; letter-spacing:.04em; }
.article-card h3{ font-size:1.08rem; margin:10px 0; }
.article-card p{ color:var(--ink-soft); font-size:.9rem; }

/* insurance / partner logos */
.partners-row{
  display:flex; align-items:center; justify-content:center; gap:20px; flex-wrap:wrap;
}
.partner-badge{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:18px 30px; display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-sm);
}
.partner-badge img{ height:34px; width:auto; object-fit:contain; }

/* CTA band */
.cta-band{
  background:linear-gradient(135deg, var(--pine-dark), var(--pine));
  border-radius:var(--radius-lg);
  color:#fff;
  padding:56px;
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.cta-band::after{
  content:""; position:absolute; left:-60px; bottom:-90px; width:260px; height:260px;
  border-radius:50%; background:radial-gradient(circle, rgba(221,162,46,.35), transparent 70%);
}
.cta-band h2{ color:#fff; font-size:clamp(1.5rem,2.6vw,2.1rem); max-width:480px; }
.cta-band p{ color:#CFE3DD; margin-top:10px; max-width:460px; }
.cta-actions{ display:flex; gap:14px; flex-wrap:wrap; position:relative; z-index:1; }

/* =========================================================
   FORMS
   ========================================================= */
.form-card{
  background:var(--surface); border-radius:var(--radius-lg);
  border:1px solid var(--line); box-shadow:var(--shadow); padding:40px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:.86rem; font-weight:700; color:var(--pine-dark); margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 16px; border-radius:12px;
  border:1.5px solid var(--line); background:var(--bg);
  font-size:.95rem; color:var(--ink); transition:border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--pine); box-shadow:0 0 0 4px var(--pine-tint);
}
.field textarea{ min-height:120px; resize:vertical; }
.notice{ padding:14px 18px; border-radius:12px; font-size:.92rem; font-weight:600; margin-bottom:18px; display:none; }
.notice.success{ background:var(--ok-tint); color:var(--ok); }
.notice.error{ background:var(--rust-tint); color:var(--rust); }
.notice.loading{ background:var(--amber-tint); color:var(--amber-dark); }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-list{ max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.faq-q{
  width:100%; text-align:left; background:none; border:none; padding:20px 24px;
  display:flex; justify-content:space-between; align-items:center; gap:14px;
  font-weight:700; color:var(--pine-dark); font-size:1rem;
}
.faq-q .plus{ font-size:1.3rem; color:var(--amber-dark); transition:transform .25s ease; flex-shrink:0; }
.faq-item.open .faq-q .plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-a p{ padding:0 24px 20px; color:var(--ink-soft); font-size:.94rem; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-filters{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:32px; }
.gfilter{
  padding:9px 18px; border-radius:100px; border:1.5px solid var(--line);
  background:var(--surface); font-weight:600; font-size:.86rem; color:var(--ink-soft);
}
.gfilter.active{ background:var(--pine); border-color:var(--pine); color:#fff; }
.gallery-masonry{
  columns:4; column-gap:16px;
}
.gallery-masonry figure{
  margin:0 0 16px; break-inside:avoid; border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-sm); position:relative;
}
.gallery-masonry img{ width:100%; display:block; transition:transform .4s ease; }
.gallery-masonry figure:hover img{ transform:scale(1.05); }
.gallery-masonry figcaption{
  position:absolute; left:0; right:0; bottom:0; padding:14px;
  background:linear-gradient(0deg, rgba(8,47,43,.85), transparent);
  color:#fff; font-size:.82rem; font-weight:600; opacity:0; transition:opacity .25s ease;
}
.gallery-masonry figure:hover figcaption{ opacity:1; }

/* =========================================================
   TEAM / VALUES (about page)
   ========================================================= */
.values-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.value-card{ padding:26px; text-align:left; }
.value-card .num{ font-family:var(--display); font-size:1.6rem; color:var(--amber-dark); margin-bottom:10px; }

.split{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.split img{ border-radius:var(--radius-lg); box-shadow:var(--shadow); }
.split.reverse{ direction:rtl; }
.split.reverse > *{ direction:ltr; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
.contact-list{ display:flex; flex-direction:column; gap:18px; margin-top:26px; }
.contact-row{ display:flex; gap:16px; align-items:flex-start; }
.contact-row .ic{
  width:46px; height:46px; border-radius:12px; background:var(--pine-tint); color:var(--pine);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-row h4{ font-size:.95rem; margin-bottom:3px; }
.contact-row p, .contact-row a{ font-size:.9rem; color:var(--ink-soft); }
.map-frame{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--line); }
.map-frame iframe{ width:100%; height:340px; border:0; display:block; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--pine-dark); color:#C7DAD5; padding-top:70px; }
.footer-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:40px;
  padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,.12);
}
.footer-brand{ display:flex; gap:12px; margin-bottom:16px; }
.footer-brand img{ width:46px; height:46px; border-radius:50%; }
.footer-brand h3{ color:#fff; font-size:1.05rem; }
.footer-brand span{ font-family:var(--display); font-style:italic; color:var(--amber); font-size:.82rem; }
.footer-col h4{ color:#fff; font-size:.92rem; text-transform:uppercase; letter-spacing:.05em; margin-bottom:18px; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:.9rem; opacity:.85; }
.footer-col a:hover{ opacity:1; color:var(--amber); }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
}
.footer-social a:hover{ background:var(--amber); color:var(--pine-dark); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  padding:22px 0; font-size:.82rem; opacity:.75; flex-wrap:wrap;
}

/* whatsapp float */
.wa-float{
  position:fixed; right:22px; bottom:22px; z-index:70;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; box-shadow:0 10px 26px rgba(37,211,102,.45);
  transition:transform .2s ease;
}
.wa-float:hover{ transform:scale(1.08); }

/* =========================================================
   UTILITIES
   ========================================================= */
.mt-0{ margin-top:0; } .mt-2{ margin-top:32px; }
.text-center{ text-align:center; }
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.badge-pill{
  display:inline-block; padding:5px 14px; border-radius:100px; font-size:.76rem;
  font-weight:700; letter-spacing:.03em; background:var(--pine-tint); color:var(--pine);
}

/* reveal-on-scroll */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
.thumbb{
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
}

.thumbb iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
