/* ──────────────────────────────────────────────────────────────
   KAVAN TRAVEL — UNIFIED DESIGN SYSTEM
   Single stylesheet for index, results, articles, article, checkout.

   TABLE OF CONTENTS
   ─────────────────────────────────────────────────────────────
   1.  Design tokens (CSS custom properties)
   2.  Reset & base
   3.  Typography primitives (.label, h1–h4)
   4.  Layout primitives (.wrap, .section, .sec-pad, .sec-head, .reveal)
   5.  Site chrome
       5.1 Nav (#nav, .nav-logo, .nav-links)
       5.2 Footer (#footer, .footer-*)
       5.3 Reading progress
   6.  Components
       6.1 Button (.btn + modifiers)
       6.2 Form field (.field, input/select/textarea, .ck-field, .search-field, .sc-field, .form-field)
       6.3 Segmented control (.ck-seg)
       6.4 Checkbox (.ck-check)
       6.5 Pill / badge (.pill, .badge, .dest-tag, .news-tag, .ck-pax__note, .trend-badge)
       6.6 Avatar (.avatar, .byline-avatar, .review-avatar)
       6.7 Card primitives
       6.8 Breadcrumbs (.post-crumbs)
       6.9 Stepper (.ck-stepper)
       6.10 Pull quote / blockquote (.pullquote, .post-blockquote, .pick-card__pullquote)
       6.11 Share buttons (.share-btn)
       6.12 Icon helpers (.ico, .icon-box)
   7.  Page-specific styles
       7.1 Landing  (body.landing-page  · #hero, #search, #destinations, #deals, #mahan, #about, #why, #news, #reviews, #faq, #contacts, .season-*)
       7.2 Results  (body.results-page  · .results-header, .search-compact, .results-summary, .price-strip, .filters, .results-sort, .flight-card)
       7.3 Articles (body.articles-page · .editorial-header, .filter-bar, .featured-grid, .feature-mini, .pick-card, .story-card, .spotlight, .longread, .topics, .newsletter-card)
       7.4 Article  (body.article-page  · .post-head, .post-hero, .post-layout, .post-column, .post-stats, .author-card, .related-grid, .aside-card)
       7.5 Checkout (body.checkout-page · .ck-head, .ck-flight, .ck-section, .ck-pax, .ck-grid-form, .ck-agree, .ck-summary, .ck-pay-btn)
       7.6 Ticket   (body.ticket-page   · .tk page, .tk-head, .tk-flight, .tk-table, .tk-fare, .tk-total, .tk-notes, .tk-foot)
   ────────────────────────────────────────────────────────────── */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand */
  --teal:     #1a8a87;
  --teal-d:   #0f6360;
  --teal-l:   #5dd6d2;
  --teal-xl:  #e0f4f3;

  /* Neutrals */
  --dark:     #111d27;
  --dark2:    #1c2f3c;
  --mid:      #4a6070;
  --light:    #f5f4f0;
  --white:    #ffffff;

  /* Editorial palette */
  --cream:    #f5f4f0;
  --cream-2:  #ecede4;
  --paper:    #fbf9f3;
  --line:     #e5e0d4;

  /* Accents */
  --gold:     #e8b84b;
  --coral:    #e07840;
  --purple:   #7a6bbf;

  /* Typography */
  --sans:     'PT Sans', system-ui, -apple-system, sans-serif;
  --narrow:   'PT Sans Narrow', 'PT Sans', sans-serif;
  --serif:    'Instrument Serif', 'Times New Roman', serif;

  /* Layout */
  --wrap-max: 1280px;
  --wrap-pad: 40px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img, svg { display: block; max-width: 100%; }

/* ============================================================
   3. TYPOGRAPHY PRIMITIVES
   ============================================================ */
.label {
  font-family: var(--narrow);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal);
}
.label--light { color: rgba(255,255,255,0.5); }
.label-light  { color: rgba(255,255,255,0.5); } /* legacy alias */

h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700; line-height: 1.15;
}
.sec-sub {
  font-family: var(--narrow);
  font-size: 15px; color: #7a8f9a; margin-top: 8px;
}

/* ============================================================
   4. LAYOUT PRIMITIVES
   ============================================================ */
.section { position: relative; }
.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
}
.sec-pad { padding: 80px 0; }
@media (max-width: 720px) { .sec-pad { padding: 48px 0; } }

.sec-head { margin-bottom: 44px; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-sub { max-width: 560px; margin: 8px auto 0; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   5.1 NAV
   ============================================================
   Default: sticky white bar (results, articles, article, checkout).
   Landing page overrides via body.landing-page #nav { position: absolute, transparent }. */
#nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  background: white;
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid #ebe7d9;
  box-shadow: 0 1px 0 rgba(15,40,55,0.02);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 32px; width: auto; display: block; }
.nav-logo-mark {
  width: 38px; height: 38px; background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 20px; color: white;
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-text strong { display: block; color: var(--dark); font-size: 14px; letter-spacing: 0.06em; }
.nav-logo-text span  { font-family: var(--narrow); font-size: 10px; color: #8a9eaa; letter-spacing: 0.04em; }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-family: var(--narrow);
  font-size: 15px; font-weight: 700;
  color: #4a6070;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.15s;
}
.nav-links a:hover     { color: var(--teal); }
.nav-links a.is-active { color: var(--teal); }
.nav-icon { display: inline-flex; align-items: center; margin-right: 5px; vertical-align: middle; }
.nav-links a .nav-icon svg { stroke: #4a6070; transition: stroke 0.15s; }
.nav-links a:hover .nav-icon svg, .nav-links a.is-active .nav-icon svg { stroke: var(--teal); }
body.landing-page #nav .nav-links a .nav-icon svg { stroke: rgba(255,255,255,0.75); }
body.landing-page #nav .nav-links a:hover .nav-icon svg { stroke: var(--teal-l); }

.nav-right { display: flex; gap: 10px; align-items: center; }
.lang-toggle {
  font-family: var(--narrow); font-size: 11px;
  color: #5a7080; background: white;
  border: 1px solid #d6d0bd; border-radius: 4px;
  padding: 3px 9px; cursor: pointer;
  transition: all 0.15s;
}
.lang-toggle:hover { border-color: var(--teal); color: var(--teal); }
.lang-toggle .lang-option { color: inherit; text-decoration: none; transition: color 0.15s; }
.lang-toggle .lang-option:hover { color: var(--teal); }
.lang-toggle .lang-option.lang-active { color: var(--teal); font-weight: 700; pointer-events: none; }

.nav-lang-mobile { display: none; }
@media (max-width: 991.98px) {
  .nav-lang-mobile { display: flex; align-items: center; margin-left: auto; margin-right: 12px; }
  .nav-right .lang-toggle { display: none; }
}
@media (max-width: 720px) {
  #nav { padding: 12px 20px; }
  .nav-links { flex-direction: column; gap: 0; width: 100%; margin-top: 8px; }
  .nav-links .nav-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links .nav-link { display: flex; align-items: center; padding: 12px 4px; font-size: 15px; }
  #kvNavMenu.show .nav-links { display: flex; }
  #kvNavMenu.show .nav-right { padding: 12px 4px 4px; }
  .nav-right { width: 100%; }
}

/* ============================================================
   5.2 FOOTER
   ============================================================ */
#footer {
  background: linear-gradient(180deg, #0b1520 0%, #050a10 100%);
  color: rgba(255,255,255,0.6);
  padding: 56px 40px 24px;
  position: relative; overflow: hidden;
}
#footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(26,138,135,0.10), transparent 40%),
    radial-gradient(ellipse at 100% 100%, rgba(232,184,75,0.06), transparent 40%);
}
.footer-grid {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-col--brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  #footer { padding: 40px 20px 20px; }
}
.footer-col h4 {
  font-family: var(--sans); font-weight: 700; color: white;
  font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a {
  font-family: var(--narrow); font-size: 14px;
  color: rgba(255,255,255,0.55); text-decoration: none;
  transition: color 0.15s, transform 0.15s;
  display: inline-block;
}
.footer-col a:hover { color: var(--teal-l); transform: translateX(2px); }
.footer-col a .arrow { color: var(--teal); margin-left: 4px; opacity: 0; transition: opacity 0.15s; }
.footer-col a:hover .arrow { opacity: 1; }

.footer-brand-row,
.footer-brand-link {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-brand-img {
  height: 44px; width: auto; display: block;
  filter: brightness(1.18) saturate(0.92);
}
.footer-brand-mark {
  width: 38px; height: 38px; background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; color: white; flex-shrink: 0;
}
.footer-brand-name { font-weight: 700; font-size: 16px; color: white; letter-spacing: 0.04em; }
.footer-brand-name small {
  display: block; font-family: var(--narrow); font-weight: 400;
  font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.02em;
  text-transform: uppercase; margin-top: 2px;
}
.footer-desc {
  font-family: var(--narrow); font-size: 14px;
  color: rgba(255,255,255,0.5); line-height: 1.55;
  max-width: 360px; margin: 0 0 18px;
}
.footer-cert {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(26,138,135,0.16); border: 1px solid rgba(93,214,210,0.3);
  color: var(--teal-l); font-family: var(--narrow); font-size: 10px;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 12px;
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: all 0.2s;
}
.footer-social a:hover { background: var(--teal); border-color: var(--teal); color: white; transform: translateY(-2px); }

.footer-col--contact .contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-col--contact .contact-item .ico { color: var(--teal-l); margin-top: 1px; flex-shrink: 0; }
.footer-col--contact .contact-label {
  font-family: var(--narrow); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: rgba(255,255,255,0.3); display: block;
}
.footer-col--contact .contact-value {
  font-size: 14px; color: rgba(255,255,255,0.78);
  font-family: var(--sans); line-height: 1.4;
}
.footer-col--contact .contact-value a { color: inherit; font-family: inherit; }
.footer-col--contact .contact-value a:hover { color: var(--teal-l); transform: none; }

.footer-newsletter { margin-top: 18px; }
.footer-newsletter form { display: flex; gap: 6px; margin-top: 8px; }
.footer-newsletter input {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: white; font-family: var(--sans); font-size: 13px;
  padding: 8px 12px; border-radius: 6px;
  outline: none; transition: all 0.15s;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter input:focus { background: rgba(255,255,255,0.1); border-color: var(--teal); }
.footer-newsletter button {
  background: var(--teal); color: white; border: none;
  font-family: var(--sans); font-weight: 700; font-size: 13px;
  padding: 8px 14px; border-radius: 6px; cursor: pointer;
  transition: background 0.15s; white-space: nowrap;
}
.footer-newsletter button:hover { background: var(--teal-d); }
.footer-newsletter-note { font-family: var(--narrow); font-size: 10px; color: rgba(255,255,255,0.3); margin-top: 6px; line-height: 1.4; }

.footer-bottom {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom-left {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  font-family: var(--narrow); font-size: 11px; color: rgba(255,255,255,0.4);
}
.footer-bottom-left .dot { color: rgba(255,255,255,0.18); }
.footer-bottom-right { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.footer-payment {
  background: #fff;
  border-radius: 4px;
  padding: 3px 7px;
  display: inline-flex;
  align-items: center;
  height: 22px;
  line-height: 1;
}
.footer-payment svg { display: block; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a {
  font-family: var(--narrow); font-size: 14px;
  color: rgba(255,255,255,0.4); text-decoration: none;
  transition: color 0.15s;
}
.footer-legal a:hover { color: var(--teal-l); }

/* ============================================================
   5.3 READING PROGRESS
   ============================================================ */
.reading-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--teal) 0%, var(--gold) 100%);
  z-index: 100; transition: width 0.05s linear;
}

/* ============================================================
   6. COMPONENTS
   ============================================================ */

/* ─── 6.1 Button ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal); color: white;
  font-family: var(--sans); font-weight: 700;
  font-size: 14px; padding: 11px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--teal);
  cursor: pointer; text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s, color 0.15s, border-color 0.15s;
}
.btn:hover { background: var(--teal-d); border-color: var(--teal-d); transform: translateY(-1px); color: white; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: white; }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--teal);
  color: var(--teal);
}
.btn-outline:hover { background: var(--teal-xl); color: var(--teal-d); border-color: var(--teal-d); }


/* ─── 6.2 Form field ──────────────────────────────────────────
   Three variants share the same vocabulary:
     .ck-field      — checkout / contact-form fields (white inputs)
     .search-field  — landing search card (light-grey inputs)
     .sc-field      — results compact search (small inputs)
     .form-field    — landing contacts dark form
   The shared rules below give them consistent focus state, padding, etc.
   Page-specific variants override colors as needed. */

/* Base shared rules — applies to all field flavors */
.ck-field input, .ck-field select, .ck-field textarea,
.search-field input, .search-field select,
.sc-field input, .sc-field select,
.form-field input, .form-field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.ck-field input::placeholder, .ck-field textarea::placeholder,
.search-field input::placeholder, .sc-field input::placeholder {
  color: #b6bfc4;
}
.ck-field input:focus, .ck-field select:focus, .ck-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,138,135,0.12);
  background: white;
}

/* Field labels (one canonical style for all variants) */
.ck-field label,
.search-field label,
.sc-field label,
.form-field label {
  display: block;
  font-family: var(--narrow);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5a7080;
  margin-bottom: 6px;
}
.ck-field label {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 6px;
}
.ck-field__hint {
  font-family: var(--narrow);
  font-size: 10px; color: #aab4bb;
  text-transform: none; letter-spacing: 0.04em;
  font-style: italic;
}

/* Checkout field */
.ck-field {
  min-width: 0;
}
.ck-field input, .ck-field select, .ck-field textarea {
  color: var(--dark);
  background: white;
  border: 1px solid #e0e6ea;
  border-radius: 7px;
  padding: 11px 12px;
  min-height: 42px;
}
.ck-field textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}
.ck-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'><path d='M1 1l5 5 5-5' stroke='%238a9eaa' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

/* Date triplet inside checkout field */
.ck-date {
  display: grid;
  grid-template-columns: 60px 60px 1fr;
  gap: 6px;
}
.ck-date input { text-align: center; padding: 11px 6px; }

/* Grid helpers for checkout form */
.ck-grid-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ck-col-2 { grid-column: span 2; }
.ck-full  { grid-column: 1 / -1; }
@media (max-width: 760px) {
  .ck-grid-form { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ck-grid-form { grid-template-columns: 1fr; }
  .ck-grid-form .ck-col-2 { grid-column: span 1; }
  .ck-field--doc-num { max-width: none; width: 100%; }
}


/* ─── 6.3 Segmented control (.ck-seg) ───────────────────────── */
.ck-field--seg .ck-seg {
  display: flex; gap: 0;
  background: white;
  border: 1px solid #e0e6ea;
  border-radius: 7px;
  overflow: hidden;
  min-height: 42px;
}
.ck-seg button {
  flex: 1;
  background: transparent; border: none;
  font-family: var(--sans);
  font-size: 14px; font-weight: 700;
  color: #7a8f9a;
  padding: 10px 8px;
  cursor: pointer;
  transition: all 0.15s;
}
.ck-seg button + button { border-left: 1px solid #e0e6ea; }
.ck-seg button:hover:not(.is-active) { color: var(--dark); background: #f9faf8; }
.ck-seg button.is-active { background: var(--teal); color: white; }


/* ─── 6.4 Checkbox (.ck-check) ─────────────────────────────── */
.ck-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--dark);
  cursor: pointer;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  user-select: none;
}
.ck-check input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 22px; height: 22px;
  min-width: 22px; max-width: 22px;
  min-height: 22px; max-height: 22px;
  border: 1.5px solid #c8d0d6;
  border-radius: 4px;
  background: white;
  cursor: pointer; flex-shrink: 0;
  margin: 0; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  vertical-align: top;
  line-height: 1; font-size: 0;
  transition: all 0.15s;
  position: relative;
  box-shadow: 0 1px 0 rgba(15,40,55,0.04) inset;
  box-sizing: border-box;
}
.ck-check input[type="checkbox"]:hover { border-color: var(--teal); }
.ck-check input[type="checkbox"]:focus-visible {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,138,135,0.18);
}
.ck-check input[type="checkbox"]:checked {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: none;
}
.ck-check input[type="checkbox"]:checked::after {
  content: "";
  width: 6px; height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.ck-check span { flex: 1; }
.ck-check a { color: var(--teal-d); border-bottom: 1px solid rgba(15,99,96,0.25); }
.ck-check a:hover { background: var(--teal-xl); }
.ck-check--lg span { font-size: 14px; line-height: 1.5; }


/* ─── 6.5 Pill / badge ─────────────────────────────────────── */
/* generic pill */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--dark);
  font-family: var(--narrow); font-weight: 700;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 14px;
}
.pill--teal { background: var(--teal); color: white; }
.pill--dark { background: var(--dark); color: white; }

/* legacy pill-like badges */
.dest-tag {
  display: inline-block; background: var(--teal); color: white;
  font-family: var(--narrow); font-size: 10px; letter-spacing: 0.06em;
  padding: 2px 9px; border-radius: 10px; margin-bottom: 8px;
  text-transform: uppercase;
}
.news-tag {
  background: rgba(26,138,135,0.3); color: var(--teal-l);
  border: 1px solid rgba(26,138,135,0.4);
  font-family: var(--narrow); font-size: 10px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 2px 9px; border-radius: 10px;
  display: inline-block; margin-bottom: 8px;
}
.trend-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--coral); color: white;
  font-family: var(--narrow); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; font-weight: 700;
}
.trend-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: white; box-shadow: 0 0 0 4px rgba(255,255,255,0.3);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}


/* ─── 6.6 Avatar ───────────────────────────────────────────── */
.byline-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal-xl); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.byline-avatar.is-photo { background-size: cover; background-position: center; color: transparent; }
.byline-avatar--lg {
  width: 44px; height: 44px;
  background: var(--teal); color: white;
  font-size: 14px; letter-spacing: 0.04em;
}

.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}


/* ─── 6.7 Card primitives ──────────────────────────────────── */
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
}


/* ─── 6.8 Breadcrumbs ──────────────────────────────────────── */
.post-crumbs {
  font-family: var(--narrow);
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #7a8f9a; margin-bottom: 28px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.post-crumbs a { color: #7a8f9a; transition: color 0.15s; }
.post-crumbs a:hover { color: var(--teal); }
.post-crumbs__sep { opacity: 0.5; }


/* ─── 6.9 Stepper (.ck-stepper) ────────────────────────────── */
.ck-stepper {
  display: flex; gap: 6px; align-items: center;
  list-style: none; flex-wrap: wrap;
  margin: 0 0 28px;
}
.ck-stepper li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 6px;
  border-radius: 999px;
  font-family: var(--narrow);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: #9aa3a8;
  background: transparent;
}
.ck-stepper li + li::before {
  content: ""; display: inline-block;
  width: 18px; height: 2px;
  background: #d9d4c2; margin-right: 2px;
}
.ck-step__num {
  width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #e5e0d4; color: #8a9097;
  font-size: 13px; font-weight: 700;
}
.ck-stepper li.is-done .ck-step__num { background: var(--teal); color: white; }
.ck-stepper li.is-done { color: var(--teal-d); }
.ck-stepper li.is-active {
  background: white; color: var(--dark);
  box-shadow: 0 1px 0 #ebe7d9, 0 4px 12px rgba(15,40,55,0.06);
}
.ck-stepper li.is-active .ck-step__num { background: var(--dark); color: white; }
@media (max-width: 760px) {
  .ck-stepper { gap: 4px; }
  .ck-stepper li { padding: 6px 10px 6px 4px; font-size: 11px; }
  .ck-stepper .ck-step__lbl { display: none; }
  .ck-stepper li.is-active .ck-step__lbl { display: inline; }
  .ck-stepper li + li::before { width: 10px; }
}


/* ─── 6.10 Pull quote / blockquote ─────────────────────────── */
.pullquote {
  font-family: var(--serif);
  font-style: italic; font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.3; color: var(--dark);
  padding: 8px 0 8px 28px;
  border-left: 3px solid var(--teal);
  margin: 36px 0;
  position: relative;
}
.pullquote cite {
  display: block;
  margin-top: 18px;
  font-family: var(--narrow); font-style: normal;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--teal-d);
}

.post-blockquote {
  background: white;
  border-top: 3px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.4;
  font-style: italic;
  color: var(--dark2);
  padding: 32px 32px 28px;
  margin: 40px 0;
  position: relative;
  box-shadow: 0 4px 18px rgba(15,40,55,0.06);
}
.post-blockquote::before {
  content: "\201C";
  position: absolute; top: -10px; left: 24px;
  font-family: var(--serif); font-size: 72px;
  color: var(--gold); line-height: 1;
}
.post-blockquote cite {
  display: block; margin-top: 18px;
  font-family: var(--narrow); font-style: normal;
  font-size: 14px; letter-spacing: 0.04em;
  color: var(--dark); font-weight: 700; line-height: 1.4;
}
.post-blockquote cite span {
  display: block; font-weight: 400; font-size: 13px;
  color: #7a8f9a; margin-top: 2px;
  text-transform: uppercase; letter-spacing: 0.06em;
}


/* ─── 6.11 Share buttons ───────────────────────────────────── */
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; color: var(--dark2);
  border: 1px solid var(--line);
  font-family: var(--narrow); font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 14px; border-radius: 20px;
  cursor: pointer; transition: all 0.15s;
}
.share-btn:hover { background: var(--teal); color: white; border-color: var(--teal); }
.share-btn svg { flex-shrink: 0; }


/* ─── 6.12 Icon helpers ────────────────────────────────────── */
.ico {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ico svg { display: block; }
.icon-box {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   7.1 PAGE: LANDING (index.html)
   ============================================================
   Body class: body.landing-page
   Nav: absolute over hero (override default)
   Sections: #hero, #search, #destinations, #deals, #mahan, #about,
             #why, #news, #reviews, #faq, #contacts, .season-* */

body.landing-page { background: #fff; color: #1c2730; }

/* Landing nav override: floats over hero */
body.landing-page #nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 40px;
  background: transparent;
  border-bottom: none; box-shadow: none;
}
body.landing-page #nav .nav-logo-img {
  filter: brightness(1.18) saturate(0.92);
}
body.landing-page #nav .nav-logo-text strong { color: white; font-size: 14px; letter-spacing: 0.05em; }
body.landing-page #nav .nav-logo-text span   { font-family: var(--narrow); font-size: 9px; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; }
body.landing-page #nav .nav-links a            { color: rgba(255,255,255,0.82); }
body.landing-page #nav .nav-links a:hover       { color: var(--teal-l); }
body.landing-page #nav .lang-toggle             { background: transparent; color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }
body.landing-page #nav .lang-toggle:hover       { color: var(--teal-l); border-color: rgba(255,255,255,0.5); }

/* Landing wrap = narrower */
body.landing-page .wrap { max-width: 1200px; }

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('img/1436491865332-7a61a109cc05.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,18,28,0.78) 0%, rgba(6,18,28,0.30) 50%, rgba(6,18,28,0.85) 100%),
    linear-gradient(100deg, rgba(6,18,28,0.55) 0%, transparent 55%);
}
.hero-content {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 700px;
  padding: 160px 80px 140px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(26,138,135,0.28); border: 1px solid rgba(93,214,210,0.45);
  color: var(--teal-l); font-family: var(--narrow); font-size: 11px;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 20px; margin-bottom: 24px;
  width: fit-content; backdrop-filter: blur(4px);
}
.hero-title {
  font-size: 54px; font-weight: 700; color: white; line-height: 1.06;
  margin-bottom: 18px; text-shadow: 0 2px 28px rgba(0,0,0,0.45);
  text-wrap: balance;
}
.hero-title span { color: var(--teal-l); }
.hero-sub {
  font-family: var(--narrow); font-size: 16px;
  color: rgba(255,255,255,0.58); line-height: 1.9; margin-bottom: 36px;
}
.hero-stats {
  display: flex; gap: 32px; margin-bottom: 40px;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-n { font-weight: 700; font-size: 24px; color: var(--teal-l); }
.hero-stat-l { font-family: var(--narrow); font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.hero-btns { display: flex; gap: 10px; }
.hero-trust {
  position: absolute; top: 90px; right: 60px; z-index: 10;
  display: flex; flex-direction: column; gap: 8px;
}
.hero-trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 24px;
  padding: 6px 14px;
}
.hero-trust-icon { font-size: 14px; }
.hero-trust-text { font-family: var(--narrow); font-size: 13px; color: rgba(255,255,255,0.85); }

.hero-dest-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(5,16,26,0.75);
  backdrop-filter: blur(14px);
}
.hero-dest-item {
  padding: 16px 18px; cursor: pointer;
  transition: background 0.2s;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.hero-dest-item:last-child { border-right: none; }
.hero-dest-item:hover { background: rgba(26,138,135,0.38); }
.hero-dest-city { font-weight: 700; font-size: 14px; color: white; }
.hero-dest-country { font-family: var(--narrow); font-size: 10px; color: rgba(255,255,255,0.42); margin-top: 2px; }
.hero-dest-price { font-weight: 700; font-size: 14px; color: var(--teal-l); margin-top: 6px; }

/* ── SEARCH FORM (landing) ────────────────────────────────── */
#search {
  background: transparent; position: relative; z-index: 40;
  margin-top: -120px; padding: 0 0 60px;
}
.search-card { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.search-inner {
  background: white; border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.9);
}
.search-tabs-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 20px; flex-wrap: wrap;
}
.search-tabs { display: flex; gap: 0; margin-bottom: 0; }
.search-tabs-row .pax-field { flex: 0 0 auto; min-width: 180px; }
@media (max-width: 720px) {
  .search-tabs-row { flex-direction: column; align-items: stretch; }
  .search-tabs-row .pax-field { max-width: none !important; }
}
.search-tab {
  padding: 8px 22px; font-size: 14px;
  font-family: var(--narrow); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; border: none; background: transparent;
  color: #aab8c2;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  position: relative;
}
.search-tab.active { color: var(--teal); border-bottom-color: var(--teal); }
.search-tab:not(.active):hover { color: #4a7080; border-bottom-color: #c8d8e0; }
.search-tab + .search-tab::before {
  content: '·';
  position: absolute; left: -2px; top: 50%; transform: translateY(-50%);
  color: #d0dce4; font-size: 16px; pointer-events: none;
}
.search-row { display: flex; gap: 10px; align-items: flex-end; }
.search-field { flex: 1; min-width: 0; }
.search-field input, .search-field select {
  background: #f6f8fa; border: 1.5px solid #e0e8ec; border-radius: 8px;
  padding: 11px 14px; color: #1c2730;
  -webkit-appearance: none; appearance: none;
}
.search-field input:focus, .search-field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,138,135,0.1);
  background: white;
}
.search-divider {
  width: 1px; height: 44px; background: #e0e8ec;
  align-self: flex-end; margin-bottom: 2px; flex-shrink: 0;
}
.search-submit { flex-shrink: 0; }
.search-legs { display: flex; flex-direction: column; gap: 12px; }
.search-leg-extra { display: flex; flex-direction: column; gap: 8px; animation: legSlideIn 0.25s ease-out; }
@keyframes legSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.search-leg-foot { display: flex; justify-content: flex-end; padding-right: 2px; }
.search-remove-leg {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: none; padding: 4px 2px;
  font-family: var(--narrow); font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #8a9eaa; cursor: pointer; transition: color 0.15s;
}
.search-remove-leg svg { opacity: 0.7; transition: opacity 0.15s; }
.search-remove-leg:hover { color: var(--coral); }
.search-remove-leg:hover svg { opacity: 1; }
.search-multi-extras { margin-top: 14px; }
.search-add-leg {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 1px dashed var(--teal); color: var(--teal);
  font-family: var(--sans); font-weight: 700; font-size: 14px;
  padding: 8px 14px; border-radius: 6px; cursor: pointer;
  transition: all 0.15s;
}
.search-add-leg:hover { background: var(--teal-xl); border-style: solid; }

/* Passengers dropdown */
.pax-field { position: relative; }
.pax-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: #fafbfc; border: 1px solid #e0e8ec; border-radius: 6px;
  padding: 9px 12px; min-height: 44px; cursor: pointer;
  font-family: var(--sans); font-size: 14px; color: #1c2730;
  text-align: left; transition: all 0.15s;
}
.pax-trigger:hover { background: white; border-color: #c8d8e0; }
.pax-trigger[aria-expanded="true"] { background: white; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,138,135,0.1); }
.pax-caret { color: #8a9eaa; display: flex; align-items: center; transition: transform 0.2s; }
.pax-trigger[aria-expanded="true"] .pax-caret { transform: rotate(180deg); color: var(--teal); }
.pax-panel {
  position: absolute; top: calc(100% + 6px); right: 0; z-index: 50;
  width: 280px; background: white; border-radius: 10px;
  border: 1px solid #e0e8ec;
  box-shadow: 0 12px 36px rgba(17,29,39,0.18), 0 2px 8px rgba(17,29,39,0.06);
  padding: 14px; animation: paxPanelIn 0.18s ease-out;
}
@keyframes paxPanelIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pax-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f0f2f5; }
.pax-row:last-of-type { border-bottom: none; }
.pax-row-title { font-weight: 700; font-size: 14px; color: #1c2730; }
.pax-row-hint { font-family: var(--narrow); font-size: 11px; color: #8a9eaa; margin-top: 1px; }
.pax-stepper { display: flex; align-items: center; gap: 10px; }
.pax-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: white; border: 1.5px solid var(--teal); color: var(--teal);
  font-size: 18px; line-height: 1; font-weight: 400;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0; transition: all 0.15s;
}
.pax-btn:hover:not(:disabled) { background: var(--teal); color: white; }
.pax-btn:disabled { opacity: 0.3; cursor: not-allowed; border-color: #c8d8e0; color: #c8d8e0; }
.pax-count { min-width: 22px; text-align: center; font-weight: 700; font-size: 14px; color: #1c2730; }
.pax-footer { margin-top: 10px; display: flex; justify-content: flex-end; }
.pax-done {
  background: var(--teal); color: white; border: none;
  font-family: var(--sans); font-weight: 700; font-size: 14px;
  padding: 8px 18px; border-radius: 6px; cursor: pointer;
  transition: background 0.15s;
}
.pax-done:hover { background: var(--teal-d); }

/* Date trigger + calendar */
.date-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 8px; background: #fafbfc; border: 1px solid #e0e8ec; border-radius: 6px;
  padding: 9px 12px; min-height: 44px; cursor: pointer;
  font-family: var(--sans); font-size: 14px; color: #1c2730;
  text-align: left; transition: all 0.15s; white-space: nowrap; overflow: hidden;
}
.date-trigger:hover { background: white; border-color: #c8d8e0; }
.date-trigger[aria-expanded="true"] { background: white; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,138,135,0.1); }
.date-trigger-text { overflow: hidden; text-overflow: ellipsis; }
.date-trigger-text[data-empty]:not([data-filled]) { color: #8a9eaa; }
.date-caret { color: #8a9eaa; display: flex; align-items: center; flex-shrink: 0; }
.date-trigger[aria-expanded="true"] .date-caret { color: var(--teal); }

.cal-popover {
  position: absolute; z-index: 60;
  background: white; border-radius: 12px;
  border: 1px solid #e0e8ec;
  box-shadow: 0 16px 44px rgba(17,29,39,0.18), 0 2px 8px rgba(17,29,39,0.06);
  padding: 16px; animation: paxPanelIn 0.18s ease-out;
  user-select: none;
}
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-nav {
  width: 32px; height: 32px; border-radius: 50%;
  background: white; border: 1px solid #e0e8ec; color: #1c2730;
  font-size: 18px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.cal-nav:hover { background: var(--teal); color: white; border-color: var(--teal); }
.cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.cal-months { display: flex; gap: 20px; }
.cal-month { min-width: 252px; }
.cal-month-title {
  text-align: center; font-weight: 700; font-size: 14px; color: #1c2730;
  margin-bottom: 10px; text-transform: capitalize;
}
.cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
  font-family: var(--narrow); font-size: 11px; color: #8a9eaa;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px;
}
.cal-weekdays div { text-align: center; padding: 6px 0; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #1c2730; border: none; background: transparent;
  cursor: pointer; border-radius: 6px; padding: 0;
  transition: background 0.12s, color 0.12s;
  position: relative;
}
.cal-day:hover:not(:disabled):not(.is-other):not(.is-in-range) { background: var(--teal-xl); }
.cal-day:disabled, .cal-day.is-other { color: #c8d8e0; cursor: default; }
.cal-day.is-today { font-weight: 700; }
.cal-day.is-today::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--teal);
}
.cal-day.is-selected, .cal-day.is-range-start, .cal-day.is-range-end {
  background: var(--teal); color: white; font-weight: 700;
}
.cal-day.is-selected.is-today::after,
.cal-day.is-range-start.is-today::after,
.cal-day.is-range-end.is-today::after { background: white; }
.cal-day.is-in-range { background: var(--teal-xl); color: var(--teal-d); border-radius: 0; }
.cal-day.is-range-start { border-radius: 6px 0 0 6px; }
.cal-day.is-range-end   { border-radius: 0 6px 6px 0; }
.cal-day.is-range-start.is-range-end { border-radius: 6px; }
.cal-foot {
  margin-top: 12px; padding-top: 12px; border-top: 1px solid #f0f2f5;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--narrow); font-size: 13px; color: #8a9eaa;
}
.cal-foot .cal-summary { color: #1c2730; }
.cal-foot .cal-summary strong { color: var(--teal); font-family: var(--sans); font-weight: 700; }
.cal-clear {
  background: transparent; border: none; color: #8a9eaa;
  font-family: var(--sans); font-size: 14px; cursor: pointer; padding: 4px 8px;
  border-radius: 4px;
}
.cal-clear:hover { color: var(--coral); background: #fbe5dc; }
@media (max-width: 720px) {
  .cal-months { flex-direction: column; gap: 16px; }
  .cal-month { min-width: 240px; }
  .cal-popover { left: 12px !important; right: 12px !important; max-width: calc(100vw - 24px); }
}
.search-submit .btn {
  padding: 13px 28px; font-size: 14px; border-radius: 8px;
  box-shadow: 0 4px 14px rgba(26,138,135,0.35);
}
.search-submit-row {
  display: flex; justify-content: flex-end; margin-top: 18px;
  padding-top: 18px; border-top: 1px solid #f0f2f5;
}
.search-submit-btn {
  padding: 14px 36px; font-size: 15px; border-radius: 8px;
  box-shadow: 0 4px 14px rgba(26,138,135,0.35);
  min-width: 200px; justify-content: center;
}
.search-submit-btn:disabled { opacity: .55; cursor: not-allowed; box-shadow: none; }
.search-submit-hint {
  margin-right: auto; align-self: center;
  font-family: var(--narrow); font-size: 13px; color: #8a9eaa;
}
@media (max-width: 640px) {
  .search-submit-row { justify-content: stretch; }
  .search-submit-btn { width: 100%; }
}
.search-options-row {
  display: flex; gap: 14px; align-items: flex-end; margin-top: 16px;
  flex-wrap: wrap;
}
.search-options-row .search-field { flex: 0 1 auto; }
.class-field select {
  width: 100%; min-height: 44px;
  background: #fafbfc; border: 1px solid #e0e8ec; border-radius: 6px;
  padding: 9px 12px; font-family: var(--sans); font-size: 14px; color: #1c2730;
  cursor: pointer; transition: all 0.15s;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a9eaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px;
}
.class-field select:hover { background-color: white; border-color: #c8d8e0; }
.class-field select:focus { outline: 0; background-color: white; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,138,135,0.1); }
@media (max-width: 640px) {
  .search-options-row { flex-direction: column; align-items: stretch; }
  .search-options-row .search-field { max-width: none !important; }
}

/* ── DESTINATIONS ──────────────────────────────────────────── */
#destinations { background: white; }
.dest-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dest-card {
  border-radius: 12px; overflow: hidden; position: relative;
  background: #ccc; cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.14); }
.dest-small-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 40%, rgba(0,0,0,0.05) 100%);
}
.dest-img-ph {
  width: 100%; object-fit: cover;
  background: linear-gradient(135deg, #1a4050, #1a8a87);
  display: flex; align-items: center; justify-content: center;
}
.dest-big .dest-img-ph { height: 380px; }
.dest-small-grid .dest-img-ph { height: 180px; }
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 20px; z-index: 1; }
.dest-big .dest-info { padding: 24px 28px; }
.dest-city { font-weight: 700; color: white; }
.dest-big .dest-city { font-size: 26px; }
.dest-small-grid .dest-city { font-size: 16px; }
.dest-country { font-family: var(--narrow); color: rgba(255,255,255,0.65); font-size: 13px; margin-top: 2px; }
.dest-price { font-weight: 700; color: var(--teal-l); margin-top: 10px; }
.dest-big .dest-price { font-size: 22px; }
.dest-small-grid .dest-price { font-size: 15px; }
.dest-img-label { font-family: var(--narrow); font-size: 11px; color: rgba(255,255,255,0.35); text-align: center; }

/* ── DEALS ─────────────────────────────────────────────────── */
#deals {
  background-color: #eef0eb;
  background-image:
    repeating-linear-gradient(-55deg, transparent, transparent 32px, rgba(26,138,135,0.06) 32px, rgba(26,138,135,0.06) 33px),
    repeating-linear-gradient(35deg,  transparent, transparent 32px, rgba(26,138,135,0.03) 32px, rgba(26,138,135,0.03) 33px);
  background-attachment: fixed;
}
.deal-row {
  display: flex; align-items: center; justify-content: space-between;
  background: white; border-radius: 10px; padding: 16px 22px;
  margin-bottom: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
  border-left: 4px solid var(--teal);
}
.deal-row:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateX(4px); }
.deal-icon {
  width: 44px; height: 44px; background: var(--teal-xl); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.deal-from-to { font-weight: 700; font-size: 15px; }
.deal-meta { font-family: var(--narrow); font-size: 13px; color: #aaa; margin-top: 2px; }
.deal-save {
  background: #e8f7f0; color: #0a7a60; font-weight: 700;
  font-size: 13px; padding: 4px 11px; border-radius: 20px;
}
.deal-price { font-weight: 700; font-size: 22px; color: var(--teal); }

/* ── MAHAN AIR ─────────────────────────────────────────────── */
#mahan {
  background-color: #0c1a24;
  background-image:
    radial-gradient(ellipse at 80% 10%, rgba(26,138,135,0.28) 0%, transparent 45%),
    radial-gradient(ellipse at 5%  85%, rgba(26,138,135,0.16) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(10,20,30,0.6)    0%, transparent 80%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a8a87' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.mahan-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal); color: white;
  font-family: var(--narrow); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 12px; margin-bottom: 12px;
}
.mahan-gallery { display: grid; grid-template-columns: 2fr 1.4fr 1.4fr 1fr; gap: 10px; margin-bottom: 28px; }
.mahan-gallery-item {
  border-radius: 8px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  min-height: 150px;
}
.mahan-gallery-label { font-family: var(--narrow); font-size: 10px; color: rgba(255,255,255,0.3); text-align: center; padding: 8px; line-height: 1.5; }
.mahan-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mahan-routes-title { font-weight: 700; font-size: 14px; color: white; margin-bottom: 14px; }
.mahan-routes { display: flex; flex-wrap: wrap; gap: 8px; }
.mahan-route {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75); font-family: var(--narrow); font-size: 13px;
  padding: 5px 14px; border-radius: 20px; cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.mahan-route:hover { background: rgba(26,138,135,0.3); border-color: var(--teal); color: var(--teal-l); }
.mahan-features { display: flex; flex-direction: column; gap: 12px; }
.mahan-feature { display: flex; gap: 12px; align-items: flex-start; }
.mahan-feature-icon {
  width: 36px; height: 36px; background: rgba(26,138,135,0.25); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--teal-l);
}
.mahan-feature-title { font-weight: 700; font-size: 14px; color: rgba(255,255,255,0.9); margin-bottom: 2px; }
.mahan-feature-desc { font-family: var(--narrow); font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── ABOUT ─────────────────────────────────────────────────── */
#about { display: grid; grid-template-columns: 1fr 1fr; min-height: 360px; }
.about-img {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a4050 0%, #1a8a87 100%);
  min-height: 360px; display: flex; align-items: center; justify-content: center;
}
.about-img::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.about-img-text { font-family: var(--narrow); font-size: 11px; color: rgba(255,255,255,0.2); z-index: 1; }
.about-content {
  background: var(--dark2);
  padding: 60px 48px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.about-content::before {
  content: 'K';
  position: absolute; right: -20px; bottom: -40px;
  font-size: 240px; font-weight: 700;
  color: rgba(255,255,255,0.025); line-height: 1;
  pointer-events: none;
}
.about-content .label { color: rgba(255,255,255,0.4); margin-bottom: 10px; }
.about-title { font-size: 28px; font-weight: 700; color: white; margin-bottom: 18px; line-height: 1.2; }
.about-lead p { font-family: var(--narrow); font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 12px; }
.about-lead p:last-child { margin-bottom: 24px; }

/* ── WHY US ────────────────────────────────────────────────── */
#why {
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 12% 18%,
      transparent 0,
      transparent 60px, rgba(26,138,135,0.10) 61px, rgba(26,138,135,0.10) 63px,
      transparent 64px, transparent 120px, rgba(26,138,135,0.07) 121px, rgba(26,138,135,0.07) 123px,
      transparent 124px),
    radial-gradient(circle at 92% 80%,
      transparent 0,
      transparent 60px, rgba(232,184,75,0.12) 61px, rgba(232,184,75,0.12) 63px,
      transparent 64px, transparent 120px, rgba(232,184,75,0.08) 121px, rgba(232,184,75,0.08) 123px,
      transparent 124px),
    linear-gradient(180deg, #f7f5ee 0%, #efece1 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
#why::before, #why::after { display: none; }

body.landing-page #why .sec-head h2 { color: var(--dark); }
body.landing-page #why .sec-head .sec-sub { color: #7a8f9a; }
body.landing-page #why .label,
body.landing-page #why .label-light { color: var(--teal); }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.why-card {
  background: white;
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(15,40,55,0.04);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.why-card:hover {
  box-shadow: 0 10px 28px rgba(15,40,55,0.10);
  border-color: var(--teal);
  transform: translateY(-4px);
}
.why-icon {
  width: 52px; height: 52px;
  background: transparent;
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.why-icon svg { width: 34px; height: 34px; }
.why-title { font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 8px; }
.why-desc { font-family: var(--narrow); font-size: 14px; color: #5a6e7e; line-height: 1.5; }

/* ── NEWS ──────────────────────────────────────────────────── */
#news {
  background-color: #0a161f;
  background-image:
    linear-gradient(180deg, rgba(26,138,135,0.14) 0%, transparent 35%),
    radial-gradient(ellipse at 85% 80%, rgba(26,138,135,0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 20% 20%, rgba(93,214,210,0.06) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h80v80H0z' fill='none'/%3E%3Cpath d='M0 80L80 0' stroke='%231a8a87' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
}
.news-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.news-card {
  display: block; text-decoration: none;
  background: rgba(255,255,255,0.05); border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.news-card:hover { border-color: rgba(26,138,135,0.5); transform: translateY(-3px); }
.news-card.big { grid-column: 1/2; grid-row: 1/3; }
.news-img {
  background: linear-gradient(135deg, rgba(26,138,135,0.3), rgba(10,30,40,0.8));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.news-card.big .news-img { height: 220px; }
.news-card:not(.big) .news-img { height: 120px; }
.news-img-ph { font-family: var(--narrow); font-size: 10px; color: rgba(255,255,255,0.2); }
.news-body { padding: 16px 18px; }
.news-title { font-weight: 700; font-size: 14px; color: white; line-height: 1.35; margin-bottom: 8px; }
.news-card.big .news-title { font-size: 17px; }
.news-intro { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.55; margin-bottom: 10px; }
.news-date { font-family: var(--narrow); font-size: 11px; color: rgba(255,255,255,0.25); }

/* ── REVIEWS ───────────────────────────────────────────────── */
#reviews {
  background: white;
  background-image: radial-gradient(circle at 100% 0%, rgba(26,138,135,0.04) 0%, transparent 50%);
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  background: #f7f9fa; border-radius: 12px; padding: 22px;
  border: 1px solid #edf0f2;
  transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.review-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: #555; line-height: 1.65; margin-bottom: 16px; }
.review-author { display: flex; gap: 10px; align-items: center; }
.review-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.review-city { font-family: var(--narrow); font-size: 11px; color: #bbb; }

/* ── FAQ ───────────────────────────────────────────────────── */
#faq {
  position: relative; overflow: hidden;
  background-color: #e3ecea;
  background-image:
    radial-gradient(circle at 12% 18%,
      transparent 0,
      transparent 58px, rgba(26,138,135,0.45) 59px, rgba(26,138,135,0.45) 62px,
      transparent 63px, transparent 118px, rgba(26,138,135,0.38) 119px, rgba(26,138,135,0.38) 122px,
      transparent 123px, transparent 178px, rgba(26,138,135,0.32) 179px, rgba(26,138,135,0.32) 182px,
      transparent 183px, transparent 238px, rgba(26,138,135,0.26) 239px, rgba(26,138,135,0.26) 242px,
      transparent 243px, transparent 298px, rgba(26,138,135,0.22) 299px, rgba(26,138,135,0.22) 302px,
      transparent 303px, transparent 360px, rgba(26,138,135,0.18) 361px, rgba(26,138,135,0.18) 364px,
      transparent 365px, transparent 420px, rgba(26,138,135,0.14) 421px, rgba(26,138,135,0.14) 424px,
      transparent 425px),
    radial-gradient(circle at 88% 82%,
      transparent 0,
      transparent 58px, rgba(232,184,75,0.55) 59px, rgba(232,184,75,0.55) 62px,
      transparent 63px, transparent 118px, rgba(232,184,75,0.46) 119px, rgba(232,184,75,0.46) 122px,
      transparent 123px, transparent 178px, rgba(232,184,75,0.38) 179px, rgba(232,184,75,0.38) 182px,
      transparent 183px, transparent 238px, rgba(232,184,75,0.30) 239px, rgba(232,184,75,0.30) 242px,
      transparent 243px, transparent 298px, rgba(232,184,75,0.24) 299px, rgba(232,184,75,0.24) 302px,
      transparent 303px, transparent 360px, rgba(232,184,75,0.18) 361px, rgba(232,184,75,0.18) 364px,
      transparent 365px),
    radial-gradient(circle at 5% 65%,
      transparent 0,
      transparent 48px, rgba(224,120,64,0.40) 49px, rgba(224,120,64,0.40) 52px,
      transparent 53px, transparent 108px, rgba(224,120,64,0.32) 109px, rgba(224,120,64,0.32) 112px,
      transparent 113px, transparent 168px, rgba(224,120,64,0.26) 169px, rgba(224,120,64,0.26) 172px,
      transparent 173px, transparent 228px, rgba(224,120,64,0.20) 229px, rgba(224,120,64,0.20) 232px,
      transparent 233px, transparent 288px, rgba(224,120,64,0.15) 289px, rgba(224,120,64,0.15) 292px,
      transparent 293px),
    radial-gradient(circle at 95% 8%,
      transparent 0,
      transparent 48px, rgba(122,107,191,0.30) 49px, rgba(122,107,191,0.30) 52px,
      transparent 53px, transparent 108px, rgba(122,107,191,0.24) 109px, rgba(122,107,191,0.24) 112px,
      transparent 113px, transparent 168px, rgba(122,107,191,0.18) 169px, rgba(122,107,191,0.18) 172px,
      transparent 173px, transparent 228px, rgba(122,107,191,0.14) 229px, rgba(122,107,191,0.14) 232px,
      transparent 233px),
    radial-gradient(ellipse 50% 60% at 18% 12%,  rgba(26,138,135,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 55% 55% at 88% 88%,  rgba(232,184,75,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 0% 75%,   rgba(224,120,64,0.45) 0%, transparent 70%),
    radial-gradient(ellipse 40% 45% at 100% 5%,  rgba(122,107,191,0.40) 0%, transparent 70%),
    radial-gradient(ellipse 55% 40% at 50% 50%,  rgba(74,140,196,0.22) 0%, transparent 70%),
    linear-gradient(160deg, #d9ece9 0%, #efe6d2 50%, #f0d9c4 100%);
}
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  border-radius: 8px; padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow: 0 1px 0 rgba(26,138,135,0.06), 0 4px 14px rgba(17,29,39,0.08);
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s, background 0.15s;
}
.faq-item:hover {
  background: white;
  border-color: var(--teal);
  box-shadow: 0 6px 20px rgba(26,138,135,0.12);
  transform: translateY(-1px);
}
.faq-item-header { display: flex; justify-content: space-between; align-items: center; }
.faq-q { font-size: 14px; color: #2a3c48; }
.faq-ico { color: var(--teal); font-size: 20px; font-weight: 300; flex-shrink: 0; margin-left: 16px; }
.faq-a { margin-top: 12px; font-family: var(--narrow); font-size: 14px; color: #5a7080; line-height: 1.7; border-top: 1px solid rgba(26,138,135,0.15); padding-top: 12px; }

/* ── CONTACTS ──────────────────────────────────────────────── */
#contacts {
  background-color: #141e2a;
  background-image:
    radial-gradient(ellipse at 10% 90%, rgba(26,138,135,0.22) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 10%, rgba(26,138,135,0.14) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(10,20,35,0.5)    0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='%231a8a87' fill-opacity='0.07'/%3E%3C/svg%3E");
}
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contacts-label { font-weight: 700; font-size: 15px; color: white; margin-bottom: 20px; }
.office-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-channels-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
.contact-channel-item { display: flex; align-items: center; gap: 12px; }
.contact-channel-icon { width: 34px; height: 34px; background: rgba(26,138,135,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--teal-l); flex-shrink: 0; }
.contact-channel-label { font-family: var(--narrow); font-size: 10px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-channel-value { font-size: 14px; color: var(--teal-l); }
.contacts-note { font-family: var(--narrow); font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-top: 20px; }
.office-icon {
  width: 38px; height: 38px; background: rgba(26,138,135,0.2); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}
.office-city { font-weight: 700; font-size: 14px; color: white; }
.office-addr  { font-family: var(--narrow); font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.office-phone { font-family: var(--narrow); font-size: 13px; color: var(--teal-l); margin-top: 2px; }
.form-box { display: flex; flex-direction: column; gap: 12px; }
.form-field input, .form-field textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px; padding: 11px 14px; font-size: 14px;
  color: rgba(255,255,255,0.85); resize: none;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--teal); }
.form-field textarea { height: 90px; }
.form-field label {
  color: rgba(255,255,255,0.35);
  font-size: 10px;
  letter-spacing: 0.07em;
  margin-bottom: 5px;
}
.form-status { display: block; margin-top: 8px; padding: 10px 14px; border-radius: 7px; font-size: 13px; }
.form-status--ok  { background: rgba(52,211,153,0.15); color: #6ee7b7; }
.form-status--err { background: rgba(239,68,68,0.15);  color: #fca5a5; }

/* ── SEASONAL CALENDAR ─────────────────────────────────────── */
.season-section {
  background:
    radial-gradient(ellipse at top right, rgba(26,138,135,0.04), transparent 50%),
    #fafaf6;
}
.season-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px; gap: 16px; flex-wrap: wrap;
}
.season-tabs {
  display: inline-flex; gap: 2px;
  background: white; padding: 4px;
  border-radius: 10px; border: 1px solid #ebe9e3;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.season-tab {
  background: transparent; border: none;
  padding: 8px 16px; border-radius: 7px;
  font-family: var(--narrow);
  font-size: 13px; font-weight: 700;
  color: #7a8f9a; cursor: pointer;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
}
.season-tab:hover { color: var(--teal); }
.season-tab.is-active {
  background: var(--teal); color: white;
  box-shadow: 0 1px 3px rgba(26,138,135,0.25);
}
.season-legend {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--narrow); font-size: 11px; color: #7a8f9a;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.legend-item { display: inline-flex; align-items: center; gap: 6px; }
.legend-dot { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.legend-dot.t1 { background: var(--teal); }
.legend-dot.t2 { background: #c5e7e4; }
.legend-dot.t3 { background: #f4dfb1; }
.legend-dot.t4 { background: #d97a4a; }
.season-table-wrap {
  background: white; border-radius: 14px;
  padding: 18px 18px 14px;
  box-shadow: 0 6px 24px rgba(15,40,55,0.06), 0 1px 0 #ebe9e3 inset;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.season-table { min-width: 920px; }
.season-head, .season-row {
  display: grid;
  grid-template-columns: 170px repeat(12, minmax(0, 1fr));
  gap: 4px; align-items: stretch;
}
.season-head {
  padding-bottom: 8px; border-bottom: 1px solid #f1ede3; margin-bottom: 6px;
}
.season-corner, .season-month {
  font-family: var(--narrow); font-size: 11px; font-weight: 700;
  color: #8a9eaa; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 4px; text-align: center;
  transition: opacity 0.25s;
}
.season-corner { text-align: left; padding-left: 6px; }
.season-row { padding: 5px 0; }
.season-row + .season-row { border-top: 1px dashed #f4f0e6; }
.season-dest {
  padding: 10px 8px 10px 6px;
  display: flex; flex-direction: column; justify-content: center;
}
.season-dest-city { font-weight: 700; font-size: 15px; color: var(--dark); line-height: 1.1; }
.season-dest-code { font-family: var(--narrow); font-size: 11px; color: #9aacb5; letter-spacing: 0.1em; margin-top: 3px; }
.season-cell {
  position: relative; border-radius: 7px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 50px; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.25s;
}
.season-cell .cell-from { font-family: var(--narrow); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.65; line-height: 1; }
.season-cell .cell-price { font-family: var(--sans); font-weight: 700; font-size: 14px; margin-top: 3px; line-height: 1; }
.season-cell:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 20px rgba(15,40,55,0.18);
  z-index: 2;
}
.season-cell.t1 { background: var(--teal); color: white; }
.season-cell.t2 { background: #d8efed; color: #0f6360; }
.season-cell.t3 { background: #f6e3b8; color: #87651e; }
.season-cell.t4 { background: #d97a4a; color: white; }
.season-table.filter-active .season-month:not(.is-in),
.season-table.filter-active .season-cell:not(.is-in) { opacity: 0.22; }
.season-table.filter-active .season-cell:not(.is-in) { pointer-events: none; transform: none; box-shadow: none; }
.season-table.filter-active .season-cell.is-in { box-shadow: 0 0 0 2px rgba(26,138,135,0.35); }
.season-foot {
  margin-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.season-tip {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--narrow); font-size: 14px; color: #4a6070; line-height: 1.5;
  max-width: 560px;
}
.season-tip-icon { color: var(--teal); margin-top: 1px; }
.season-tip strong { color: var(--teal); font-family: var(--sans); font-weight: 700; }
@media (max-width: 780px) {
  .season-toolbar { flex-direction: column; align-items: flex-start; }
  .season-legend { flex-wrap: wrap; gap: 10px; }
  .season-foot { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   7.2 PAGE: RESULTS (results.html)
   ============================================================ */
body.results-page {
  background-color: #ecede4;
  background-image:
    radial-gradient(ellipse 60% 50% at 10% 10%,  rgba(26,138,135,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 95% 90%,  rgba(232,184,75,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 25%,  rgba(224,120,64,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #ecede4 0%, #e6e8e0 50%, #ebe6dc 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}
body.results-page::before {
  content: ""; position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900' preserveAspectRatio='xMidYMid slice'><g fill='none' stroke-linecap='round'><path d='M -40 720 Q 800 80 1640 640' stroke='%231a8a87' stroke-width='1.4' stroke-dasharray='2 9' opacity='0.32'/><path d='M -40 240 Q 760 540 1640 200' stroke='%23e8b84b' stroke-width='1.2' stroke-dasharray='2 11' opacity='0.28'/></g></svg>");
  background-size: 100% 100%; background-repeat: no-repeat;
}

.results-header {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 60%, #0e5c5a 200%);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative; z-index: 10; overflow: visible;
}
.results-header::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(26,138,135,0.20), transparent 40%),
    radial-gradient(ellipse at 100% 100%, rgba(232,184,75,0.10), transparent 50%);
}

.search-compact {
  background: white; border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
  display: flex; flex-direction: column; gap: 10px;
}
.search-compact__tabs {
  display: flex; align-items: center;
  border-bottom: 1px solid #eef0f3; padding-bottom: 8px;
  flex-wrap: wrap; row-gap: 4px;
}
.search-compact__tab {
  background: none; border: none; padding: 6px 14px; font-size: 13px;
  font-family: var(--narrow); font-weight: 700; color: #6c7c87; cursor: pointer;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 2px solid transparent; margin-bottom: -9px;
  transition: all 0.15s;
}
.search-compact__tab.active { color: var(--teal); border-bottom-color: var(--teal); }
.search-compact__tab:hover:not(.active) { color: var(--dark); }
.search-compact__row {
  display: grid; gap: 8px;
  grid-template-columns: 1.4fr 1.4fr 1.6fr 1.1fr 1.2fr auto;
  align-items: end;
}
@media (max-width: 980px) {
  .search-compact__row { grid-template-columns: 1fr 1fr; }
  .search-compact__row > *:last-child { grid-column: 1 / -1; }
}
@media (max-width: 540px) { .search-compact__row { grid-template-columns: 1fr; } }

.sc-field { display: flex; flex-direction: column; min-width: 0; }
.sc-field label {
  font-family: var(--narrow); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: #8a9eaa; margin-bottom: 4px;
}
.sc-field input, .sc-field select, .sc-field .sc-btn {
  border: 1px solid #e0e8ec; border-radius: 6px;
  padding: 9px 10px; font-size: 14px; color: #1c2730;
  background: #fafbfc; min-height: 40px;
  appearance: none; -webkit-appearance: none;
}
.sc-field input:focus, .sc-field select:focus, .sc-field .sc-btn:focus {
  border-color: var(--teal); background: white;
  box-shadow: 0 0 0 3px rgba(26,138,135,0.1);
}
.sc-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a9eaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 10px center; padding-right: 28px;
}
.sc-btn {
  text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.sc-btn .ico { color: #8a9eaa; }
.sc-submit {
  background: var(--teal); color: white; border: 1px solid var(--teal);
  font-weight: 700; padding: 11px 22px; border-radius: 6px;
  cursor: pointer; min-height: 40px; font-size: 14px;
  box-shadow: 0 4px 12px rgba(26,138,135,0.35);
  display: inline-flex; align-items: center; gap: 6px; justify-content: center;
  transition: all 0.15s;
}
.sc-submit:hover { background: var(--teal-d); transform: translateY(-1px); }

.results-summary {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  padding: 18px 0 6px;
}
.results-summary__route {
  display: flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 700; color: #1c2730;
}
.results-summary__route .ico { color: var(--teal); }
.results-summary__meta {
  font-family: var(--narrow); font-size: 14px; color: #5a7080;
  display: flex; gap: 16px; flex-wrap: wrap;
}
.results-summary__meta span::before { content: "·"; margin-right: 6px; color: #c8d8e0; }
.results-summary__meta span:first-child::before { content: ""; margin: 0; }
.results-summary__count {
  margin-left: auto; font-family: var(--narrow);
  color: #5a7080; font-size: 14px;
}
.results-summary__count strong { color: var(--teal); font-family: var(--sans); font-size: 16px; }

.price-strip {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  margin: 16px 0 24px; overflow-x: auto;
}
@media (max-width: 720px) { .price-strip { grid-template-columns: repeat(7, minmax(80px, 1fr)); } }
.price-day {
  background: white; border: 1px solid #e5e0d4; border-radius: 8px;
  padding: 8px 6px; text-align: center; cursor: pointer;
  transition: all 0.15s; font-family: var(--narrow); min-width: 0;
}
.price-day:hover { border-color: var(--teal); }
.price-day.active { background: var(--teal); border-color: var(--teal); color: white; }
.price-day.cheapest:not(.active) { border-color: var(--gold); }
.price-day__wd { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: #8a9eaa; margin-bottom: 2px; }
.price-day.active .price-day__wd { color: rgba(255,255,255,0.7); }
.price-day__date { font-size: 14px; font-weight: 700; font-family: var(--sans); color: var(--dark); margin-bottom: 4px; }
.price-day.active .price-day__date { color: white; }
.price-day__price { font-size: 13px; font-weight: 700; color: var(--teal); }
.price-day.active .price-day__price { color: white; }
.price-day.cheapest:not(.active) .price-day__price { color: var(--gold); }

.results-main { padding: 4px 0 60px; }
.filters-toggle {
  display: none; align-items: center; gap: 8px;
  background: white; border: 1px solid #e0e8ec; border-radius: 8px;
  padding: 10px 16px; font-weight: 700; font-size: 14px;
  color: var(--dark); cursor: pointer; margin-bottom: 16px;
}
.filters-toggle .ico { color: var(--teal); }
.filters {
  background: white; border-radius: 14px; padding: 20px;
  box-shadow: 0 4px 18px rgba(17,29,39,0.05);
  align-self: start; position: sticky; top: 90px;
}
@media (max-width: 980px) { .filters { display: none; position: static; } .filters.is-open { display: block; } }
.filter-block { padding: 14px 0; border-bottom: 1px solid #f0f2f5; }
.filter-block:first-child { padding-top: 0; }
.filter-block:last-child  { border-bottom: none; padding-bottom: 0; }
.filter-block__title {
  font-weight: 700; font-size: 14px; color: var(--dark);
  margin: 0 0 10px;
  display: flex; justify-content: space-between; align-items: center;
}
.filter-block__title small { font-family: var(--narrow); font-weight: 400; color: #8a9eaa; font-size: 11px; }
.filter-row {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; font-size: 14px; cursor: pointer;
}
.filter-row:hover { color: var(--teal); }
.filter-row input { accent-color: var(--teal); width: 16px; height: 16px; cursor: pointer; }
.filter-row__label { flex: 1; }
.filter-row__count { font-family: var(--narrow); font-size: 11px; color: #8a9eaa; }
.filter-clear {
  background: none; border: none; color: var(--teal);
  font-family: var(--narrow); font-size: 13px; cursor: pointer; padding: 4px 0;
  margin-top: 6px;
}
.filter-clear:hover { color: var(--teal-d); text-decoration: underline; }
.filter-slider {
  -webkit-appearance: none; appearance: none; width: 100%; height: 4px;
  background: linear-gradient(to right, var(--teal) 0%, var(--teal) 60%, #e5e8ec 60%, #e5e8ec 100%);
  border-radius: 2px; outline: none;
}
.filter-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; background: white; border: 2px solid var(--teal);
  border-radius: 50%; cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.filter-slider::-moz-range-thumb {
  width: 18px; height: 18px; background: white; border: 2px solid var(--teal);
  border-radius: 50%; cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.filter-range-display {
  display: flex; justify-content: space-between; margin-top: 6px;
  font-family: var(--narrow); font-size: 11px; color: #5a7080;
}
.filter-range-display strong { color: var(--teal); font-family: var(--sans); }

.results-sort {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  background: white; border-radius: 12px; padding: 6px;
  margin-bottom: 14px;
  box-shadow: 0 4px 18px rgba(17,29,39,0.05);
}
.sort-tab {
  background: transparent; border: none; cursor: pointer;
  padding: 10px 8px; border-radius: 8px;
  font-family: var(--sans); transition: all 0.18s;
  text-align: left; display: flex; flex-direction: column; gap: 1px;
  color: var(--dark);
}
.sort-tab__label { font-size: 14px; font-weight: 700; }
.sort-tab__meta  { font-family: var(--narrow); font-size: 11px; color: #8a9eaa; }
.sort-tab.active { background: var(--teal-xl); color: var(--teal-d); }
.sort-tab.active .sort-tab__meta { color: var(--teal); }
.sort-tab:hover:not(.active) { background: #fafbfc; }

.flight-card {
  background: white; border-radius: 14px;
  margin-bottom: 12px; padding: 0;
  box-shadow: 0 4px 18px rgba(17,29,39,0.06);
  border: 1px solid transparent;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 220px;
}
.flight-card:hover { box-shadow: 0 10px 30px rgba(17,29,39,0.10); border-color: rgba(26,138,135,0.2); }
@media (max-width: 720px) { .flight-card { grid-template-columns: 1fr; } }
.flight-card__main {
  padding: 18px 22px;
  display: flex; flex-direction: column; gap: 14px; min-width: 0;
}
.flight-card__airline {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--narrow); font-size: 13px; color: #5a7080;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.flight-card__logo {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-xl); color: var(--teal);
  font-weight: 700; font-size: 11px; flex-shrink: 0;
}
.flight-card__code { color: #8a9eaa; }
.flight-card__badge {
  margin-left: auto; background: var(--gold); color: var(--dark);
  font-size: 10px; padding: 2px 8px; border-radius: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.flight-card__badge--green { background: var(--teal); color: white; }
.flight-card__badge--coral { background: var(--coral); color: white; }
.flight-card__route {
  display: grid; grid-template-columns: 1fr 2fr 1fr;
  align-items: center; gap: 16px;
}
.flight-card__pt-time { font-size: 24px; font-weight: 700; color: var(--dark); }
.flight-card__pt-iata { font-family: var(--narrow); font-size: 13px; color: #5a7080; margin-top: 2px; }
.flight-card__pt-airport { font-family: var(--narrow); font-size: 11px; color: #8a9eaa; }
.flight-card__pt-city { font-family: var(--narrow); font-size: 13px; color: #8a9eaa; }
.flight-card__pt-time + .flight-card__pt-iata { font-weight: 700; color: var(--dark); }
.flight-card__path {
  display: flex; flex-direction: column; align-items: stretch; gap: 4px;
  text-align: center;
}
.flight-card__path-meta {
  font-family: var(--narrow); font-size: 11px;
  color: #8a9eaa; text-transform: uppercase; letter-spacing: 0.06em;
}
.flight-card__path-line { display: flex; align-items: center; gap: 6px; }
.flight-card__path-line::before, .flight-card__path-line::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, #c8d8e0, transparent);
}
.flight-card__path-line .ico { color: var(--teal); transform: rotate(90deg); }
.flight-card__path-stops { font-family: var(--narrow); font-size: 11px; color: var(--teal-d); }
.flight-card__path-stops.is-direct { color: var(--teal); font-weight: 700; }
.flight-card__path-stops.is-many   { color: var(--coral); }

.flight-card__layovers {
  display: flex; flex-direction: column; gap: 8px;
  background: linear-gradient(180deg, #fafbfc 0%, #f6f8fa 100%);
  border: 1px solid #eef0f3; border-radius: 10px;
  padding: 12px 14px;
}
.layover-row {
  display: grid; gap: 10px;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
}
.layover-row__times {
  font-family: var(--narrow); font-size: 13px; color: #5a7080;
  display: flex; flex-direction: column; line-height: 1.2;
}
.layover-row__times strong { color: var(--dark); font-family: var(--sans); font-size: 14px; font-weight: 700; }
.layover-row__times .sep { width: 1px; height: 6px; background: #c8d8e0; margin: 2px 0 2px 6px; }
.layover-row__main { min-width: 0; }
.layover-row__title {
  font-weight: 700; font-size: 14px; color: var(--dark);
  display: flex; align-items: center; gap: 6px;
}
.layover-row__title .ico { color: var(--coral); font-size: 14px; }
.layover-row__meta { font-family: var(--narrow); font-size: 13px; color: #6c7c87; margin-top: 2px; }
.layover-row__warnings { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.layover-warn {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--narrow); font-size: 11px;
  padding: 2px 8px; border-radius: 10px;
  background: #f0f2f5; color: #5a7080;
}
.layover-warn--short    { background: #fbe5dc; color: #e07840; }
.layover-warn--long     { background: #fdf3da; color: #b08820; }
.layover-warn--terminal { background: #e0ecf6; color: #4a8cc4; }
.layover-warn--overnight{ background: #ece6f8; color: #7a6bbf; }
.layover-warn--self     { background: #fbe5dc; color: #e07840; }
.layover-warn .ico { font-size: 13px; }
.layover-row__duration {
  background: white; border: 1px solid #e0e8ec; border-radius: 8px;
  padding: 6px 12px; text-align: center; min-width: 84px;
}
.layover-row__duration-label { font-family: var(--narrow); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: #8a9eaa; }
.layover-row__duration-time  { font-weight: 700; font-size: 14px; color: var(--dark); }

.flight-card__features {
  display: flex; gap: 14px; padding-top: 4px;
  border-top: 1px dashed #eef0f3; flex-wrap: wrap;
}
.flight-card__feat {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--narrow); font-size: 13px; color: #5a7080;
}
.flight-card__feat .ico { color: var(--teal); }
.flight-card__feat.is-off { color: #c8d8e0; }
.flight-card__feat.is-off .ico { color: #d8dde0; }

.flight-card__cta {
  background: var(--light);
  padding: 18px 22px;
  display: flex; flex-direction: column;
  align-items: stretch; justify-content: center; gap: 6px;
  border-left: 1px solid #eef0f3;
  text-align: right;
}
@media (max-width: 720px) {
  .flight-card__cta { border-left: none; border-top: 1px solid #eef0f3; text-align: left; flex-direction: row; align-items: center; justify-content: space-between; }
}
.flight-card__price-label { font-family: var(--narrow); font-size: 11px; color: #8a9eaa; text-transform: uppercase; letter-spacing: 0.06em; }
.flight-card__price { font-size: 28px; font-weight: 700; color: var(--teal); line-height: 1; }
.flight-card__price-meta { font-family: var(--narrow); font-size: 11px; color: #8a9eaa; margin-bottom: 8px; }
.flight-card__select {
  background: var(--teal); color: white; border: none; border-radius: 8px;
  padding: 11px 18px; font-weight: 700; font-size: 14px; cursor: pointer;
  transition: all 0.15s; width: 100%;
  display: inline-block; text-align: center; text-decoration: none;
  box-sizing: border-box;
}
@media (max-width: 720px) { .flight-card__select { width: auto; } }
.flight-card__select:hover { background: var(--teal-d); color: white; text-decoration: none; }
.flight-card__details-toggle {
  background: none; border: none; color: var(--teal);
  font-family: var(--narrow); font-size: 13px;
  cursor: pointer; padding: 0; text-align: center;
}
.flight-card__details-toggle:hover { text-decoration: underline; }

.results-pagination {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  padding: 20px 0 0;
}
.pag-btn {
  background: white; border: 1px solid #e0e8ec; color: var(--dark);
  width: 36px; height: 36px; border-radius: 8px;
  cursor: pointer; font-weight: 700; font-size: 14px;
  transition: all 0.15s;
}
.pag-btn:hover { border-color: var(--teal); color: var(--teal); }
.pag-btn.active { background: var(--teal); color: white; border-color: var(--teal); }
.no-results {
  background: white; border-radius: 14px; padding: 60px 30px;
  text-align: center; color: #5a7080;
}
.no-results h3 { color: var(--dark); margin: 0 0 8px; }

/* ============================================================
   7.3 PAGE: ARTICLES INDEX (articles.html)
   ============================================================ */
body.articles-page { background: var(--paper); }

/* Section heading variant (serif) for editorial pages */
body.articles-page .sec-head,
body.article-page .sec-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap; margin-bottom: 36px;
}
body.articles-page .sec-head h2,
body.article-page .sec-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.05;
  letter-spacing: -0.01em; margin: 0;
}
body.articles-page .sec-head h2 em,
body.article-page .sec-head h2 em { font-style: italic; color: var(--teal-d); }
.sec-head .meta {
  font-family: var(--narrow); font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #6c7c87;
}
.sec-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-weight: 700; font-size: 14px;
  color: var(--teal-d); text-decoration: none;
  transition: color 0.15s, gap 0.15s;
}
.sec-link:hover { color: var(--teal); gap: 10px; }

/* Editorial header */
.editorial-header {
  background: var(--cream);
  padding: 96px 0 56px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.editorial-header::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 30%,
      transparent 0,
      transparent 80px, rgba(26,138,135,0.08) 81px, rgba(26,138,135,0.08) 83px,
      transparent 84px, transparent 160px, rgba(26,138,135,0.06) 161px, rgba(26,138,135,0.06) 163px,
      transparent 164px, transparent 240px, rgba(26,138,135,0.04) 241px, rgba(26,138,135,0.04) 243px,
      transparent 244px),
    radial-gradient(circle at 95% 80%,
      transparent 0,
      transparent 70px, rgba(232,184,75,0.12) 71px, rgba(232,184,75,0.12) 73px,
      transparent 74px, transparent 140px, rgba(232,184,75,0.09) 141px, rgba(232,184,75,0.09) 143px,
      transparent 144px);
}
.editorial-header > .wrap { position: relative; z-index: 1; }
.eh-issue {
  font-family: var(--narrow); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal-d);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.eh-issue::after { content: ""; flex: 0 0 60px; height: 1px; background: var(--teal); }
.eh-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 7vw, 88px); line-height: 1.02;
  letter-spacing: -0.02em; color: var(--dark);
  margin: 0 0 28px; max-width: 1100px;
}
.eh-title em { font-style: italic; color: var(--teal-d); font-weight: 400; }
.eh-lede {
  font-family: var(--narrow); font-size: clamp(16px, 2vw, 20px);
  color: #4a5e6e; line-height: 1.55;
  max-width: 640px; margin: 0 0 32px;
}
.eh-meta {
  display: flex; gap: 36px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 24px;
}
.eh-meta-item .num {
  font-family: var(--serif); font-size: 32px; color: var(--dark);
  line-height: 1; margin-bottom: 4px;
}
.eh-meta-item .lbl {
  font-family: var(--narrow); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #6c7c87;
}

/* Filter chip bar */
.filter-bar {
  background: rgba(251,249,243,0.92);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 66px; z-index: 40;
  padding: 14px 0;
  backdrop-filter: blur(8px);
  transition: padding 0.2s;
}
.filter-bar.scrolled { padding: 10px 0; box-shadow: 0 4px 14px rgba(0,0,0,0.06); }
.filter-chips {
  display: flex; gap: 8px; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
}
.filter-chips::-webkit-scrollbar { display: none; }
.filter-chip {
  background: white; border: 1px solid var(--line);
  font-family: var(--sans); font-size: 14px; font-weight: 700;
  color: var(--dark); padding: 8px 16px; border-radius: 20px;
  cursor: pointer; white-space: nowrap;
  transition: all 0.15s; display: inline-flex; align-items: center; gap: 6px;
}
.filter-chip:hover { border-color: var(--teal); color: var(--teal-d); }
.filter-chip.is-active { background: var(--dark); color: white; border-color: var(--dark); }
.filter-chip .count {
  font-family: var(--narrow); font-weight: 400; opacity: 0.7;
  font-size: 11px;
}
.filter-chip.is-active .count { opacity: 0.55; }

/* Featured grid */
.featured-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1.7fr 1fr;
}
@media (max-width: 980px) { .featured-grid { grid-template-columns: 1fr; } }
.feature-big {
  position: relative; min-height: 600px; border-radius: 16px;
  overflow: hidden; cursor: pointer; isolation: isolate;
}
.feature-big__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.7s ease;
}
.feature-big:hover .feature-big__img { transform: scale(1.04); }
.feature-big::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(17,29,39,0.2) 50%, rgba(17,29,39,0.95) 100%);
}
.feature-big__content {
  position: absolute; inset: auto 0 0 0; z-index: 1;
  padding: 38px; color: white;
}
@media (max-width: 600px) { .feature-big__content { padding: 24px; } }
.feature-big__cat {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--narrow); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: white; margin-bottom: 16px;
}
.feature-big__cat .pill { background: var(--gold); color: var(--dark); padding: 4px 12px; border-radius: 20px; font-weight: 700; }
.feature-big__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3.6vw, 48px); line-height: 1.05;
  letter-spacing: -0.01em; margin: 0 0 16px; max-width: 720px;
}
.feature-big__title a { color: inherit; }
.feature-big__lede {
  font-family: var(--narrow); font-size: 15px;
  color: rgba(255,255,255,0.85); max-width: 580px;
  margin: 0 0 18px; line-height: 1.55;
}
.feature-big__meta {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--narrow); font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.feature-big__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.4); }

.feature-stack { display: flex; flex-direction: column; gap: 18px; }
.feature-mini {
  display: grid; gap: 16px;
  grid-template-columns: 130px 1fr;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.feature-mini:last-child { border-bottom: none; padding-bottom: 0; }
.feature-mini__img {
  aspect-ratio: 1; border-radius: 10px;
  background-size: cover; background-position: center;
  transition: transform 0.4s ease;
}
.feature-mini:hover .feature-mini__img { transform: scale(1.03); }
.feature-mini__cat {
  font-family: var(--narrow); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-d); margin-bottom: 6px;
}
.feature-mini__title {
  font-family: var(--serif); font-weight: 400;
  font-size: 19px; line-height: 1.15; letter-spacing: -0.01em;
  margin: 0 0 10px; color: var(--dark);
  transition: color 0.15s;
}
.feature-mini:hover .feature-mini__title { color: var(--teal-d); }
.feature-mini__meta {
  font-family: var(--narrow); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #8a9eaa;
}

/* Editor's pick */
.editors-pick { background: var(--cream); }
.pick-card {
  display: grid; gap: 48px;
  grid-template-columns: 1fr 1.2fr; align-items: center;
}
@media (max-width: 880px) { .pick-card { grid-template-columns: 1fr; gap: 24px; } }
.pick-card__img {
  aspect-ratio: 4 / 5; border-radius: 14px;
  background-size: cover; background-position: center;
  box-shadow: 0 14px 40px rgba(17,29,39,0.16);
}
.pick-card__body { padding: 12px 0; }
.pick-num {
  font-family: var(--serif); font-size: 96px; line-height: 0.85;
  color: var(--teal-d); margin: 0 0 8px;
  font-style: italic;
}
.pick-label {
  font-family: var(--narrow); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.pick-label::after { content: ""; flex: 1; height: 1px; background: rgba(232,184,75,0.5); }
.pick-card__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.05;
  letter-spacing: -0.01em; margin: 0 0 16px; color: var(--dark);
}
.pick-card__title em { font-style: italic; color: var(--teal-d); }
.pick-card__pullquote {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; line-height: 1.35;
  color: #4a5e6e; margin: 0 0 22px;
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 18px;
}
.pick-card__excerpt {
  font-family: var(--narrow); font-size: 16px; line-height: 1.65;
  color: #4a5e6e; margin: 0 0 24px;
}
.pick-card__byline {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--narrow); font-size: 13px;
  color: #6c7c87;
}
.pick-card__byline strong { color: var(--dark); font-family: var(--sans); }

/* Story grid */
.story-grid {
  display: grid; gap: 32px 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) { .story-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .story-grid { grid-template-columns: 1fr; } }
.story-card { cursor: pointer; display: flex; flex-direction: column; }
.story-card__img {
  aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden;
  background-size: cover; background-position: center;
  margin-bottom: 16px; position: relative;
  transition: transform 0.5s ease;
}
.story-card:hover .story-card__img { transform: translateY(-3px); }
.story-card__save {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--dark);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s; backdrop-filter: blur(4px);
}
.story-card__save:hover { background: white; color: var(--teal); transform: scale(1.05); }
.story-card__save.is-saved { background: var(--teal); color: white; }
.story-card__cat {
  font-family: var(--narrow); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-d); margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.story-card__cat .read { color: #8a9eaa; }
.story-card__cat .read::before { content: "·"; margin-right: 8px; color: #c8d8e0; }
.story-card__title {
  font-family: var(--serif); font-weight: 400;
  font-size: 22px; line-height: 1.15; letter-spacing: -0.005em;
  margin: 0 0 10px; color: var(--dark);
  transition: color 0.15s;
}
.story-card:hover .story-card__title { color: var(--teal-d); }
.story-card__excerpt {
  font-family: var(--narrow); font-size: 14px; line-height: 1.55;
  color: #5a6e7e; margin: 0 0 14px;
}
.story-card__byline {
  font-family: var(--narrow); font-size: 11px;
  color: #8a9eaa; margin-top: auto;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.story-card__byline strong { color: var(--dark); font-family: var(--sans); font-weight: 700; text-transform: none; letter-spacing: 0; font-size: 13px; }

/* Spotlight rail */
.spotlight {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spotlight__head {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.spotlight__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px); line-height: 1; margin: 0;
}
.spotlight__rail {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 320px);
  gap: 18px; overflow-x: auto; padding-bottom: 12px;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}
.spotlight-card {
  scroll-snap-align: start;
  position: relative; aspect-ratio: 3 / 4;
  border-radius: 14px; overflow: hidden; cursor: pointer;
  isolation: isolate;
}
.spotlight-card__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.5s ease;
}
.spotlight-card:hover .spotlight-card__img { transform: scale(1.06); }
.spotlight-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17,29,39,0.85) 100%);
}
.spotlight-card__content {
  position: absolute; inset: auto 0 0 0; z-index: 1;
  padding: 18px 20px; color: white;
}
.spotlight-card__num {
  font-family: var(--serif); font-style: italic; font-size: 40px;
  line-height: 0.8; color: var(--gold); margin-bottom: 6px;
}
.spotlight-card__title {
  font-family: var(--serif); font-weight: 400;
  font-size: 22px; line-height: 1.15;
  margin: 0 0 6px;
}
.spotlight-card__cat {
  font-family: var(--narrow); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* Longread teaser */
.longread {
  position: relative; min-height: 540px;
  overflow: hidden; isolation: isolate;
  display: flex; align-items: center;
}
.longread__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.55);
}
.longread__content {
  position: relative; z-index: 1; color: white;
  padding: 80px 0; max-width: 760px;
}
.longread__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--narrow); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal-l);
  border: 1px solid rgba(93,214,210,0.4);
  background: rgba(26,138,135,0.18);
  padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
}
.longread__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.05;
  letter-spacing: -0.015em; margin: 0 0 20px;
}
.longread__title em { font-style: italic; color: var(--gold); }
.longread__lede {
  font-family: var(--narrow); font-size: 18px;
  line-height: 1.55; color: rgba(255,255,255,0.78);
  max-width: 600px; margin: 0 0 28px;
}
.longread__cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--dark);
  padding: 14px 24px; border-radius: 8px;
  font-family: var(--sans); font-weight: 700; font-size: 14px;
  transition: all 0.15s; text-decoration: none;
}
.longread__cta:hover { background: var(--gold); transform: translateY(-2px); }
.longread__meta {
  display: flex; align-items: center; gap: 16px;
  margin-top: 28px; font-family: var(--narrow);
  font-size: 13px; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* Topics rail */
.topics { background: var(--cream); }
.topics-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 880px) { .topics-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .topics-grid { grid-template-columns: 1fr 1fr; } }
.topic-card {
  background: white; border: 1px solid var(--line); border-radius: 12px;
  padding: 22px 20px; cursor: pointer;
  transition: all 0.2s;
  display: flex; flex-direction: column; gap: 4px;
}
.topic-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(26,138,135,0.10); }
.topic-card__icon { font-size: 22px; margin-bottom: 8px; line-height: 1; }
.topic-card__name {
  font-family: var(--serif); font-size: 20px;
  margin: 0; color: var(--dark);
}
.topic-card__count {
  font-family: var(--narrow); font-size: 13px;
  color: #8a9eaa; text-transform: uppercase; letter-spacing: 0.08em;
}

/* Newsletter callout */
.newsletter-card {
  background: var(--dark);
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(26,138,135,0.30) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(232,184,75,0.18) 0%, transparent 50%);
  color: white;
  border-radius: 18px;
  padding: 64px 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
@media (max-width: 720px) { .newsletter-card { padding: 40px 24px; } }
.newsletter-card__label {
  display: inline-block;
  font-family: var(--narrow); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-l); margin-bottom: 16px;
}
.newsletter-card__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 4.5vw, 48px); line-height: 1.05;
  letter-spacing: -0.01em; margin: 0 0 14px;
}
.newsletter-card__title em { font-style: italic; color: var(--gold); }
.newsletter-card__lede {
  font-family: var(--narrow); font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.72); max-width: 540px;
  margin: 0 auto 28px;
}
.newsletter-card__form {
  display: flex; gap: 8px; max-width: 460px; margin: 0 auto;
}
@media (max-width: 480px) { .newsletter-card__form { flex-direction: column; } }
.newsletter-card__form input {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  color: white; font-family: var(--sans); font-size: 14px;
  padding: 14px 18px; border-radius: 8px; outline: none;
  transition: all 0.15s;
}
.newsletter-card__form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-card__form input:focus { background: rgba(255,255,255,0.12); border-color: var(--teal-l); }
.newsletter-card__form button {
  background: var(--gold); color: var(--dark);
  border: 1px solid var(--gold); padding: 14px 26px;
  font-family: var(--sans); font-weight: 700; font-size: 14px;
  border-radius: 8px; cursor: pointer; transition: all 0.15s;
  white-space: nowrap;
}
.newsletter-card__form button:hover { background: white; border-color: white; }
.newsletter-card__small {
  font-family: var(--narrow); font-size: 11px;
  color: rgba(255,255,255,0.4); margin-top: 14px;
}

/* ============================================================
   7.4 PAGE: ARTICLE DETAIL (article.html)
   ============================================================ */
body.article-page { background: var(--paper); }

.post-head {
  background: var(--cream);
  padding: 64px 0 44px;
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.post-head::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 92% 22%,
      transparent 0,
      transparent 60px, rgba(232,184,75,0.10) 61px, rgba(232,184,75,0.10) 63px,
      transparent 64px, transparent 120px, rgba(232,184,75,0.07) 121px, rgba(232,184,75,0.07) 123px,
      transparent 124px),
    radial-gradient(circle at 4% 90%,
      transparent 0,
      transparent 60px, rgba(26,138,135,0.08) 61px, rgba(26,138,135,0.08) 63px,
      transparent 64px);
}
.post-head__inner { position: relative; z-index: 1; max-width: 880px; }

.post-kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.post-kicker__pill {
  background: var(--dark); color: white;
  font-family: var(--narrow); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 14px;
}
.post-kicker__txt {
  font-family: var(--narrow); font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #7a8f9a;
}
.post-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--dark);
  margin: 0 0 22px; text-wrap: balance;
}
.post-title em { font-style: italic; color: var(--teal-d); }
.post-deck {
  font-family: var(--narrow); font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5; color: #4a6070;
  max-width: 720px; margin: 0 0 36px;
}
.post-byline-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.post-byline { display: flex; align-items: center; gap: 14px; }
.byline-meta { line-height: 1.3; }
.byline-name { font-size: 14px; color: var(--dark); }
.byline-name strong { font-weight: 700; }
.byline-sub {
  font-family: var(--narrow); font-size: 13px; color: #7a8f9a;
  margin-top: 3px; letter-spacing: 0.02em;
}
.post-share { display: flex; gap: 6px; }

/* Hero image */
.post-hero { margin: 0; position: relative; }
.post-hero__img {
  width: 100%; height: clamp(360px, 56vw, 620px);
  background-size: cover; background-position: center;
  background-color: var(--cream-2);
}
.post-hero__cap {
  max-width: 1240px; margin: 14px auto 0; padding: 0 40px;
  display: flex; gap: 14px; flex-wrap: wrap;
  font-family: var(--narrow); font-size: 14px;
  color: #7a8f9a; line-height: 1.5;
}
.cap-label {
  display: inline-block;
  font-family: var(--narrow); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); padding-top: 2px;
}
.cap-credit { color: #9aacb5; margin-left: auto; font-style: italic; }

/* Body layout */
.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 64px; align-items: start;
  padding-top: 64px; padding-bottom: 24px;
  max-width: 1240px;
}
.post-layout--single { grid-template-columns: minmax(0, 1fr); padding-top: 48px; }
.post-column { max-width: 680px; margin-left: auto; margin-right: auto; }
.post-layout--single .post-column { margin: 0 auto; }

.post-column p,
.post-column ul,
.post-column ol {
  font-family: var(--sans);
  font-size: 18px; line-height: 1.72;
  color: var(--dark); margin: 0 0 24px;
}
.post-column a {
  color: var(--teal-d);
  border-bottom: 1px solid rgba(15,99,96,0.3);
  transition: background 0.15s, border-color 0.15s;
}
.post-column a:hover {
  background: rgba(26,138,135,0.08);
  border-bottom-color: var(--teal);
}
.post-lede {
  font-size: 20px !important;
  line-height: 1.65 !important;
  color: #1c2f3c;
}
.dropcap {
  font-family: var(--serif); font-weight: 400;
  font-size: 78px; line-height: 0.85;
  color: var(--teal-d);
  float: left; margin: 6px 12px 0 0; padding-top: 2px;
}
.post-column h2 {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(28px, 3vw, 38px); line-height: 1.15;
  color: var(--dark); margin: 44px 0 18px;
  letter-spacing: -0.005em;
}
.post-column h3 {
  font-family: var(--sans); font-weight: 700;
  font-size: 18px; letter-spacing: 0.02em;
  color: var(--dark); margin: 36px 0 12px;
  text-transform: none;
}
.post-column h3::before { content: "◆ "; color: var(--teal); margin-right: 4px; }
.post-column ul { list-style: none; padding: 0; }
.post-list li {
  position: relative; padding-left: 26px;
  margin-bottom: 12px; line-height: 1.65;
}
.post-list li::before { content: "—"; position: absolute; left: 0; top: 0; color: var(--teal); font-weight: 700; }
.post-list li strong { color: var(--dark); font-weight: 700; }

/* Inline figure */
.post-figure { margin: 36px 0; }
.post-figure__img {
  width: 100%; height: clamp(280px, 42vw, 420px);
  background-size: cover; background-position: center;
  background-color: var(--cream-2); border-radius: 2px;
}
.post-figure figcaption {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 12px;
  font-family: var(--narrow); font-size: 14px;
  color: #7a8f9a; line-height: 1.5;
}
/* Wide figure */
.post-wide-figure { margin: 56px 0; }
.post-wide-figure__img {
  width: 100%; height: clamp(360px, 58vw, 620px);
  background-size: cover; background-position: center;
  background-color: var(--cream-2);
}
.post-wide-figure figcaption {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding-top: 14px;
  font-family: var(--narrow); font-size: 14px;
  color: #7a8f9a; line-height: 1.5;
  max-width: 1240px;
}
.post-sep { border: none; border-top: 1px solid var(--line); margin: 48px 0 28px; }
.post-end {
  display: flex; align-items: flex-start; gap: 14px;
  font-family: var(--narrow); font-size: 15px;
  color: #4a6070; line-height: 1.55;
}
.end-mark { color: var(--teal); font-size: 18px; margin-top: 2px; }
.post-end p { margin: 0 !important; font-size: 15px !important; }

/* Sidebar */
.post-aside {
  position: sticky; top: 84px;
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 6px;
}
.aside-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 20px 22px 22px;
  position: relative;
}
.aside-card__label {
  font-family: var(--narrow);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal);
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.aside-stat { display: flex; gap: 14px; padding: 10px 0; }
.aside-stat + .aside-stat { border-top: 1px dashed var(--line); }
.aside-stat__num {
  font-family: var(--serif); font-weight: 400;
  font-size: 36px; line-height: 1;
  color: var(--teal-d);
  flex-shrink: 0; min-width: 60px;
}
.aside-stat__num span { font-size: 22px; }
.aside-stat__lbl {
  font-family: var(--narrow);
  font-size: 13px; color: #4a6070;
  line-height: 1.45; align-self: center;
}
.aside-card--routes ul { list-style: none; display: flex; flex-direction: column; }
.aside-routes li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 8px 0;
  font-family: var(--sans); font-size: 14px;
  color: var(--dark);
}
.aside-routes li + li { border-top: 1px dashed var(--line); }
.aside-routes .route-from {
  font-family: var(--narrow); font-size: 11px;
  font-weight: 700; letter-spacing: 0.08em;
  color: var(--teal);
}
.aside-routes li em {
  font-family: var(--narrow); font-style: normal;
  font-size: 11px; color: #7a8f9a;
  margin-left: 4px; display: block; margin-top: 2px;
}
.aside-card--cta {
  background: var(--dark); border-color: var(--dark);
  color: rgba(255,255,255,0.7);
}
.aside-card--cta .aside-card__label { color: var(--teal-l); border-bottom-color: rgba(255,255,255,0.1); }
.aside-card--cta p {
  font-family: var(--narrow); font-size: 14px;
  line-height: 1.5; color: rgba(255,255,255,0.75);
  margin: 0 0 14px;
}
.aside-btn {
  display: inline-flex; align-items: center;
  background: var(--gold); color: var(--dark);
  font-family: var(--sans); font-weight: 700; font-size: 14px;
  padding: 10px 16px; border-radius: 4px;
  transition: background 0.15s;
}
.aside-btn:hover { background: white; }

/* Stats banner */
.post-stats {
  background: var(--cream);
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.post-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.post-stat { padding-left: 18px; border-left: 2px solid var(--teal); }
.post-stat__num {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 4.5vw, 64px); line-height: 1;
  color: var(--dark); margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.post-stat__num span { font-size: 0.55em; color: var(--teal-d); }
.post-stat__lbl {
  font-family: var(--narrow);
  font-size: 14px; color: #4a6070;
  line-height: 1.45; max-width: 220px;
}

/* Author section */
.author-section { padding: 56px 0; background: var(--paper); }
.author-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px; align-items: start;
  max-width: 880px; margin: 0 auto;
  padding: 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 4px 18px rgba(15,40,55,0.04);
}
.author-card__avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-d) 100%);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 28px; letter-spacing: 0.06em;
}
.author-card__role {
  font-family: var(--narrow);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 6px;
}
.author-card__name {
  font-family: var(--serif); font-weight: 400;
  font-size: 32px; line-height: 1.1;
  color: var(--dark); margin-bottom: 14px;
}
.author-card__bio {
  font-family: var(--narrow);
  font-size: 16px; line-height: 1.55;
  color: #4a6070; margin: 0 0 18px;
  max-width: 600px;
}
.author-card__links {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-family: var(--narrow); font-size: 14px;
  letter-spacing: 0.04em;
}
.author-card__links a {
  color: var(--teal-d);
  border-bottom: 1px solid rgba(15,99,96,0.3);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.author-card__links a:hover { color: var(--teal); border-bottom-color: var(--teal); }

/* Related grid */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 1080px) {
  .post-layout { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .post-aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .aside-card { flex: 1 1 280px; }
  .post-stats__inner { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
}
@media (max-width: 720px) {
  .post-head { padding: 40px 0 32px; }
  .post-byline-row { gap: 16px; }
  .post-share { width: 100%; }
  .share-btn span { display: none; }
  .share-btn { padding: 8px 12px; }
  .post-hero__cap, .post-wide-figure figcaption { padding: 0 20px; }
  .post-stats__inner { grid-template-columns: 1fr; gap: 24px; }
  .related-grid { grid-template-columns: 1fr; gap: 22px; }
  .author-card { grid-template-columns: 1fr; text-align: left; padding: 24px; }
  .author-card__avatar { width: 72px; height: 72px; font-size: 22px; }
  .pullquote { padding-left: 18px; }
  .dropcap { font-size: 64px; margin-right: 8px; }
}

/* ============================================================
   7.5 PAGE: CHECKOUT (checkout.html)
   ============================================================ */
body.checkout-page { background: #f6f4ee; color: var(--dark); }

.ck-head {
  background: linear-gradient(180deg, #fff 0%, #faf8f1 100%);
  border-bottom: 1px solid #ebe7d9;
  padding: 28px 0 32px;
}
.ck-head__row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap;
}
.ck-head__title {
  font-weight: 700;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1; color: var(--dark);
  margin: 0 0 8px;
}
.ck-head__sub {
  font-family: var(--narrow);
  font-size: 15px; color: #5a7080;
  margin: 0; max-width: 580px; line-height: 1.5;
}
.ck-head__order {
  text-align: right;
  padding: 10px 16px;
  background: rgba(255,255,255,0.7);
  border: 1px dashed #d9d4c2;
  border-radius: 8px;
}
.ck-head__order-label {
  font-family: var(--narrow);
  font-size: 10px; letter-spacing: 0.12em;
  color: #8a9eaa; text-transform: uppercase;
}
.ck-head__order-id {
  font-weight: 700; font-size: 14px;
  color: var(--dark); margin-top: 2px;
  letter-spacing: 0.02em;
}

.ck-body { padding: 32px 0 80px; }
.ck-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px; align-items: start;
}
.ck-main { display: flex; flex-direction: column; gap: 18px; }
@media (max-width: 1080px) {
  .ck-grid { grid-template-columns: 1fr; }
  .ck-summary__sticky { position: static; }
  .ck-summary { display: none; }
}
@media (max-width: 760px) {
  .ck-head { padding: 22px 0 24px; }
  .ck-head__row { gap: 14px; }
  .ck-head__order { text-align: left; }
}

/* Card base */
.ck-card, .ck-section, .ck-pax, .ck-summary__sticky, .ck-agree {
  background: white;
  border: 1px solid #ebe7d9;
  border-radius: 12px;
}

/* Flight card */
.ck-flight { padding: 22px 26px 24px; }
.ck-card__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; padding-bottom: 18px;
  border-bottom: 1px solid #f0ecdf;
}
@media (max-width: 760px) {
  .ck-flight, .ck-section, .ck-pax { padding: 18px 16px 20px; }
  .ck-card__head { flex-direction: column; align-items: stretch; }
}
.ck-card__eyebrow {
  font-family: var(--narrow);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 4px;
}
.ck-card__title {
  font-weight: 700; font-size: 22px;
  line-height: 1.2; color: var(--dark);
  margin: 0;
}
.ck-card__edit {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--narrow);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--teal);
  padding: 6px 12px;
  border: 1px solid var(--teal-xl);
  border-radius: 6px;
  transition: all 0.15s;
}
.ck-card__edit:hover { background: var(--teal-xl); border-color: var(--teal); color: var(--teal-d); }

.ck-leg { padding: 18px 0 4px; }
.ck-leg + .ck-leg {
  border-top: 1px dashed #ebe7d9;
  padding-top: 18px; margin-top: 4px;
}
.ck-leg__dir { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.ck-leg__pill {
  background: var(--teal); color: white;
  font-family: var(--narrow);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 14px;
}
.ck-leg__pill--return { background: var(--dark2); }
.ck-leg__date {
  font-family: var(--narrow); font-size: 14px; color: #5a7080;
  letter-spacing: 0.02em;
}
.ck-leg__route {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 18px; align-items: center;
  padding: 4px 0;
}
@media (max-width: 760px) {
  .ck-leg__route { grid-template-columns: 1fr; gap: 8px; }
  .ck-leg__point--right { text-align: left; }
}
.ck-leg__point { line-height: 1.2; }
.ck-leg__point--right { text-align: right; }
.ck-leg__time { font-weight: 700; font-size: 28px; color: var(--dark); letter-spacing: -0.01em; }
.ck-leg__city { font-size: 15px; font-weight: 700; color: var(--dark); margin-top: 2px; }
.ck-leg__airport {
  font-family: var(--narrow);
  font-size: 11px; color: #8a9eaa;
  letter-spacing: 0.06em; margin-top: 2px;
}
.ck-leg__path { text-align: center; position: relative; }
@media (max-width: 760px) {
  .ck-leg__path { text-align: left; display: flex; align-items: center; gap: 10px; }
  .ck-leg__line { flex: 1; }
}
.ck-leg__duration {
  font-family: var(--narrow);
  font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: #8a9eaa;
  margin-bottom: 6px;
}
.ck-leg__line { display: flex; align-items: center; gap: 6px; color: var(--teal); }
.ck-leg__line span {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, #c8d8e0, transparent);
}
.ck-leg__direct {
  font-size: 13px; font-weight: 700;
  color: var(--teal); margin-top: 6px;
}
.ck-leg__meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px; margin-top: 14px; padding-top: 14px;
  border-top: 1px solid #f6f3e8;
  font-family: var(--narrow);
  font-size: 13px; color: #5a7080;
  letter-spacing: 0.02em;
}
.ck-leg__meta strong { color: var(--dark); font-weight: 700; }
.ck-leg__dot { display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: #c8d8e0; }

/* Sections */
.ck-section { padding: 22px 26px 24px; }
.ck-section__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; margin-bottom: 20px;
}
.ck-section__title {
  font-weight: 700; font-size: 20px; line-height: 1.2;
  color: var(--dark); margin: 0 0 4px;
}
.ck-section__hint {
  font-family: var(--narrow);
  font-size: 14px; line-height: 1.5;
  color: #7a8f9a; margin: 0; max-width: 540px;
}
.ck-section__count {
  font-family: var(--narrow);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-xl);
  padding: 6px 12px; border-radius: 14px;
  white-space: nowrap;
}

/* Passenger */
.ck-pax {
  border: 1px solid #ebe7d9;
  background: #fcfaf3;
  padding: 18px 22px 22px;
  margin-bottom: 14px;
}
.ck-pax__head {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px dashed #ebe7d9;
}
@media (max-width: 760px) {
  .ck-pax__head { flex-direction: column; align-items: flex-start; gap: 10px; }
}
.ck-pax__id { display: flex; align-items: center; gap: 12px; }
.ck-pax__num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--teal); color: white;
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.ck-pax__role { font-weight: 700; font-size: 15px; color: var(--dark); line-height: 1.2; }
.ck-pax__hint {
  font-family: var(--narrow);
  font-size: 11px; color: #8a9eaa;
  letter-spacing: 0.04em; margin-top: 1px;
}
.ck-pax__autofill {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; border: 1px dashed var(--teal);
  color: var(--teal);
  font-family: var(--narrow);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 6px;
  cursor: pointer; transition: all 0.15s;
}
.ck-pax__autofill:hover { background: var(--teal-xl); border-style: solid; }
.ck-pax__note {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--narrow); font-size: 13px;
  color: var(--teal-d); background: var(--teal-xl);
  padding: 6px 12px; border-radius: 14px;
}

.ck-pax-info {
  display: flex; align-items: flex-start; gap: 8px;
  background: var(--teal-xl); border: 1px solid var(--teal-l);
  border-radius: var(--r); padding: 10px 14px;
  font-size: 13px; color: var(--teal-d); line-height: 1.45;
}
.ck-col-full { grid-column: 1 / -1; }

/* Add passenger button */
.ck-add-pax {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent;
  border: 1px dashed var(--teal);
  color: var(--teal);
  font-family: var(--sans);
  font-weight: 700; font-size: 14px;
  padding: 10px 16px; border-radius: 7px;
  cursor: pointer;
  transition: all 0.15s;
  margin-top: 4px;
}
.ck-add-pax:hover { background: var(--teal-xl); border-style: solid; }

/* Agreement + bottom pay */
.ck-agree { padding: 18px 22px; }
.ck-payment-notice {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: inherit;
}
.ck-agree__pay {
  display: flex; flex-direction: column; align-items: stretch;
  gap: 8px;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid #f0ecdf;
}
.ck-pay-btn--bottom {
  display: grid;
  grid-template-columns: 1fr auto 24px;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  font-size: 15px;
  text-align: left;
  width: 100%;
}
.ck-pay-btn__lbl {
  font-family: var(--sans);
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.02em;
}
.ck-pay-btn__amount {
  display: inline-flex; align-items: baseline; gap: 6px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.25);
}
.ck-pay-btn__amount strong {
  font-weight: 700; font-size: 22px;
  letter-spacing: -0.01em; line-height: 1;
}
.ck-pay-btn__amount em {
  font-style: normal;
  font-family: var(--narrow);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.ck-pay-btn__arrow { display: inline-flex; align-items: center; justify-content: center; }
.ck-pay-btn--bottom:disabled .ck-pay-btn__amount { border-left-color: rgba(255,255,255,0.18); }
.ck-pay-btn--bottom:disabled .ck-pay-btn__amount em { color: rgba(255,255,255,0.5); }
@media (max-width: 540px) {
  .ck-pay-btn--bottom {
    grid-template-columns: 1fr auto;
    grid-template-areas: "lbl amount" "arrow arrow";
    padding: 14px 18px;
  }
  .ck-pay-btn__lbl { grid-area: lbl; }
  .ck-pay-btn__amount { grid-area: amount; padding-left: 12px; }
  .ck-pay-btn__arrow { display: none; }
}

/* Sticky summary */
.ck-summary { position: relative; }
.ck-summary__sticky {
  position: sticky; top: 86px;
  padding: 22px 22px 24px;
  box-shadow: 0 4px 20px rgba(15,40,55,0.05);
}
.ck-summary__route {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0ecdf;
}
.ck-summary__route-line {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 16px;
  color: var(--dark); letter-spacing: 0.04em;
}
.ck-summary__route-line svg { color: var(--teal); }
.ck-summary__route-meta {
  font-family: var(--narrow);
  font-size: 13px; color: #7a8f9a;
  margin-top: 4px; letter-spacing: 0.02em;
}
.ck-summary__rows {
  list-style: none;
  margin: 0 0 16px;
  display: flex; flex-direction: column;
  gap: 8px;
}
.ck-summary__rows li {
  display: flex; justify-content: space-between;
  font-size: 14px; color: #4a6070; gap: 12px;
}
.ck-summary__rows li:last-child {
  padding-top: 8px;
  border-top: 1px dashed #ebe7d9;
}
.ck-summary__rows li.is-discount { color: var(--teal); font-weight: 700; }
.ck-summary__rows li.is-extra { color: var(--dark); }
.ck-summary__total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid #e6e0cf;
  margin-bottom: 4px;
}
.ck-summary__total-lbl {
  font-family: var(--narrow);
  font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #7a8f9a;
}
.ck-summary__total-val {
  display: flex; align-items: baseline; gap: 4px;
}
.ck-summary__total-val strong {
  font-weight: 700; font-size: 28px;
  color: var(--dark); letter-spacing: -0.01em;
}
.ck-summary__total-val em {
  font-style: normal;
  font-family: var(--narrow);
  font-size: 13px; color: #8a9eaa;
}
.ck-summary__rub {
  font-family: var(--narrow);
  font-size: 13px; color: #8a9eaa;
  margin-bottom: 18px;
}
.ck-summary__rub strong {
  color: var(--dark2);
  font-family: var(--sans); font-weight: 700;
}
.ck-pay-btn {
  width: 100%;
  background: var(--teal); color: white;
  border: none; border-radius: 8px;
  padding: 14px 20px;
  font-family: var(--sans);
  font-weight: 700; font-size: 15px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 6px 18px rgba(26,138,135,0.28);
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.ck-pay-btn:hover {
  background: var(--teal-d);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(26,138,135,0.32);
}
.ck-pay-btn:disabled {
  background: #c8d4d4; color: rgba(255,255,255,0.85);
  box-shadow: none; cursor: not-allowed; transform: none;
}
.ck-pay-hint {
  font-family: var(--narrow);
  font-size: 11px; color: #8a9eaa;
  text-align: center; margin-top: 10px;
}
.ck-trust {
  list-style: none;
  padding: 16px 0 0; margin: 16px 0 0;
  border-top: 1px solid #f0ecdf;
  display: flex; flex-direction: column;
  gap: 10px;
}
.ck-trust li {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--narrow);
  font-size: 13px; color: #4a6070;
  line-height: 1.4;
}
.ck-trust__icon {
  color: var(--teal);
  display: flex; align-items: center;
  flex-shrink: 0;
}


/* ============================================================
   7.6 PAGE: TICKET / E-RECEIPT (ticket.html)
   ============================================================
   A4 page layout for the e-receipt / route ticket, designed for
   print-to-PDF. Body class: body.ticket-page
*/

@page { size: A4; margin: 0; }

body.ticket-page { background: #d8d4c5; color: var(--dark); }

/* ── Ticket-only styles ─────────────────────────────────────────
   The receipt borrows tokens (--teal, --cream, --paper, --sans, --narrow)
   and primitives (.pill, .label, ck-leg__pill, etc.) from kavan.css and
   adds an A4-friendly print layout. */

/* Print-screen container — fits A4 on screen and prints clean */
@page { size: A4; margin: 0; }
html, body {
  background: #d8d4c5;
  color: var(--dark);
}
.tk-print-toolbar {
  position: sticky; top: 0; z-index: 50;
  background: white;
  border-bottom: 1px solid var(--line);
  padding: 12px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--narrow);
  font-size: 14px;
  color: #5a7080;
  box-shadow: 0 2px 8px rgba(15,40,55,0.05);
}
.tk-print-toolbar strong { color: var(--dark); font-family: var(--sans); font-weight: 700; }
.tk-print-toolbar .btn { padding: 10px 20px; }
@media print {
  .tk-print-toolbar { display: none; }
  html, body { background: white; }
}

/* A4 page */
.tk {
  width: 210mm;
  min-height: 297mm;
  margin: 24px auto;
  background: white;
  padding: 22mm 18mm;
  box-shadow: 0 12px 40px rgba(15,40,55,0.18);
  position: relative;
  font-size: 11pt;
  line-height: 1.45;
  color: var(--dark);
}
@media print {
  .tk { margin: 0; box-shadow: none; width: 210mm; min-height: 297mm; }
}

/* Decorative teal bar at the top of the page */
.tk::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0;
  height: 6mm;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal) 35%, var(--gold) 65%, var(--coral) 100%);
}

/* ── Header ────────────────────────────────────────────────── */
.tk-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--dark);
  margin-bottom: 18px;
}
.tk-brand { display: flex; align-items: center; gap: 14px; }
.tk-brand img {
  height: 44px; width: auto;
  filter: brightness(0.5) saturate(1.3);
}
.tk-brand-name {
  font-weight: 700; font-size: 18px;
  color: var(--dark); letter-spacing: 0.04em;
  line-height: 1.1;
}
.tk-brand-name small {
  display: block;
  font-family: var(--narrow); font-weight: 400;
  font-size: 10px;
  color: #7a8f9a;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-top: 2px;
}
.tk-title {
  font-family: var(--narrow);
  font-size: 10pt;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
  font-weight: 700;
}
.tk-doc-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22pt;
  line-height: 1.05;
  color: var(--dark);
  margin: 0;
}
.tk-doc-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--teal-d);
}

.tk-meta {
  text-align: right;
  font-family: var(--narrow);
  font-size: 10pt;
  color: #5a7080;
  line-height: 1.45;
  min-width: 180px;
}
.tk-meta .tk-meta-row { margin-bottom: 4px; }
.tk-meta .tk-meta-row:last-child { margin-bottom: 0; }
.tk-meta-label {
  display: block;
  font-size: 8pt;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8a9eaa;
  margin-bottom: 1px;
}
.tk-meta-val {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11pt;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.tk-meta-val.is-mono { font-variant-numeric: tabular-nums; }

.tk-status-pill {
  display: inline-block;
  background: var(--teal);
  color: white;
  font-family: var(--narrow); font-weight: 700;
  font-size: 9pt; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 12px;
  margin-top: 4px;
}

/* ── Section blocks ────────────────────────────────────────── */
.tk-section {
  margin-bottom: 18px;
}
.tk-section + .tk-section {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.tk-section__title {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 10px;
}
.tk-section__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16pt;
  color: var(--teal-d);
  line-height: 1;
  flex-shrink: 0;
}
.tk-section__name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11pt;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--dark);
  margin: 0;
}
.tk-section__rule {
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ── Flight segment ────────────────────────────────────────── */
.tk-flight {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 10px;
  page-break-inside: avoid;
}
.tk-flight + .tk-flight { margin-top: 10px; }

.tk-flight__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.tk-flight__dir {
  display: flex; align-items: center; gap: 10px;
}
.tk-flight__pill {
  background: var(--teal); color: white;
  font-family: var(--narrow); font-weight: 700;
  font-size: 8.5pt; letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px; border-radius: 11px;
}
.tk-flight__pill--return { background: var(--dark2); }
.tk-flight__date {
  font-family: var(--narrow); font-size: 10pt;
  color: #4a6070;
}
.tk-flight__airline {
  font-family: var(--narrow); font-size: 10pt;
  color: #5a7080;
  display: flex; align-items: center; gap: 8px;
}
.tk-flight__airline strong { color: var(--dark); font-family: var(--sans); font-weight: 700; }

.tk-flight__route {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 14px;
  align-items: center;
}
.tk-pt { line-height: 1.15; }
.tk-pt--right { text-align: right; }
.tk-pt__time {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22pt;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.tk-pt__date {
  font-family: var(--narrow);
  font-size: 9pt;
  color: #7a8f9a;
  letter-spacing: 0.04em;
  margin-top: 1px;
}
.tk-pt__city {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11pt;
  color: var(--dark);
  margin-top: 4px;
}
.tk-pt__airport {
  font-family: var(--narrow);
  font-size: 9pt;
  color: #7a8f9a;
  line-height: 1.35;
  margin-top: 2px;
}
.tk-pt__iata {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 9pt;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-right: 4px;
}

.tk-path {
  text-align: center;
}
.tk-path__duration {
  font-family: var(--narrow);
  font-size: 9pt;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a9eaa;
  margin-bottom: 4px;
}
.tk-path__line {
  display: flex; align-items: center; gap: 6px;
  color: var(--teal);
}
.tk-path__line span {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, #c8d8e0 30%, #c8d8e0 70%, transparent);
}
.tk-path__line svg { flex-shrink: 0; }
.tk-path__type {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 9.5pt;
  color: var(--teal);
  margin-top: 4px;
}

.tk-flight__meta {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px dashed var(--line);
}
.tk-flight__meta > div {
  font-family: var(--narrow);
  font-size: 9.5pt;
  color: #4a6070;
  line-height: 1.35;
}
.tk-flight__meta .lbl {
  display: block;
  font-size: 8pt;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a9eaa;
  margin-bottom: 2px;
}
.tk-flight__meta .val {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--dark);
}

/* ── Passengers table ──────────────────────────────────────── */
.tk-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--narrow);
  font-size: 10pt;
}
.tk-table th {
  text-align: left;
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 8.5pt;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 8px 10px;
  border-bottom: 1.5px solid var(--teal);
  vertical-align: bottom;
}
.tk-table td {
  padding: 9px 10px;
  border-bottom: 1px solid var(--line);
  color: var(--dark);
  vertical-align: top;
}
.tk-table tr:last-child td { border-bottom: none; }
.tk-table .pax-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal); color: white;
  font-family: var(--sans); font-weight: 700;
  font-size: 9pt;
}
.tk-table .pax-name {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.tk-table .pax-role {
  display: block;
  font-family: var(--narrow);
  font-size: 9pt;
  color: #7a8f9a;
  margin-top: 1px;
  text-transform: none;
  letter-spacing: 0;
}
.tk-table .pax-mono {
  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: var(--dark);
}
.tk-table .pax-ticket {
  color: var(--teal-d);
  font-weight: 700;
}

/* ── Fare summary ──────────────────────────────────────────── */
.tk-fare {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
}
.tk-fare__lines {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.tk-fare__lines li {
  display: flex; justify-content: space-between;
  font-size: 10pt;
  color: #4a6070;
  padding: 3px 0;
  border-bottom: 1px dotted var(--line);
}
.tk-fare__lines li.is-discount { color: var(--teal); font-weight: 700; }
.tk-fare__lines li:last-child { border-bottom: none; }

.tk-total {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 16px;
  position: relative;
}
.tk-total__lbl {
  font-family: var(--narrow);
  font-size: 9pt; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a8f9a;
  margin-bottom: 4px;
}
.tk-total__usd {
  display: flex; align-items: baseline; gap: 6px;
}
.tk-total__usd strong {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 24pt;
  letter-spacing: -0.02em;
  color: var(--dark);
  line-height: 1;
}
.tk-total__usd em {
  font-style: normal;
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 9pt; letter-spacing: 0.12em;
  color: #8a9eaa;
}
.tk-total__rub {
  font-family: var(--narrow);
  font-size: 9.5pt;
  color: #5a7080;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed var(--line);
}
.tk-total__rub strong {
  font-family: var(--sans);
  color: var(--dark);
  font-weight: 700;
}
.tk-total__status {
  display: inline-block;
  background: var(--teal);
  color: white;
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 8.5pt;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 10px;
  margin-top: 8px;
}

/* ── Important info ────────────────────────────────────────── */
.tk-notes {
  background: var(--paper);
  border-left: 3px solid var(--teal);
  padding: 12px 14px 12px 16px;
  border-radius: 0 6px 6px 0;
  font-family: var(--narrow);
  font-size: 9.5pt;
  line-height: 1.55;
  color: #4a6070;
}
.tk-notes h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10pt;
  color: var(--dark);
  margin: 0 0 6px;
  letter-spacing: 0.04em;
}
.tk-notes ul { padding: 0; list-style: none; margin: 0; }
.tk-notes li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 3px;
}
.tk-notes li::before {
  content: "•";
  color: var(--teal);
  position: absolute; left: 0; top: 0;
  font-weight: 700;
}

/* ── Footer ────────────────────────────────────────────────── */
.tk-foot {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1.5px solid var(--dark);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  font-family: var(--narrow);
  font-size: 9pt;
  color: #5a7080;
  line-height: 1.5;
}
.tk-foot__col-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 9pt;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
  margin-bottom: 6px;
}
.tk-foot strong { color: var(--dark); font-family: var(--sans); font-weight: 700; }
.tk-foot a { color: var(--teal-d); }
.tk-foot__sign {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px dotted var(--line);
  font-family: var(--narrow);
  font-size: 8.5pt;
  color: #8a9eaa;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.tk-foot__sign-iata {
  font-family: var(--sans); font-weight: 700; color: var(--teal);
  letter-spacing: 0.12em;
}

/* Inline icons (sized for print) */
.tk svg { display: inline-block; vertical-align: middle; }

/* ============================================================
   MOBILE OVERRIDES — must be at end of file to win the cascade
   ============================================================ */
@media (max-width: 720px) {
  .hero-content { padding: 80px 20px 60px 20px; align-items: center; text-align: center; max-width: 100%; }
  .hero-trust { display: none; }
  .hero-badge { display: none; }
  .season-cell .cell-price { font-size: 10px; }
}

/* ── Checkout additions ──────────────────────────────────────── */
.ck-field__error { font-size: 12px; color: var(--coral, #e74c3c); margin-top: 4px; }
.ck-field input.is-invalid, .ck-field select.is-invalid, .ck-field textarea.is-invalid {
  border-color: var(--coral, #e74c3c);
}
.ck-error-banner {
  background: #fff0f0; border: 1px solid var(--coral, #e74c3c); color: #c0392b;
  border-radius: 8px; padding: 12px 16px; margin-bottom: 16px; font-size: 14px;
}
.ck-field--doc-num { max-width: 180px; }
@media (max-width: 480px) { .ck-field--doc-num { max-width: none; width: 100%; } }
.ck-select-wrap { position: relative; }
.ck-dropdown {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 200;
  background: white; border: 1px solid #dde3e8; border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12); list-style: none; margin: 0; padding: 4px;
  max-height: 240px; overflow-y: auto;
}
.ck-dropdown li {
  padding: 8px 12px; border-radius: 6px; cursor: pointer; font-size: 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.ck-dropdown li:hover, .ck-dropdown li.is-selected { background: #f0f7f6; }
.ck-dropdown__code { font-family: var(--narrow); font-size: 11px; color: #8a9eaa; }
.ck-pay-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── Checkout: submit flow ─────────────────────────────────────────────────── */
.ck-spinner {
  display: inline-block; width: 16px; height: 16px; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff;
  border-radius: 50%; animation: ck-spin 0.7s linear infinite;
}
.ck-spinner--sm { width: 14px; height: 14px; border-width: 2px; border-color: rgba(29,127,118,0.25); border-top-color: var(--teal, #1d7f76); }
@keyframes ck-spin { to { transform: rotate(360deg); } }

.ck-pay-btn--new-price { background: linear-gradient(135deg, #d97a00 0%, #e8930e 100%); }

.ck-price-change {
  display: flex; align-items: flex-start; gap: 10px;
  border-radius: 10px; border: 1px solid; padding: 12px 14px;
  margin-bottom: 12px; font-size: 13px; line-height: 1.45;
}
.ck-price-change--ok   { background: #f0f7f6; border-color: #b9dcd9; color: #1d5a56; }
.ck-price-change--up   { background: #fff4e5; border-color: #f0c089; color: #8a4b00; }
.ck-price-change--down { background: #e9f7ef; border-color: #a8dcc0; color: #1d6b3f; }
.ck-price-change__icon { flex-shrink: 0; margin-top: 1px; }
.ck-price-change--ok .ck-price-change__icon { margin-top: 4px; }
.ck-price-change__text { display: flex; flex-direction: column; gap: 2px; }
.ck-price-change__text strong { font-weight: 700; font-size: 14px; }
.ck-price-change__label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; opacity: 0.75; }
.ck-price-change__price { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.ck-price-change__delta { font-weight: 700; margin-left: 4px; }

.ck-bank-notice {
  display: flex; align-items: flex-start; gap: 10px;
  background: #f0f7f6; border: 1px solid #b9dcd9; border-radius: 10px;
  padding: 12px 14px; margin-bottom: 12px; font-size: 13px; color: #1d5a56; line-height: 1.45;
}
.ck-bank-notice--waiting { background: #f5f5f5; border-color: #dde3e8; color: #445a65; }
.ck-bank-notice__icon { margin-top: 1px; flex-shrink: 0; color: var(--teal, #1d7f76); }
.ck-bank-notice__text { flex: 1; }
.ck-bank-notice__reopen { display: block; margin-top: 6px; color: var(--teal, #1d7f76); font-weight: 600; text-decoration: underline; }
.ck-check--disabled { opacity: 0.5; pointer-events: none; }
.ck-pay-btn--loading { display: inline-flex !important; justify-content: center; gap: 10px; }

/* ── Payment outcome pages ─────────────────────────────────────────────────── */
.payment-page { min-height: calc(100vh - 160px); display: flex; flex-direction: column; }

/* Breadcrumbs */
.pay-crumbs { font-size: 13px; color: #7a9aa8; padding: 14px 0 10px; }
.pay-crumbs a { color: var(--teal, #1d7f76); text-decoration: none; }
.pay-crumbs a:hover { text-decoration: underline; }
.pay-crumbs__sep { margin: 0 8px; color: #b0bcc4; }
.pay-crumbs__current { color: var(--dark, #1a2e38); font-weight: 600; }

/* Waiting spinner */
.pay-waiting {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; padding: 60px 20px; text-align: center;
}
.pay-waiting__spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(29,127,118,0.25); border-top-color: var(--teal, #1d7f76);
  border-radius: 50%; animation: ck-spin 0.8s linear infinite;
}
.pay-waiting__title { font-size: 20px; font-weight: 700; color: var(--dark, #1a2e38); margin: 0; }
.pay-waiting__hint  { font-size: 14px; color: #7a9aa8; margin: 0; }

/* Panel wrapper (same width as search form on homepage) */
.pay-panel-wrap { max-width: 1100px; margin: 0 auto; padding: 0 40px 60px; }
@media (max-width: 600px) { .pay-panel-wrap { padding: 0 16px 40px; } }

/* Single white panel */
.pay-panel {
  background: white; border-radius: 16px; padding: 36px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.9);
}
@media (max-width: 600px) { .pay-panel { padding: 24px 20px; } }

/* Panel header */
.pay-panel__head {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px; margin-bottom: 4px;
}
.pay-panel__check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #1d7f76, #2aa89e);
  color: #fff; margin-bottom: 4px;
}
.pay-panel__check--fail { background: linear-gradient(135deg, #c0392b, #e74c3c); }
.pay-panel__title { font-size: 26px; font-weight: 700; color: var(--dark, #1a2e38); margin: 0; }
.pay-panel__hint  { font-size: 15px; color: #5a7a88; margin: 0; max-width: 480px; }
.pay-panel__code  { font-size: 13px; color: #8a9eaa; margin: 0; }
.pay-panel__meta {
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: center;
  font-size: 14px; color: #5a7a88; margin-top: 4px;
}
.pay-meta-label { color: #8a9eaa; }
.pay-meta-value { color: var(--dark, #1a2e38); font-weight: 600; margin-left: 4px; }

/* Divider */
.pay-panel__hr { border: none; border-top: 1px solid #eef2f5; margin: 28px 0; }

/* 2-column block */
.pay-panel__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 720px) { .pay-panel__cols { grid-template-columns: 1fr; } }

.pay-panel__h3 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: #8a9eaa; margin: 0 0 14px;
}

/* Actions */
.pay-panel__actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px;
}

/* Passenger list */
.pay-pax-list { list-style: none; margin: 0 0 14px; padding: 0; }
.pay-pax-list li { font-size: 15px; color: var(--dark, #1a2e38); padding: 6px 0; border-bottom: 1px solid #f0f4f6; }
.pay-pax-list li:last-child { border-bottom: none; }
.pay-pax-type { font-size: 12px; color: #8a9eaa; margin-left: 4px; }
.pay-contact  { font-size: 13px; color: #5a7a88; line-height: 1.7; }

/* Payment section */
.pay-total     { font-size: 28px; font-weight: 700; color: var(--dark, #1a2e38); margin-bottom: 6px; }
.pay-card-hint { font-size: 13px; color: #8a9eaa; }

/* Country name in flight leg points */
.ck-leg__country { font-size: 12px; color: #7a9aa8; margin-top: 1px; }

/* Flight section inside panel (override margin) */
.pay-flight { margin: 0; }
