/* HRios Travel and Services — implementation of "HRios Travel Site v2.dc.html".
   Design tokens, spacing and colour values are taken from the design source. */

/* ---------------------------------------------------------------- tokens -- */
:root {
  --bg: #FCFAF3;
  --surface: #FFFFFF;
  --cream: #FAF4E2;
  --ink: #203050;
  --ink-2: #234055;
  --ink-3: #1B3348;
  --muted: #55697F;
  --faint: #7C91A6;
  --placeholder: #93A7B8;

  --blue: #1170C4;
  --blue-dark: #0D5799;
  --blue-tint: #EAF3FB;
  --blue-tint-2: #EEF6FC;
  --blue-line: #C9DFF0;
  --blue-line-2: #A9CEE8;
  --field: #F8FBFE;

  --gold: #F0C010;
  --gold-2: #F0B90D;
  --gold-hover: #FFD535;
  --gold-press: #D9AC06;

  --green: #50A040;
  --whatsapp: #25955A;
  --whatsapp-dark: #1E7C4A;

  --line: #E6E1D2;
  --line-header: #E4DFCE;
  --line-soft: #E5EFF7;
  --img-bg: #E7E2D2;

  --display: 'Space Grotesk', system-ui, sans-serif;
  --body: 'Manrope', system-ui, sans-serif;

  --shell: 1240px;
  --gut: 40px;
  --radius-card: 22px;
  --radius-lg: 28px;
}

/* ------------------------------------------------------------------ base -- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

input, select, textarea, button { font-family: inherit; }
::placeholder { color: var(--placeholder); }

img { max-width: 100%; }

h1, h2, h3 { font-family: var(--display); }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  padding: 12px 20px; border-radius: 999px;
  background: var(--blue); color: #fff; font-weight: 700; font-size: 14px;
  transition: top .15s;
}
.skip-link:focus { top: 12px; color: #fff; }

@keyframes hrFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes hrMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------------------------------------------------------- layout -- */
.shell { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

.wrap { max-width: var(--shell); margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut); }

section { position: relative; }

/* --------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 999px;
  font-family: var(--body); font-weight: 700; white-space: nowrap;
  cursor: pointer; text-align: center;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
}

.btn-primary { background: var(--blue); color: #fff; padding: 16px 30px; font-size: 15.5px; box-shadow: 0 12px 30px rgba(17,112,196,.3); }
.btn-primary:hover { background: var(--blue-dark); color: #fff; }

.btn-outline { background: transparent; border: 1.5px solid var(--blue-line); color: var(--ink); padding: 16px 30px; font-size: 15.5px; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-ghost { background: transparent; border: 1.5px solid var(--blue-line); color: var(--blue); padding: 12px 20px; font-size: 14px; }
.btn-ghost:hover { border-color: var(--blue); background: var(--blue-tint-2); color: var(--blue); }

.btn-gold { background: var(--gold); color: var(--ink); padding: 14px 26px; font-size: 15px; }
.btn-gold:hover { background: var(--gold-hover); color: var(--ink); }

.btn-quiet { background: transparent; border: 1.5px solid var(--line); color: var(--muted); padding: 13px 20px; font-size: 14.5px; font-weight: 600; }
.btn-quiet:hover { border-color: var(--blue); color: var(--blue); }

/* ---------------------------------------------------------------- header -- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252,250,243,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-header);
}
.header-inner {
  max-width: var(--shell); margin: 0 auto; padding: 14px var(--gut);
  display: flex; align-items: center; gap: 18px 24px; flex-wrap: wrap;
}

.brand { display: flex; align-items: center; gap: 12px; cursor: pointer; flex-shrink: 0; background: none; border: none; padding: 0; text-align: left; }
.brand-mark {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 999px;
  background-color: #fff;
  background-image: url(../img/hriostravel.jpg);
  background-repeat: no-repeat; background-size: 212% auto; background-position: 50% 44%;
  box-shadow: 0 4px 14px rgba(32,48,80,.14);
  border: 1px solid #E6E1D2;
}
.brand-text { display: flex; flex-direction: column; gap: 3px; }
.brand-name { font: 700 16px/1 var(--display); letter-spacing: -.02em; color: var(--ink); }
.brand-tag { font-size: 10.5px; font-weight: 600; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; line-height: 1; }

.header-right { display: flex; align-items: center; justify-content: flex-end; gap: 12px 22px; margin-left: auto; flex-wrap: wrap; }

.nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; justify-content: flex-end; }
.nav-item {
  padding: 9px 13px; border-radius: 999px;
  font-size: 14px; font-weight: 600; white-space: nowrap;
  background: transparent; border: none; color: #3A5468; cursor: pointer;
  transition: background .15s, color .15s;
}
.nav-item:hover { background: var(--blue-tint); color: var(--blue); }
.nav-item[aria-current='page'] { background: var(--blue-tint); color: var(--blue); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.lang { display: flex; background: var(--blue-tint-2); border-radius: 999px; padding: 3px; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; }
.lang button {
  padding: 7px 9px; border-radius: 999px; border: none; cursor: pointer;
  background: transparent; color: var(--muted); font-weight: 700; font-size: 11.5px; letter-spacing: .06em;
}
.lang button[aria-pressed='true'] { background: var(--blue); color: #fff; }

.header-deals { padding: 11px 16px; border: 1.5px solid var(--blue-line-2); border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--blue); white-space: nowrap; }
.header-deals:hover { border-color: var(--blue); background: var(--blue-tint-2); }
.header-book { padding: 12px 20px; border-radius: 999px; background: var(--blue); color: #fff; font-size: 13px; font-weight: 700; white-space: nowrap; box-shadow: 0 8px 20px rgba(17,112,196,.28); }
.header-book:hover { background: var(--blue-dark); color: #fff; }

.nav-toggle { display: none; }

/* ------------------------------------------------------------------ hero -- */
.hero { padding-top: 64px; display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }

.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: 999px;
  background: var(--blue-tint); color: var(--blue);
  font-size: 12.5px; font-weight: 700; letter-spacing: .02em; margin-bottom: 26px;
}
.eyebrow-pill .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--green); display: inline-block; flex-shrink: 0; }

.hero h1 { margin: 0 0 22px; font: 700 66px/1 var(--display); letter-spacing: -.045em; text-wrap: balance; }
.hero-body { margin: 0 0 34px; font-size: 19.5px; line-height: 1.55; color: var(--muted); max-width: 33em; text-wrap: pretty; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-art { position: relative; }
.hero-frame { position: relative; aspect-ratio: 1/1; border-radius: 32px; overflow: hidden; background: var(--img-bg); }
.hero-badge {
  position: absolute; left: -24px; bottom: 36px;
  background: #fff; border-radius: 18px; padding: 18px 22px;
  box-shadow: 0 18px 44px rgba(32,48,80,.12);
  display: flex; align-items: center; gap: 14px;
}
.hero-badge .chip {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 999px; background: var(--gold-2);
  display: flex; align-items: center; justify-content: center;
  font: 700 13px/1 var(--display); color: var(--ink);
}
.hero-badge .label { font-size: 13px; font-weight: 600; line-height: 1.4; max-width: 11em; color: var(--ink); }

/* ------------------------------------------------------------ quick bar -- */
.quickbar-section { padding-top: 44px; padding-bottom: 8px; }
.quickbar {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 18px;
  box-shadow: 0 16px 44px rgba(32,48,80,.07);
  display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,1.5fr) 150px 88px auto;
  gap: 10px; align-items: end;
}
.qb-field { display: flex; flex-direction: column; gap: 7px; padding: 0 8px; min-width: 0; position: relative; }
.qb-field + .qb-field { border-left: 1px solid var(--line-soft); }
.qb-label { font-size: 11px; font-weight: 700; color: var(--faint); letter-spacing: .1em; text-transform: uppercase; }
.qb-input {
  border: none; background: transparent; font-size: 15.5px; font-weight: 600;
  outline: none; padding: 6px 0; color: var(--ink); width: 100%; min-width: 0;
}
.qb-submit { padding: 16px 28px; border-radius: 16px; background: var(--gold); color: var(--ink); font-size: 15px; font-weight: 700; border: none; cursor: pointer; white-space: nowrap; }
.qb-submit:hover { background: var(--gold-press); }

.dest-pop {
  position: absolute; top: 100%; left: 0; margin-top: 14px; z-index: 30;
  width: 340px; max-width: 78vw;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 22px 50px rgba(32,48,80,.18);
  padding: 10px; max-height: 330px; overflow-y: auto;
  animation: hrFade .16s ease;
}
.dest-pop-head { padding: 8px 12px 10px; font-size: 10.5px; font-weight: 700; color: var(--faint); letter-spacing: .12em; text-transform: uppercase; }
.dest-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; padding: 11px 12px; border: none; background: none; border-radius: 12px;
  cursor: pointer; text-align: left; transition: background .12s;
}
.dest-opt:hover { background: var(--blue-tint-2); }
.dest-opt .name { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.dest-opt .kind { font-size: 11px; font-weight: 700; color: var(--faint); letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.dest-none { padding: 12px; font-size: 14px; color: var(--muted); font-weight: 500; line-height: 1.5; }

/* ----------------------------------------------------------------- trust -- */
.trust-section { padding-top: 60px; padding-bottom: 12px; }
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(3,1fr); }
.trust-cell { padding: 36px var(--gut); display: flex; flex-direction: column; gap: 10px; border-left: 1px solid var(--line); }
.trust-cell:first-child { border-left-color: transparent; }
.trust-big { font: 700 42px/1 var(--display); letter-spacing: -.04em; color: var(--ink); }
.trust-label { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: .14em; text-transform: uppercase; }
.trust-small { font-size: 14.5px; line-height: 1.55; color: var(--muted); font-weight: 500; max-width: 22em; margin-top: 2px; }

/* -------------------------------------------------------------- marquees -- */
.marquee { position: relative; overflow: hidden; }
.marquee--vendors { -webkit-mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.marquee--testi { -webkit-mask-image: linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent); mask-image: linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent); }
.marquee-track { display: flex; width: max-content; }
.marquee--vendors .marquee-track { animation: hrMarquee 42s linear infinite; }
.marquee--testi .marquee-track { animation: hrMarquee 90s linear infinite; padding: 6px 0 14px; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; }
  .marquee { overflow-x: auto; }
  /* Back-to-top and the FAQ jump links both scroll the page; honour the setting
     by making those jumps instant rather than animated. */
  html { scroll-behavior: auto; }
  .to-top { transition: none; }
}

.vendor-head { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; margin-bottom: 30px; }
.vendor-head h2 { margin: 0; font: 700 30px/1.12 var(--display); letter-spacing: -.035em; }
.vendor-head p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--muted); font-weight: 500; max-width: 38em; }
.vendors-section { padding-top: 56px; padding-bottom: 8px; }

.vendor-card {
  flex: 0 0 auto; width: 200px; height: 104px; margin-right: 18px;
  border-radius: 16px; background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; padding: 14px;
}
.vendor-card picture { display: flex; align-items: center; justify-content: center; max-width: 100%; }
.vendor-card img { max-width: 100%; max-height: 56px; object-fit: contain; display: block; }
.vendor-card .fallback-name {
  font: 700 13px/1.25 var(--display); color: var(--ink-2);
  text-align: center; letter-spacing: -.01em;
}

/* -------------------------------------------------------------- services -- */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 34px; }
.section-eyebrow { font-size: 12.5px; font-weight: 700; color: var(--blue); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.section-head h2 { margin: 0; font: 700 40px/1.08 var(--display); letter-spacing: -.035em; max-width: 22em; }

.services-section { padding-top: 64px; padding-bottom: 24px; }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

.service-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column; cursor: pointer; text-align: left; padding: 0;
  transition: box-shadow .18s, transform .18s, border-color .18s;
}
.service-card:hover { border-color: var(--blue-line-2); box-shadow: 0 16px 36px rgba(32,48,80,.12); transform: translateY(-3px); }
.service-art { position: relative; height: 118px; overflow: hidden; }
.service-n {
  position: absolute; top: 12px; left: 12px; width: 32px; height: 32px;
  border-radius: 10px; background: rgba(255,255,255,.95);
  display: flex; align-items: center; justify-content: center;
  font: 700 12px/1 var(--display); box-shadow: 0 4px 12px rgba(32,48,80,.16);
}
.service-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.service-title { font: 600 17px/1.25 var(--display); letter-spacing: -.02em; color: var(--ink); }
.service-desc { font-size: 14px; line-height: 1.55; color: var(--muted); font-weight: 500; }

/* services page variant */
.services-page-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.services-page-grid .service-card { border-radius: var(--radius-card); }
.services-page-grid .service-art { height: 150px; }
.service-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(255,255,255,.94) 0%, rgba(255,255,255,.55) 34%, rgba(255,255,255,0) 62%); }
.service-art-title { position: absolute; left: 16px; right: 16px; bottom: 12px; font: 600 21px/1.15 var(--display); letter-spacing: -.03em; color: var(--ink); }
.services-page-grid .service-n { top: 14px; left: 16px; width: 36px; height: 36px; border-radius: 12px; font-size: 13px; }
.services-page-grid .service-body { padding: 20px 26px 24px; gap: 14px; flex: 1; }
.service-long { font-size: 15.5px; line-height: 1.6; color: var(--muted); font-weight: 500; }
.service-cta { margin-top: auto; display: flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; }

.services-cta {
  margin-top: 44px; border-radius: 26px; background: var(--blue); color: #fff; padding: 46px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  box-shadow: 0 24px 60px rgba(17,112,196,.24);
}
.services-cta h2 { margin: 0 0 10px; font: 700 30px/1.1 var(--display); letter-spacing: -.035em; }
.services-cta p { margin: 0; font-size: 16px; color: #CFE6F7; line-height: 1.6; font-weight: 500; }
.btn-on-blue { background: #fff; color: var(--blue); padding: 16px 30px; font-size: 15.5px; }
.btn-on-blue:hover { background: var(--blue-tint); color: var(--blue); }

.agency-band {
  margin-top: 44px; border-radius: 26px; background: var(--cream);
  border: 1px solid var(--line); border-left: 5px solid var(--gold); padding: 40px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.agency-band-text { max-width: 46em; }
.agency-band h2 { margin: 0 0 10px; font: 700 28px/1.15 var(--display); letter-spacing: -.035em; }
.agency-band p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--muted); font-weight: 500; }
.agency-cta { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }

/* ------------------------------------------------------------------ quiz -- */
.quiz-section { padding-top: 64px; padding-bottom: 64px; }
.quiz-panel {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  color: #fff; background: var(--ink); box-shadow: 0 24px 60px rgba(32,48,80,.28);
}
.quiz-panel .art { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.quiz-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(100deg, rgba(20,30,52,.92) 0%, rgba(20,30,52,.78) 42%, rgba(20,30,52,.42) 100%); }
.quiz-inner { position: relative; z-index: 2; padding: 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.quiz-eyebrow { display: inline-block; padding: 7px 14px; border-radius: 999px; background: var(--gold); color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 20px; }
.quiz-inner h2 { margin: 0 0 16px; font: 700 40px/1.05 var(--display); letter-spacing: -.04em; }
.quiz-inner .lede { margin: 0; font-size: 17px; line-height: 1.6; color: #C4CFE2; max-width: 30em; font-weight: 500; }

.quiz-card { background: #fff; border-radius: var(--radius-card); padding: 30px; color: var(--ink); min-height: 268px; display: flex; flex-direction: column; }
.quiz-progress { display: flex; align-items: center; gap: 12px; }
.quiz-counter { font-size: 11.5px; font-weight: 700; color: var(--faint); letter-spacing: .08em; }
.quiz-bar { flex: 1; height: 4px; background: var(--line-soft); border-radius: 999px; overflow: hidden; }
.quiz-bar span { display: block; height: 4px; background: var(--blue); border-radius: 999px; transition: width .25s; }
.quiz-q { font: 600 21px/1.25 var(--display); letter-spacing: -.025em; }
.quiz-opts { display: flex; flex-direction: column; gap: 9px; }
.quiz-opt {
  padding: 14px 18px; border: 1.5px solid var(--line); border-radius: 14px;
  background: var(--field); font-size: 14.5px; font-weight: 600; color: var(--ink);
  cursor: pointer; text-align: left; transition: border-color .15s, background .15s;
}
.quiz-opt:hover { border-color: var(--blue); background: var(--blue-tint-2); }
.quiz-result { display: flex; flex-direction: column; gap: 14px; flex: 1; animation: hrFade .3s ease; }
.quiz-result .label { font-size: 11.5px; font-weight: 700; color: var(--blue); letter-spacing: .12em; text-transform: uppercase; }
.quiz-result .title { font: 700 27px/1.1 var(--display); letter-spacing: -.035em; }
.quiz-result .body { font-size: 14.5px; line-height: 1.6; color: var(--muted); font-weight: 500; }
.quiz-result .actions { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.btn-compact { padding: 13px 22px; font-size: 14.5px; }

/* ---------------------------------------------------------- destinations -- */
.dest-section { padding-bottom: 72px; }
.dest-section .section-head { margin-bottom: 30px; }
.dest-section .section-head h2 { font-size: 40px; line-height: 1.05; letter-spacing: -.04em; }

.dest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.dest-card {
  display: flex; flex-direction: column; gap: 14px; cursor: pointer;
  background: none; border: none; padding: 0; text-align: left;
  transition: transform .18s;
}
.dest-card:hover { transform: translateY(-4px); }
.dest-art { position: relative; border-radius: var(--radius-card); overflow: hidden; background: var(--img-bg); box-shadow: 0 8px 24px rgba(32,48,80,.1); }
.dest-art--top { aspect-ratio: 4/3; }
.dest-art--page { aspect-ratio: 3/2; }
.dest-rank {
  position: absolute; top: 16px; left: 16px;
  display: flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 8px; border-radius: 999px;
  background: rgba(255,255,255,.94); box-shadow: 0 6px 16px rgba(32,48,80,.14);
}
.dest-rank .n {
  width: 24px; height: 24px; border-radius: 999px; background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font: 700 11.5px/1 var(--display);
}
.dest-rank .stat { font-size: 11px; font-weight: 700; color: var(--ink-2); letter-spacing: .08em; text-transform: uppercase; }
.dest-tag {
  position: absolute; top: 16px; left: 16px;
  padding: 7px 13px; border-radius: 999px; background: rgba(255,255,255,.94);
  font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(32,48,80,.14);
}
.dest-name { font: 600 20px/1.15 var(--display); letter-spacing: -.03em; color: var(--ink); }
.dest-blurb { font-size: 14.5px; line-height: 1.55; color: var(--muted); font-weight: 500; }
.dest-cta { display: flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; color: var(--blue); }
.dest-source { margin-top: 26px; font-size: 12.5px; color: var(--faint); font-weight: 500; line-height: 1.6; }

.filters { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 34px; }
.filter {
  padding: 11px 20px; border-radius: 999px; border: 1.5px solid var(--blue-line);
  background: #fff; color: var(--muted); font-size: 14px; font-weight: 700;
  cursor: pointer; white-space: nowrap; transition: border-color .15s, background .15s, color .15s;
}
.filter:hover { border-color: var(--blue); }
.filter[aria-pressed='true'] { background: var(--blue); color: #fff; border-color: var(--blue); }

.dest-note { margin-top: 48px; padding: 30px; background: var(--cream); border-radius: var(--radius-card); font-size: 15.5px; line-height: 1.6; color: var(--muted); font-weight: 500; text-align: center; }

/* ---------------------------------------------------------- testimonials -- */
.testi-band { background: var(--cream); }
.testi-band .wrap { padding-top: 76px; padding-bottom: 76px; }
.testi-band h2 { margin: 0 0 34px; font: 700 40px/1.05 var(--display); letter-spacing: -.04em; }

.testi-card {
  flex: 0 0 auto; width: 352px; margin-right: 16px;
  background: #fff; border-radius: var(--radius-card); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: 0 10px 30px rgba(32,48,80,.08);
}
.testi-art { position: relative; height: 132px; flex-shrink: 0; background: var(--img-bg); }
.testi-body { padding: 22px 26px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.quote-mark { font: 600 30px/.9 var(--display); color: var(--gold-2); }
.testi-quote { font-size: 16px; line-height: 1.5; color: var(--ink-3); font-weight: 500; text-wrap: pretty; }
.testi-who { margin-top: auto; padding-top: 4px; }
.testi-name { font-size: 14px; font-weight: 700; }
.testi-meta { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .04em; margin-top: 3px; }

.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.testi-tile { background: var(--cream); border-radius: var(--radius-card); padding: 30px; display: flex; flex-direction: column; gap: 18px; }
.testi-tile .quote-mark { font-size: 34px; line-height: 1; }
.testi-tile .testi-quote { font-size: 16.5px; line-height: 1.6; }
.testi-tile .testi-meta { color: var(--faint); margin-top: 4px; }
.testi-note { margin-top: 44px; padding: 26px; border: 1.5px dashed var(--blue-line-2); border-radius: 20px; font-size: 13px; font-weight: 600; color: var(--faint); text-align: center; letter-spacing: .02em; }

/* ----------------------------------------------------------------- paths -- */
.paths-section { padding-top: 76px; padding-bottom: 76px; }
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.path { border-radius: 24px; padding: 38px; display: flex; flex-direction: column; gap: 12px; }
.path--dark { background: var(--ink); color: #fff; }
.path--light { border: 1px solid var(--line); background: #fff; }
.path-kicker { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.path--dark .path-kicker { color: var(--gold); }
.path--light .path-kicker { color: var(--blue); }
.path-title { font: 700 27px/1.1 var(--display); letter-spacing: -.035em; }
.path-body { font-size: 15.5px; line-height: 1.6; font-weight: 500; }
.path--dark .path-body { color: #B4C8D8; }
.path--light .path-body { color: var(--muted); }
.path .btn { margin-top: 14px; align-self: flex-start; }
.path-links { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.btn-outline-blue { border: 1.5px solid var(--blue); color: var(--blue); background: transparent; padding: 14px 24px; font-size: 15px; }
.btn-outline-blue:hover { background: var(--blue-tint-2); color: var(--blue); }
.btn-outline-quiet { border: 1.5px solid var(--line); color: var(--muted); background: transparent; padding: 14px 24px; font-size: 15px; font-weight: 600; }
.btn-outline-quiet:hover { border-color: var(--blue); color: var(--blue); }

/* ------------------------------------------------------------- page head -- */
.page { padding-top: 60px; padding-bottom: 84px; }
.page-head { margin-bottom: 44px; }
.page-head h1 { margin: 0 0 18px; font: 700 54px/1.02 var(--display); letter-spacing: -.045em; }
.page-head p { margin: 0; font-size: 18.5px; line-height: 1.6; color: var(--muted); font-weight: 500; text-wrap: pretty; }

/* ----------------------------------------------------------------- about -- */
.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.about-portrait {
  position: sticky; top: 110px;
  aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--img-bg); box-shadow: 0 14px 40px rgba(32,48,80,.12);
}
.about h1 { margin: 0 0 26px; font: 700 50px/1.02 var(--display); letter-spacing: -.045em; }
.about-p1 { margin: 0 0 18px; font-size: 18.5px; line-height: 1.65; color: var(--ink-2); font-weight: 500; text-wrap: pretty; }
.about-p { margin: 0 0 18px; font-size: 17px; line-height: 1.65; color: var(--muted); font-weight: 500; text-wrap: pretty; }
.about-p:last-of-type { margin-bottom: 36px; }

.cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cred { background: var(--cream); border-radius: 18px; padding: 24px; }
.cred-title { font: 600 16px/1.2 var(--display); letter-spacing: -.02em; margin-bottom: 8px; }
.cred-desc { font-size: 14px; line-height: 1.55; color: var(--muted); font-weight: 500; }

.cert-block { margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--line); }
.cert-title { font: 600 20px/1.2 var(--display); letter-spacing: -.03em; margin-bottom: 8px; }
.cert-body { font-size: 15px; line-height: 1.6; color: var(--muted); font-weight: 500; margin-bottom: 20px; }
.cert-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.cert {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px;
  display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center;
}
.cert-art { width: 100%; height: 104px; display: flex; align-items: center; justify-content: center; padding: 4px; }
.cert-art picture { display: flex; align-items: center; justify-content: center; max-width: 100%; }
.cert-art img { max-width: 100%; max-height: 96px; object-fit: contain; display: block; }
.cert-name { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.cert-note { font-size: 12.5px; line-height: 1.5; color: var(--muted); font-weight: 500; }

/* ------------------------------------------------------------------ blog -- */
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.post { display: flex; flex-direction: column; gap: 14px; }
.post-art {
  aspect-ratio: 16/10; border-radius: var(--radius-card);
  background-image: repeating-linear-gradient(135deg, #E7E2D2 0 12px, #F6F3EA 12px 24px);
  padding: 16px; display: flex; flex-direction: column; justify-content: space-between;
}
.post-tag { align-self: flex-start; padding: 7px 13px; border-radius: 999px; background: #fff; font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 6px 16px rgba(32,48,80,.08); }
.post-slot { font-size: 10px; font-weight: 700; color: #92A6B8; letter-spacing: .12em; text-transform: uppercase; }
.post-date { font-size: 12px; font-weight: 700; color: var(--faint); letter-spacing: .08em; text-transform: uppercase; }
.post-title { font: 600 20px/1.2 var(--display); letter-spacing: -.03em; }
.post-excerpt { font-size: 15px; line-height: 1.6; color: var(--muted); font-weight: 500; }

/* --------------------------------------------------------------- contact -- */
.contact { display: grid; grid-template-columns: .82fr 1.18fr; gap: 52px; align-items: start; }
.contact-side { position: sticky; top: 110px; }
.contact-side h1 { margin: 0 0 20px; font: 700 46px/1.02 var(--display); letter-spacing: -.045em; }
.contact-lede { margin: 0 0 30px; font-size: 17.5px; line-height: 1.65; color: var(--muted); font-weight: 500; text-wrap: pretty; }
.contact-card { background: var(--cream); border-radius: var(--radius-card); padding: 26px; display: flex; flex-direction: column; gap: 20px; }
.contact-rows { display: flex; flex-direction: column; gap: 18px; }
.contact-label { font-size: 11px; font-weight: 700; color: var(--faint); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 7px; }
.contact-phone { font-size: 16.5px; font-weight: 700; white-space: nowrap; }
.contact-email { font-size: 15.5px; font-weight: 700; overflow-wrap: anywhere; }
.contact-social { display: flex; gap: 9px; flex-wrap: wrap; }
.social-btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 999px; font-size: 14px; font-weight: 700; white-space: nowrap; }
.social-btn--wa { background: var(--whatsapp); color: #fff; }
.social-btn--wa:hover { background: var(--whatsapp-dark); color: #fff; }
.social-btn--plain { background: #fff; border: 1.5px solid var(--line); color: var(--ink); }
.social-btn--plain:hover { border-color: var(--blue); color: var(--blue); }
.contact-hours { font-size: 15px; color: var(--ink-2); line-height: 1.55; font-weight: 500; }
.contact-portals { display: flex; flex-direction: column; gap: 7px; align-items: flex-start; }
.contact-portals a { font-size: 15px; font-weight: 600; }

.form-panel { background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: 38px; box-shadow: 0 20px 50px rgba(32,48,80,.07); }
.form-stack { display: flex; flex-direction: column; gap: 22px; }
.form-title { font: 600 22px/1.2 var(--display); letter-spacing: -.03em; }
.prefill {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  border-radius: 14px; background: var(--cream); border-left: 4px solid var(--gold);
  animation: hrFade .3s ease;
}
.prefill-label { font-size: 11px; font-weight: 700; color: #8A6D00; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.prefill-text { font-size: 15px; font-weight: 700; color: var(--ink); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span { font-size: 12.5px; font-weight: 700; color: var(--ink-2); }
.field input, .field select, .field textarea {
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 13px;
  font-size: 15px; font-weight: 500; background: var(--field); color: var(--ink); outline: none;
  transition: border-color .15s, background .15s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); background: #fff; }
.field--full { grid-column: 1 / -1; }

.form-submit-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.btn-submit { padding: 16px 32px; font-size: 15.5px; background: var(--blue); color: #fff; box-shadow: 0 12px 30px rgba(17,112,196,.28); }
.btn-submit:hover { background: var(--blue-dark); color: #fff; }
.form-note { font-size: 13.5px; color: var(--faint); line-height: 1.5; font-weight: 500; }

.sent { display: flex; flex-direction: column; gap: 16px; padding: 22px 0; animation: hrFade .3s ease; }
.sent-check {
  width: 46px; height: 46px; border-radius: 999px; background: #E8F3E4; color: #3E8A31;
  display: flex; align-items: center; justify-content: center; font: 700 20px/1 var(--display);
}
.sent-label { font-size: 11.5px; font-weight: 700; color: var(--blue); letter-spacing: .14em; text-transform: uppercase; }
.sent-title { font: 700 30px/1.08 var(--display); letter-spacing: -.04em; }
.sent-body { font-size: 16px; line-height: 1.65; color: var(--muted); font-weight: 500; max-width: 34em; }
.sent-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }

/* Honeypot. Not `display:none` — some bots skip hidden fields, and some screen
   readers would still reach it, so it is pulled off-screen and marked
   aria-hidden with tabindex -1 instead. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn-submit[disabled] { opacity: .6; cursor: progress; }

/* ------------------------------------------------------------------- faq -- */
.faq-index {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-bottom: 56px;
}
.faq-index-link {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  font-size: 14.5px; font-weight: 600; color: var(--ink);
  transition: border-color .15s, background .15s;
}
.faq-index-link:hover { border-color: var(--blue); background: var(--blue-tint-2); }
.faq-index-n { font: 700 12px/1 var(--display); color: var(--faint); letter-spacing: .04em; }
.faq-index-icon { font-size: 16px; line-height: 1; }
.faq-index-title { flex: 1; }

.faq-cats { display: flex; flex-direction: column; gap: 48px; }
.faq-cat { scroll-margin-top: 100px; }
.faq-cat-title {
  display: flex; align-items: center; gap: 12px; margin: 0 0 18px;
  font: 700 24px/1.2 var(--display); letter-spacing: -.03em;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.faq-item.is-open { border-color: var(--blue-line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--body);
}
.faq-q-text { font-size: 15.5px; font-weight: 700; color: var(--ink); }
.faq-q-icon { flex-shrink: 0; color: var(--blue); transition: transform .2s ease; }
.faq-item.is-open .faq-q-icon { transform: rotate(180deg); }
.faq-a {
  display: grid; grid-template-rows: 0fr; opacity: 0;
  transition: grid-template-rows .2s ease, opacity .2s ease;
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; opacity: 1; }
.faq-a-inner { min-height: 0; overflow: hidden; padding: 0 20px 20px; font-size: 15px; line-height: 1.6; color: var(--muted); font-weight: 500; }

.faq-cta {
  margin-top: 64px; padding: 40px; background: var(--cream); border-radius: var(--radius-lg);
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.faq-cta h2 { margin: 0; font: 700 28px/1.15 var(--display); letter-spacing: -.035em; }
.faq-cta p { margin: 0 0 10px; font-size: 16px; line-height: 1.6; color: var(--muted); font-weight: 500; max-width: 34em; }
.faq-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* Closing commitment note, mirroring the last page of the FAQ document. */
.faq-pledge {
  margin-top: 20px; padding: 44px 40px; border-radius: var(--radius-lg);
  background: var(--ink); color: #fff; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  box-shadow: 0 24px 60px rgba(32,48,80,.24);
}
.faq-pledge-kicker { font-size: 11.5px; font-weight: 700; color: var(--gold); letter-spacing: .14em; text-transform: uppercase; }
.faq-pledge-quote {
  margin: 0; max-width: 30em;
  font: 500 22px/1.45 var(--display); letter-spacing: -.02em; color: #fff; text-wrap: pretty;
}
.faq-pledge-quote::before { content: '\201C'; }
.faq-pledge-quote::after  { content: '\201D'; }
.faq-pledge-brand { margin-top: 6px; font: 700 15px/1 var(--display); letter-spacing: -.01em; }
.faq-pledge-tagline { font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: .06em; }

/* Back to top. Fixed, so its position in the DOM does not matter; it is rendered
   inside the footer only so it gets re-translated with everything else. */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  width: 48px; height: 48px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue); color: #fff; border: none; cursor: pointer;
  box-shadow: 0 10px 28px rgba(17,112,196,.36);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s, background .15s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--blue-dark); }

/* ---------------------------------------------------------------- footer -- */
.site-footer { background: var(--ink); color: #fff; margin-top: auto; }
.site-footer .wrap { padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-brand-row { display: flex; align-items: center; gap: 13px; }
.footer-mark {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 999px;
  background-color: #fff; background-image: url(../img/hriostravel.jpg);
  background-repeat: no-repeat; background-size: 212% auto; background-position: 50% 44%;
}
.footer-brand-name { font: 700 16px/1 var(--display); letter-spacing: -.02em; }
.footer-brand-tag { font-size: 10.5px; font-weight: 600; color: #8FA6BC; letter-spacing: .14em; text-transform: uppercase; line-height: 1; margin-top: 4px; }
.footer-blurb { font-size: 14.5px; line-height: 1.65; color: #A8BCCE; max-width: 26em; font-weight: 500; }
.footer-col-head { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: .14em; text-transform: uppercase; }
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; align-items: flex-start; }
.footer-link {
  font-size: 14.5px; color: #D3E2EE; font-weight: 500; cursor: pointer;
  background: none; border: none; padding: 0; text-align: left; width: fit-content;
  transition: color .15s;
}
.footer-link:hover { color: #fff; }
.footer-phone { font-size: 15px; color: #fff; font-weight: 700; }
.footer-phone:hover { color: var(--gold); }
.footer-email { font-size: 14.5px; color: #D3E2EE; font-weight: 500; word-break: break-all; }
.footer-email:hover { color: #fff; }
.footer-social { display: flex; gap: 8px; margin-top: 4px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,.1);
  color: #D3E2EE; display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.footer-social a.wa:hover { background: var(--whatsapp); color: #fff; }
.footer-social a.ig:hover { background: var(--gold); color: var(--ink); }
.footer-social a.fb:hover { background: var(--blue); color: #fff; }
.footer-hours { font-size: 13.5px; line-height: 1.6; color: #8FA6BC; font-weight: 500; margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px 32px; flex-wrap: wrap;
  font-size: 12.5px; color: #8FA6BC; font-weight: 500;
}
.footer-bottom .legal { text-align: right; }

/* ------------------------------------------------------------------- art -- */
/* Every artwork slot renders a tinted plate; the <img> sits on top and hides
   itself if the file is absent, so a not-yet-built image degrades to the tint. */
.art {
  position: absolute; inset: 0; background: var(--plate, var(--img-bg)); overflow: hidden;
  /* Load-bearing. The <img> below carries z-index:1 so it covers the plate's
     gloss (.art::after). Without a stacking context here that 1 escapes .art and
     outranks .art's own siblings — the scrim, the number badge and the title
     that cards overlay on their artwork all have z-index:auto, so the photograph
     painted straight over them. Any overlay placed beside .art depends on this. */
  isolation: isolate;
}
.art::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(255,255,255,.18), rgba(255,255,255,0) 45%, rgba(32,48,80,.16));
}
.art picture { display: contents; }
.art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 1; }
.art--contain img { object-fit: contain; }
.art.is-pending img { display: none; }

/* ---------------------------------------------------------- responsive --- */
@media (max-width: 1100px) {
  :root { --gut: 28px; }
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 52px; }
  .hero-badge { left: 16px; }
  .quickbar { grid-template-columns: 1fr 1fr; }
  .qb-field + .qb-field { border-left: none; }
  .quickbar .qb-submit { grid-column: 1 / -1; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .quiz-inner { grid-template-columns: 1fr; gap: 34px; padding: 40px; }
  .about { grid-template-columns: 1fr; gap: 34px; }
  .about-portrait { position: static; max-width: 420px; }
  .contact { grid-template-columns: 1fr; gap: 34px; }
  .contact-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .vendor-head { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 999px;
    border: 1.5px solid var(--blue-line); background: #fff; color: var(--ink);
    cursor: pointer;
  }
  .header-right { width: 100%; justify-content: space-between; }
  .nav {
    display: none; order: 3; width: 100%;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 2px; padding-top: 8px;
  }
  .nav.is-open { display: flex; }
  .nav-item { text-align: left; padding: 12px 14px; }
  .trust { grid-template-columns: 1fr; }
  .trust-cell { border-left: none; border-top: 1px solid var(--line); padding: 26px 0; }
  .trust-cell:first-child { border-top: none; }
  .dest-grid, .testi-grid, .post-grid, .cert-grid { grid-template-columns: repeat(2,1fr); }
  .faq-index { grid-template-columns: repeat(2,1fr); }
  .paths { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .services-cta { padding: 34px; }
  .agency-band { padding: 32px 30px; }
  .agency-band h2 { font-size: 24px; }
  .agency-cta { width: 100%; justify-content: center; }
}

@media (max-width: 620px) {
  :root { --gut: 20px; }
  .hero h1 { font-size: 40px; }
  .hero-body { font-size: 17px; }
  .page-head h1, .about h1, .contact-side h1 { font-size: 36px; }
  .section-head h2, .testi-band h2, .quiz-inner h2, .dest-section .section-head h2 { font-size: 30px; }
  .quickbar { grid-template-columns: 1fr; }
  .service-grid, .dest-grid, .testi-grid, .post-grid, .cert-grid, .cred-grid, .form-grid { grid-template-columns: 1fr; }
  .faq-index { grid-template-columns: 1fr; }
  .to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
  .faq-cat-title { font-size: 20px; }
  .faq-cta { padding: 28px; }
  .faq-cta h2 { font-size: 24px; }
  .faq-pledge { padding: 32px 24px; }
  .faq-pledge-quote { font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: flex-start; }
  .footer-bottom .legal { text-align: left; }
  .form-panel { padding: 24px; }
  .quiz-inner { padding: 26px; }
  .testi-card { width: 280px; }
  .hero-badge { position: static; margin-top: -28px; margin-left: 8px; width: fit-content; }
  .btn-primary, .btn-outline { padding: 14px 24px; font-size: 15px; }
}

@media print {
  .site-header, .marquee, .quiz-card, .skip-link, .to-top { display: none; }
  body { background: #fff; }
}
