@font-face {
  font-family: "Marcellus-Regular";
  src: url("../fonts/Marcellus-Regular.woff2") format("woff2"),
    url("../fonts/Marcellus-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Medium";
  src: url("../fonts/monserat/Montserrat-Medium.woff2") format("woff2"),
    url("../fonts/monserat/Montserrat-Medium.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("../fonts/monserat/Montserrat-SemiBold.woff2") format("woff2"),
    url("../fonts/monserat/Montserrat-SemiBold.ttf") format("truetype");
  font-display: swap;
}
:root {
  --t: #e8673a;
  --t-deep: #7d4126;
  
  --t-tint: #f5e9e1;
  --t-glow: #d9af98;
  --t-wash: #fbf6f2;
  --amber: #e0921c;
  --amber-deep: #9c6109;
  --amber-tint: #fcefd8;
  --plum: #9c5a52;
  --plum-deep: #6f3b36;
  --plum-tint: #f3e7e4;
  --sage: #e4ebe2;
  --sage-deep: #4f7355;
  --sage-ink: #33513a;
  --clay: #f6e4dc;
  --clay-deep: #b05c3e;
  --clay-ink: #7a3a22;
  --sky: #e5eaee;
  --sky-deep: #4a6b85;
  --sky-ink: #2e4759;
  --lemon: #f5eedc;
  --cream: #fcf9f6;
  --paper: #ffffff;
  --paper-warm: #f8f3ee;
  --ink: #241f1b;
  --ink-2: #3d352f;
  --ink-mid: #6b605a;
  --ink-soft: #7a6f68;
  --ink-faint: #bfb5ae;
  --rule: #ede6df;
  --rule-strong: #dcd2c9;
  --ok: #3f7a55;
  --warn: #a8761c;
  --danger: #b04a38;

  --r: 10px;
  --r-lg: 14px;
  --r-xl: 18px;
  --r-2xl: 24px;
  --pill: 999px;
  --sh-1: 0 1px 2px rgba(36, 31, 27, 0.05),
    0 2px 6px -2px rgba(36, 31, 27, 0.06);
  --sh-2: 0 1px 3px rgba(36, 31, 27, 0.06),
    0 6px 16px -6px rgba(36, 31, 27, 0.11);
  --sh-3: 0 2px 6px rgba(36, 31, 27, 0.07),
    0 14px 34px -12px rgba(36, 31, 27, 0.15);
  --ease: 400ms ease-in-out;
  --fh: "Merriweather", serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 74px;
}
body {

  color: var(--ink);
  background: var(--cream);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4 {
    font-family: var(--fh) !important;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.018em;
}
h1 {
  font-size: clamp(32px, 5vw, 56px);
}
h2 {
  font-size: clamp(25px, 3.4vw, 41px);
}
h3 {
  font-size: clamp(19px, 2.1vw, 24px);
}
em.g {
  font-style: italic;
  /* background: linear-gradient(
    115deg,
    var(--t-deep),
    var(--plum-deep) 50%,
    var(--clay-deep)
  ); 
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 210% 100%;
  animation: ink 10s ease-in-out infinite alternate; */
      color: #e8673a !important;
}
@keyframes ink {
  to {
    background-position: 100% 0;
  }
}
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.sec {
  padding: clamp(52px, 6.6vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.sec-hd {
  margin-bottom: 36px;
}
.sec-hd.center {
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.kicker {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--t-deep);
  background: var(--t-tint);
  padding: 7px 15px;
  border-radius: var(--pill);
  margin-bottom: 15px;
}
.lede {
  font-size: clamp(15px, 1.6vw, 17.5px);
  color: var(--ink-mid);
  line-height: 1.68;
}
.sec-hd.center .lede {
  margin: 15px auto 0;
  max-width: 62ch;
}
.sec-hd h2 {
  position: relative;
  display: inline-block;
}
.sec-hd h2::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: -12px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--t), var(--plum), var(--amber));
  transform: scaleX(0);
  transition: transform 0.95s var(--ease) 0.18s;
}
.sec-hd.in h2::after {
  transform: scaleX(1);
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.82s var(--ease), transform 0.82s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.stagger.in > * {
  opacity: 1;
  transform: none;
}
.stagger.in > *:nth-child(1) {
  transition-delay: 0ms;
}
.stagger.in > *:nth-child(2) {
  transition-delay: 75ms;
}
.stagger.in > *:nth-child(3) {
  transition-delay: 150ms;
}
.stagger.in > *:nth-child(4) {
  transition-delay: 225ms;
}
.stagger.in > *:nth-child(5) {
  transition-delay: 300ms;
}
.stagger.in > *:nth-child(6) {
  transition-delay: 375ms;
}
.stagger.in > *:nth-child(7) {
  transition-delay: 450ms;
}
.stagger.in > *:nth-child(8) {
  transition-delay: 525ms;
}
.stagger.in > *:nth-child(n + 9) {
  transition-delay: 600ms;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
     font-family: Montserrat-Medium;
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 22px;
  border-radius: var(--pill);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  position: relative;
  overflow: hidden;
  line-height: 1.2;
}
.btn-pri {
  background: var(--t);
  color: #fff;
  box-shadow: 0 1px 2px rgba(36, 31, 27, 0.08),
    0 4px 12px -4px rgba(125, 65, 38, 0.28);
}
.btn-pri:hover {
  background: var(--t-deep);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(36, 31, 27, 0.1),
    0 8px 20px -6px rgba(125, 65, 38, 0.34);
}
.btn-pri::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}
.btn-pri:hover::after {
  left: 125%;
}
.btn-amber {
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  color: #fff;
  box-shadow: 0 6px 20px rgba(224, 146, 28, 0.32);
}
.btn-amber:hover {
  transform: translateY(-2px);
}
.btn-out {
  background: var(--paper);
  color: var(--ink-2);
  border: 1.5px solid var(--rule-strong);
}
.btn-out:hover {
  border-color: var(--t-glow);
  color: var(--t-deep);
  transform: translateY(-2px);
}
.btn-wa {
  background: #25d366;
  color: #fff;
}
.btn-wa:hover {
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 16px;
  font-size: 13px;
}
.btn-lg {
  padding: 16px 30px;
  font-size: 16px;
}
.btn-blk {
  width: 100%;
}
.ph {
  outline: 1px dashed var(--amber-deep);
  outline-offset: 2px;
  border-radius: 4px;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(253, 251, 246, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 20px;
  max-width: 1160px;
  margin: 0 auto;
}
.logo {
  font-family: var(--fh);
  font-weight: 600;
  font-size: 21px;
  color: var(--ink);
  text-decoration: none;
}
.logo em {
  font-style: italic;
  color: var(--t-deep);
}
.nav-r {
  display: flex;
  align-items: center;
  gap: 9px;
}
@media (max-width: 720px) {
  .nav-lbl {
    display: none;
  }
}
.crumb {
  font-size: 12.5px;
  color: var(--ink-soft);
  padding: 13px 0 0;
}
.crumb a {
  color: var(--t-deep);
  text-decoration: none;
  font-weight: 600;
}
.crumb a:hover {
  text-decoration: underline;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(24px, 3.4vw, 44px) 0 clamp(44px, 5vw, 74px);
  background: radial-gradient(
      58vw 48vh at 86% -8%,
      var(--amber-tint),
      transparent 60%
    ),
    radial-gradient(50vw 42vh at 2% 100%, var(--sky), transparent 56%),
    var(--cream);
}
.hero::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: var(--sage-deep);
  opacity: 0.09;
  filter: blur(74px);
  top: -64px;
  left: -56px;
  animation: orb 16s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes orb {
  to {
    transform: translate(56px, 42px) scale(1.22);
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 3.4vw, 50px);
  align-items: start;
}
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--sage-ink);
  background: var(--sage);
  padding: 7px 14px;
  border-radius: var(--pill);
  margin-bottom: 17px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(42, 131, 84, 0.5);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(42, 131, 84, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(42, 131, 84, 0);
  }
}
.hero h1 {
    margin-bottom: 17px;
    font-size: 40px;
}

.hero h1 em {
    font-style: italic;
 
    font-size: 40px;
}
.hero-lede {
  font-size: 15px;
  margin-bottom: 22px;

}
.hero-lede b {
  color: var(--t-deep);
}
.hero-ctas {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-assure {
  font-size: 13px;
  color: var(--ink-mid);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.hero-assure span {
  display: flex;
  gap: 6px;
  align-items: center;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--rule-strong);
}
.trust-strip span {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-mid);
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 6px 12px;
  border-radius: var(--pill);
}
/* ============ SYMPTOM CHECKER (hero right) ============ */
.checker {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-3);
  overflow: hidden;
  position: sticky;
  top: 74px;
}
@media (max-width: 980px) {
  .checker {
    position: static;
  }
}
.ck-top {
  background: linear-gradient(135deg, var(--t-deep), var(--plum-deep));
  color: #fff;
  padding: 19px 22px;
  position: relative;
  overflow: hidden;
      background: #0f4c46;
}
.ck-top::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -70px;
  right: -40px;
}
.ck-top .ck-eyebrow {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  opacity: 0.85;
  margin-bottom: 5px;
}
.ck-top h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 4px;
}
.ck-top p {
  font-size: 12.5px;
  opacity: 0.9;
  line-height: 1.5;
}
.ck-bar {
  height: 4px;
  background: var(--rule);
  position: relative;
}
.ck-bar i {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--t), var(--amber));
  transition: width 0.45s var(--ease);
  width: 0;
}
.ck-body {
  padding: 22px;
}
.ck-pane {
  display: none;
}
.ck-pane.on {
  display: block;
  animation: fade 0.38s var(--ease);
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(9px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ck-q {
  font-family: var(--fh);
  font-size: 19px;
  margin-bottom: 5px;
  line-height: 1.25;
}
.ck-hint {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.ck-opts {
  display: grid;
  gap: 9px;
}
.ck-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--rule-strong);
  border-radius: var(--r-lg);
  padding: 13px 15px;
  cursor: pointer;
  background: var(--paper);
  text-align: left;
     font-family: Montserrat-Medium;
  transition: all 0.18s var(--ease);
  width: 100%;
}
.ck-opt:hover {
  border-color: var(--t-glow);
  background: var(--t-wash);
  transform: translateX(3px);
}
.ck-opt.on {
  border-color: var(--t);
  background: var(--t-wash);
  box-shadow: 0 0 0 3px var(--t-tint);
}
.ck-opt .oi {
  font-size: 21px;
  flex: 0 0 auto;
}
.ck-opt .ot {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  display: block;
}
.ck-opt .od {
  font-size: 11.5px;
  color: var(--ink-mid);
  display: block;
  margin-top: 1px;
  line-height: 1.4;
}
.ck-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.ck-chip {
  border: 1.5px solid var(--rule-strong);
  border-radius: var(--r);
  padding: 10px 8px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  background: var(--paper);
  text-align: center;
     font-family: Montserrat-Medium;
  transition: all 0.16s;
}
.ck-chip:hover {
  border-color: var(--t-glow);
  background: var(--t-wash);
}
.ck-chip.on {
  background: var(--t);
  color: #fff;
  border-color: var(--t);
}
.ck-nav {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.ck-skip {
  background: none;
  border: 0;
     font-family: Montserrat-Medium;
  font-size: 12.5px;
  color: var(--ink-soft);
  cursor: pointer;
  text-decoration: underline;
  padding: 6px;
}
.ck-skip:hover {
  color: var(--t-deep);
}
/* result */
.ck-res {
  animation: fade 0.45s var(--ease);
}
.ck-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 15px;
  border-radius: var(--pill);
  margin-bottom: 14px;
}
.ck-badge.green {
  background: var(--sage);
  color: var(--sage-ink);
}
.ck-badge.amber {
  background: var(--lemon);
  color: var(--amber-deep);
}
.ck-badge.red {
  background: var(--clay);
  color: var(--danger);
}
.ck-res h4 {
  font-size: 20px;
  margin-bottom: 9px;
  line-height: 1.25;
}
.ck-res .rtext {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 15px;
}
.ck-adv {
  background: var(--paper-warm);
  border-left: 3px solid var(--t);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 13px 15px;
  margin-bottom: 15px;
}
.ck-adv strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--t-deep);
  display: block;
  margin-bottom: 7px;
}
.ck-adv ul {
  list-style: none;
}
.ck-adv li {
  font-size: 13px;
  color: var(--ink-2);
  padding: 4px 0;
  display: flex;
  gap: 8px;
  line-height: 1.5;
}
.ck-adv li b {
  color: var(--t-deep);
  flex: 0 0 auto;
}
.ck-team {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.ck-team span {
  font-size: 11.5px;
  font-weight: 700;
  background: var(--plum-tint);
  color: var(--plum-deep);
  padding: 6px 11px;
  border-radius: var(--pill);
}
.ck-price {
  background: var(--t-wash);
  border: 1px solid var(--t-glow);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  margin-bottom: 14px;
  text-align: center;
}
.ck-price .pl {
  font-size: 12px;
  color: var(--ink-mid);
}
.ck-price .pv {
  font-family: var(--fh);
  font-size: 29px;
  color: var(--t-deep);
  line-height: 1.1;
  margin: 3px 0;
}
.ck-price .pw {
  font-size: 12.5px;
  color: var(--ink-faint);
  text-decoration: line-through;
}
.ck-price .ps {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--ok);
  background: var(--sage);
  padding: 3px 9px;
  border-radius: var(--pill);
  display: inline-block;
  margin-top: 5px;
}
.ck-fine {
  font-size: 11px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 11px;
  line-height: 1.5;
}
.emg {
  background: var(--clay);
  border: 2px solid var(--danger);
  border-radius: var(--r-lg);
  padding: 17px;
  text-align: center;
}
.emg h4 {
  color: var(--clay-ink);
  font-size: 19px;
  margin-bottom: 8px;
}
.emg p {
  font-size: 13.5px;
  color: var(--clay-ink);
  line-height: 1.6;
  margin-bottom: 14px;
}
/* booking pane inside checker */
.fld {
  margin-bottom: 12px;
}
.fld label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 5px;
}
.fld input,
.fld select {
  width: 100%;
     font-family: Montserrat-Medium;
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--rule-strong);
  border-radius: var(--r);
  padding: 11px 13px;
}
.fld input:focus,
.fld select:focus {
  outline: none;
  border-color: var(--t);
  box-shadow: 0 0 0 3px var(--t-tint);
}
.err {
  font-size: 11.5px;
  color: var(--danger);
  margin-top: 4px;
  display: none;
}
.err.on {
  display: block;
}
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 7px;
  margin-top: 9px;
}
.slot {
  padding: 9px 4px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  border: 1.5px solid var(--rule-strong);
  border-radius: var(--r);
  cursor: pointer;
  background: var(--paper);
  transition: all 0.16s;
}
.slot:hover {
  border-color: var(--t-glow);
  background: var(--t-wash);
}
.slot.on {
  background: var(--t);
  color: #fff;
  border-color: var(--t);
}
.slot small {
  display: block;
  font-size: 10px;
  opacity: 0.72;
}
.slot.soon {
  border-color: var(--amber);
  position: relative;
}
.slot.soon::after {
  content: "●";
  position: absolute;
  top: 2px;
  right: 4px;
  font-size: 7px;
  color: var(--amber);
}
.summary {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  margin-bottom: 14px;
  font-size: 13px;
}
.summary .row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 0;
  border-bottom: 1px dashed var(--rule-strong);
}
.summary .row:last-child {
  border: 0;
}
.summary .k {
  color: var(--ink-mid);
  flex: 0 0 auto;
}
.summary .v {
  font-weight: 700;
  text-align: right;
}
.summary .row.tot .v {
  color: var(--t-deep);
  font-size: 16px;
}
.tick-anim {
  width: 58px;
  height: 58px;
  margin: 4px auto 14px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  animation: pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.urg {
  font-size: 12px;
  font-weight: 700;
  color: var(--amber-deep);
  background: var(--lemon);
  border-radius: var(--r);
  padding: 8px 12px;
  text-align: center;
  margin-bottom: 12px;
}

.subnav {
  position: sticky;
  top: 56px;
  z-index: 850;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  overflow-x: auto;
  scrollbar-width: none;
}
.subnav::-webkit-scrollbar {
  display: none;
}
.subnav-in {
  display: flex;
  gap: 6px;
  padding: 10px 20px;
  max-width: 1160px;
  margin: 0 auto;
  white-space: nowrap;
}
.subnav a {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: var(--pill);
  transition: all 0.18s;
}
.subnav a:hover,
.subnav a.on {
  background: var(--t-tint);
  color: var(--t-deep);
}
/* answer cards — value-first content */
.ans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 940px) {
  .ans-grid {
    grid-template-columns: 1fr;
  }
}
.ans {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 24px;
  transition: all 0.24s var(--ease);
  position: relative;
  overflow: hidden;
}
.ans:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-2);
}
.ans::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--t), var(--amber));
}
.ans .aq {
  font-family: var(--fh);
  font-size: 18px;
  margin-bottom: 11px;
  line-height: 1.3;
}
.ans .aa {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.68;
}
.ans .aa b {
  color: var(--t-deep);
}
.ans .anote {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px dashed var(--rule-strong);
  line-height: 1.55;
}
/* 2am band */
.night {
  background: linear-gradient(150deg, #1e2a3a 0%, #2b3a50 50%, #3a2f4e 100%);
  color: #fff;
  border-radius: var(--r-2xl);
  padding: clamp(28px, 4vw, 50px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px -18px rgba(36, 31, 27, 0.5);
}
.night::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.14;
  filter: blur(60px);
  top: -50px;
  right: 6%;
}
.night h2 {
  color: #fff;
  position: relative;
}
.night h2 em.g {
  background-image: linear-gradient(115deg, #f8d48a, #f2a9c4 55%, #9fd8e8);
  -webkit-background-clip: text;
  background-clip: text;
}
.night > p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 62ch;
  margin: 16px 0 26px;
  position: relative;
}
.night-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  position: relative;
}
@media (max-width: 860px) {
  .night-grid {
    grid-template-columns: 1fr;
  }
}
.night-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-lg);
  padding: 19px;
  backdrop-filter: blur(6px);
  transition: all 0.24s var(--ease);
}
.night-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
}
.night-card .ni {
  font-size: 24px;
  margin-bottom: 9px;
}
.night-card h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 6px;
}
.night-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}
.night-cta {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  margin-top: 26px;
  position: relative;
}
.night .btn-out {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.night .btn-out:hover {
  border-color: #fff;
  color: #fff;
}
/* triage */
.triage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .triage {
    grid-template-columns: 1fr;
  }
}
.tri {
  border-radius: var(--r-xl);
  padding: 23px;
  border: 2px solid;
  transition: all 0.24s var(--ease);
}
.tri:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
}
.tri h3 {
  font-size: 18px;
  margin: 9px 0 7px;
}
.tri ul {
  list-style: none;
  margin: 12px 0 17px;
}
.tri li {
  font-size: 13px;
  padding: 5px 0;
  display: flex;
  gap: 8px;
  line-height: 1.52;
}
.tri .tg {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tri.ok {
  background: var(--sage);
  border-color: var(--sage-deep);
  color: var(--sage-ink);
}
.tri.ok .tg {
  color: var(--sage-deep);
}
.tri.warn {
  background: var(--lemon);
  border-color: var(--amber-deep);
  color: #6b5210;
}
.tri.warn .tg {
  color: var(--amber-deep);
}
.tri.danger {
  background: var(--clay);
  border-color: var(--danger);
  color: var(--clay-ink);
}
.tri.danger .tg {
  color: var(--danger);
}
/* age stages */
.age-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 26px;
}
.age-tab {
  font-size: 13px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: var(--pill);
  border: 1.5px solid var(--rule-strong);
  background: var(--paper);
  cursor: pointer;
     font-family: Montserrat-Medium;
  transition: all 0.2s var(--ease);
}
.age-tab:hover {
  transform: translateY(-2px);
  border-color: var(--t-glow);
}
.age-tab.on {
  background: var(--t);
  color: #fff;
  border-color: var(--t);
  box-shadow: 0 6px 18px rgba(125, 65, 38, 0.24);
}
.age-pane {
  display: none;
}
.age-pane.on {
  display: block;
  animation: fade 0.4s var(--ease);
}
.age-lead {
  text-align: center;
  font-size: 14.5px;
  color: var(--ink-2);
  max-width: 64ch;
  margin: 0 auto 22px;
  line-height: 1.65;
  font-style: italic;
}
.age-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
@media (max-width: 900px) {
  .age-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .age-grid {
    grid-template-columns: 1fr;
  }
}
.age-item {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 17px;
  transition: all 0.22s var(--ease);
  cursor: pointer;
  text-align: left;
     font-family: Montserrat-Medium;
  width: 100%;
}
.age-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
  border-color: var(--t-glow);
}
.age-item .ai {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}
.age-item h4 {
  font-size: 15px;
  margin-bottom: 5px;
}
.age-item p {
  font-size: 12.5px;
  color: var(--ink-mid);
  line-height: 1.5;
}
.age-item .ago {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--t-deep);
  margin-top: 9px;
  display: block;
}
/* pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1050px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}
.pcard {
  position: relative;
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 25px 21px;
  display: flex;
  flex-direction: column;
  transition: all 0.24s var(--ease);
}
.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-3);
}
.pcard.hot {
  border-color: var(--t);
  box-shadow: 0 12px 34px -12px rgba(125, 65, 38, 0.34);
}
.pflag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: linear-gradient(120deg, var(--t-deep), var(--plum-deep));
  padding: 5px 14px;
  border-radius: var(--pill);
  white-space: nowrap;
}
.pfor {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 7px;
  min-height: 34px;
  line-height: 1.45;
}
.pname {
  font-family: var(--fh);
  font-size: 19px;
  margin-bottom: 8px;
}
.pteam {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--plum-deep);
  background: var(--plum-tint);
  padding: 5px 11px;
  border-radius: var(--pill);
  display: inline-block;
  margin-bottom: 13px;
}
.pprice {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 3px;
}
.pprice .now {
  font-family: var(--fh);
  font-size: 32px;
  color: var(--t-deep);
}
.pprice .was {
  font-size: 14px;
  color: var(--ink-faint);
  text-decoration: line-through;
}
.psave {
  font-size: 11px;
  font-weight: 800;
  color: var(--ok);
  background: var(--sage);
  padding: 3px 9px;
  border-radius: var(--pill);
  display: inline-block;
  margin-bottom: 15px;
}
.plist {
  list-style: none;
  margin: 0 0 19px;
  flex: 1;
}
.plist li {
  font-size: 12.5px;
  color: var(--ink-2);
  padding: 5px 0;
  display: flex;
  gap: 8px;
  line-height: 1.5;
}
.plist .pk {
  color: var(--t);
  font-weight: 800;
  flex: 0 0 auto;
}
/* doctors */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .doc-grid {
    grid-template-columns: 1fr;
  }
}
.doc {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 21px;
  transition: all 0.24s var(--ease);
}
.doc:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-2);
}
.doc-top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 13px;
}
.doc-av {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 3px var(--t-glow);
  flex: 0 0 auto;
}
.doc-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.doc h4 {
  font-size: 16px;
  margin-bottom: 2px;
}
.doc .spec {
  font-size: 12.5px;
  color: var(--t-deep);
  font-weight: 700;
}
.doc .meta {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 3px;
}
.doc .quote {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
  font-style: italic;
  background: var(--paper-warm);
  border-radius: var(--r);
  padding: 12px 14px;
  margin-bottom: 12px;
}
.doc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 13px;
}
.doc-tags span {
  font-size: 11px;
  font-weight: 600;
  background: var(--t-tint);
  color: var(--t-deep);
  padding: 4px 9px;
  border-radius: var(--pill);
}
.vbadge {
  font-size: 10px;
  font-weight: 800;
  color: var(--ok);
  background: var(--sage);
  padding: 3px 9px;
  border-radius: var(--pill);
  display: inline-block;
}
/* tables */
.tbl-wrap {
  overflow-x: auto;
  border-radius: var(--r-xl);
  border: 1px solid var(--rule);
  background: var(--paper);
  box-shadow: var(--sh-1);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}
th,
td {
  padding: 13px 16px;
  text-align: left;
  font-size: 13.5px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
th {
  background: var(--paper-warm);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-2);
}
td:first-child {
  font-weight: 700;
  color: var(--ink);
}
tr:last-child td {
  border-bottom: 0;
}
tbody tr {
  transition: background 0.18s;
}
tbody tr:hover {
  background: var(--t-wash);
}
.hq-col {
  background: var(--t-wash);
  font-weight: 700;
  color: var(--t-deep);
}
/* calculators */
.calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .calc-grid {
    grid-template-columns: 1fr;
  }
}
.calc {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 23px;
  transition: all 0.22s var(--ease);
}
.calc:hover {
  box-shadow: var(--sh-2);
}
.calc h4 {
  font-size: 16px;
  margin-bottom: 6px;
}
.calc .ch {
  font-size: 12.5px;
  color: var(--ink-mid);
  margin-bottom: 15px;
  line-height: 1.55;
}
.calc .out {
  background: var(--t-wash);
  border: 1px solid var(--t-glow);
  border-radius: var(--r-lg);
  padding: 15px;
  text-align: center;
  margin-top: 14px;
}
.calc .ov {
  font-family: var(--fh);
  font-size: 26px;
  color: var(--t-deep);
  line-height: 1.15;
}
.calc .om {
  font-size: 12px;
  color: var(--ink-mid);
  margin-top: 6px;
  line-height: 1.5;
}
/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step .sn {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--t-deep), var(--plum-deep));
  color: #fff;
  font-size: 13.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 11px;
}
.step h4 {
  font-size: 15px;
  margin-bottom: 6px;
}
.step p {
  font-size: 12.5px;
  color: var(--ink-mid);
  line-height: 1.58;
}
.step .stime {
  font-size: 11px;
  font-weight: 700;
  color: var(--amber-deep);
  margin-top: 8px;
  display: block;
}
/* faq */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: var(--sh-1);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 17px 20px;
     font-family: Montserrat-Medium;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.faq-q .fx {
  color: var(--t);
  font-size: 20px;
  flex: 0 0 auto;
  transition: transform 0.3s var(--ease);
}
.faq-item.open .fx {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease);
}
.faq-item.open .faq-a {
  max-height: 640px;
}
.faq-a div {
  padding: 0 20px 19px;
  font-size: 13.5px;
  color: var(--ink-mid);
  line-height: 1.7;
}
/* misc */
.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 860px) {
  .g3 {
    grid-template-columns: 1fr;
  }
}
.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
@media (max-width: 1000px) {
  .g4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .g4 {
    grid-template-columns: 1fr;
  }
}
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 23px;
  transition: all 0.22s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
}
.card h4 {
  font-size: 16px;
  margin-bottom: 9px;
}
.card p,
.card li {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.62;
}
.card ul {
  list-style: none;
  margin-top: 9px;
}
.card li {
  padding: 4px 0;
  display: flex;
  gap: 8px;
}
.card .ck {
  color: var(--t);
  font-weight: 800;
  flex: 0 0 auto;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
@media (max-width: 760px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat .sv {
  font-family: var(--fh);
  font-size: clamp(28px, 3.6vw, 42px);
  color: var(--t-deep);
  line-height: 1;
}
.stat .sl {
  font-size: 12.5px;
  color: var(--ink-mid);
  margin-top: 7px;
  line-height: 1.5;
}
.pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
}
.pillrow a {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  padding: 9px 15px;
  border-radius: var(--pill);
  text-decoration: none;
  transition: all 0.18s var(--ease);
}
.pillrow a:hover {
  transform: translateY(-3px);
  border-color: var(--t-glow);
  color: var(--t-deep);
}
.tst {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 23px;
  transition: all 0.22s var(--ease);
}
.tst:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
}
.tst .stars {
  color: var(--amber);
  font-size: 14px;
  margin-bottom: 10px;
}
.tst .tq {
  font-family: var(--fh);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 10px;
}
.tst p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.65;
}
.tst .who {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px dashed var(--rule-strong);
}
.tst .wav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--plum-tint);
  color: var(--plum-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex: 0 0 auto;
}
.tst .wn {
  font-size: 13px;
  font-weight: 700;
}
.tst .wm {
  font-size: 11.5px;
  color: var(--ink-soft);
}
.band {
  background: linear-gradient(
    135deg,
    var(--t-deep) 0%,
    #43385f 55%,
    #7e4457 100%
  );
  color: #fff;
  border-radius: var(--r-2xl);
  padding: clamp(30px, 4vw, 54px);
  text-align: center;
  box-shadow: 0 24px 60px -18px rgba(36, 50, 66, 0.45);
}
.band h2 {
  color: #fff;
}
.band p {
  color: rgba(255, 255, 255, 0.87);
  font-size: 15.5px;
  max-width: 62ch;
  margin: 15px auto 24px;
  line-height: 1.68;
}
.band .btn-out {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.band .btn-out:hover {
  border-color: #fff;
  color: #fff;
}
.band-fine {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 17px;
  line-height: 1.6;
}
.disclaimer {
  background: var(--clay);
  border-left: 4px solid var(--danger);
  border-radius: var(--r);
  padding: 15px 18px;
  font-size: 12.5px;
  color: var(--clay-ink);
  line-height: 1.65;
}
.fabs {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 880;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-3);
  transition: transform 0.2s var(--ease);
  text-decoration: none;
}
.fab:hover {
  transform: scale(1.1);
}
.fab-wa {
  background: #25d366;
  color: #fff;
}
.fab-call {
  background: var(--t);
  color: #fff;
}
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 870;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  box-shadow: 0 -6px 24px rgba(36, 31, 27, 0.1);
  padding: 10px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 760px) {
  .sticky-cta {
    display: flex;
  }
  .fabs {
    bottom: 78px;
  }
  body {
    padding-bottom: 70px;
  }
}
.sticky-cta .sp {
  font-size: 11.5px;
  color: var(--ink-mid);
  line-height: 1.35;
}
.sticky-cta .sp b {
  font-size: 14.5px;
  color: var(--t-deep);
  display: block;
}
.foot {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  padding: 46px 0 26px;
  font-size: 13px;
}
.foot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 26px;
}
@media (max-width: 860px) {
  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}
.foot h5 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 12px;
}
.foot ul {
  list-style: none;
}
.foot li {
  padding: 3px 0;
}
.foot a {
  color: var(--ink-mid);
  text-decoration: none;
}
.foot a:hover {
  color: var(--t-deep);
}
.foot-bot {
  border-top: 1px solid var(--rule);
  padding-top: 19px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}
:focus-visible {
  outline: 3px solid var(--t);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip {
  position: absolute;
  left: -9999px;
  background: var(--t);
  color: #fff;
  padding: 10px 18px;
  z-index: 9999;
}
.skip:focus {
  left: 0;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* card headings promoted h4->h3 keep their visual scale */
.card h3,
.mini h3,
.step h3,
.ans h3,
.doc h3,
.calc h3,
.mq h3,
.night-card h3,
.age-item h3,
.tri h3,
.pcard h3 {
  font-size: 16px;
  line-height: 1.32;
  margin-bottom: 8px;
}
.mini h3 {
  font-size: 13.5px;
}
.step h3 {
  font-size: 15px;
}
.age-item h3 {
  font-size: 15px;
}
.ans h3 {
  font-size: 18px;
}
.doc h3 {
  font-size: 16px;
  margin-bottom: 2px;
}
.mq h3 {
  font-size: 15.5px;
  margin-bottom: 13px;
}
.tri h3 {
  font-size: 18px;
  margin: 9px 0 7px;
}
.pcard h3 {
  font-family: var(--fh);
  font-size: 19px;
  margin-bottom: 8px;
}
.night-card h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 6px;
}
.calc h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

/* ═══════ VACCINE TRACKER ═══════ */
.vx-tool {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-2xl);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--sh-2);
}
.vx-input {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--rule-strong);
}
.vx-input .fld {
  margin: 0;
  flex: 1;
  min-width: 170px;
}
.vx-sum {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-bottom: 20px;
}
@media (max-width: 620px) {
  .vx-sum {
    grid-template-columns: 1fr;
  }
}
.vx-stat {
  border-radius: var(--r-lg);
  padding: 14px;
  text-align: center;
}
.vx-stat .vn {
  font-family: var(--fh);
  font-size: 26px;
  line-height: 1.1;
}
.vx-stat .vl {
  font-size: 11.5px;
  font-weight: 700;
  margin-top: 3px;
}
.vx-stat.done {
  background: var(--sage);
}
.vx-stat.done .vn,
.vx-stat.done .vl {
  color: var(--sage-ink);
}
.vx-stat.due {
  background: var(--lemon);
}
.vx-stat.due .vn,
.vx-stat.due .vl {
  color: var(--amber-deep);
}
.vx-stat.late {
  background: var(--clay);
}
.vx-stat.late .vn,
.vx-stat.late .vl {
  color: var(--clay-ink);
}
.vx-list {
  display: grid;
  gap: 8px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}
.vx-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 12px 14px;
  transition: all 0.2s var(--ease);
}
.vx-row:hover {
  border-color: var(--t-glow);
}
.vx-row.is-late {
  background: var(--clay);
  border-color: var(--danger);
}
.vx-row.is-due {
  background: var(--lemon);
  border-color: var(--amber);
}
.vx-row.is-done {
  opacity: 0.55;
}
.vx-age {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--ink-mid);
  flex: 0 0 92px;
}
.vx-name {
  font-size: 13.5px;
  font-weight: 700;
  flex: 1;
  line-height: 1.35;
}
.vx-name small {
  display: block;
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 11.5px;
  margin-top: 1px;
}
.vx-tag {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 9px;
  border-radius: var(--pill);
  white-space: nowrap;
  flex: 0 0 auto;
}
.vx-tag.t-late {
  background: var(--danger);
  color: #fff;
}
.vx-tag.t-due {
  background: var(--amber);
  color: #fff;
}
.vx-tag.t-done {
  background: var(--sage-deep);
  color: #fff;
}
.vx-tag.t-up {
  background: var(--rule);
  color: var(--ink-mid);
}
.vx-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--rule-strong);
}
/* ═══════ PLAN FINDER ═══════ */
.pf {
  background: linear-gradient(135deg, var(--t-wash), var(--paper));
  border: 1.5px solid var(--t-glow);
  border-radius: var(--r-2xl);
  padding: clamp(22px, 3vw, 32px);
}
.pf-q {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
@media (max-width: 700px) {
  .pf-q {
    grid-template-columns: 1fr;
  }
}
.pf-opt {
  border: 1.5px solid var(--rule-strong);
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 14px;
  cursor: pointer;
     font-family: Montserrat-Medium;
  text-align: left;
  transition: all 0.2s var(--ease);
}
.pf-opt:hover {
  border-color: var(--t);
  transform: translateY(-3px);
  box-shadow: var(--sh-1);
}
.pf-opt.on {
  border-color: var(--t);
  background: var(--t-wash);
  box-shadow: 0 0 0 3px var(--t-tint);
}
.pf-opt .pfi {
  font-size: 22px;
  display: block;
  margin-bottom: 6px;
}
.pf-opt .pft {
  font-size: 14px;
  font-weight: 700;
  display: block;
}
.pf-opt .pfd {
  font-size: 11.5px;
  color: var(--ink-mid);
  display: block;
  margin-top: 2px;
  line-height: 1.45;
}
.pf-out {
  background: var(--paper);
  border: 1.5px solid var(--t);
  border-radius: var(--r-xl);
  padding: 20px;
  margin-top: 16px;
  animation: fade 0.4s var(--ease);
}
.pf-out .pfl {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--t-deep);
  margin-bottom: 7px;
}
.pf-out h4 {
  font-size: 20px;
  margin-bottom: 7px;
}
.pf-out .pfw {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.62;
  margin-bottom: 14px;
}
.pf-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.pf-price {
  font-family: var(--fh);
  font-size: 29px;
  color: var(--t-deep);
}
.pf-price small {
  font-size: 13px;
  color: var(--ink-faint);
  text-decoration: line-through;
  margin-left: 7px;
     font-family: Montserrat-Medium;
}
/* ═══════ COST COMPARE SLIDER ═══════ */
.cc {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 24px;
}
.cc-slider {
  width: 100%;
  margin: 16px 0 8px;
  accent-color: var(--t);
}
.cc-bars {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.cc-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cc-bar .cl {
  font-size: 12.5px;
  font-weight: 700;
  flex: 0 0 118px;
}
.cc-bar .ct {
  flex: 1;
  height: 32px;
  background: var(--rule);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.cc-bar .cf {
  height: 100%;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  transition: width 0.5s var(--ease);
  min-width: 52px;
}
.cc-bar.hq .cf {
  background: linear-gradient(90deg, var(--t), var(--t-deep));
}
.cc-bar.cl2 .cf {
  background: linear-gradient(90deg, var(--ink-soft), var(--ink-mid));
}
.cc-save {
  background: var(--sage);
  border-radius: var(--r-lg);
  padding: 14px;
  text-align: center;
  margin-top: 16px;
}
.cc-save .cs {
  font-family: var(--fh);
  font-size: 25px;
  color: var(--sage-ink);
}
.cc-save .cd {
  font-size: 12.5px;
  color: var(--sage-ink);
  margin-top: 3px;
}
/* ═══════ QUIZ / MYTH BUSTER ═══════ */
.mq {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 22px;
  transition: all 0.22s var(--ease);
}
.mq h4 {
  font-size: 15.5px;
  margin-bottom: 13px;
  line-height: 1.4;
}
.mq-btns {
  display: flex;
  gap: 9px;
  margin-bottom: 12px;
}
.mq-btn {
  flex: 1;
  padding: 11px;
  border: 1.5px solid var(--rule-strong);
  background: var(--paper);
  border-radius: var(--r);
     font-family: Montserrat-Medium;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
}
.mq-btn:hover {
  border-color: var(--t-glow);
}
.mq-btn.right {
  background: var(--sage);
  border-color: var(--sage-deep);
  color: var(--sage-ink);
}
.mq-btn.wrong {
  background: var(--clay);
  border-color: var(--danger);
  color: var(--clay-ink);
}
.mq-ans {
  display: none;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.65;
  background: var(--paper-warm);
  border-left: 3px solid var(--t);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 12px 14px;
}
.mq-ans.on {
  display: block;
  animation: fade 0.35s var(--ease);
}
.mq-score {
  background: var(--t-wash);
  border: 1.5px solid var(--t-glow);
  border-radius: var(--r-xl);
  padding: 20px;
  text-align: center;
  margin-top: 18px;
}
.mq-score .msv {
  font-family: var(--fh);
  font-size: 30px;
  color: var(--t-deep);
}
/* ═══════ EXIT MODAL ═══════ */
.xm {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(36, 31, 27, 0.6);
  backdrop-filter: blur(7px);
}
.xm.on {
  display: flex;
  animation: fade 0.3s var(--ease);
}
.xm-in {
  background: var(--paper);
  border-radius: var(--r-2xl);
  max-width: 470px;
  width: 100%;
  box-shadow: var(--sh-3);
  overflow: hidden;
  animation: pop 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.xm-top {
  background: linear-gradient(135deg, var(--amber), var(--clay-deep));
  color: #fff;
  padding: 22px;
  text-align: center;
  position: relative;
}
.xm-top h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 5px;
}
.xm-top p {
  font-size: 13px;
  opacity: 0.94;
  line-height: 1.55;
}
.xm-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: 0;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}
.xm-body {
  padding: 22px;
}
.xm-list {
  list-style: none;
  margin-bottom: 16px;
}
.xm-list li {
  font-size: 13.5px;
  color: var(--ink-2);
  padding: 6px 0;
  display: flex;
  gap: 9px;
  line-height: 1.55;
}
.xm-list b {
  color: var(--t-deep);
  flex: 0 0 auto;
}
/* ═══════ MISC INTERACTIVE ═══════ */
.tabs-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 22px;
}
.tabx {
  font-size: 13px;
  font-weight: 700;
  padding: 10px 17px;
  border-radius: var(--pill);
  border: 1.5px solid var(--rule-strong);
  background: var(--paper);
  cursor: pointer;
     font-family: Montserrat-Medium;
  transition: all 0.2s var(--ease);
}
.tabx:hover {
  border-color: var(--t-glow);
  transform: translateY(-2px);
}
.tabx.on {
  background: var(--t);
  color: #fff;
  border-color: var(--t);
}
.panex {
  display: none;
}
.panex.on {
  display: block;
  animation: fade 0.38s var(--ease);
}
.spark {
  position: relative;
  overflow: hidden;
}
.spark::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-18deg);
  animation: sweep 3.6s ease-in-out infinite;
}
@keyframes sweep {
  0%,
  55% {
    left: -70%;
  }
  80%,
  100% {
    left: 130%;
  }
}
.cta-inline {
  background: linear-gradient(135deg, var(--t-wash), var(--paper));
  border: 1.5px solid var(--t-glow);
  border-radius: var(--r-xl);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.cta-inline .cit {
  font-family: var(--fh);
  font-size: 18px;
  line-height: 1.35;
}
.cta-inline .cid {
  font-size: 13px;
  color: var(--ink-mid);
  margin-top: 4px;
}

/* ═══ READING PROGRESS ═══ */
.readbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  z-index: 960;
  background: linear-gradient(90deg, var(--t), var(--amber));
  width: 0;
  transition: width 0.1s linear;
}
/* ═══ BACK TO TOP ═══ */
.totop {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 879;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: var(--paper);
  color: var(--t-deep);
  box-shadow: var(--sh-3);
  font-size: 19px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease), opacity 0.3s;
}
.totop:hover {
  transform: translateY(-3px);
}
.totop.on {
  display: flex;
}

.fre_frvr .calc-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 760px) {
  .totop {
    bottom: 140px;
  }
}
/* ═══ MOBILE TAP TARGETS (WCAG 2.5.5 — min 44px) ═══ */
@media (max-width: 760px) {
  .btn {
    min-height: 46px;
    padding: 13px 20px;
  }
  .btn-sm {
    min-height: 44px;
    padding: 12px 17px;
  }
  .fld input,
  .fld select {
    min-height: 48px;
    font-size: 16px;
  } /* 16px stops iOS zoom-on-focus */
  .slot {
    min-height: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .ck-opt {
    min-height: 60px;
  }
  .ck-chip {
    min-height: 46px;
  }
  .age-tab,
  .tabx {
    min-height: 44px;
  }
  .faq-q {
    min-height: 52px;
  }
  .mq-btn {
    min-height: 46px;
  }
  .subnav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
  .pf-opt {
    min-height: 64px;
  }
  .nav-r .btn {
    padding: 11px 14px;
  }
}
/* prevent iOS input zoom globally */
@media (max-width: 900px) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}
/* ═══ PRINT — parents print the triage + vaccine schedule ═══ */
@media print {
  .nav,
  .subnav,
  .fabs,
  .sticky-cta,
  .totop,
  .readbar,
  #cbModal,
  #xmModal,
  .checker,
  .hero-ctas,
  .cta-inline,
  .band {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
    padding: 0;
  }
  .sec {
    padding: 14pt 0;
    page-break-inside: avoid;
    background: #fff !important;
  }
  .sec::before,
  .sec::after {
    display: none !important;
  }
  h1 {
    font-size: 20pt;
  }
  h2 {
    font-size: 15pt;
  }
  h3 {
    font-size: 12pt;
  }
  .card,
  .tri,
  .ans,
  .doc,
  .mini,
  .step {
    border: 1px solid #ccc;
    box-shadow: none;
    page-break-inside: avoid;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 8pt;
    color: #555;
  }
  a[href^="#"]::after {
    content: "";
  }
  #triage,
  #vaccines,
  #tools {
    page-break-before: always;
  }
  table {
    font-size: 9pt;
  }
  .reveal,
  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .print-note {
    display: block !important;
    font-size: 9pt;
    color: #555;
    margin-top: 8pt;
    border-top: 1px solid #ccc;
    padding-top: 6pt;
  }
}
.print-note {
  display: none;
}
/* ═══ FOCUS VISIBILITY on tinted backgrounds ═══ */
.ck-opt:focus-visible,
.ck-chip:focus-visible,
.pf-opt:focus-visible,
.age-item:focus-visible,
.mq-btn:focus-visible {
  outline: 3px solid var(--t-deep);
  outline-offset: 3px;
}
/* ═══ REDUCED DATA / SLOW CONNECTION ═══ */
@media (prefers-reduced-data: reduce) {
  .hero::before,
  #answers::after,
  #doctors::after,
  #costcalc::after,
  #faq::after {
    display: none;
  }
}

/* ═══════════ RESPONSIVE COMPLETION ═══════════ */
/* asymmetric two-column split, collapses properly */
.split-64 {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 900px) {
  .split-64 {
    grid-template-columns: 1fr;
  }
}

/* ── TABLET TIER (768–1000px): was dropping 3-col straight to 1-col ── */
@media (min-width: 701px) and (max-width: 1000px) {
  .ans-grid,
  .calc-grid,
  .night-grid,
  .triage,
  .g3 {
    grid-template-columns: repeat(2, 1fr);
  }
  /* odd last child spans full width so it never sits alone half-empty */
  .ans-grid > *:last-child:nth-child(odd),
  .night-grid > *:last-child:nth-child(odd),
  .triage > *:last-child:nth-child(odd),
  .calc-grid > *:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}
/* tablet: hero checker gets full width rather than a cramped column */
@media (min-width: 701px) and (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .checker {
    max-width: 560px;
    margin: 0 auto;
  }
}
/* large tablet / small laptop: pricing 4-up is too tight below 1200 */
@media (min-width: 1051px) and (max-width: 1200px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ── VERY SMALL PHONES (<=360px) ── */
@media (max-width: 360px) {
  .wrap {
    padding: 0 14px;
  }
  h1 {
    font-size: 27px;
  }
  .btn {
    font-size: 13.5px;
    padding: 12px 16px;
  }
  .btn-lg {
    font-size: 14.5px;
    padding: 14px 20px;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .kicker {
    font-size: 10.5px;
    padding: 6px 12px;
  }
  .slot-grid {
    grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
  }
  .vx-age {
    flex: 0 0 74px;
    font-size: 10.5px;
  }
  .vx-name {
    font-size: 12.5px;
  }
  .ck-body,
  .bc-body {
    padding: 16px;
  }
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .cta-inline {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-inline > div:last-child {
    width: 100%;
  }
  .cta-inline .btn {
    width: 100%;
  }
}
/* ── LANDSCAPE PHONES: sticky nav eats the viewport ── */
@media (max-height: 500px) and (orientation: landscape) {
  .nav {
    position: static;
  }
  .subnav {
    position: static;
  }
  .checker {
    position: static;
  }
  .sticky-cta {
    display: none;
  }
}
/* ── ULTRA-WIDE: stop line lengths becoming unreadable ── */
@media (min-width: 1600px) {
  .wrap {
    max-width: 1280px;
  }
  .lede,
  .hero-lede {
    max-width: 66ch;
  }
}
/* ── TABLET LANDSCAPE / iPad Pro ── */
@media (min-width: 1001px) and (max-width: 1180px) {
  .wrap {
    padding: 0 28px;
  }
  .doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* fluid type for remaining fixed sizes that matter most */
.pf-price {
  font-size: clamp(24px, 3.4vw, 29px);
}
.ck-q {
  font-size: clamp(17px, 2.4vw, 19px);
}
.vx-stat .vn {
  font-size: clamp(21px, 3vw, 26px);
}
.calc .ov {
  font-size: clamp(22px, 3vw, 26px);
}
.cc-save .cs {
  font-size: clamp(20px, 2.8vw, 25px);
}
.pprice .now {
  font-size: clamp(27px, 3.6vw, 32px);
}
.mq-score .msv {
  font-size: clamp(25px, 3.4vw, 30px);
}
/* tables: allow natural width on small screens with clear scroll affordance */
@media (max-width: 700px) {
  .tbl-wrap {
    position: relative;
  }
  .tbl-wrap::after {
    content: "→ scroll";
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 10px;
    font-weight: 800;
    color: var(--ink-soft);
    background: var(--paper);
    padding: 3px 8px;
    border-radius: var(--pill);
    border: 1px solid var(--rule);
    pointer-events: none;
    opacity: 0.9;
  }
  table {
    min-width: 560px;
  }
}
/* safe-area insets for notched phones */
@supports (padding: max(0px)) {
  .sticky-cta {
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
  .fabs {
    bottom: max(20px, env(safe-area-inset-bottom));
  }
  .wrap {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.dg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 860px) {
  .dg-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.dg-lbl {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--t-deep);
  margin: 16px 0 9px;
}
.dg-lbl:first-child {
  margin-top: 0;
}
.dg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.dg-chips .ck-chip {
  font-size: 12.5px;
  padding: 9px 13px;
}
.dg-out {
  margin-top: 16px;
  background: var(--t-wash);
  border: 1.5px solid var(--t-glow);
  border-radius: var(--r-lg);
  padding: 16px;
  min-height: 150px;
}
.dg-hint {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.dg-out h3 {
  font-family: var(--fh);
  font-size: 15px;
  margin-bottom: 9px;
  color: var(--t-deep);
}
.dg-line {
  display: flex;
  gap: 9px;
  font-size: 12.5px;
  line-height: 1.55;
  padding: 5px 0;
  border-bottom: 1px dashed var(--rule);
}
.dg-line:last-child {
  border-bottom: 0;
}
.dg-line b {
  flex: 0 0 96px;
  color: var(--ink-2);
}
.dg-line span {
  color: var(--ink-mid);
}
@media print {
  body * {
    visibility: hidden;
  }
  #diary,
  #diary * {
    visibility: visible;
  }
  #diary {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
  .dg-chips,
  .dg-lbl,
  .vx-cta,
  .sec-hd .lede,
  .kicker {
    display: none !important;
  }
  .dg-out {
    border: 1px solid #999;
    background: #fff;
  }
}

/* ── Medically reviewed ── */
.revby {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 22px;
  box-shadow: var(--sh-sm);
}
.revby-img img {
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--t-glow);
}
.revby-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--t-deep);
  background: var(--t-wash);
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 8px;
}
.revby-txt h2 {
  font-size: clamp(17px, 2vw, 21px);
  margin-bottom: 5px;
  line-height: 1.3;
}
.revby-role {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 700;
  margin-bottom: 10px;
}
.revby-body {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 13px;
}
.revby-cta {
  display: flex;
  gap: 13px;
  align-items: center;
  flex-wrap: wrap;
}
.revby-date {
  font-size: 11.5px;
  color: var(--ink-soft);
}
@media (max-width: 640px) {
  .revby {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .revby-img {
    margin: 0 auto;
  }
  .revby-cta {
    justify-content: center;
  }
}

/* ── TL;DR ── */
.tldr-list {
  display: grid;
  gap: 9px;
}
.tldr-list li {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  align-items: flex-start;
}
.tk {
  flex: 0 0 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--t-tint);
  color: var(--t-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
}

/* ── Booking widget ── */
.bk {
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 22px;
  box-shadow: var(--sh-md);
  max-width: 760px;
  margin: 0 auto;
}
.bk-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 20px;
}
.bk-step {
  text-align: center;
  padding: 9px 4px;
  border-radius: var(--r-md);
  background: var(--paper-warm);
  border: 1.5px solid var(--rule);
  opacity: 0.55;
  transition: var(--ease);
}
.bk-step.on {
  opacity: 1;
  background: var(--t-wash);
  border-color: var(--t);
}
.bk-step.done {
  opacity: 1;
  background: var(--sage);
  border-color: var(--sage-deep);
}
.bk-step .bn {
  display: block;
  width: 23px;
  height: 23px;
  margin: 0 auto 4px;
  border-radius: 50%;
  background: var(--t);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bk-step .bl {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-2);
}
.bk-pane {
  display: none;
  animation: fadeUp 0.34s var(--ease);
}
.bk-pane.on {
  display: block;
}
.bk-offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 11px;
  background: linear-gradient(120deg, var(--amber-tint), var(--lemon));
  border: 1.5px dashed var(--amber);
  border-radius: var(--r-md);
  padding: 11px 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.bk-offer span {
  font-size: 13px;
  color: var(--clay-ink);
}
.bk-plans {
  display: grid;
  gap: 9px;
  margin-bottom: 17px;
}
.bk-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1.8px solid var(--rule);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: var(--ease);
  background: var(--paper-warm);
  text-align: left;
  width: 100%;
  flex-wrap: wrap;
}
.bk-plan:hover {
  border-color: var(--t);
  transform: translateY(-1px);
}
.bk-plan.on {
  border-color: var(--t);
  background: var(--t-wash);
  box-shadow: 0 0 0 3px var(--t-glow);
}
.bk-plan .bp-n {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
  display: block;
}
.bk-plan .bp-t {
  font-size: 11.5px;
  color: var(--ink-soft);
  display: block;
  margin-top: 2px;
}
.bk-plan .bp-p {
  font-size: 16px;
  font-weight: 800;
  color: var(--t-deep);
  white-space: nowrap;
}
.bk-plan .bp-w {
  font-size: 12px;
  color: var(--ink-soft);
  text-decoration: line-through;
  margin-left: 5px;
}
.bk-plan .bp-tag {
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--amber);
  color: var(--clay-ink);
  padding: 2px 7px;
  border-radius: 99px;
  margin-left: 6px;
}
.bk-slots-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.bk-slots-hd strong {
  font-size: 13.5px;
}
.bk-refresh {
  background: var(--t-wash);
  border: 1.5px solid var(--t-glow);
  border-radius: 99px;
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--t-deep);
  cursor: pointer;
  font-family: inherit;
}
.bk-refresh:hover {
  background: var(--t-tint);
}
.bk-loading {
  text-align: center;
  padding: 22px;
  color: var(--ink-soft);
  font-size: 13px;
}
.bk-day {
  margin-bottom: 13px;
}
.bk-day-l {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--t-deep);
  margin-bottom: 7px;
}
.bk-times {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.bk-t {
  padding: 8px 13px;
  border: 1.5px solid var(--rule);
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  background: var(--paper-warm);
  transition: var(--ease);
  font-family: inherit;
  color: var(--ink-2);
}
.bk-t:hover {
  border-color: var(--t);
  color: var(--t-deep);
}
.bk-t.on {
  background: var(--t);
  color: #fff;
  border-color: var(--t);
}
.bk-t.soon {
  border-color: var(--amber);
  color: var(--clay-ink);
  background: var(--amber-tint);
}
.bk-alt {
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}
.bk-alt a {
  color: var(--t-deep);
  font-weight: 700;
}
.bk-back {
  background: none;
  border: 0;
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-bottom: 13px;
  font-family: inherit;
}
.bk-back:hover {
  color: var(--t-deep);
}
.bk-chosen {
  background: var(--t-wash);
  border: 1.5px solid var(--t-glow);
  border-radius: var(--r-md);
  padding: 11px 14px;
  margin-bottom: 15px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bk-chosen b {
  color: var(--t-deep);
}
.bk-chosen button {
  background: none;
  border: 0;
  color: var(--t-deep);
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
}
.bk-tick {
  font-size: 38px;
  text-align: center;
  margin-bottom: 9px;
}
.bk-fine {
  font-size: 11.5px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 11px;
  line-height: 1.55;
}
#bkPayNote {
  font-size: 12.5px;
  text-align: center;
  margin-top: 10px;
  line-height: 1.6;
}
#bkPayNote .pn-wait {
  color: var(--ink-soft);
}
#bkPayNote .pn-ok {
  color: var(--sage-ink);
  font-weight: 700;
}
#bkPayNote .pn-fb {
  color: var(--clay-ink);
  background: var(--amber-tint);
  border: 1px solid var(--amber);
  border-radius: 10px;
  padding: 9px 12px;
  display: block;
}

/* ── Confetti / congrats ── */
.congrats {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 30, 0.6);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
  padding: 18px;
}
.congrats.on {
  display: flex;
  animation: fadeIn 0.26s var(--ease);
}
.congrats-in {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  max-width: 340px;
  text-align: center;
  position: relative;
  box-shadow: var(--sh-lg);
  animation: pop 0.4s var(--bounce);
}
.congrats-in img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 11px;
}
.congrats-in h3 {
  font-size: 20px;
  margin-bottom: 7px;
  color: var(--t-deep);
}
.congrats-in p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.6;
}
.congrats-close {
  position: absolute;
  top: 9px;
  right: 11px;
  background: none;
  border: 0;
  font-size: 23px;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1;
  font-family: inherit;
}
@keyframes pop {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.sb-txt{
      font-family: Montserrat-Medium;
}
/* ── Partners / awards ── */
.g6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 11px;
}
@media (max-width: 1000px) {
  .g6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .g6 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pcard-sm {
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 16px 11px;
  text-align: center;
  transition: var(--ease);
}
.pcard-sm:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--t-glow);
}
.pcard-sm .pi {
  font-size: 25px;
  margin-bottom: 7px;
}
.pcard-sm h3 {
  font-size: 13px;
  margin-bottom: 3px;
}
.pcard-sm p {
  font-size: 11px;
  color: var(--ink-soft);
}
.award {
  text-align: center;
  position: relative;
}
.award .ai {
  font-size: 29px;
  margin-bottom: 8px;
}
.atag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--t-wash);
  color: var(--t-deep);
  padding: 3px 9px;
  border-radius: 99px;
  margin-bottom: 8px;
}

/* ── Stories ── */
.rating-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 18px 22px;
  max-width: 420px;
  margin: 0 auto 26px;
  box-shadow: var(--sh-sm);
}
.rb-score {
  font-family: var(--fh);
  font-size: 44px;
  font-weight: 800;
  color: var(--t-deep);
  line-height: 1;
}
.rb-score span {
  font-size: 19px;
  color: var(--ink-soft);
}
.rb-stars {
  color: #d8a344;
  font-size: 17px;
  letter-spacing: 2px;
}
.rb-count {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.story {
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 19px;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}
.story:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.st-stars {
  color: #d8a344;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.st-txt {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--ink-2);
  font-style: italic;
  flex: 1;
}
.st-who {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--rule);
}
.st-av {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--t-tint);
  color: var(--t-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 800;
  flex-shrink: 0;
}
.st-who strong {
  display: block;
  font-size: 13px;
  color: var(--ink);
}
.st-who span {
  display: block;
  font-size: 11.5px;
  color: var(--ink-soft);
}

/* ── Glossary / refs ── */
.gl .gi {
  font-size: 22px;
  margin-bottom: 7px;
}
.ref-hd {
  font-family: var(--fh);
  font-size: 16px;
  color: var(--t-deep);
  margin: 26px 0 13px;
  padding-bottom: 7px;
  border-bottom: 1.5px solid var(--rule);
}
.ref {
  position: relative;
}
.ry {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  background: var(--sage);
  color: var(--sage-ink);
  padding: 3px 9px;
  border-radius: 99px;
  margin-bottom: 8px;
}


/* new css */

.lastchance{
  z-index: 6666;
}

.ck-opt .ot{
      font-family: Montserrat-Medium;
}

.ck-opt .od{
    font-family: Montserrat-Medium;
}

.qs-chip{
   font-family: Montserrat-Medium;
}

span{
     font-family: Montserrat-Medium;
}

.subnav-in {
  overflow-x: auto;
    scrollbar-width: thin;
    padding: 10px 10px 5px;
}

.subnav a{
      padding: 7px 10px;
}

em.g{
  font-weight: 600;
}



.card ul{
  padding-left: 0;
}

.ck-top p {
  margin-bottom: 0;
    color: #fff;
}

.hero-ctas .btn{
      padding: 16px 18px;
    font-size: 14px;
}

div#book-session .step{
  padding: 0;
  border: initial
}
div#book-session .step:hover{
  box-shadow: initial;
  transform: initial;
}
.ck-chip{
  font-family: Montserrat-Medium;
}

.nav_new {
    margin-bottom: 10px;
}

.crumb a {
    font-size: 15px;
}

.crumb span {
    font-size: 15px;
}
.nbdy_tlk p {
    max-width: 100%;
}

.tri {
    display: block;
}

.tri ul {
   
    padding-left: 0;
}

.cta-inline .cid{
   font-family: Montserrat-Medium;
}

.xm-top p{
  color: #fff;
}

.cond{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:22px;
    box-shadow:0 8px 24px rgba(15,23,42,.06);
    transition:.3s ease;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.cond:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 36px rgba(15,23,42,.12);
    border-color:#cbd5e1;
}

.cond h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
}

.cond .cdesc {
    margin: 0;
    color: #475569;
    font-size: 14px;
}

.cond .cwhy {
    margin: 0;
    padding: 8px 12px;
    background: #f8fafc;
    border-left: 4px solid #0ea5e9;
    border-radius: 10px;
    font-size: 13px;
    line-height: 20px;
}

.cond .cwhy b{
    color:#0f172a;
}

.cond .cwhy em{
    color:#dc2626;
    font-style:normal;
    font-weight:600;
}

.cond-cta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:8px;
}

.cond-cta .btn{
    flex:1;
    min-width:180px;
}
.pteam {
  
    width: fit-content;
}

.night > p{
	    max-width: 100%;
}
.fld label{
   font-family: Montserrat-Medium;
}

.calc .om{
   font-family: Montserrat-Medium;
}

.disclaimer{
  font-family: Montserrat-Medium;
}

.fr_stts .stat {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.fr_stts .stat .sv {
    font-size: 30px;
}

.fr_stts .stat .sl {
    font-family: Montserrat-Medium;
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 500;
}

.plist{
  padding-left: 0;
}

.psave{
 width: fit-content;
}

.st-av{
  display: flex !important;
}
.stat .sl{
  font-family: Montserrat-Medium;
}

.stat .sl {
    font-family: Montserrat-Medium;
    letter-spacing: 0;
    text-transform: capitalize;
}
.ticker {
  position: relative;
  background: linear-gradient(
    96deg,
    var(--t-deep),
    var(--plum-deep) 52%,
    #7a3b0a
  );
  color: #fff;
  overflow: hidden;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerRun 42s linear infinite;
}
.ticker:hover .ticker-track,
.ticker:focus-within .ticker-track {
  animation-play-state: paused;
}
.ticker-set {
  display: flex;
  flex-shrink: 0;
}
.ti {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 26px;
  white-space: nowrap;
  opacity: 0.96;
}
.ti b {
  font-size: 14px;
  line-height: 1;
}
.ti::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  margin-left: 26px;
}

@keyframes tickerRun {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker-x {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0, 0, 0, 0.22);
  border: 0;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  font-family: inherit;
  padding: 0;
}
.ticker-x:hover {
  background: rgba(0, 0, 0, 0.4);
}
.ticker.off {
  display: none;
}

.ticker {
  
    background: var(--t1);
 
}

.tbl-wrap table caption {
    text-align: center !important;
    font-size: 16px !important;
    padding: 10px;
    font-family: var(--fh);
}

th, td{
      font-family: Montserrat-Medium;
}

p{
	    color: var(--muted) !important;
}

.ck-q{
		color: var(--t1);
}
.ck-opt .ot{
	 color: var(--t1);
}
.mq-btn{
	 color: var(--muted) !important;
}


@media (max-width: 720px) {
  .ti {
    padding: 8px 16px;
    font-size: 11.5px;
  }
  .ti::after {
    margin-left: 16px;
  }
  .ticker-track {
    animation-duration: 30s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    width: 100%;
    overflow-x: auto;
  }
  .ticker-set:nth-child(2) {
    display: none;
  }
}
@media print {
  .ticker {
    display: none;
  }
}


.nav_new {
    margin-bottom: 10px;
}

.qs-chip{
  color: var(--t);
  border: 1.8px solid #ff8054;
}

@media (max-width:768px){

    .cond{
        padding:18px;
        border-radius:16px;
    }

    .cond h3{
        font-size:19px;
    }

    .cond .cdesc,
    .cond .cwhy{
        font-size:14px;
    }

    .cond-cta{
        flex-direction:column;
    }

    .cond-cta .btn{
        width:100%;
        min-width:100%;
    }
.night{
	    padding: 20px;
}
.g3 {
        grid-template-columns: 1fr !important;
    }
	    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	.fr_stts .stat .sl {
   
    font-size: 11px;
 
}

.new_grd.in {
          grid-template-columns: repeat(2, 1fr);
}
.gl-search input{
  font-size: 13px !important;
}
.new_rvl .tldr-list {
   flex-wrap: wrap;
  
}
.new_rvl {
    display: block;
}
.fre_frvr {
    padding: 80px 30px;
}
}

