/*==================================================================
  SARVIN MEDICAL SOLUTIONS CC — custom stylesheet (no framework)
  "Reliable Medical & Laboratory Supplies."
  Palette: deep clinical teal + navy + warm amber accent
  Type: Poppins (display) + Inter (body)
==================================================================*/

/* ---------- 1. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture, video { max-width: 100%; display: block; }
img { background-color: var(--sage, #eef8f9); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }

/* ---------- 2. Tokens ---------- */
:root {
  --ink: #0b1f24;
  --paper: #ffffff;
  --ivory: #f7fbfb;
  --sage: #eef8f9;
  --sage-line: #d9edee;

  --teal-950: #0a2229;
  --teal-900: #0e2f39;
  --teal-800: #146b7c;
  --teal-700: #1c8a9e;
  --teal-600: #2597ac;
  --teal-100: #e3f4f5;

  /* accent — sampled from the real Sarvin logo/brand kit (mint-teal),
     not a borrowed "gold" from another project. Class names below still
     say "gold" in a couple of spots (kept for template compatibility)
     but every one of them now resolves to this teal/mint family. */
  --gold-900: #1f6b5e;
  --gold-800: #2f9484;
  --gold-600: #3fb3a2;
  --gold-500: #58c9b9;
  --gold-400: #7fdac9;
  --gold-200: #e2f7f2;

  --muted: #52686d;
  --line: rgba(11,31,36,0.12);
  --line-soft: rgba(11,31,36,0.07);

  --shadow-sm: 0 2px 10px rgba(10,34,41,0.08);
  --shadow-md: 0 14px 40px rgba(10,34,41,0.14);
  --shadow-lg: 0 30px 70px rgba(10,34,41,0.22);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --font-display: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;

  --gold-grad: linear-gradient(120deg, var(--teal-800) 0%, var(--gold-600) 55%, var(--teal-600) 100%);
  --green-grad: linear-gradient(160deg, var(--teal-950) 0%, var(--teal-800) 100%);

  --maxw: 1280px;
}

/* ---------- 3. Base ---------- */
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--teal-950);
}
h1 { font-size: clamp(2.3rem, 4.8vw, 3.9rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.55rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--ink); }
p.lead { font-size: 1.13rem; color: var(--muted); }
strong { font-weight: 700; }

.container-xl { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.container-md { max-width: 920px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
section.pad { padding: clamp(60px, 8vw, 110px) 0; }
section.pad-sm { padding: clamp(40px, 6vw, 68px) 0; }
.bg-ivory { background: var(--ivory); }
.bg-sage { background: var(--sage); }
.bg-green { background: var(--green-grad); color: #fff; }
.bg-green h1, .bg-green h2, .bg-green h3 { color: #fff; }
.bg-ink { background: var(--ink); color: #fff; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-800);
  background: var(--sage); border: 1px solid var(--sage-line);
  padding: 6px 14px; border-radius: 6px;
}
.eyebrow.on-dark { color: var(--gold-400); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }
.eyebrow.center { justify-content: center; }
.eyebrow::before { content:""; width: 7px; height: 7px; border-radius: 2px; background: var(--gold-600); display:inline-block; flex-shrink:0; }

.teal-text {
  background: linear-gradient(120deg, var(--teal-600), var(--gold-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.section-head { margin-bottom: clamp(26px, 4vw, 48px); }
.section-head.centered { text-align: center; }
.section-head p { max-width: 62ch; margin-top: 0.7em; color: var(--muted); }
.section-head.centered p { margin-left: auto; margin-right: auto; }

/* ---------- 4. Grid utilities ---------- */
.grid { display: grid; gap: clamp(20px, 2.6vw, 34px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
@media (max-width: 980px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 10px; font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.02em; border: 1px solid transparent; transition: all .25s ease;
  white-space: nowrap;
}
.btn-sm { padding: 11px 22px; font-size: 0.84rem; border-radius: 8px; }
.btn-primary { background: var(--teal-900); color: #fff; }
.btn-primary:hover { background: var(--teal-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold-grad); color: var(--teal-950); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(63,179,162,0.35); }
.btn-outline { background: transparent; border-color: currentColor; color: var(--teal-950); }
.btn-outline:hover { background: var(--teal-950); color: #fff; border-color: var(--teal-950); }
.btn-outline.on-dark { color: #fff; }
.btn-outline.on-dark:hover { background: #fff; color: var(--teal-950); }
.btn-ghost { background: transparent; color: var(--teal-900); text-decoration: underline; text-underline-offset: 4px; padding: 6px 0; }
.btn-block { width: 100%; }

/* ---------- 6. Header / Nav ---------- */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 16px 0; transition: all .3s ease;
  background: transparent;
}
#header.solid { background: rgba(255,255,255,0.94); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(10,34,41,0.08); padding: 10px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 44px; width: auto; display: block; transition: height .3s ease; }
#header.solid .brand-logo { height: 38px; }
.brand-word {
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.01em;
  color: #fff; line-height: 1.1;
}
#header.solid .brand-word { color: var(--teal-950); }
.brand-word-sub {
  display: block; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-400); margin-top: 3px;
}
#header.solid .brand-word-sub { color: var(--teal-700); }

.nav-main { display: flex; align-items: center; gap: 30px; }
.nav-main > li > a {
  font-weight: 600; font-size: 0.92rem; color: #fff; display: inline-flex; align-items: center; gap: 6px;
  position: relative; padding: 6px 0;
}
#header.solid .nav-main > li > a { color: var(--teal-950); }
.nav-main > li > a::after {
  content:""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold-500);
  transition: width .25s ease;
}
.nav-main > li > a:hover::after, .nav-main > li.active > a::after { width: 100%; }
.nav-main > li.active > a { color: var(--gold-400); }
#header.solid .nav-main > li.active > a { color: var(--gold-800); }
.caret { font-size: 0.7rem; }
.nav-cta-wrap { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.3rem; color: #fff; }
#header.solid .nav-toggle { color: var(--teal-950); }

@media (max-width: 1080px) {
  .nav-main { display: none; }
  .nav-toggle { display: inline-flex; }
}

.mobile-panel {
  position: fixed; top: 0; right: -100%; width: min(88vw, 380px); height: 100%;
  background: var(--teal-950); z-index: 400; transition: right .35s ease; overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
}
.mobile-panel.open { right: 0; }
.mobile-panel-head { display:flex; align-items:center; justify-content:space-between; padding: 22px 24px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.mobile-panel-body { padding: 18px 24px 40px; display: flex; flex-direction: column; gap: 4px; }
.m-link { display:flex; align-items:center; justify-content:space-between; padding: 15px 2px; color:#fff; font-weight:600; font-size:1.03rem; border-bottom:1px solid rgba(255,255,255,0.08); }
.m-sub { display:none; flex-direction:column; padding-left: 12px; }
.m-sub.open { display:flex; }
.m-sub a { padding: 10px 2px; color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.mobile-panel .btn-gold, .mobile-panel .btn-primary { margin-top: 18px; }
.m-backdrop { position: fixed; inset:0; background: rgba(3,15,18,0.5); z-index: 390; opacity:0; pointer-events:none; transition: opacity .3s; }
.m-backdrop.open { opacity:1; pointer-events:auto; }

/* mega dropdown */
.has-mega { position: relative; }
.mega {
  position: absolute; top: calc(100% + 22px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 22px; opacity: 0; visibility: hidden; transition: all .25s ease; z-index: 50;
}
.has-mega:hover .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-products { display: grid; grid-template-columns: repeat(2, 240px); gap: 6px; }
.mega a { display:flex; gap:10px; align-items:flex-start; padding: 10px 12px; border-radius: 10px; color: var(--ink); }
.mega a:hover { background: var(--sage); }
.mega a i { color: var(--teal-700); margin-top: 3px; }
.mega a strong { display:block; font-size: 0.87rem; }
.mega a span.d { font-size: 0.76rem; color: var(--muted); }

/* WhatsApp buttons */
.btn-wa-header {
  width: 42px; height: 42px; border-radius: 50%; display:flex; align-items:center; justify-content:center;
  background: #25D366; color: #fff; font-size: 1.1rem; flex-shrink:0;
}
.btn-wa-header:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(37,211,102,0.4); }
.wa-float {
  position: fixed; bottom: 26px; left: 26px; 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 12px 30px rgba(37,211,102,0.45); z-index: 150; animation: waPulse 2.6s infinite;
}
@keyframes waPulse { 0%{box-shadow:0 12px 30px rgba(37,211,102,0.45),0 0 0 0 rgba(37,211,102,0.5);} 70%{box-shadow:0 12px 30px rgba(37,211,102,0.45),0 0 0 14px rgba(37,211,102,0);} 100%{box-shadow:0 12px 30px rgba(37,211,102,0.45),0 0 0 0 rgba(37,211,102,0);} }
.wa-chip {
  display:inline-flex; align-items:center; gap:7px; margin-top: 10px; padding: 8px 14px; border-radius: 8px;
  background: rgba(37,211,102,0.12); color: #128c4a; font-weight:700; font-size: 0.8rem;
}
.wa-chip:hover { background: #25D366; color:#fff; }

/* ---------- 7. Cine hero (video-style crossfade hero) ---------- */
.cine {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  overflow: hidden; color: #fff;
}
.cine.hero-property { min-height: 56vh; }
.cine-media, .cine > .kb-frame:first-child { position: absolute; inset: 0; z-index: 0; }
.kb-frame { position: absolute; inset: 0; width:100%; height:100%; background-size: cover; background-position: center; opacity: 0; animation: kbfade 24s infinite; background-color: var(--teal-900); }
.kb-frame:nth-child(1) { animation-delay: 0s; }
.kb-frame:nth-child(2) { animation-delay: 6s; }
.kb-frame:nth-child(3) { animation-delay: 12s; }
.kb-frame:nth-child(4) { animation-delay: 18s; }
@keyframes kbfade {
  0% { opacity: 0; transform: scale(1.0); }
  4% { opacity: 1; }
  22% { opacity: 1; transform: scale(1.09); }
  26% { opacity: 0; transform: scale(1.11); }
  100% { opacity: 0; }
}
.cine-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(8,25,29,0.9) 0%, rgba(8,25,29,0.5) 42%, rgba(8,25,29,0.38) 70%, rgba(8,25,29,0.58) 100%);
}
.cine-grain { position: absolute; inset:0; z-index:2; opacity:0.05; pointer-events:none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"); }
.cine-content { position: relative; z-index: 3; padding: 90px 0 76px; width: 100%; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px; padding: 8px 16px; border-radius: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.04em; backdrop-filter: blur(6px); margin-bottom: 20px;
}
.hero-badge i { color: var(--gold-400); }
.hero-sub { font-size: clamp(1rem, 1.6vw, 1.2rem); color: rgba(255,255,255,0.86); max-width: 62ch; margin: 20px 0 32px; }
.hero-cta-row { display:flex; gap:16px; flex-wrap:wrap; }
.hero-pills { display:flex; flex-wrap:wrap; gap:12px; margin-top: 26px; }
.hero-pills span {
  display:inline-flex; align-items:center; gap:8px; padding: 9px 16px; border-radius:8px;
  background: rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.22); font-size:0.82rem; font-weight:600;
}
.hero-pills i { color: var(--gold-400); }

.stats-strip { display:flex; }
.row-stats { display:flex; width:100%; }
.stat { flex:1; padding: 26px 20px; text-align:center; border-right: 1px solid var(--line-soft); }
.stat:last-child { border-right:none; }
.stat .num { display:block; font-family: var(--font-display); font-weight:700; font-size: clamp(1.5rem,2.4vw,2.1rem); color: var(--teal-950); }
.stat .lbl { font-size: 0.76rem; color: var(--muted); letter-spacing:0.03em; margin-top:4px; display:block; }
.bg-green .stat .num, .bg-ink .stat .num { color: #fff; }
.bg-green .stat .lbl, .bg-ink .stat .lbl { color: rgba(255,255,255,0.7); }
.bg-green .stat, .bg-ink .stat { border-right-color: rgba(255,255,255,0.14); }

/* ---------- 8. Cards ---------- */
.card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft);
  transition: all .3s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: transparent; }
.card-media { position: relative; height: 220px; background-size: cover; background-position: center; background-color: var(--sage); }
.card-media .tag {
  position:absolute; top:16px; left:16px; background: rgba(255,255,255,0.94); color: var(--teal-900);
  width:38px; height:38px; border-radius: 50%; display:flex; align-items:center; justify-content:center; font-size:0.95rem;
}
.card-body { padding: 26px; }
.card-body h4 { font-size: 1.14rem; margin-bottom: 8px; }
.card-body p { color: var(--muted); font-size: 0.92rem; }

.card-luxe { background:#fff; border-radius: var(--radius-lg); padding: 30px; border:1px solid var(--line-soft); }
.icon-badge {
  width:52px; height:52px; border-radius: 14px; background: var(--sage); color: var(--teal-800);
  display:flex; align-items:center; justify-content:center; font-size:1.3rem; margin-bottom:18px;
}
.card-luxe.dark { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }
.card-luxe.dark .icon-badge { background: rgba(255,255,255,0.1); color: var(--gold-400); }
.card-luxe.dark h4 { color:#fff; }
.card-luxe.dark p { color: rgba(255,255,255,0.75); }
.card-luxe h3 { display:flex; align-items:center; gap:10px; font-size: 1.1rem; }

/* differentiator / process cards */
.proc-card { background:#fff; border-radius: var(--radius-lg); padding: 28px; border:1px solid var(--line-soft); text-align:left; }
.proc-icon {
  width:52px; height:52px; border-radius: 14px; background: var(--sage); color: var(--teal-800);
  display:flex; align-items:center; justify-content:center; font-size:1.3rem; margin-bottom:16px;
}
.proc-num { font-family: var(--font-display); font-weight:700; font-size: 1.7rem; color: var(--gold-600); display:block; margin-bottom: 10px; }
.proc-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.proc-card p { color: var(--muted); font-size: 0.9rem; }

/* contact person cards */
.contact-card-mini { background:#fff; border-radius: var(--radius-lg); padding: 26px; border:1px solid var(--line-soft); text-align:center; }
.cc-avatar {
  width:56px; height:56px; border-radius:50%; background: var(--teal-100); color: var(--teal-800);
  display:flex; align-items:center; justify-content:center; font-size:1.3rem; margin: 0 auto 14px;
}
.contact-card-mini h4 { font-size: 1.02rem; margin-bottom:2px; }
.contact-card-mini .small { display:block; margin-bottom:14px; }
.contact-card-mini a { display:flex; align-items:center; justify-content:center; gap:8px; font-size:0.86rem; padding:6px 0; color: var(--muted); }
.contact-card-mini a:hover { color: var(--teal-800); }
.contact-card-mini a i { color: var(--teal-700); width:14px; }

/* procurement CTA band (in-page, light) */
.procurement-cta {
  display:flex; align-items:center; justify-content:space-between; gap: 30px; flex-wrap:wrap;
  background: var(--sage); border-radius: var(--radius-lg); padding: clamp(28px,4vw,44px); border:1px solid var(--sage-line);
}
.procurement-cta .cta-band-actions { display:flex; gap:14px; flex-wrap:wrap; }
@media (max-width: 700px) { .procurement-cta { flex-direction:column; align-items:flex-start; } }

/* ---------- 9. Quote / stat blocks ---------- */
.quote-block { text-align:center; max-width: 820px; margin: 0 auto; }
.quote-block q { font-family: var(--font-display); font-size: clamp(1.4rem, 2.8vw, 2.1rem); font-style: normal; font-weight: 600; color: var(--teal-950); line-height:1.35; quotes: none; }
.quote-block q::before, .quote-block q::after { content: none; }
.bg-green .quote-block q, .bg-ink .quote-block q { color: #fff; }

/* ---------- 10. Mini timeline ---------- */
.mini-timeline { position:relative; padding-left: 34px; margin-top: 26px; }
.mini-timeline::before { content:""; position:absolute; left:5px; top:6px; bottom:6px; width:2px; background: var(--sage-line); }
.mini-timeline-item { position:relative; display:flex; gap:16px; padding-bottom: 26px; }
.mini-timeline-item:last-child { padding-bottom:0; }
.mini-timeline-dot { position:absolute; left:-34px; top:2px; width:12px; height:12px; border-radius:50%; background: var(--gold-grad); box-shadow: 0 0 0 5px var(--ivory); }
.mini-timeline-item strong { display:block; color: var(--teal-800); font-family: var(--font-display); font-size:0.95rem; }
.mini-timeline-item p { color: var(--muted); font-size:0.92rem; margin-top:2px; }

/* ---------- 11. Forms ---------- */
.form-group { margin-bottom: 20px; }
.form-group label { display:block; font-size:0.8rem; font-weight:700; letter-spacing:0.03em; margin-bottom:8px; color: var(--teal-900); }
.form-control {
  width:100%; padding: 14px 16px; border-radius: var(--radius-sm); border:1.5px solid var(--line);
  background: #fff; font-size: 0.95rem; transition: border-color .2s;
}
.form-control:focus { outline:none; border-color: var(--teal-700); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-card { background:#fff; border-radius: var(--radius-lg); padding: clamp(28px,4vw,46px); box-shadow: var(--shadow-md); }
.field-error { display:none; color:#a3341f; font-size:0.82rem; margin-top:-10px; margin-bottom:16px; }
.form-success { display:none; text-align:center; padding: 40px 20px; }
.form-success .icon-badge { margin: 0 auto 18px; background: var(--sage); color: var(--teal-800); width:64px;height:64px;font-size:1.6rem; }

/* ---------- 12. Footer ---------- */
.cta-band { position:relative; overflow:hidden; color:#fff; padding: clamp(52px, 7vw, 84px) 0; }
.cta-band-inner { position:relative; z-index:3; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.cta-band-inner h2 { color:#fff; margin: 0.3em 0 0.2em; max-width: 18ch; }
.cta-band-inner p { color: rgba(255,255,255,0.8); max-width: 46ch; }
.cta-band-actions { display:flex; gap:14px; flex-wrap:wrap; }
@media (max-width: 700px) { .cta-band-inner { flex-direction:column; align-items:flex-start; } }

#footer { background: var(--teal-950); color: rgba(255,255,255,0.82); padding: 64px 0 28px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand p { color: rgba(255,255,255,0.62); font-size:0.88rem; margin-top:14px; max-width:34ch; }
.footer-brand p.small { color: rgba(255,255,255,0.5); font-size: 0.78rem; margin-top: 10px; }
#footer h5 { color:#fff; font-family: var(--font-display); font-size:0.9rem; margin-bottom:18px; letter-spacing:0.02em; }
#footer ul li { margin-bottom: 11px; }
#footer ul li a { color: rgba(255,255,255,0.68); font-size:0.88rem; transition: color .2s; display:flex; align-items:center; gap:8px; }
#footer ul li a:hover { color: var(--gold-400); }
.footer-social { display:flex; gap:12px; margin-top:20px; }
.footer-social a { width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,0.25); display:flex; align-items:center; justify-content:center; }
.footer-social a:hover { background: var(--gold-grad); color: var(--teal-950); border-color: transparent; }
.footer-bottom { display:flex; justify-content:space-between; padding-top: 24px; font-size:0.8rem; color: rgba(255,255,255,0.5); flex-wrap:wrap; gap:10px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.scroll-top {
  position: fixed; bottom: 26px; right: 26px; width: 48px; height:48px; border-radius:50%;
  background: var(--teal-950); color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-md); opacity:0; visibility:hidden; transform: translateY(10px); transition: all .3s; z-index:120;
}
.scroll-top.show { opacity:1; visibility:visible; transform:none; }

/* ---------- 13. Reveal animation ---------- */
.reveal { opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity:1; transform:none; }
.stagger .reveal:nth-child(1) { transition-delay: 0s; }
.stagger .reveal:nth-child(2) { transition-delay: .08s; }
.stagger .reveal:nth-child(3) { transition-delay: .16s; }
.stagger .reveal:nth-child(4) { transition-delay: .24s; }
.stagger .reveal:nth-child(5) { transition-delay: .32s; }
.stagger .reveal:nth-child(6) { transition-delay: .4s; }

/* breadcrumb */
.crumb { font-size:0.82rem; color: rgba(255,255,255,0.75); margin-bottom:18px; }
.crumb a { text-decoration: underline; text-underline-offset:3px; }

/* included / excluded lists */
.inc-list li { display:flex; gap:10px; align-items:flex-start; margin-bottom:10px; font-size:0.94rem; }
.inc-list i { color: var(--teal-700); margin-top:3px; }
.inc-list i.fa-circle-exclamation, .inc-list i.fa-triangle-exclamation { color: #b5651d; }

/* utility */
.text-center { text-align:center; }
.small { font-size:0.85rem; color:var(--muted); }
hr.rule { border:none; border-top:1px solid var(--line); margin: 40px 0; }

/* route / view */
#view { min-height: 60vh; }
