/* =========================================================================
   Airlines Group Travel — promotional site
   Palette lifted from airlinesgrouptravel.com: navy #0F5C57, sky #14B8A6,
   green CTA #FF6B4A, gold accent #FFC24B.
   ========================================================================= */

:root {
  --brand: #0F5C57;
  --brand-deep: #08403C;
  --brand-ink: #0B2E2B;
  --accent: #14B8A6;
  --accent-light: #5EEAD4;
  --accent-pale: #E6FAF7;
  --cta: #FF6B4A;
  --cta-dark: #E8543A;
  --gold: #FFC24B;
  --ink: #10221F;
  --body: #47575A;
  --muted: #6B8080;
  --line: #DDE9E7;
  --soft: #F2F9F8;
  --white: #fff;
  --danger: #C62F1F;

  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(8, 64, 60, .06), 0 2px 8px rgba(8, 64, 60, .05);
  --shadow-md: 0 4px 12px rgba(8, 64, 60, .08), 0 12px 32px rgba(8, 64, 60, .08);
  --shadow-lg: 0 18px 50px rgba(8, 64, 60, .22);
  --wrap: 1180px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: Rubik, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { color: var(--ink); line-height: 1.18; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3vw, 2.3rem); }
h3 { font-size: 1.12rem; font-weight: 600; }
p { margin: 0 0 1rem; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--accent); }
img, svg { max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
hr.rule { border: 0; border-top: 1px solid var(--line); margin: 1.25rem 0; }

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

/* The hidden attribute must win over any author display rule below
   (.field sets display:flex, .ad-btn sets inline-flex, etc.). */
[hidden] { display: none !important; }


.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wrap--narrow { max-width: 820px; }
.visually-hidden, .hp {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--brand); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }
.ico { width: 1em; height: 1em; fill: currentColor; flex: none; }

/* ------------------------------------------------------------- buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .78rem 1.35rem; border: 1px solid transparent; border-radius: 999px;
  font: inherit; font-weight: 600; font-size: .95rem; cursor: pointer;
  text-align: center; white-space: nowrap; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--lg { padding: .95rem 1.8rem; font-size: 1.02rem; }

.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 6px 16px rgba(15, 92, 87, .28); }
.btn--primary:hover { background: #13706A; color: #fff; box-shadow: 0 10px 24px rgba(15, 92, 87, .34); }

.btn--ghost { background: transparent; color: var(--brand); border-color: #B7D6D1; }
.btn--ghost:hover { background: var(--accent-pale); color: var(--brand); border-color: var(--accent-light); }

.btn--ghost-light { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .22); color: #fff; }

.btn--gold { background: var(--gold); color: #4A3A00; box-shadow: 0 8px 20px rgba(0, 0, 0, .18); }
.btn--gold:hover { background: #FFD076; color: #4A3A00; }

.btn--submit {
  width: 100%; background: var(--cta); color: #fff; font-size: 1.05rem; padding: .95rem 1.5rem;
  box-shadow: 0 8px 20px rgba(255, 107, 74, .32); margin-top: .35rem;
}
.btn--submit:hover { background: var(--cta-dark); }
.btn--submit[disabled] { opacity: .7; cursor: progress; }

.spinner {
  width: 17px; height: 17px; border: 2px solid rgba(255, 255, 255, .45);
  border-top-color: #fff; border-radius: 50%; display: none; animation: spin .7s linear infinite;
}
.btn--submit.is-busy .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.link { font-weight: 600; color: var(--brand); display: inline-flex; gap: .35rem; align-items: center; }
.link:hover span { transform: translateX(3px); }
.link span { transition: transform .15s ease; }

.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-light); margin: 0 0 .6rem;
}
.eyebrow--dark { color: var(--accent); }

/* -------------------------------------------------------------- topbar --- */
.topbar { background: var(--brand-deep); color: rgba(255, 255, 255, .92); font-size: .86rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar__promo { margin: 0; display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; }
.topbar__promo strong { color: var(--gold); }
.tag {
  background: var(--gold); color: #4A3A00; font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: .12rem .5rem; border-radius: 4px;
}
.topbar__call { color: #fff; display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; }
.topbar__call:hover { color: var(--gold); }
.topbar__call strong { letter-spacing: .01em; }

/* -------------------------------------------------------------- header --- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }
.brand { display: flex; align-items: center; flex: none; }
.brand img { display: block; height: 38px; width: auto; }

.nav { display: flex; gap: 1.6rem; margin-left: auto; }
.nav a { color: var(--ink); font-weight: 500; font-size: .95rem; padding: .35rem 0; position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--accent); transition: right .2s ease;
}
.nav a:hover::after { right: 0; }

.site-header__cta { display: flex; gap: .6rem; margin-left: auto; }
.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line);
  background: #fff; border-radius: 10px; cursor: pointer; padding: 11px 10px;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------------------------------------------------------------- hero --- */
.hero { position: relative; color: #fff; padding: 3.5rem 0 4rem; isolation: isolate; }
.hero__sky { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__clouds { width: 100%; height: 100%; }
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 90px; z-index: -1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}
.hero__inner { display: grid; grid-template-columns: 1fr minmax(420px, 480px); gap: 3rem; align-items: start; }
.hero__copy h1 { color: #fff; margin-bottom: 1rem; }
.hl { color: var(--gold); }
.hero__lede { font-size: 1.1rem; color: rgba(255, 255, 255, .88); max-width: 34rem; }
.hero__points { margin: 1.5rem 0; display: grid; gap: .6rem; }
.hero__points li { display: flex; align-items: center; gap: .6rem; font-weight: 500; color: rgba(255, 255, 255, .95); }
.hero__points .ico { color: var(--cta); font-size: 1.15rem; }

.hero__trust { display: flex; gap: 2.2rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .22); flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1.1; }
.stat span { font-size: .85rem; color: rgba(255, 255, 255, .72); }

/* ---------------------------------------------------------- quote form --- */
.quote-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 1.6rem; scroll-margin-top: calc(var(--header-h) + 20px);
}
.quote-card__head h2 { font-size: 1.4rem; margin-bottom: .3rem; }
.quote-card__head p { font-size: .9rem; color: var(--muted); margin-bottom: 1.15rem; }

.segmented { display: grid; grid-template-columns: repeat(3, 1fr); gap: .35rem; background: var(--soft); padding: .3rem; border-radius: 10px; margin-bottom: 1.1rem; }
.segmented label { position: relative; }
.segmented input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.segmented span {
  display: block; text-align: center; padding: .5rem .3rem; border-radius: 8px;
  font-size: .87rem; font-weight: 500; color: var(--body); cursor: pointer; transition: all .15s ease;
}
.segmented input:checked + span { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.segmented input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 2px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.field { display: flex; flex-direction: column; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: .3rem; }
.opt { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .95rem; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 10px; padding: .62rem .75rem; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 58px; }
.field input::placeholder, .field textarea::placeholder { color: #9BAFAC; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #B7D6D1; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(20, 184, 166, .18);
}
.field.is-invalid input, .field.is-invalid select { border-color: var(--danger); background: #FFF7F5; }
.err { display: none; font-size: .78rem; color: var(--danger); margin: .28rem 0 0; }
.field.is-invalid .err { display: block; }

.form-note { font-size: .74rem; color: var(--muted); margin: .7rem 0 0; text-align: center; line-height: 1.5; }
.form-status { margin: .7rem 0 0; font-size: .9rem; font-weight: 500; text-align: center; }
.form-status.is-ok { color: var(--cta-dark); }
.form-status.is-error { color: var(--danger); }

.quote-card.is-sent .quote-form > *:not(.form-status) { display: none; }
.quote-card.is-sent .form-status { font-size: 1.02rem; padding: 1.5rem 0; }

/* ------------------------------------------------------------ airlines --- */
.airlines { padding: 2rem 0 .5rem; }
.airlines__label { text-align: center; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 1rem; }
.airlines__list { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem .6rem; }
.airlines__list li {
  border: 1px solid var(--line); border-radius: 999px; padding: .38rem 1rem;
  font-size: .88rem; font-weight: 500; color: var(--brand-ink); background: var(--soft);
}

/* ------------------------------------------------------------- section --- */
.section { padding: 4.5rem 0; }
.section--soft { background: var(--soft); }
.section--brand { background: linear-gradient(160deg, var(--brand-deep), var(--brand)); color: rgba(255, 255, 255, .9); }
.section__head { max-width: 46rem; margin: 0 auto 2.6rem; text-align: center; }
.section__head--light h2 { color: #fff; }
.section__lede { color: var(--muted); font-size: 1.04rem; margin: 0; }
.section__head--light .section__lede { color: rgba(255, 255, 255, .78); }

/* --------------------------------------------------------------- cards --- */
.cards { display: grid; gap: 1.1rem; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.35rem; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #C4DFDA; }
.card h3 { margin-bottom: .4rem; }
.card p { font-size: .92rem; margin: 0; color: var(--body); }
.card__ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: .95rem;
}
.card__ico svg { width: 24px; height: 24px; }
.card__ico--brand { background: #DCEFEC; fill: var(--brand); }
.card__ico--accent { background: var(--accent-pale); fill: var(--accent); }
.card__ico--cta { background: #FFEDE8; fill: var(--cta-dark); }
.card__ico--gold { background: #FFF4DE; fill: #B07D08; }

/* --------------------------------------------------------------- promo --- */
.promo { background: linear-gradient(110deg, var(--brand) 0%, var(--accent) 130%); color: #fff; padding: 2.6rem 0; }
.promo__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.promo__copy { max-width: 40rem; }
.promo__kicker { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin: 0 0 .35rem; }
.promo h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: .4rem; }
.promo p { color: rgba(255, 255, 255, .9); margin: 0; }
.promo p strong { color: var(--gold); }
.promo__actions { display: flex; gap: .7rem; flex-wrap: wrap; }

/* --------------------------------------------------------------- steps --- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step::before {
  content: ""; position: absolute; top: 22px; left: 46px; right: -1.4rem; height: 2px;
  background: repeating-linear-gradient(to right, #C4DFDA 0 8px, transparent 8px 16px);
}
.step:last-child::before { display: none; }
.step__n {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; background: var(--brand); color: #fff; font-weight: 700; font-size: 1.05rem;
  margin-bottom: 1rem; position: relative; z-index: 1;
}
.step h3 { margin-bottom: .35rem; }
.step p { font-size: .92rem; margin: 0; }

/* --------------------------------------------------------------- deals --- */
.deal { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.deal:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.deal__top { height: 120px; display: flex; align-items: flex-end; padding: 1rem; position: relative; }
.deal__top--a { background: linear-gradient(135deg, #0F5C57, #147A6E); }
.deal__top--b { background: linear-gradient(135deg, #14B8A6, #5EEAD4); }
.deal__top--c { background: linear-gradient(135deg, #0B2E2B, #1E4D5C); }
.deal__badge { background: rgba(255, 255, 255, .95); color: var(--brand); font-size: .76rem; font-weight: 700; padding: .3rem .7rem; border-radius: 999px; }
.deal__body { padding: 1.3rem; }
.deal__body h3 { margin-bottom: .45rem; }
.deal__body p { font-size: .92rem; margin-bottom: .9rem; }

/* -------------------------------------------------------- destinations --- */
.dests { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.dest {
  position: relative; border-radius: var(--radius); min-height: 150px; overflow: hidden;
  display: flex; align-items: flex-end; padding: 1rem 1.1rem; color: #fff;
  transition: transform .2s ease;
}
.dest:hover { transform: translateY(-3px); }
.dest::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(2, 20, 50, .62), rgba(2, 20, 50, 0) 65%); }
.dest span { position: relative; z-index: 1; font-weight: 600; font-size: 1.05rem; }
.dest--1 { background: linear-gradient(140deg, #4b6cb7, #182848); }
.dest--2 { background: linear-gradient(140deg, #3a7bd5, #0B2E2B); }
.dest--3 { background: linear-gradient(140deg, #e8543f, #7b2d26); }
.dest--4 { background: linear-gradient(140deg, #11998e, #0b3a4a); }
.dest--5 { background: linear-gradient(140deg, #f2994a, #7a4118); }
.dest--6 { background: linear-gradient(140deg, #e05c8b, #4a1f5c); }
.dest--7 { background: linear-gradient(140deg, #14B8A6, #0F5C57); }
.dest--8 { background: linear-gradient(140deg, #FF6B4A, #0b5c4a); }

/* -------------------------------------------------------- testimonials --- */
.quote {
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius); padding: 1.4rem 1.3rem; margin: 0;
  display: flex; flex-direction: column; gap: .6rem;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; }
.quote blockquote { margin: 0; }
.quote blockquote p { color: rgba(255, 255, 255, .92); font-size: .93rem; margin: 0; }
.quote figcaption { font-weight: 600; color: #fff; font-size: .92rem; margin-top: auto; padding-top: .5rem; }
.quote figcaption span { display: block; font-weight: 400; font-size: .82rem; color: rgba(255, 255, 255, .62); }

/* ----------------------------------------------------------------- faq --- */
.faq { display: grid; gap: .6rem; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq details[open] { border-color: #C4DFDA; box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1rem 3rem 1rem 1.2rem; position: relative;
  font-weight: 600; color: var(--ink); font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.2rem; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq summary:hover { background: var(--soft); }
.faq__body { padding: 0 1.2rem 1.1rem; }
.faq__body p { margin: 0; font-size: .95rem; }

/* ----------------------------------------------------------------- cta --- */
.cta { background: var(--soft); border-top: 1px solid var(--line); padding: 3.2rem 0; }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta h2 { margin-bottom: .3rem; }
.cta p { margin: 0; color: var(--muted); }
.cta__actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.cta .btn--ghost { background: #fff; }

/* -------------------------------------------------------------- footer --- */
.footer { background: var(--brand-ink); color: rgba(255, 255, 255, .72); padding: 3.2rem 0 1.5rem; font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer h3 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer a { color: rgba(255, 255, 255, .72); }
.footer a:hover { color: var(--accent-light); }
.footer__brand img { height: 38px; width: auto; margin-bottom: 1rem; }
.footer__brand p { font-size: .9rem; line-height: 1.7; }
.footer__phone { display: block; color: #fff !important; font-size: 1.18rem; font-weight: 700; margin-top: .5rem; }
.footer__mail { display: block; margin-top: .2rem; }
.footer__col ul { display: grid; gap: .5rem; }
.footer address { font-style: normal; line-height: 1.8; }
.footer__legal { margin-top: 2.5rem; padding-top: 1.3rem; border-top: 1px solid rgba(255, 255, 255, .12); }
.footer__legal p { font-size: .82rem; margin: 0 0 .6rem; }
.footer__disclaimer { color: rgba(255, 255, 255, .45); font-size: .76rem; line-height: 1.7; margin: 0; }

/* ------------------------------------------------------- mobile call bar --- */
.call-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--cta); color: #fff; font-weight: 600; font-size: .95rem;
  align-items: center; justify-content: center; gap: .5rem; padding: .85rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .18);
}
.call-bar:hover { color: #fff; background: var(--cta-dark); }

/* --------------------------------------------------------- breakpoints --- */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .quote-card { max-width: 560px; }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .step:nth-child(2)::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    flex-direction: column; gap: 0; padding: .5rem 20px 1rem;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .site-header__inner { position: relative; }
  .site-header__cta { margin-left: auto; }
  .site-header__cta .btn--ghost { display: none; }
  .nav-toggle { display: flex; margin-left: .6rem; }
  .site-header__inner { gap: .75rem; }
}

@media (max-width: 720px) {
  .section { padding: 3.2rem 0; }
  .hero { padding: 2.5rem 0 3rem; }
  .topbar__inner { flex-direction: column; align-items: flex-start; gap: .2rem; padding-top: .45rem; padding-bottom: .45rem; }
  .topbar { font-size: .8rem; }
  .cards--3, .cards--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .step::before { display: none; }
  .dests { grid-template-columns: repeat(2, 1fr); }
  .dest { min-height: 116px; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .cta__inner, .promo__inner { flex-direction: column; align-items: flex-start; }
  .cta__actions .btn, .promo__actions .btn { flex: 1 1 auto; }
  .call-bar { display: flex; }
  body { padding-bottom: 56px; }
  .hero__trust { gap: 1.4rem; }
  .stat strong { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .grid-2 { grid-template-columns: 1fr; }
  .quote-card { padding: 1.2rem; }
  .segmented span { font-size: .8rem; padding: .45rem .2rem; }
  .site-header__cta .btn { padding: .55rem .85rem; font-size: .8rem; }
  .brand img { height: 28px; }
  .nav-toggle { width: 40px; height: 40px; padding: 10px 9px; margin-left: .35rem; }
  .topbar { font-size: .74rem; }
  .tag { font-size: .64rem; }
  h1 { font-size: 2.05rem; }
}

@media print {
  .topbar, .site-header, .call-bar, .cta, .promo__actions { display: none; }
  body { color: #000; }
}

/* =========================================================================
   Blog — index, cards and post pages
   ========================================================================= */
.page-hero { position: relative; color: #fff; padding: 3rem 0 3.2rem; isolation: isolate; }
.page-hero__sky { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.page-hero__sky svg { width: 100%; height: 100%; }
.page-hero__inner { max-width: 44rem; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: .6rem; }
.page-hero__lede { color: rgba(255,255,255,.86); font-size: 1.05rem; margin: 0; }

.section__more { text-align: center; margin: 2rem 0 0; }

/* ------------------------------------------------------------ post card --- */
.pcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #C4DFDA; }
.pcard__link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.pcard__link:hover { color: inherit; }
.pcard__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--soft); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pcard__media--blank { background: linear-gradient(135deg, var(--brand), var(--accent)); }
.pcard__body { padding: 1.2rem 1.25rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.pcard__meta { font-size: .8rem; color: var(--muted); margin: 0 0 .4rem; }
.pcard__body h3 { font-size: 1.1rem; margin-bottom: .45rem; }
.pcard__excerpt { font-size: .92rem; color: var(--body); margin: 0 0 1rem; }
.pcard__body .link { margin-top: auto; font-size: .9rem; }

.blog-empty { text-align: center; color: var(--muted); padding: 3rem 1rem; }
.pager { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; }
.pager__count { color: var(--muted); font-size: .9rem; }

/* ----------------------------------------------------------- post page --- */
.post__head { padding: 2.5rem 0 1.25rem; }
.post__crumb { font-size: .9rem; margin-bottom: .8rem; }
.post__head h1 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: .6rem; }
.post__meta { display: flex; flex-wrap: wrap; gap: .5rem; color: var(--muted); font-size: .9rem; margin: 0; }

.post__cover { margin: 0 0 2rem; }
.post__cover img { width: 100%; border-radius: var(--radius); display: block; }
.post__cover figcaption { font-size: .82rem; color: var(--muted); margin-top: .5rem; text-align: center; }

.prose { font-size: 1.05rem; line-height: 1.8; color: var(--body); padding-bottom: 1rem; }
.prose > :first-child { margin-top: 0; }
.prose h2 { font-size: 1.55rem; margin: 2.2rem 0 .7rem; }
.prose h3 { font-size: 1.22rem; margin: 1.8rem 0 .5rem; }
.prose h4 { font-size: 1.05rem; margin: 1.5rem 0 .4rem; color: var(--ink); }
.prose p { margin: 0 0 1.15rem; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--accent); }
.prose ul, .prose ol { margin: 0 0 1.15rem; padding-left: 1.4rem; list-style: revert; }
.prose li { margin-bottom: .45rem; }
.prose blockquote {
  margin: 1.6rem 0; padding: .3rem 0 .3rem 1.25rem;
  border-left: 3px solid var(--accent); color: var(--ink); font-size: 1.08rem;
}
.prose blockquote p { margin: 0; }
.prose img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 1.5rem 0; display: block; }
.prose code { background: var(--accent-pale); color: var(--brand); padding: .12em .4em; border-radius: 4px; font-size: .9em; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.2rem 0; }

.post__cta {
  background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.75rem; margin: 2.5rem 0 3rem;
}
.post__cta h2 { font-size: 1.3rem; margin-bottom: .4rem; }
.post__cta p { margin-bottom: 1.1rem; }
.post__cta-actions { display: flex; gap: .7rem; flex-wrap: wrap; }

@media (max-width: 720px) {
  .pager { flex-direction: column; }
  .post__head { padding: 1.75rem 0 1rem; }
  .prose { font-size: 1rem; }
  .post__cta { padding: 1.35rem; }
}
