/* ═══════════════════════════════════════════════════════════
   REISEN.NEVIK.DE — DESIGN SYSTEM v3
   Trust-first editorial travel comparison
   Font: Fraunces (display serif) + DM Sans (body sans)
   ═══════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/css/fonts/dm-sans-latin-400-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/css/fonts/fraunces-latin-normal-400-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('/css/fonts/fraunces-latin-italic-400-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── DESIGN TOKENS ─── */
:root {
  /* Colors — warm editorial palette */
  --bg: #faf8f5;
  --bg-elevated: #ffffff;
  --bg-soft: #f3efe9;
  --bg-dark: #1a1f2e;
  --bg-dark-soft: #242b3d;

  --text: #1a1f2e;
  --text-body: #2d3548;
  --text-muted: #59616e;
  --text-on-dark: #f0ede8;
  --text-on-dark-muted: #b7bdc8;

  --primary: #0d5c63;
  --primary-light: #14756e;
  --primary-dark: #084048;
  --accent: #b4472a;
  --accent-light: #c95636;
  --accent-dark: #8f321e;
  --text-on-primary: #ffffff;
  --text-on-accent: #ffffff;
  --border-light: rgba(0,0,0,.08);

  --success: #047857;
  --success-light: #d1fae5;
  --warning: #8a4b00;
  --warning-light: #fef3c7;
  --muted-light: #f3f4f6;

  --border: #e5e0d8;
  --border-dark: rgba(255,255,255,.12);

  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing scale */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 80px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  /* Shadows — soft, editorial */
  --shadow-sm: 0 1px 2px rgba(26,31,46,.06);
  --shadow-md: 0 4px 12px rgba(26,31,46,.08);
  --shadow-lg: 0 12px 32px rgba(26,31,46,.12);
  --shadow-xl: 0 24px 64px rgba(26,31,46,.16);

  /* Motion */
  --dur-fast: .15s;
  --dur: .3s;
  --dur-slow: .5s;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  /* Layout */
  --container: 1200px;
  --container-narrow: 720px;
  --container-wide: 1400px;

  /* Z-index */
  --z-header: 100;
  --z-overlay: 200;
  --z-modal: 300;
}

/* ─── RESET ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img, picture, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
a:hover { color: var(--accent); }

ul, ol { line-height: 1.7; }
li { margin-bottom: var(--sp-1); }

strong { font-weight: 700; color: var(--text); }

/* ─── LAYOUT ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

/* ─── HEADER ─── */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(250,248,245,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--sp-3) var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
}
.logo:hover { color: var(--text); }
.logo__mark {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

.nav { position: relative; }
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  list-style: none;
}
.nav__links a {
  color: var(--text-body);
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
.nav__links a:hover { color: var(--primary); }
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.btn--primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 2px 8px rgba(232,93,58,.3);
}
.btn--primary:hover {
  background: var(--accent-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,93,58,.4);
}
.btn--secondary {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn--secondary:hover {
  background: var(--primary);
  color: white;
}
.btn--dark {
  background: var(--bg-dark);
  color: white;
}
.btn--dark:hover {
  background: var(--bg-dark-soft);
  color: white;
}
.btn--ghost {
  background: transparent;
  color: var(--text-body);
}
.btn--ghost:hover {
  background: var(--bg-soft);
  color: var(--text);
}

/* ─── HERO ─── */
.hero {
  padding: var(--sp-9) 0 var(--sp-8);
  position: relative;
}
.hero__eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-4);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: var(--sp-5);
  max-width: 900px;
}
.hero__title em {
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
}
.hero__sub {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: var(--sp-7);
}
.hero__ctas {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-4);
}
.hero__stats {
  display: flex;
  gap: var(--sp-6);
  margin-top: var(--sp-7);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.hero__stat-label {
  font-size: .875rem;
  color: var(--text-muted);
}

/* ─── SECTIONS ─── */
.section {
  padding: var(--sp-8) 0;
}
.section--alt {
  background: var(--bg-soft);
}
.section__head {
  margin-bottom: var(--sp-6);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--text);
  margin-bottom: var(--sp-2);
}
.section__sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* ─── DESTINATION GRID ─── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-5);
}
@media (max-width: 480px) {
  .dest-grid {
    grid-template-columns: 1fr;
  }
}
.dest-card {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-md);
  transition: all var(--dur) var(--ease);
  aspect-ratio: 4/5;
}
.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  text-decoration: none;
}
.dest-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,31,46,.85) 0%, rgba(26,31,46,.2) 50%, transparent 100%);
  z-index: 1;
}
.dest-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-5);
  z-index: 2;
  color: white;
}
.dest-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--sp-1);
}
.dest-card__price {
  font-size: .875rem;
  opacity: .9;
  font-weight: 500;
}

/* ─── DEAL CARDS ─── */
.deal-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--dur) var(--ease);
  border: 1px solid var(--border);
}
.deal-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.deal-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.deal-card__body {
  padding: var(--sp-5);
}
.deal-card__badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  background: var(--accent);
  color: white;
  margin-bottom: var(--sp-3);
}
.deal-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}
.deal-card__desc {
  font-size: .9375rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
  line-height: 1.55;
}
.deal-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.deal-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.deal-card__price-label {
  font-size: .8125rem;
  color: var(--text-muted);
}

/* ─── FEATURES ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-5);
}
.feature {
  padding: var(--sp-5);
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  color: var(--primary);
}
.feature__icon svg { width: 24px; height: 24px; }
.feature__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--sp-2);
}
.feature__text {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── ARTICLE / PROSE ─── */
.prose {
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
  margin-top: var(--sp-7);
  margin-bottom: var(--sp-3);
  line-height: 1.25;
}
.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-2);
}
.prose p {
  margin-bottom: var(--sp-4);
  line-height: 1.75;
}
.prose ul, .prose ol {
  margin-bottom: var(--sp-4);
  padding-left: var(--sp-5);
}
.prose ul li { margin-bottom: var(--sp-2); }
.prose strong { color: var(--text); font-weight: 700; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb__sep { color: var(--text-muted); opacity: .5; }

/* ─── FAQ ─── */
.faq-section {
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  padding: var(--sp-4) 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.faq-item__q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform var(--dur) var(--ease);
}
.faq-item.open .faq-item__q::after {
  transform: rotate(45deg);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease);
}
.faq-item.open .faq-item__a {
  max-height: 500px;
}
.faq-item__a-inner {
  padding-bottom: var(--sp-4);
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  margin: var(--sp-8) var(--sp-5);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}
.cta-section__sub {
  font-size: 1.0625rem;
  color: var(--text-on-dark-muted);
  margin-bottom: var(--sp-5);
}
.cta-section .btn--primary {
  background: var(--accent);
}

/* ─── TRUST BAR ─── */
.trust-bar {
  display: flex;
  gap: var(--sp-6);
  padding: var(--sp-4) 0;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .875rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ─── TABLES ─── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-5) 0;
  font-size: .9375rem;
}
.compare-table th {
  text-align: left;
  font-weight: 600;
  color: var(--text);
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-soft);
  border-bottom: 2px solid var(--border);
}
.compare-table td {
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: var(--sp-8) 0 var(--sp-5);
  margin-top: var(--sp-9);
}
.footer__top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--sp-2);
}
.footer__desc {
  font-size: .875rem;
  color: var(--text-on-dark-muted);
  margin-bottom: var(--sp-6);
  max-width: 400px;
  line-height: 1.55;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
}
.footer-col h4,
.footer-col .footer-col__heading {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-on-dark-muted);
  margin-bottom: var(--sp-3);
}
/* Touch-target fix: Footer links ≥44px Höhe auf Mobile */
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col li { margin-bottom: var(--sp-2); }
.footer-col a {
  color: var(--text-on-dark);
  font-size: .875rem;
  text-decoration: none;
  opacity: .8;
  transition: opacity var(--dur-fast) var(--ease);
}
.footer-col a:hover { opacity: 1; color: var(--text-on-dark); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--sp-5);
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  font-size: .8125rem;
  color: var(--text-on-dark-muted);
}
.footer-bottom__status {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .125rem .5rem;
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  font-size: .75rem;
  letter-spacing: .01em;
}

/* ─── REVEAL ANIMATION ─── */
/* Progressive enhancement: visible by default, only hidden when JS is active */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
html.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.visible,
html.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── ARTICLE HEAD ─── */
.article-head {
  max-width: var(--container-narrow);
  margin: 0 auto var(--sp-6);
}
.article-head h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--text);
  margin-bottom: var(--sp-4);
}
.article-head h1 em {
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
}
.article-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}
.article-meta {
  display: flex;
  gap: var(--sp-5);
  font-size: .875rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.article-meta span {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.article-meta svg { width: 16px; height: 16px; }

/* ─── AUTHOR BIO ─── */
.author-bio {
  background: var(--bg-soft, #f5f1eb);
  padding: var(--sp-5, 24px);
  border-radius: var(--radius-md, 12px);
  margin-top: var(--sp-6, 32px);
}
.author-bio h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: var(--sp-2, 8px);
  color: var(--text);
}
.author-bio p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── PRICE BADGE ─── */
.price-badge {
  display: inline-flex;
  flex-direction: column;
  gap: var(--sp-1);
  background: var(--bg-elevated);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-5);
  margin: var(--sp-5) 0;
}
.price-badge__label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
}
.price-badge__amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.price-badge__meta {
  font-size: .8125rem;
  color: var(--text-muted);
}

/* ─── MISC ─── */
.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--primary);
  background: var(--bg-soft);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-3);
}
.cat-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
/* ─── RESPONSIVE ─── */  → consolidated below

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: var(--sp-2); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── HERO WITH BACKGROUND PHOTO ─── */
.hero--photo {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--text-on-dark, #fff);
}

.hero--photo__bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/hero-mobile.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

@media (min-width: 769px) {
  .hero--photo__bg { background-image: url('/img/hero.webp'); }
}

.hero--photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,28,.55) 0%, rgba(8,8,28,.3) 60%, rgba(8,8,28,.45) 100%);
  z-index: 1;
}

.hero--photo .container {
  position: relative;
  z-index: 2;
}

.hero--photo .hero__eyebrow,
.hero--photo .hero__title,
.hero--photo .hero__sub {
  color: #fff;
}

.hero--photo .hero__title em {
  color: var(--accent-light, #7dd3c0);
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM COMPONENTS v3.1 — appended
   Token aliases + new component library
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKEN ALIASES (semantic shorthand) ─── */
:root {
  --coral: var(--accent);          /* #e85d3a — CTA / accent coral */
  --coral-dark: var(--accent-dark);
  --teal: var(--primary);          /* #0d5c63 — brand teal */
  --teal-light: var(--primary-light);
  --teal-dark: var(--primary-dark);
}

/* ─── 1. SEARCH WIDGET ─── */
.search-widget {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(26,31,46,.10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: var(--sp-3);
  align-items: stretch;
}
.search-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--sp-2) var(--sp-4);
  border-right: 1px solid var(--border);
}
.search-field:last-of-type { border-right: none; }
.search-field label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
}
.search-field input,
.search-field select {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  color: var(--text);
  outline: none;
  width: 100%;
}
.search-field input::placeholder { color: var(--text-muted); opacity: .7; }
.search-field input:focus,
.search-field select:focus { color: var(--primary); }
.search-btn {
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  min-height: 56px;
  padding: 0 var(--sp-5);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  white-space: nowrap;
  transition: background var(--dur) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease);
}
.search-btn:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(232,93,58,.35);
}
.search-btn:active { transform: translateY(0); }

/* ─── 2. TESTIMONIAL CARDS ─── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.testimonial-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.testimonial-stars {
  color: #f5a623;
  font-size: 1.25rem;
  letter-spacing: 2px;
  line-height: 1;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--text);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.2;
}
.testimonial-role {
  font-size: .8125rem;
  color: var(--text-muted);
}

/* ─── 3. TRUST BADGES ─── */
.trust-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 16px 0;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(13,92,99,.08);
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--teal);
  white-space: nowrap;
}
.trust-badge svg,
.trust-badge .trust-badge__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ─── 4. STAR RATING (inline) ─── */
.stars-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .8125rem;
  color: var(--text-muted);
}
.stars-inline::before {
  content: '★';
  color: #f5a623;
  font-size: 1em;
  line-height: 1;
}

/* ─── 5. STEPS SECTION ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.step-card {
  text-align: center;
  padding: 24px;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  line-height: 1;
}
.step-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.0625rem;
}
.step-desc {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── 6. DESTINATION CARD HOVER (image zoom) ─── */
.dest-card img,
.dest-card .dest-card__image {
  transition: transform .4s var(--ease);
}
.dest-card:hover img,
.dest-card:hover .dest-card__image {
  transform: scale(1.05);
}

/* ─── 7. DEAL CARD BADGE ENHANCEMENT ─── */
/* Repositions badge as an absolute overlay on the card media. */
.deal-card { position: relative; }
.deal-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.4;
  margin-bottom: 0;            /* override inline-flow margin from base rule */
}
.deal-card__badge--top {
  background: var(--coral);
  color: #fff;
}
.deal-card__badge--ai {
  background: #f5a623;
  color: #fff;
}
.deal-card__badge--last {
  background: var(--teal);
  color: #fff;
}

/* END PREMIUM COMPONENTS */

/* ═══ PREMIUM COMPONENTS v4 — ITERATION 1 ═══ */

/* ─── HERO SEARCH WIDGET ─── */
.hero-search {
  max-width: 900px;
  margin: var(--sp-7) auto 0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0;
  align-items: center;
}
.hero-search__field {
  padding: 10px 16px;
  border-right: 1px solid var(--border);
}
.hero-search__field:last-of-type { border-right: none; }
.hero-search__field label {
  display: block;
  font-size: .6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.hero-search__field select,
.hero-search__field input {
  width: 100%;
  border: none;
  font-size: .9375rem;
  font-family: var(--font-body);
  color: var(--text);
  background: transparent;
  outline: none;
  padding: 2px 0;
}
.hero-search__btn {
  background: var(--coral);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  min-height: 48px;
}
.hero-search__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,107,91,.4);
}

/* ─── HERO TRUST BAR ─── */
.hero-trustbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--sp-5);
}
.hero-trustbar__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
}

/* ─── STEPS SECTION ─── */
.steps-section {
  padding: 80px 0;
  background: var(--cream, #faf8f5);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  text-align: center;
  padding: 24px;
}
.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal, #0d5c63);
  color: white;
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.5rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  padding: 80px 0;
  background: white;
}
.testimonial-card {
  background: var(--cream, #faf8f5);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border, #e8e4dc);
}
.testimonial-card .stars {
  color: #f5a623;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-card .quote {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
}
.testimonial-card .author {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted, #6b6b7b);
}

/* ─── READING PROGRESS BAR ─── */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--coral, #ff6b5b);
  z-index: 9999;
  transition: width .1s;
}

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--coral, #ff6b5b);
  color: white;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  z-index: 9998;
  font-size: 1.5rem;
  transition: transform .2s;
}
.back-to-top:hover { transform: translateY(-2px); }
.back-to-top.visible { display: flex; }

/* ─── INLINE STARS ─── */
.stars-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .8125rem;
  color: var(--text-muted, #6b6b7b);
}
.stars-inline::before {
  content: '★';
  color: #f5a623;
  font-size: 1rem;
}

/* ─── DEAL CARD BADGE ─── */
.deal-card { position: relative; }
.deal-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  z-index: 2;
  color: white;
}
.deal-card__badge--top { background: var(--coral, #ff6b5b); }
.deal-card__badge--ai { background: #f5a623; }
.deal-card__badge--last { background: var(--teal, #0d5c63); }

/* ─── DEST CARD HOVER ─── */
.dest-card {
  transition: transform .3s var(--ease, ease), box-shadow .3s var(--ease, ease);
}
.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.15);
}
.dest-card img, .dest-card__image {
  transition: transform .4s var(--ease, ease);
}
.dest-card:hover img, .dest-card:hover .dest-card__image {
  transform: scale(1.05);
}

/* ─── TESTIMONIAL ALIASES (subagent naming) ─── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.testi-card {
  background: var(--cream, #faf8f5);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border, #e8e4dc);
  margin: 0;
}
.testi-stars {
  color: #f5a623;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testi-quote {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--text);
  margin: 0 0 16px 0;
}
.testi-author {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted, #6b6b7b);
}
/* ─── MOBILE SEARCH FIX (390px) ─── */  → consolidated below

/* ─── HERO TEXT MOBILE FIX ─── */  → consolidated below

/* ─── SECTION SPACING MOBILE ─── */  → consolidated below

/* ─── SEARCH WIDGET PROPORTION FIX (desktop only) ─── */  → consolidated below

/* ─── HERO HEIGHT FIX ─── */
.hero {
  min-height: 0;
}

/* ─── DESTINATION HERO (hero-content, hero-eyebrow, hero-sub, deal-highlight) ─── */
.hero .hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  color: rgba(255,255,255,.85);
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.hero .hero-sub {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
  margin-bottom: var(--sp-6);
}
.hero .hero h1 {
  margin-bottom: var(--sp-4);
}
.hero .deal-highlight {
  margin-top: var(--sp-6);
}
.hero--photo__bg {
  height: 100%;
}

/* ─── HERO TEXT READABILITY FIX ─── */
.hero h1, .hero__title {
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero p, .hero__sub {
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
.hero .hero__eyebrow {
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.hero--photo__overlay {
  background: linear-gradient(to bottom, rgba(8,8,12,.55) 0%, rgba(8,8,12,.3) 40%, rgba(8,8,12,.55) 100%);
}

/* ─── SEARCH WIDGET REFINEMENT ─── */
.hero-search {
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
}
.hero-search__field label {
  color: #0d5c63;
  font-weight: 600;
}

/* ─── SECTION SPACING (desktop) ─── */
.section__title { letter-spacing: -0.02em; }
.section--alt { background: #f3efe9; }

/* ─── TRUST PILLS (alias) ─── */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(13,92,99,.08);
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 500;
  color: #0d5c63;
}
.trust-pill strong { font-weight: 600; }

/* ─── STEP NUMBER (alias) ─── */
.step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0d5c63;
  color: white;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

/* ─── STARS INLINE (alias) ─── */
.stars-inline {
  display: block;
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
  margin: 8px 0;
}
.stars-inline .text-muted { color: #6b7280; font-size: .875rem; }

/* ─── FINAL POLISH v5 ─── */

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Focus visible for accessibility */
*:focus-visible {
  outline: 3px solid #0d5c63;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Better H1 letter spacing */
.hero h1, .hero__title {
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* Section titles consistent */
.section__title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Better link styling */
a { color: #0d5c63; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Selection color */
::selection { background: rgba(232,93,58,.2); color: inherit; }

/* Scrollbar styling */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f3efe9; }
::-webkit-scrollbar-thumb { background: #0d5c63; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #094a50; }
/* ═══════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE OVERHAUL v2 — 2026-08-07
   Targets: 320px (SE), 390px (iPhone 14 Pro), 768px (iPad)
   ═══════════════════════════════════════════════════════════════════ */

/* ─── TABLET & MOBILE (≤768px) ─── */  → consolidated below

/* ─── SMALL MOBILE (≤480px) — iPhone SE, etc. ─── */  → consolidated below

/* ─── TINY MOBILE (≤360px) — very small Android, iPhone SE 1st gen ─── */  → consolidated below

/* ─── TOUCH TARGET ENFORCEMENT — all interactive elements ≥44px height ─── */  → consolidated below

/* ─── MOBILE OVERFLOW FIX ─── */  → consolidated below

/* ─── REMOVE LARGE WHITE BANDS → desktop-only block ─── */
/* .section--alt !important → desktop-only block */
/* @media(min-width:768px) 80px → desktop-only block */

/* ─── QA AUDITOR CONTRAST FIXES ─── */

/* Fix 1: Header CTA - coral bg with white text (was dark-on-dark, 1.34:1 FAIL) */
/* [Harmonized 2026-08-12: radius unified to --btn-radius, removed !important overrides] */
.btn--coral {
  background: var(--accent, #e85d3a);
  color: #ffffff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--btn-radius, var(--radius-full));
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.btn--coral:hover {
  background: var(--accent-dark, #d04e2f);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Fix 2: Coral CTA white text - darken coral for WCAG AA (was 3.47:1 FAIL) */
.hero-search__btn, .cta-section .btn--coral, .btn--primary {
  background: var(--accent, #e85d3a) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}
.hero-search__btn:hover, .cta-section .btn--coral:hover {
  background: #b04428 !important;
}

/* Fix 3: Step numbers - ensure visible via CSS counter */
.steps-grid {
  counter-reset: step;
}
.step__num {
  counter-increment: step;
}
.step__num::before {
  content: counter(step) !important;
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  height: 100% !important;
}

/* ─── DEST GRID CENTERING + STEP NUMBER FIX ─── */

/* Center last row of destination grid (8 items in 3 cols = 3+3+2) */
.dest-grid {
  justify-content: center !important;
}

/* Fix step numbers - use explicit text content as fallback for counters */
.step__num {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}
.step__num::before {
  content: counter(step) !important;
  position: absolute !important;
  font-family: 'Fraunces', serif !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: white !important;
}

/* ─── PREMIUM POLISH v9 ─── */

/* Destination cards: larger images, better overlay gradient */
.dest-card {
  border-radius: 16px !important;
  overflow: hidden !important;
  position: relative !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.08) !important;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s ease !important;
}
.dest-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,.15) !important;
}
.dest-card img {
  transition: transform .5s cubic-bezier(.4,0,.2,1) !important;
}
.dest-card:hover img {
  transform: scale(1.08) !important;
}

/* Destination card text overlay: better readability */
.dest-card__overlay {
  background: linear-gradient(to top, rgba(8,8,12,.85) 0%, rgba(8,8,12,.3) 60%, transparent 100%) !important;
}

/* Deal cards: better badge placement */
.deal-card__badge {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  z-index: 2 !important;
  padding: 6px 14px !important;
  border-radius: 999px !important;
  font-size: .75rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.15) !important;
}

/* Testimonials: more elegant */
.testi-card, .testimonial-card {
  border-radius: 16px !important;
  padding: 32px !important;
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.04) !important;
  transition: box-shadow .3s ease !important;
}
.testi-card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08) !important;
}
/* testi-quote 1.125rem → desktop-only block */

/* Search widget: more refined */
.hero-search {
  border-radius: 16px !important;
  box-shadow: 0 12px 40px rgba(0,0,0,.12) !important;
  border: 1px solid rgba(255,255,255,.8) !important;
}

/* .section + .section → desktop-only block */

/* Better eyebrow text */
.hero__eyebrow, .section__eyebrow {
  font-size: .75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: .12em !important;
  color: #0d5c63 !important;
}

/* Footer refinement */
.footer {
  border-top: 4px solid #0d5c63 !important;
}

/* Better hover on all CTA buttons */
.btn--coral, .hero-search__btn {
  transition: transform .2s ease, box-shadow .2s ease !important;
}
.btn--coral:hover, .hero-search__btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(200,78,47,.3) !important;
}

/* DESIGN REVIEW v10 → desktop-only block */

/* Fix 2: Search button height (was 84px, should be ~56px) */
.hero-search__btn {
  min-height: 56px !important;
  max-height: 56px !important;
  height: 56px !important;
  padding: 0 24px !important;
  font-size: 1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* hero-search__field 56px → desktop-only block */
/* hero-search__field input 32px → desktop-only block */

/* Fix 4: Testimonial avatars */
.testi-author {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 8px !important;
}
.testi-author::before {
  content: '' !important;
  display: inline-block !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #0d5c63 !important;
  color: #ffffff !important;
  flex-shrink: 0 !important;
}

/* hero__sub 1.25rem → desktop-only block */

/* deal-grid minmax(320px) → desktop-only block */

/* hero break-out → desktop-only block */
/* hero-search max-width → desktop-only block */

/* ─── TESTIMONIAL AVATARS ─── */
.testi-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}
.testi-avatar {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #0d5c63 !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'Fraunces', Georgia, serif !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  flex-shrink: 0 !important;
  margin-bottom: 4px !important;
}
.testi-author {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}
/* ─── MOBILE TEXT READABILITY FIX ─── */  → consolidated below

/* ─── EYEBROW SIZE FIX ─── */
.hero__eyebrow {
  font-size: .8125rem !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
}

/* ═══ DEAL-CARD META COLLISION FIX ═══ */
.deal-card__meta {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 8px !important;
}

/* ════════════════════════════════════════════════════════════════
   MOBILE-SAFE DESKTOP-ONLY RULES  @media (min-width: 769px)
   Relocated unconditional !important rules that overrode mobile.
   Now scoped ≥769px so @media(max-width:768px) wins on phones.
   ════════════════════════════════════════════════════════════════ */
@media (min-width: 769px) {
  .section { padding: 80px 0 !important; }
  .section + .section { padding-top: 0 !important; }
  .section--alt { background: #f3efe9 !important; }
  .testi-quote, .testimonial-text {
    font-family: 'Fraunces', serif !important;
    font-style: italic !important;
    font-size: 1.125rem !important;
    line-height: 1.6 !important;
    color: #1a1f2e !important;
  }
  .hero-search {
    max-width: 960px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero__search-wrap, .hero .container { max-width: 960px !important; }
  .hero-search__field { min-height: 56px !important; }
  .hero-search__field input,
  .hero-search__field select {
    min-height: 32px !important;
    font-size: .9375rem !important;
  }
  .hero__sub, .hero p:not(.hero-search *) {
    font-size: 1.25rem !important;
    line-height: 1.5 !important;
  }
  .deal-grid, .deal-cards {
    gap: 24px !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  }
}

/* ═══ CONSOLIDATED @media (max-width: 1024px) — 3 blocks → 1 ═══ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-5); }

  .search-widget { grid-template-columns: repeat(2, 1fr); gap: var(--sp-2); }
    .search-field { border-right: none; border-bottom: 1px solid var(--border); }
    .search-field:nth-last-of-type(-n+1) { border-bottom: none; }

  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }

}

/* ═══ CONSOLIDATED @media (max-width: 900px) — 1 blocks → 1 ═══ */
@media (max-width: 900px) {
  .hero-search {
      grid-template-columns: 1fr 1fr;
      gap: 4px;
    }
    .hero-search__field { border-right: none; border-bottom: 1px solid var(--border); }
    .hero-search__btn { grid-column: 1 / -1; width: 100%; }

}

/* ═══ CONSOLIDATED @media (max-width: 768px) — 9 blocks → 1 ═══ */
@media (max-width: 768px) {
  :root {
      --sp-9: 64px;
      --sp-8: 48px;
      --sp-7: 36px;
    }
    body { font-size: 16px; }

    /* ═══ MOBILE NAVIGATION FIX ═══
       Problem: .nav was only 44px wide, so .nav__links absolute dropdown
       was only 44px wide too. Links were 32px wide, unusable.
       Fix: Position dropdown relative to .header, full width.
    */
    .header {
      position: relative;
    }
    .header__inner {
      flex-wrap: wrap;
      padding: var(--sp-2) var(--sp-3);
    }
    .nav {
      position: static;
      width: auto;
      flex-shrink: 0;
    }
    .nav__toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-width: 44px;
      min-height: 44px;
      padding: 8px;
      background: transparent;
      border: none;
      cursor: pointer;
    }
    .nav__toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text);
      margin: 5px 0;
      transition: all var(--dur-fast) var(--ease);
    }
    .nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .nav__toggle.open span:nth-child(2) { opacity: 0; }
    .nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(7px,-6px); }
    .nav__links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      width: 100%;
      flex-direction: column;
      background: var(--bg-elevated);
      padding: var(--sp-3) var(--sp-4);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-md);
      gap: 0;
      z-index: 200;
    }
    .nav__links.open { display: flex; }
    .nav__links li {
      width: 100%;
    }
    .nav__links a {
      display: block;
      padding: 14px 0;
      font-size: 1rem;
      font-weight: 500;
      border-bottom: 1px solid var(--border-light);
      width: 100%;
    }
    .nav__links li:last-child a {
      border-bottom: none;
    }
    .nav__links .btn {
      margin-top: var(--sp-2);
      width: 100%;
      text-align: center;
      border: none;
    }

    .hero { padding: var(--sp-6) 0 var(--sp-5); }
    .hero__stats { gap: var(--sp-4); }

    .dest-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
    .dest-card__name { font-size: 1.125rem; }

    .cta-section { padding: var(--sp-6) var(--sp-4); margin: var(--sp-5) var(--sp-3); }
    .footer-grid { grid-template-columns: 1fr; text-align: left; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }

    .deal-card__meta { flex-wrap: wrap; gap: var(--sp-3); }

    .compare-table { font-size: .8125rem; }
    .compare-table th, .compare-table td { padding: var(--sp-3) var(--sp-2); }

    .trust-bar { gap: var(--sp-4); padding: var(--sp-3); }

    .container, .container-narrow, .container-wide { padding: 0 var(--sp-4); }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  .hero--photo {
      min-height: 500px;
    }

  .steps-grid { grid-template-columns: 1fr; }

  .testi-grid { grid-template-columns: 1fr; }

  .hero-search {
      grid-template-columns: 1fr !important;
      gap: 4px;
      padding: 12px;
      margin-left: 16px;
      margin-right: 16px;
      margin-top: var(--sp-6);
    }
    .hero-search__field {
      border-right: none !important;
      border-bottom: 1px solid var(--border, #e8e4dc);
      padding: 10px 12px;
    }
    .hero-search__field:last-of-type {
      border-bottom: none;
    }
    .hero-search__btn {
      grid-column: 1 / -1 !important;
      width: 100%;
      margin-top: 4px;
    }
    .hero-trustbar {
      gap: 8px;
      margin-top: 16px;
      padding: 0 16px;
    }
    .hero-trustbar__pill {
      font-size: .6875rem;
      padding: 4px 10px;
    }

    /* Destination hero spacing on mobile */
    .hero .hero-eyebrow { margin-bottom: var(--sp-2) !important; }
    .hero .hero h1, .hero h1 { margin-bottom: var(--sp-3) !important; }
    .hero .hero-sub { margin-bottom: var(--sp-5) !important; }
    .hero .deal-highlight { margin-top: var(--sp-5) !important; }

  .section, .steps-section, .testimonials-section {
      padding: 48px 0 !important;
    }
    .section__title {
      font-size: 1.5rem !important;
    }

  /* --- Section spacing: reduce from 96px to 48px on mobile --- */
    .section,
    .steps-section,
    .testimonials-section {
      padding: 48px 0 !important;
    }
    .section__title {
      font-size: 1.5rem !important;
      line-height: 1.25;
    }
    .section__sub {
      font-size: .9375rem !important;
    }

    /* --- Hero: tighten padding, fix text sizing --- */
    .hero {
      padding: 40px 0 32px !important;
      min-height: 0 !important;
    }
    .hero h1, .hero__title {
      font-size: 1.75rem !important;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }
    .hero p, .hero__sub {
      font-size: .9375rem !important;
      line-height: 1.5;
    }

    /* --- Hero search widget: stack vertically --- */
    .hero-search {
      grid-template-columns: 1fr !important;
      gap: 0 !important;
      padding: 12px !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      margin-top: var(--sp-6) !important;
      max-width: 100% !important;
      border-radius: 16px;
    }
    .hero-search__field {
      border-right: none !important;
      border-bottom: 1px solid var(--border, #e8e4dc) !important;
      padding: 10px 12px !important;
      min-width: 0;
    }
    .hero-search__field:last-of-type {
      border-bottom: none !important;
    }
    .hero-search__field input,
    .hero-search__field select {
      width: 100%;
      height: 48px;
      min-height: 48px;
      padding: 12px 14px !important;
      font-size: 1rem !important;
      border: 1.5px solid #e5e7eb !important;
      border-radius: 12px;
      -webkit-appearance: none;
      appearance: none;
      box-sizing: border-box;
    }
    .hero-search__btn {
      grid-column: 1 / -1 !important;
      width: 100% !important;
      margin: 4px 0 0 !important;
      min-height: 52px !important;
      padding: 14px 24px !important;
      font-size: 1rem !important;
      border-radius: 12px;
    }

    /* --- Hero trustbar: allow wrapping, smaller pills --- */
    .hero-trustbar {
      gap: 8px !important;
      margin-top: 16px !important;
      padding: 0 16px !important;
      justify-content: center;
    }
    .hero-trustbar__pill {
      font-size: .6875rem !important;
      padding: 4px 10px !important;
      line-height: 1.4;
    }

    /* --- Destination grid: single column, adequate card height --- */
    .dest-grid {
      grid-template-columns: 1fr !important;
      gap: 16px !important;
    }
    .dest-card {
      border-radius: 16px;
    }
    .dest-card__image {
      aspect-ratio: 16/10;
    }
    .dest-card__content {
      padding: 16px;
    }
    .dest-card__name {
      font-size: 1.25rem;
      line-height: 1.3;
    }
    .dest-card__price {
      font-size: 1rem;
    }

    /* --- Deal cards: single column, fix meta/price overlap --- */
    .deal-grid {
      grid-template-columns: 1fr !important;
      gap: 20px !important;
    }
    .deal-card {
      border-radius: 16px;
    }
    .deal-card__image {
      aspect-ratio: 16/10;
    }
    .deal-card__body {
      padding: 20px 16px !important;
    }
    .deal-card__title {
      font-size: 1.125rem !important;
      margin-bottom: 6px;
    }
    .deal-card__desc {
      font-size: .875rem !important;
      line-height: 1.5;
      margin-bottom: 12px;
    }
    .deal-card__meta {
      flex-wrap: wrap;
      gap: 4px 12px !important;
      margin-bottom: 16px;
      align-items: baseline;
    }
    .deal-card__price {
      font-size: 1.25rem !important;
    }
    .deal-card__price-label {
      font-size: .75rem;
    }
    .deal-card .btn,
    .deal-card__body .btn {
      display: flex;
      width: 100%;
      justify-content: center;
      min-height: 48px;
      padding: 14px 20px;
      font-size: 1rem;
    }

    /* --- Steps grid: single column --- */
    .steps-grid {
      grid-template-columns: 1fr !important;
      gap: 32px !important;
    }
    .step {
      padding: 0 16px;
    }
    .step h3 {
      font-size: 1.125rem;
    }
    .step p {
      font-size: .9375rem;
    }

    /* --- Testimonials grid: single column --- */
    .testi-grid {
      grid-template-columns: 1fr !important;
      gap: 16px !important;
    }
    .testi-card {
      padding: 20px 16px !important;
    }
    .testi-card blockquote,
    .testi-quote {
      font-size: .9375rem !important;
      line-height: 1.55;
    }

    /* --- Feature grid: single column --- */
    .feature-grid {
      grid-template-columns: 1fr !important;
      gap: 16px !important;
    }
    .feature-card {
      padding: 20px 16px !important;
    }

    /* --- CTA section: tighter padding --- */
    .cta-section {
      padding: 32px 16px !important;
      margin: 24px 12px !important;
      border-radius: 16px;
    }
    .cta-section__title {
      font-size: 1.5rem !important;
      line-height: 1.25;
    }
    .cta-section .btn {
      min-height: 48px;
      padding: 14px 24px;
      font-size: 1rem;
    }

    /* --- Footer: two columns, adequate spacing --- */
    .footer-grid {
      grid-template-columns: 1fr 1fr !important;
      gap: 24px !important;
    }
    .footer-col a {
      display: inline-block;
      padding: 4px 0;
      min-height: 36px;
      line-height: 28px;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    /* --- Trust bar: wrap and shrink --- */
    .trust-bar {
      gap: 12px !important;
      padding: 16px !important;
      flex-wrap: wrap;
      justify-content: center;
    }
    .trust-item {
      font-size: .8125rem;
    }

    /* --- Comparison table: compact --- */
    .compare-table {
      font-size: .8125rem !important;
    }
    .compare-table th, .compare-table td {
      padding: 10px 6px !important;
    }

    /* --- Container: adequate side padding --- */
    .container, .container-narrow, .container-wide {
      padding: 0 16px !important;
    }

  .nav__links a,
    .footer-col a,
    .footer-col li,
    .btn:not(.btn--sm) {
      min-height: 44px;
      display: flex;
      align-items: center;
    }
    .footer-col li { width: 100%; }
    .footer-col a {
      width: 100%;
      min-height: 44px;
      padding: 10px 4px;
      line-height: 1.4;
    }
    .nav__links a {
      width: 100%;
      padding: 12px 8px;
      line-height: 1.4;
    }
    .logo {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
    }

}

/* ═══ CONSOLIDATED @media (max-width: 640px) — 2 blocks → 1 ═══ */
@media (max-width: 640px) {
  .search-widget {
      grid-template-columns: 1fr;
      gap: var(--sp-2);
      padding: var(--sp-4) var(--sp-3);
    }
    .search-field {
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: var(--sp-2) var(--sp-3);
    }
    .search-btn { width: 100%; }

  .testimonial-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: var(--sp-5); }

}

/* ═══ CONSOLIDATED @media (max-width: 480px) — 6 blocks → 1 ═══ */
@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: var(--sp-3); }
    .hero__ctas { flex-direction: column; }
    .hero__ctas .btn { width: 100%; }
    .dest-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }

  .hero-search { grid-template-columns: 1fr; }
    .hero-search__field { border-bottom: 1px solid var(--border); }

  .hero h1, .hero__title {
      font-size: 1.75rem !important;
      line-height: 1.2;
      margin-bottom: var(--sp-3) !important;
    }
    .hero p, .hero__sub {
      font-size: .9375rem !important;
    }
    .hero__eyebrow {
      margin-bottom: var(--sp-2) !important;
    }
    .hero__sub {
      margin-bottom: var(--sp-5) !important;
    }
    .hero__ctas {
      flex-direction: column;
      gap: 8px;
      margin-bottom: var(--sp-2) !important;
    }
    .hero__ctas .btn {
      width: 100%;
    }

  .hero {
      padding: 32px 0 24px !important;
    }
    .hero h1, .hero__title {
      font-size: 1.5rem !important;
      line-height: 1.2;
    }
    .hero p, .hero__sub {
      font-size: .875rem !important;
    }
    .hero-search {
      padding: 10px !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      margin-top: var(--sp-6) !important;
    }
    .hero-search__field input,
    .hero-search__field select {
      min-height: 42px;
      font-size: .9375rem !important;
    }
    .hero-search__btn {
      min-height: 48px !important;
      font-size: .9375rem !important;
    }
    .hero-trustbar__pill {
      font-size: .625rem !important;
      padding: 3px 8px !important;
    }

    /* Section spacing even tighter on tiny screens */
    .section,
    .steps-section,
    .testimonials-section {
      padding: 36px 0 !important;
    }
    .section__title {
      font-size: 1.375rem !important;
    }

    /* Dest/deal card text */
    .dest-card__name {
      font-size: 1.125rem;
    }
    .deal-card__title {
      font-size: 1rem !important;
    }

    /* Footer: single column on very small screens */
    .footer-grid {
      grid-template-columns: 1fr !important;
    }

  * { max-width: 100% !important; }
    body { overflow-x: clip; }
    .container, .container-narrow, .container-wide { 
      padding: 0 16px !important; 
      max-width: 100% !important;
    }
    .hero-search { 
      width: calc(100% - 32px) !important;
      margin-left: auto !important;
      margin-right: auto !important;
    }
    .dest-card { width: 100% !important; }
    .deal-card { width: 100% !important; }
    img { max-width: 100%; height: auto; }
    table { display: block; overflow-x: auto; }
    pre, code { white-space: pre-wrap; word-break: break-word; }
    .footer-grid { grid-template-columns: 1fr !important; }
    .hero h1, .hero__title { font-size: 1.75rem !important; }
    .section__title { font-size: 1.5rem !important; }
    .hero-search__btn { width: 100% !important; }

  .hero__eyebrow { font-size: .75rem !important; letter-spacing: .12em !important; }
    .hero__title, .hero h1 {
      font-size: 1.75rem !important;
      line-height: 1.2 !important;
    }
    .hero__sub {
      font-size: 1rem !important;
      line-height: 1.5 !important;
    }
    .hero-search__field input,
    .hero-search__field select {
      font-size: 1rem !important;
    }
    .hero-search__btn {
      font-size: 1.0625rem !important;
      font-weight: 700 !important;
    }
    .hero-trustbar__pill {
      font-size: .75rem !important;
    }
    .section__title {
      font-size: 1.5rem !important;
    }
    .section__sub {
      font-size: 1rem !important;
    }
    .dest-card__name {
      font-size: 1.125rem !important;
    }
    .dest-card__price {
      font-size: 1.0625rem !important;
    }
    .deal-card__title {
      font-size: 1.125rem !important;
    }
    .deal-card__price {
      font-size: 1.25rem !important;
    }

}

/* ═══ CONSOLIDATED @media (max-width: 360px) — 1 blocks → 1 ═══ */
@media (max-width: 360px) {
  .container, .container-narrow, .container-wide {
      padding: 0 12px !important;
    }
    .hero h1, .hero__title {
      font-size: 1.375rem !important;
    }
    .hero-search__field input,
    .hero-search__field select {
      font-size: .875rem !important;
    }

}

/* ═══ CONSOLIDATED @media (min-width: 901px) — 1 blocks → 1 ═══ */
@media (min-width: 901px) {
  .hero-search {
      grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
      max-width: 1000px;
      gap: 0;
    }
    .hero-search__field {
      min-width: 0;
      padding: 12px 16px;
    }
    .hero-search__btn {
      min-height: 52px;
      padding: 0 24px;
      font-size: .9375rem;
      margin: 4px;
    }

}

/* ═══ CONSOLIDATED @media (prefers-reduced-motion: reduce) — 2 blocks → 1 ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
      animation-duration: .01ms !important;
      transition-duration: .01ms !important;
    }
    .reveal { opacity: 1; transform: none; }

  html { scroll-behavior: auto; }
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }

}

/* ═══ COMPETITIVE ANALYSIS STRUCTURAL IMPROVEMENTS ═══ */

/* R6: Horizontally scrollable category chips */
.category-chips {
  display: flex;
  gap: 0.625rem;
  overflow-x: auto;
  padding: 0.75rem 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  list-style: none;
  margin: 0;
}
.category-chips::-webkit-scrollbar { display: none; }

.chip { min-height: 44px !important;
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  color: #1a1f2e;
  transition: all 0.2s;
}
.chip:hover, .chip--active {
  background: #0d5c63;
  color: #fff;
  border-color: #0d5c63;
}

/* R7: Deal card original/discounted price */
.deal-card__price-original {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 400;
  margin-right: 6px;
}
.deal-card__price-discounted {
  color: var(--accent, #e85d3a);
  font-size: 1.25rem;
  font-weight: 700;
}
.deal-card__savings {
  background: #fef3f2;
  color: var(--accent, #e85d3a);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 6px;
}

/* R11: Destination cards as horizontal carousel on mobile */
@media (max-width: 768px) {
  .dest-grid {
    display: flex !important;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    padding: 0 1rem 1rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .dest-grid::-webkit-scrollbar { display: none; }
  
  .dest-card {
    flex: 0 0 70% !important;
    scroll-snap-align: center;
    min-width: 250px;
  }
}

/* R12: Sticky mobile search bar */
@media (max-width: 768px) {
  .sticky-search {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    padding: 0.625rem 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .sticky-search__button {
    flex: 1;
    padding: 0.75rem;
    background: var(--accent, #e85d3a);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    text-align: center;
    display: block;
  }
}

/* R10: Deal card timestamp */
.deal-card__timestamp {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 4px;
}

/* ─── MOBILE SPACING + EDGE FIX (programmatic-audit) ─── */
@media (max-width: 768px) {
  /* Reduce section padding to eliminate large white bands */
  .section {
    padding: 32px 0 !important;
  }
  .section--alt {
    padding: 32px 0 !important;
  }
  .section__head {
    margin-bottom: 20px !important;
  }
  
  /* Ensure container has horizontal padding */
  .container {
    padding: 0 16px !important;
  }
  
  /* Steps section tighter */
  .steps-section {
    padding: 28px 0 !important;
  }
  
  /* Testimonials tighter */
  .testimonials-section {
    padding: 32px 0 !important;
  }
  
  /* Deal grid single column with less gap */
  .deal-grid {
    gap: 16px !important;
  }
  
  /* CTA section tighter */
  .cta-section {
    padding: 36px 0 !important;
  }
}

/* Ensure no content touches right edge on any viewport */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ─── HERO OVERLAY MOBILE (lighter for beach visibility) ─── */
@media (max-width: 768px) {
  .hero--photo__overlay {
    background:
      linear-gradient(180deg, rgba(8,16,28,.65) 0%, rgba(8,16,28,.40) 50%, rgba(8,16,28,.60) 100%) !important;
  }
}

/* ─── DEST SECTION COMPACT ON MOBILE ─── */
@media (max-width: 768px) {
  .dest-grid {
    margin-bottom: 0 !important;
  }
  .section:has(.dest-grid) {
    padding-bottom: 20px !important;
  }
  /* Features section more compact */
  .feature-grid {
    gap: 12px !important;
  }
  .feature {
    padding: 16px !important;
  }
  /* Testimonial cards more compact */
  .testi-card {
    padding: 20px 16px !important;
    margin-bottom: 12px !important;
  }
}

/* ═══ V12 MOBILE PERFECTION ═══ */
@media (max-width: 768px) {
  /* Eliminate white bands — compact all sections */
  .section, .steps-section, .testimonials-section, .cta-section {
    padding: 28px 0 !important;
  }
  .section__head {
    margin-bottom: 16px !important;
  }
  .section__title {
    margin-bottom: 6px !important;
  }
  
  /* Dest section even more compact */
  .dest-grid { margin-bottom: 0 !important; }
  
  /* Hero search — tighter */
  .hero-search {
    padding: 12px !important;
    gap: 6px !important;
    border-radius: 16px !important;
  }
  .hero-search__field input,
  .hero-search__field select {
    min-height: 44px !important;
    padding: 8px 10px !important;
    font-size: 15px !important;
  }
  
  /* Feature cards compact */
  .feature-grid { gap: 10px !important; }
  .feature { padding: 14px !important; }
  .feature__title { font-size: 1rem !important; }
  .feature__text { font-size: .875rem !important; line-height: 1.45 !important; }
  
  /* Testimonial cards compact */
  .testi-grid { gap: 12px !important; }
  .testi-card { padding: 18px 16px !important; }
  .testi-quote { font-size: .9375rem !important; line-height: 1.5 !important; }
  .testi-author { font-size: .8125rem !important; }
  
  /* Deal cards compact + fix overlap */
  .deal-grid { gap: 12px !important; }
  .deal-card__body { padding: 14px !important; }
  .deal-card__title { font-size: 1.0625rem !important; margin-bottom: 4px !important; }
  .deal-card__desc { font-size: .8125rem !important; line-height: 1.4 !important; margin-bottom: 8px !important; }
  .deal-card__meta {
    flex-wrap: wrap !important;
    gap: 4px 8px !important;
    align-items: baseline !important;
    justify-content: flex-start !important;
  }
  .deal-card__price-original {
    font-size: .8125rem !important;
    opacity: .6 !important;
  }
  .deal-card__price-discounted {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
  }
  .deal-card__price-label {
    font-size: .75rem !important;
    width: 100% !important;
    margin-top: 2px !important;
  }
  .deal-card__badge {
    font-size: .6875rem !important;
    padding: 3px 10px !important;
    top: 10px !important;
    left: 10px !important;
  }
  
  /* Steps compact */
  .steps-grid { gap: 16px !important; }
  .step { padding: 12px !important; }
  .step__num { width: 36px !important; height: 36px !important; font-size: 1.125rem !important; }
  .step__title { font-size: .9375rem !important; }
  .step__desc { font-size: .8125rem !important; line-height: 1.4 !important; }
  
  /* FAQ compact */
  .faq-item { padding: 12px 0 !important; }
  .faq-question { font-size: .9375rem !important; }
  .faq-answer { font-size: .875rem !important; }
  
  /* Trust band compact */
  .trust-band { padding: 20px 0 !important; }
  .trust-bar { gap: 12px !important; flex-wrap: wrap !important; }
  .trust-item { min-width: 45% !important; }
  
  /* CTA section compact */
  .cta-section__title { font-size: 1.5rem !important; }
  .cta-section__sub { font-size: .9375rem !important; }
  
  /* Category chips */
  .category-chips { padding: 8px 16px !important; gap: 8px !important; }
  .chip { padding: 6px 14px !important; font-size: .8125rem !important; min-height: 44px !important; }
  
  /* Guide cards compact */
  .guide-grid { gap: 10px !important; }
  .guide-card { padding: 12px !important; }
  
  /* Footer compact */
  .footer { padding: 28px 0 20px !important; }
  .footer-grid { gap: 20px !important; }
  .footer-col h4 { font-size: .8125rem !important; margin-bottom: 8px !important; }
  .footer-col a { font-size: .8125rem !important; padding: 4px 0 !important; }
}

/* ═══ DEAL CARD STRUCTURAL FIX (all breakpoints) ═══ */
.deal-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.deal-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  margin-top: auto;
  padding-top: 8px;
}
.deal-card__price-discounted {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent, #e85d3a);
}
.deal-card__price-original {
  font-size: .875rem;
  text-decoration: line-through;
  opacity: .55;
  color: #6b7280;
}
.deal-card__price-label {
  font-size: .75rem;
  color: #6b7280;
}
.deal-card__savings {
  display: inline-block;
  background: #ffedd5;
  color: var(--accent, #e85d3a);
  font-size: .6875rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 4px;
  vertical-align: middle;
}

/* ═══ FINAL SPACING FIX — based on DOM measurement at 390px ═══ */

/* Fix 1: Reduce all section paddings on mobile to 20px (was 28px) */
@media (max-width: 768px) {
  .section,
  .steps-section,
  .testimonials-section,
  .cta-section {
    padding: 20px 0 !important;
  }
  
  /* Fix 2: Section head margin — reduce from 32px to 16px */
  .section__head {
    margin-bottom: 16px !important;
  }
  
  /* Fix 3: Remove the extra 40-60px dead space at section bottoms */
  .section__head + *,
  .section__head + .container > * {
    margin-top: 0 !important;
  }
  
  /* Fix 4: CTA section — remove the 64px gap to footer */
  .cta-section {
    margin-bottom: 0 !important;
    padding-bottom: 20px !important;
  }
  .cta-section + .footer,
  .footer {
    padding-top: 20px !important;
  }
  
  /* Fix 5: Increase feature-grid gap from 10px to 16px */
  .feature-grid {
    gap: 16px !important;
  }
  
  /* Fix 6: Increase deal-grid gap from 12px to 16px */
  .deal-grid {
    gap: 16px !important;
  }
  
  /* Fix 7: Steps gap from 16px to 20px */
  .steps-grid {
    gap: 20px !important;
  }
  
  /* Fix 8: Trust-band tighter */
  .trust-band {
    padding: 16px 0 !important;
  }
  .trust-band .trust-bar {
    gap: 12px !important;
  }
  
  /* Fix 9: Hero bottom padding tighter */
  .hero--photo {
    padding-bottom: 16px !important;
  }
  
  /* Fix 10: Budget calculator tighter */
  .budget-calculator {
    padding: 20px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  
  /* Fix 11: Remove reveal translateY residual space */
  .reveal {
    margin-bottom: 0 !important;
  }
  
  /* Fix 12: Testimonials tighter */
  .testi-card {
    padding: 20px !important;
    margin-bottom: 0 !important;
  }
  
  /* Fix 13: Dest section head more compact */
  .dest-grid {
    margin-top: 0 !important;
  }
}

/* ═══ FOOTER MARGIN FIX ═══ */
@media (max-width: 768px) {
  .footer {
    margin-top: 0 !important;
  }
  /* Fix dest-section empty space: reduce section__head margin */
  .section__head {
    margin-bottom: 12px !important;
  }
  /* Tighter hero padding-top */
  .hero--photo {
    padding-top: 24px !important;
  }
}

/* ═══ FINAL TIGHTENING: eliminate residual empty space ═══ */
@media (max-width: 768px) {
  /* Kill all margin-bottom on last children within sections */
  .section > .container > :last-child,
  .steps-section > .container > :last-child,
  .testimonials-section > .container > :last-child,
  .section--alt > .container > :last-child {
    margin-bottom: 0 !important;
  }
  
  /* The dest-grid, steps-grid, testi-grid, feature-grid should not have extra bottom space */
  .dest-grid,
  .steps-grid,
  .testi-grid,
  .feature-grid,
  .deal-grid,
  .budget-calculator {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  
  /* Tighter section padding: 16px instead of 20px */
  .section,
  .steps-section,
  .testimonials-section {
    padding: 16px 0 !important;
  }
  
  /* Footer: tighter top */
  .footer {
    padding: 16px 0 12px !important;
  }
  
  /* Budget calculator: no extra spacing */
  .budget-calculator {
    margin: 0 !important;
  }
}

/* ═══ LAST MILE ═══ */
@media (max-width: 768px) {
  /* Footer: pT from 20px to 12px */
  .footer {
    padding-top: 12px !important;
  }
  
  /* Trust-band: the empty=52 is because trust-bar items don't fill the section */
  .trust-band .trust-bar {
    padding: 8px 0 !important;
  }
  
  /* Section [2] Dest-cards: the chips + carousel create gap below */
  .section#ziele > .container > :last-child,
  .section#ziele .dest-grid {
    margin-bottom: -8px !important;
  }
  
  /* Testimonials: tighter grid */
  .testi-grid {
    gap: 16px !important;
    margin-bottom: 0 !important;
  }
  
  /* Section padding-bottom tighter universally */
  .section,
  .section--alt {
    padding-bottom: 12px !important;
  }
}

/* ═══ FINAL 2 FIXES ═══ */
@media (max-width: 768px) {
  .testimonials-section .section__head {
    margin-bottom: 8px !important;
  }
  .testi-grid {
    padding-bottom: 0 !important;
    margin-bottom: -8px !important;
  }
  .footer {
    padding-top: 8px !important;
  }
  .footer__top {
    margin-bottom: 8px !important;
  }
}

/* ═══ DEAL PAGE COMPONENTS ═══ */
.section-head{margin-bottom:var(--sp-5)}
.section-tag{display:inline-block;font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--accent,#e85d3a);margin-bottom:8px}
.prose-card{background:var(--bg-elevated,#fff);border:1px solid var(--border,#e8e4dc);border-radius:12px;padding:28px;margin:24px 0}
.prose-card p{margin-bottom:16px;line-height:1.7;color:var(--text-body,#2d3548)}
.prose-card p:last-child{margin-bottom:0}
.prose-card strong{color:var(--text,#1a1f2e)}
.glass-card{background:var(--bg-elevated,#fff);border:1px solid var(--border,#e8e4dc);border-radius:12px;padding:24px;margin:0;transition:border-color .2s}
.glass-card:hover{border-color:var(--accent,#e85d3a)}
.includes-card{background:linear-gradient(135deg,var(--bg-soft,#f3efe9),var(--bg-elevated,#fff))}
.includes-card h3{font-family:var(--font-display,'Fraunces',serif);font-size:1.25rem;font-weight:600;margin:0 0 16px}
.includes-list{list-style:none;padding:0;margin:0}
.includes-list li{display:flex;align-items:flex-start;gap:10px;padding:8px 0;font-size:.9375rem;line-height:1.5;color:var(--text-body,#2d3548)}
.includes-list li:not(:last-child){border-bottom:1px solid var(--border,#e8e4dc)}
.includes-list svg{width:20px;height:20px;flex-shrink:0;color:var(--primary,#0d5c63);margin-top:2px}
.includes-list strong{color:var(--text,#1a1f2e);font-weight:600}
.card-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;margin:24px 0}
.card-icon{width:40px;height:40px;border-radius:10px;background:var(--bg-soft,#f3efe9);display:flex;align-items:center;justify-content:center;color:var(--primary,#0d5c63);margin-bottom:12px}
.card-icon svg{width:22px;height:22px}
.card-grid .glass-card h3{font-family:var(--font-display,'Fraunces',serif);font-size:1rem;font-weight:600;margin:0 0 4px}
.card-grid .glass-card p{font-size:.875rem;color:var(--text-muted,#6b6b7b);margin:0}
@media(max-width:640px){
  .card-grid{grid-template-columns:1fr}
  .prose-card{padding:20px}
}


/* ═══════════════════════════════════════════════════════════
   COMPATIBILITY LAYER — Legacy class names used by city/destination/deal pages
   Maps old class names to the new design-system styling.
   Added: 2026-08-08
   ═══════════════════════════════════════════════════════════ */

/* ─── HEADER (site-header → header) ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border, #e8e4dc);
}
.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-5, 20px);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4, 16px);
}

/* ─── FOOTER (site-footer → footer) ─── */
.site-footer {
  background: var(--bg-dark, #1a1f2e);
  color: var(--text-on-dark, #f0ede8);
  padding: var(--sp-8, 48px) var(--sp-5, 20px) var(--sp-5, 20px);
}
.site-footer .footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-6, 32px);
}
.footer-brand {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-on-dark, #f0ede8);
  margin-bottom: var(--sp-2, 8px);
}
.footer-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted, #9ca3af);
  line-height: 1.5;
}
.site-footer .footer-col__heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-dark-muted, #9ca3af);
  margin-bottom: var(--sp-3, 12px);
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li {
  margin-bottom: var(--sp-2, 8px);
}
.site-footer ul li a {
  color: var(--text-on-dark-muted, #9ca3af);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.site-footer ul li a:hover {
  color: var(--text-on-dark, #f0ede8);
}
.site-footer .footer-bottom {
  max-width: 1200px;
  margin: var(--sp-6, 32px) auto 0;
  padding-top: var(--sp-4, 16px);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted, #6b6b7b);
  text-align: center;
}

/* ─── NAV (nav__cta) ─── */
.nav__cta {
  background: var(--accent, var(--accent, #e85d3a));
  color: #fff !important;
  padding: 8px 16px;
  border-radius: var(--radius, 8px);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav__cta:hover {
  background: var(--accent-dark, #b04428);
  color: #fff !important;
}

/* ─── HERO (hero__inner, hero__content, hero__title, etc.) ─── */
.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-5, 20px);
  width: 100%;
}
.hero__content {
  max-width: 680px;
}
.hero__title {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--sp-4, 16px);
}
.hero__eyebrow, .hero__sub, .hero__lead {
  font-size: 1.0625rem;
  margin-bottom: var(--sp-5, 20px);
  line-height: 1.6;
}
.hero__ctas {
  display: flex;
  gap: var(--sp-3, 12px);
  flex-wrap: wrap;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── BUTTONS ─── */
.btn--lg {
  padding: 14px 32px;
  font-size: 1.0625rem;
}
.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  background: var(--accent, #e85d3a);
  color: #fff;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--btn-radius, var(--radius-full));
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: var(--fs-base);
  min-height: 44px;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.btn-primary:hover {
  background: var(--accent-dark, #b04428);
  color: #fff !important;
}

/* ─── CTA SECTION (cta-section__bg, cta-section__content) ─── */
.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-section__content {
  position: relative;
  z-index: 1;
}

/* ─── PAGE HERO (city pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--bg-soft, #f3efe9), var(--cream, #faf8f5));
  padding: var(--sp-8, 48px) 0;
  border-bottom: 1px solid var(--border, #e8e4dc);
}
.page-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--sp-5, 20px);
}
.page-hero h1 {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text, #1a1f2e);
  margin-bottom: var(--sp-3, 12px);
}

/* ─── LEAD paragraph ─── */
.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-body, #2d3548);
  margin-bottom: var(--sp-5, 20px);
}

/* ─── FAQ (accordion) ─── */
.faq {
  max-width: 100%;
  margin: var(--sp-6, 32px) 0;
}
.faq__item {
  border-bottom: 1px solid var(--border, #e8e4dc);
}
.faq__item:first-child {
  border-top: 1px solid var(--border, #e8e4dc);
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-4, 16px) 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text, #1a1f2e);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: inherit;
}
.faq__question[aria-expanded="true"] ~ .faq__answer,
.faq__item.open .faq__answer {
  display: block;
}
.faq__answer {
  display: none;
  padding: 0 0 var(--sp-4, 16px);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-body, #2d3548);
}
.faq__answer-inner {
  padding-right: var(--sp-8, 32px);
}
.faq__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent, var(--accent, #e85d3a));
  transition: transform 0.3s;
}
.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

/* ─── TRUST BAR ─── */
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2, 8px);
  font-size: 0.875rem;
  color: var(--text-muted, #6b6b7b);
  font-weight: 500;
}
.trust-bar__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary, #0d5c63);
}

/* ─── CTA BOX (city pages) ─── */
.cta-box {
  background: var(--bg-soft, #f3efe9);
  border: 1px solid var(--border, #e8e4dc);
  border-radius: var(--radius-lg, 16px);
  padding: var(--sp-6, 32px);
  text-align: center;
  margin: var(--sp-6, 32px) 0;
}
.cta-box h3 {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.5rem;
  margin-bottom: var(--sp-2, 8px);
}
.cta-box p {
  color: var(--text-muted, #6b6b7b);
  margin-bottom: var(--sp-4, 16px);
}
.cta-main {
  display: inline-block;
  background: var(--accent, var(--accent, #e85d3a));
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius, 8px);
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}
.cta-main:hover {
  background: var(--accent-dark, #b04428);
}

/* ─── CTA FINAL (destination pages) ─── */
.cta-final {
  background: var(--bg-dark, #1a1f2e);
  color: var(--text-on-dark, #f0ede8);
  border-radius: var(--radius-lg, 16px);
  padding: var(--sp-8, 48px) var(--sp-6, 32px);
  text-align: center;
  margin: var(--sp-8, 48px) auto;
  max-width: 680px;
}
.cta-final h2 {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--sp-3, 12px);
}
.cta-final p {
  color: var(--text-on-dark-muted, #9ca3af);
  margin-bottom: var(--sp-5, 20px);
}

/* ─── STARS + TEXT-MUTED ─── */
.stars-inline {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 1px;
}
.text-muted {
  color: var(--text-muted, #6b6b7b);
  font-size: 0.875rem;
}

/* ─── SECTION HEAD ─── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent, var(--accent, #e85d3a));
  margin-bottom: var(--sp-2, 8px);
}

/* ─── UTILITY CLASSES ─── */
.sep {
  margin: 0 var(--sp-2, 8px);
  color: var(--text-muted, #ccc);
}
.info-box {
  background: var(--bg-soft, #f3efe9);
  border-left: 4px solid var(--primary, #0d5c63);
  border-radius: 0 var(--radius, 8px) var(--radius, 8px) 0;
  padding: var(--sp-4, 16px) var(--sp-5, 20px);
  margin: var(--sp-4, 16px) 0;
  font-size: 0.9375rem;
}
.warning {
  background: #fef3cd;
  border-left: 4px solid #f5a623;
  border-radius: 0 var(--radius, 8px) var(--radius, 8px) 0;
  padding: var(--sp-4, 16px) var(--sp-5, 20px);
  margin: var(--sp-4, 16px) 0;
  font-size: 0.9375rem;
  color: #856404;
}
.callout {
  background: linear-gradient(135deg, rgba(13,92,99,0.06), rgba(13,92,99,0.02));
  border: 1px solid rgba(13,92,99,0.15);
  border-radius: var(--radius, 8px);
  padding: var(--sp-5, 20px);
  margin: var(--sp-5, 20px) 0;
}
.accent {
  color: var(--accent, var(--accent, #e85d3a));
  font-weight: 600;
}
.tag {
  display: inline-block;
  background: var(--bg-soft, #f3efe9);
  border: 1px solid var(--border, #e8e4dc);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-body, #2d3548);
}
.footer-cta {
  text-align: center;
  padding: var(--sp-6, 32px);
  background: var(--bg-soft, #f3efe9);
  border-radius: var(--radius-lg, 16px);
  margin: var(--sp-6, 32px) 0;
}

/* ─── TABLES (price-table, detail-table, cost-table) ─── */
.price-table, .detail-table, .cost-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-5, 20px) 0;
  font-size: 0.9375rem;
}
.price-table th, .detail-table th, .cost-table th {
  text-align: left;
  padding: var(--sp-3, 12px) var(--sp-4, 16px);
  background: var(--bg-soft, #f3efe9);
  font-weight: 600;
  border-bottom: 2px solid var(--border, #e8e4dc);
}
.price-table td, .detail-table td, .cost-table td {
  padding: var(--sp-3, 12px) var(--sp-4, 16px);
  border-bottom: 1px solid var(--border, #e8e4dc);
}
.price-col {
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
}
.detail-table-wrap, .overflow-x-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--sp-4, 16px) 0;
}
.total {
  font-weight: 700;
  color: var(--primary, #0d5c63);
}

/* ─── PILLS ─── */
.pill-good {
  display: inline-block;
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.pill-bad {
  display: inline-block;
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ─── DEAL ELEMENTS ─── */
.deal-cta {
  margin: var(--sp-6, 32px) 0;
}
.from {
  font-size: 0.75em;
  opacity: 0.7;
}
.price {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text, #1a1f2e);
}
.price-note {
  font-size: 0.8125rem;
  color: var(--text-muted, #6b6b7b);
}
.deal-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius, 8px) var(--radius, 8px) 0 0;
}
.deal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-final {
    margin: var(--sp-5, 20px);
  }
}
@media (max-width: 480px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
  .detail-table-wrap, .overflow-x-scroll {
    max-width: 100%;
  }
}

/* ═══ DEAL CARD PRICE COMPONENT ═══ */
.deal-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
  padding: 12px 16px;
  background: var(--bg-soft, #f3efe9);
  border-radius: 10px;
  margin-top: 12px;
}
.deal-card__price-from {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted, #6b6b7b);
}
.deal-card__price-val {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary, #0d5c63);
  line-height: 1;
}
.deal-card__price-unit {
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-muted, #6b6b7b);
}

/* ═══ TRUST PILLS ═══ */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(13, 92, 99, 0.08);
  border: 1px solid rgba(13, 92, 99, 0.15);
  border-radius: 100px;
  font-size: .8125rem;
  color: var(--text-body, #2d3548);
  font-weight: 500;
}

/* ═══ STARS INLINE ═══ */
.stars-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #f5a623;
  letter-spacing: 1px;
}
.stars-inline .text-muted {
  font-size: .8125rem;
  color: var(--text-muted, #6b6b7b);
  font-weight: 400;
  letter-spacing: 0;
}

/* ═══ TEXT MUTED UTILITY ═══ */
.text-muted {
  color: var(--text-muted, #6b6b7b) !important;
}

/* ═══ DESIGN CONSISTENCY FIXES ═══ */

/* Fix 1: Consistent section spacing — all sections have 80px padding (desktop) */
@media (min-width: 768px) {
  .section,
  .section--alt,
  .steps-section {
    padding: 80px 0 !important;
  }
  .hero { /* exception: hero has its own padding */ }
}

/* Fix 2: H3 size consistency — feature__title matches deal-card__title (20px) */
.feature__title {
  font-size: 1.25rem !important; /* was 1.125rem (18px) */
}

/* Fix 3: Unified button heights — all buttons 48px (hero-search__btn exception at 56px) */
.btn,
.btn--primary,
.btn--coral,
.btn--secondary,
.btn--ghost {
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
}
.hero-search__btn {
  height: 56px !important;
  min-height: 56px !important;
  max-height: 56px !important;
}

/* Fix 4: Alternate section backgrounds unified to #f5f1eb */
.steps-section {
  background: #f5f1eb !important;
}
.section--alt {
  background: #f5f1eb !important;
}

/* Fix 5: Weather combo month tabs — uniform width (52px) */
.weather-combo__month {
  min-width: 52px !important; /* was 48px */
  text-align: center !important;
}

/* Fix 6: Skip link for accessibility */
.skip-link { min-height: 44px !important;
  position: absolute;
  top: -100px;
  left: 0;
  background: #1a1f2e;
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* Fix 7: Nav CTA — ensure coral background with white text */
.nav__cta,
.nav .btn--coral {
  background: var(--accent, #e85d3a) !important;
  color: #ffffff !important;
}
.nav__cta:hover,
.nav .btn--coral:hover {
  background: var(--accent-dark, #c44a2e) !important;
}

/* ════════════════════════════════════════════════════════════════
   LAYOUT FIXES (merged from layout-fixes-v2.css)
   ════════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════════
   LAYOUT PERFECTION FIXES v2.0 (2026-08-09)
   Mobile + Desktop spacing/overflow/touch-target corrections.
   All rules scoped, no bare unconditional !important overrides.
   ════════════════════════════════════════════════════════════════ */

/* ── FIX 1: Section title → subtitle gap (6px → 12px baseline) ── */
.section__title { margin-bottom: var(--sp-3) !important; }  /* 12px */
.section__sub { margin-top: 4px !important; }
.section__head { margin-bottom: var(--sp-7) !important; }   /* 32px */

/* ── FIX 2: Category chips touch-targets (35px → 44px min) ── */
.chip {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-size: .90625rem;
}

/* ── FIX 3: Deal-card meta/price overlap prevention ── */
/* The meta row used flex with space-between but price-original
   could overlap when price block wraps. Use grid for clean layout. */
.deal-card__body { display: flex; flex-direction: column; flex: 1; }
.deal-card__meta {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  gap: 4px 12px !important;
  padding: 12px 0 !important;
  border-top: 1px solid #f0ebe5 !important;
  border-bottom: 1px solid #f0ebe5 !important;
  margin: 12px 0 !important;
}
.deal-card__price-row {
  display: none;
}
.deal-card__price-original {
  grid-column: 1 !important;
  grid-row: 1 !important;
  text-decoration: line-through;
  color: #9ca3af;
  font-size: .85rem;
  opacity: .7;
}
.deal-card__price-discounted {
  grid-column: 1 !important;
  grid-row: 2 !important;
  font-family: var(--font-display);
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.deal-card__savings {
  grid-column: 2 !important;
  grid-row: 1 / 3 !important;
  align-self: center !important;
  background: #fff5e6 !important;
  color: var(--accent) !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  font-size: .8125rem !important;
  white-space: nowrap !important;
}
.deal-card__price-label {
  grid-column: 1 / -1 !important;
  grid-row: 3 !important;
  font-size: .75rem !important;
  color: var(--text-muted, #6b7280) !important;
}

/* ── FIX 4: Deal-card badge inset consistency ── */
.deal-card__badge {
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  font-size: .72rem;
  font-weight: 700;
  border-radius: 8px;
  z-index: 2;
}

/* ── FIX 5: Deal FAQ accordion spacing ── */
.deal-faq__answer {
  padding: 12px 0;
  margin-bottom: 8px;
  line-height: 1.6;
}
.deal-faq__item + .deal-faq__item {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ── FIX 6: Footer touch-targets (18px → min 44px) + link spacing ── */
.footer-col ul li,
.site-footer .footer-grid ul li,
footer ul li { margin-bottom: 4px !important; }

.footer-col ul li a,
.site-footer .footer-grid ul li a,
.site-footer ul li a,
footer ul li a,
footer .footer-grid a {
  display: flex !important;
  align-items: center !important;
  padding: 10px 0 !important;
  min-height: 44px !important;
  line-height: 1.4 !important;
}

/* ── FIX 7: Footer bottom bar balanced padding ── */
.footer-bottom {
  padding: 20px 0 24px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

/* ════════════════════════════════════════════════════════════════
   MOBILE-SPECIFIC @media (max-width: 768px)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Hero search form: stacked, generous touch targets */
  .hero-search {
    grid-template-columns: 1fr !important;
    gap: 12px;
    padding: 20px 16px;
  }
  .hero-search__field input,
  .hero-search__field select {
    min-height: 52px;
    font-size: 1rem;
  }
  .hero-search__btn {
    min-height: 52px;
    width: 100%;
    font-size: 1.0625rem;
  }
  .hero-search__field label {
    font-size: .75rem;
    margin-bottom: 6px;
  }

  /* Trust pills: centered, wrapping */
  .hero-trustbar {
    justify-content: center;
    gap: 8px;
  }
  .hero-trustbar__pill {
    padding: 8px 14px;
    font-size: .78rem;
  }

  /* Section padding balanced — desktop is 80px, mobile 48px */
  .section { padding: 48px 0 !important; }
  .section--alt { padding: 48px 0 !important; }
  /* Removed: .section + .section { padding-top: 0 !important; } - causes inconsistent spacing */

  /* Deal-cards: single column, consistent spacing */
  .deal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .deal-card__body { padding: 16px; }
  .deal-card__price-discounted { font-size: 1.25rem; }

  /* Dest-cards: single column on narrow mobile */
  .dest-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    overflow-x: visible !important;
    gap: 16px;
  }

  /* Footer: stacked columns */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-col ul li a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Budget calculator: stacked selects, centered result */
  .budget-calculator { padding: 20px 16px; }
  .budget-calculator > div:first-child {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  /* CTA section tighter */
  .cta-section { padding: 40px 0 !important; }
  .cta-section__bg { border-radius: 16px; }
}

/* ════════════════════════════════════════════════════════════════
   NARROW MOBILE @media (max-width: 480px)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section__title { font-size: 1.5rem; }
  .hero__title { font-size: 1.875rem; line-height: 1.2; }
  .hero__sub { font-size: 1rem; line-height: 1.6; }
}

/* ── FIX 9: Breadcrumb touch-targets (43px → 44px min) ── */
.breadcrumb a,
.breadcrumbs a,
.crumb a,
nav[aria-label="breadcrumb"] a,
.breadcrumb li a,
.breadcrumbs li a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 44px !important;
  padding: 8px 12px !important;
}

/* ── FIX 10: Ratgeber card link touch-targets ── */
.guide-grid a,
.guide-card,
.guide-card a,
.ratgeber-list a,
.article-card a,
.guide-list a {
  min-height: 44px !important;
}
.guide-grid a {
  display: block !important;
  padding: 12px 16px !important;
}

/* ── FIX 11: Ratgeber h3 link touch-targets ── */
.ratgeber h3 a,
.ratgeber-index h3 a,
article h3 a,
.guide-section h3 a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 44px !important;
  padding: 8px 0 !important;
}

/* ── FIX 12: Ratgeber article h3 link touch-targets ── */
.article h3 a,
.container-narrow h3 a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 44px !important;
  padding: 10px 0 !important;
}

/* ── FIX 13: Mobile nav dropdown touch-targets ── */
@media (max-width: 768px) {
  .nav__links.open a,
  .nav__links a {
    display: flex !important;
    align-items: center !important;
    min-height: 44px !important;
    padding: 12px 16px !important;
  }
  .nav__cta {
    min-height: 44px !important;
    padding: 10px 20px !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   VISUAL PERFECTION (merged from visual-perfection-v3.css)
   ════════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════════
   VISUAL PERFECTION v3.0 (2026-08-10)
   Unified design polish — fixes all DOM-audit findings:
   - Button color/radius unification
   - Mobile horizontal overflow elimination
   - Minimum text size enforcement (13px floor)
   - Touch target guarantee (44px min)
   - Section spacing rhythm harmonization
   - Heading hierarchy cleanup
   ════════════════════════════════════════════════════════════════ */

/* ═══ 1. BUTTON UNIFICATION ═══
   Problem: Two accent oranges (#e85d3a design-system vs #c84e2f deal-tools)
            + mixed border-radius (8px, 12px, 16px, 999px)
   Fix: Single accent color token everywhere + unified radius scale:
        Primary CTA: 999px (pill) — high-conversion, modern
        Card/Secondary: 12px
        Small/Badge: 8px
*/

/* Override all hardcoded #c84e2f backgrounds → use --accent */
.deal-tools .toolbar__btn,
.deal-detail__cta,
.deal-detail__cta-btn,
.detail-cta-btn,
.deal-toolbar__btn,
.detail-cta,
.booking-btn,
.cta-btn-primary {
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: var(--radius-full) !important;
  border: none !important;
}
.deal-tools .toolbar__btn:hover,
.deal-detail__cta:hover,
.deal-detail__cta-btn:hover,
.detail-cta-btn:hover,
.deal-toolbar__btn:hover,
.detail-cta:hover,
.booking-btn:hover,
.cta-btn-primary:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 93, 58, .35);
}

/* Standardize hero search button */
.hero-search__btn,
.search-form__btn {
  border-radius: var(--radius-full) !important;
  background: var(--accent) !important;
}

/* Back-to-top unified */
.back-to-top,
.scroll-top {
  border-radius: 50% !important;
  background: var(--accent) !important;
}

/* ═══ 2. MOBILE HORIZONTAL OVERFLOW PREVENTION ═══
   Problem: .chip elements overflow viewport on mobile (right: 703px > 390px)
   Fix: overflow-x: clip (NOT hidden — hidden breaks position:sticky on header)
*/
html, body {
  overflow-x: clip;
  max-width: 100vw;
}

/* Chip container — wrap instead of overflow */
.category-bar,
.chip-bar,
.filter-chips,
.dest-grid,
.hero-categories {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  padding-bottom: 4px;
}
.category-bar::-webkit-scrollbar,
.chip-bar::-webkit-scrollbar,
.filter-chips::-webkit-scrollbar {
  display: none;
}

/* Each chip scrolls into view cleanly */
.chip {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* Deal grid never overflows */
.deal-grid {
  max-width: 100%;
  overflow: visible;
}

/* Any element wider than viewport gets contained */
img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}

/* Table overflow guard */
.table-wrap,
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ═══ 3. MINIMUM TEXT SIZE ENFORCEMENT ═══
   Problem: 11px text on mobile (labels, badges, meta)
   Fix: 13px minimum on mobile, 14px on desktop
*/

@media (max-width: 768px) {
  /* Labels */
  .hero-search__field label,
  .budget-calculator label,
  .filter-label,
  .form-label {
    font-size: 0.8125rem !important; /* 13px */
  }

  /* Badges */
  .deal-card__badge,
  .badge,
  .pill {
    font-size: 0.75rem !important; /* 12px for badges is OK (uppercase, bold) */
    letter-spacing: 0.05em;
  }

  /* Meta text */
  .deal-card__price-label,
  .deal-meta,
  .budget-note,
  .disclaimer-text,
  .small-print {
    font-size: 0.8125rem !important; /* 13px */
    line-height: 1.5 !important;
  }

  /* Footer fine print */
  .footer-disclaimer,
  .site-footer small,
  footer .small {
    font-size: 0.8125rem !important;
  }

  /* Any remaining 11px text gets bumped */
  .text-xs {
    font-size: 0.8125rem !important;
  }
}

/* ═══ 4. TOUCH TARGET GUARANTEE ═══
   Problem: Nav links 20px tall (min 44px for accessibility)
   Fix: Minimum 44×44px for all interactive elements
*/

/* Navigation links — ensure minimum touch area */
.nav__link,
.header-nav a,
.main-nav a,
nav a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 44px !important;
  padding: 8px 12px !important;
}

/* Header nav specific */
.site-header nav a,
.header-nav > ul > li > a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* Footer links — already handled by layout-fixes-v2, ensure no regression */
.site-footer a,
footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 6px 0;
}

/* FAQ accordion buttons */
.faq__question,
details summary,
.accordion-header {
  min-height: 56px !important;
  display: flex !important;
  align-items: center !important;
  cursor: pointer;
  padding: 12px 16px !important;
}

/* Category chips — touch-safe */
.chip {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
}

/* Budget calculator selects */
.budget-calculator select {
  min-height: 48px;
}

/* Close buttons, icon buttons */
.icon-btn,
.close-btn,
.modal-close {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══ 5. SECTION SPACING RHYTHM ═══
   Problem: Inconsistent section padding creates jarring rhythm
   Fix: Consistent vertical rhythm — 64px desktop, 48px mobile
*/

.section {
  padding: 64px 0;
}

.section--tight {
  padding: 48px 0;
}

.section--hero {
  padding: 80px 0 64px;
}

.section + .section {
  padding-top: 0;
}

.section--alt {
  background: var(--bg-soft);
  padding: 64px 0;
}

/* Consistent gap between heading and content */
.section__head {
  margin-bottom: 40px;
}

.section__title {
  margin-bottom: 12px;
}

.section__sub {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }
  .section--hero {
    padding: 48px 0 40px;
  }
  .section__head {
    margin-bottom: 28px;
  }
}

/* ═══ 6. HEADING HIERARCHY CLEANUP ═══
   Problem: H2 (40px) and H3 (20px) — gap too large on some pages
   Fix: Harmonized scale with clamp() for responsive sizing
*/

h1 {
  font-size: clamp(1.75rem, 5vw, 3.5rem); /* 28px → 56px */
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem); /* 24px → 40px */
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem); /* 18px → 24px */
  line-height: 1.3;
  margin-bottom: 8px;
}

h4 {
  font-size: 1.0625rem; /* 17px */
  line-height: 1.4;
  margin-bottom: 6px;
}

/* ═══ 7. CARD POLISH ═══ */

.dest-card,
.deal-card,
.guide-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.dest-card:hover,
.deal-card:hover,
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* Image zoom on hover for premium feel */
.dest-card__image,
.deal-card__image {
  transition: transform .4s var(--ease-out);
}

.dest-card:hover .dest-card__image,
.deal-card:hover .deal-card__image {
  transform: scale(1.04);
}

/* ═══ 8. SMOOTH SCROLL & FOCUS STATES ═══ */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for sticky header */
}

/* Focus visible — accessibility */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Remove default outline only when focus-visible is supported */
*:focus:not(:focus-visible) {
  outline: none;
}

/* ═══ 9. LOADING/REVEAL POLISH ═══ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Skeleton loading shimmer */
.skeleton {
  background: linear-gradient(90deg,
    var(--bg-soft) 25%,
    var(--border-light) 50%,
    var(--bg-soft) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ═══ 10. PRINT CLEANUP ═══ */

@media print {
  .nav, nav, .back-to-top, .cta-section, .footer-bottom,
  .hero-search, .budget-calculator, .community-section {
    display: none !important;
  }
  body { background: white !important; color: black !important; }
}

/* ═══ 11. DARK MODE COLOR TOKEN FALLBACK ═══
   Ensure accent is always available even if CSS var not loaded
*/

.cta-link,
.btn-primary,
.compare-btn {
  background: var(--accent, #e85d3a);
  color: #fff;
}

/* ═══ 12. REMAINING FIXES — Post-audit round 2 ═══ */

/* Fix .btn--sm radius inconsistency (was 6px, now pill to match) */
.btn--sm {
  border-radius: var(--radius-full) !important;
  min-height: 44px !important;
  padding: 8px 16px !important;
  font-size: 0.875rem !important;
}

/* Budget calculator tiny text — bump from 11px to 13px */
.budget-calculator .budget-note,
.budget-calculator .calc-note,
.budget-calculator small,
.budget-result__note,
.budget-result small {
  font-size: 0.8125rem !important; /* 13px */
  line-height: 1.5 !important;
  color: var(--text-muted) !important;
}

/* Any element with text "Tagespreis" or "Richtwerte" */
.budget-calculator * {
  font-size: inherit;
}

/* Specifically target the 11px divs found in audit */
.budget-calculator label,
.budget-calculator .label-text {
  font-size: 0.8125rem !important;
}

/* Chip horizontal scroll — ensure container clips properly */
.chip-bar,
.category-bar,
.hero-categories,
.filter-chips {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  max-width: 100% !important;
  position: relative !important;
}

/* Ensure chip wrapper clips */
.chips-wrap,
.chip-container {
  overflow: hidden;
  max-width: 100%;
}

/* ═══ 13. Category chips horizontal scroll fix ═══ */
.category-chips {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch !important;
  max-width: 100% !important;
  padding-bottom: 8px !important;
  gap: 8px !important;
  /* Hide scrollbar but keep functional */
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.category-chips::-webkit-scrollbar {
  height: 4px;
}

.category-chips::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.category-chips .chip {
  scroll-snap-align: start;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

/* ═══ 14. Override inline 11px text with !important ═══ */
/* Target the exact elements with inline font-size:.6875rem */
[style*="font-size:.6875rem"],
[style*="font-size: .6875rem"],
[style*="font-size:.6875rem;"] {
  font-size: 0.8125rem !important; /* 13px */
  line-height: 1.5 !important;
}

/* ═══ 15. Global horizontal overflow safety net ═══ */
/* Prevent sub-pixel rounding from causing horizontal scroll.
   IMPORTANT: overflow-x: clip (NOT hidden!) because hidden breaks position:sticky. */
html {
  overflow-x: clip !important;
  scroll-behavior: smooth;
}

body {
  max-width: 100vw !important;
  overflow-x: clip !important;
  position: relative;
}

/* Ensure all direct children of body respect viewport */
body > * {
  max-width: 100vw !important;
  overflow-x: clip;
}

/* ═══ 16. Round 2 audit fixes ═══ */

/* Deal page: .deal-price-badge__label 11px → 13px (in <style> block, not inline) */
.deal-price-badge__label {
  font-size: 0.8125rem !important;
}

/* Stadt page: .cta-main — fix height (42px→44px) + unify radius */
.cta-main {
  min-height: 44px !important;
  border-radius: var(--radius-full, 999px) !important;
  padding: 12px 28px !important;
}

/* ═══ 17. Mobile Nav Link Touch Width Fix ═══ */
/* Nav links were only 32px wide — too narrow for touch.
   Make them full-width tappable areas on mobile. */
@media (max-width: 768px) {
  .nav__links a,
  .topbar__nav a,
  .topbar__link {
    display: block !important;
    width: 100% !important;
    min-height: 48px !important;
    padding: 12px 16px !important;
    text-align: left !important;
  }

  /* Ensure category chips have adequate touch area */
  .chip {
    min-height: 44px !important;
    padding: 10px 16px !important;
  }
}

/* ═══ 18. Weather-Combo Tiny Text Fix ═══ */
/* Weather widget labels were 11.52px — bump to 13px minimum */
.weather-combo__metric-label,
.weather-combo__metric-unit,
.weather-combo__legend,
.weather-combo__legend-item,
.weather-combo__legend-source,
.weather-combo__legend-item--low,
.weather-combo__legend-item--mid,
.weather-combo__legend-item--high,
.weather-combo [class*="__metric"] span,
.weather-combo [class*="__label"],
.weather-combo [class*="__legend"],
.weather-combo [class*="__source"] {
  font-size: 0.8125rem !important;
}

/* ═══ 22. TEXT SIZE + TOUCH TARGET FIXES ═══ */

/* Hero search labels */
.hero-search__label,
.hero-search label {
  font-size: 0.8125rem !important;
}

/* Weather combo legend/metrics */
.weather-combo__legend,
.weather-combo__metric-label,
.weather-combo small,
.weather-combo abbr {
  font-size: 0.8125rem !important;
}

/* Community page filter labels and badges */
.community-filter label,
.community-filter__label,
.filter-label,
.filter-group label {
  font-size: 0.8125rem !important;
}

/* Community deal-card meta text (heat score, savings, stars) */
.deal-card__meta,
.deal-card__badge,
.deal-card__heat,
.deal-card__stars,
.deal-card__savings {
  font-size: 0.8125rem !important;
}

/* Community page touch targets — ensure min-height on chips and filter buttons */
@media (max-width: 768px) {
  .chip,
  .filter-chip,
  .sort-tab,
  .category-chip {
    min-height: 44px;
    padding: 10px 16px;
  }
  
  .topbar__link,
  .footer a,
  .footer__col a,
  .community-footer a,
  .footer__links a,
  footer a,
  .footer-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 0;
  }
  
  .footer__bottom a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  
  /* Watchlist badge icon */
  .header-watchlist-btn {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* "Antworten" button on deal pages */
  .comment-reply-btn,
  .reply-btn,
  [class*="reply"] {
    min-height: 44px !important;
    padding: 10px 16px !important;
  }
}

/* ═══ 19. Community Filter Labels Fix ═══ */
/* Filter labels were 10.88px — bump to 13px */
.community-filters label,
.community-filters .filter-label,
.filter-bar label,
.deal-filters label {
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  color: var(--text-body) !important;
}

/* ═══ 20. Price Alert Hint Text Fix ═══ */
/* Price alert hints were 11px — bump to 13px */
.price-alert__hint,
.price-alert__label-text,
.price-alert small {
  font-size: 0.8125rem !important;
  line-height: 1.5 !important;
}

/* Price chart date labels */
.price-chart__date,
.price-chart__avg {
  font-size: 0.8125rem !important;
}

/* ═══ 21. Community Topbar Navigation Fix ═══ */
/* Community pages use .topbar class but had NO CSS for it.
   This gives them proper navigation styling matching the main site. */
.topbar {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.topbar__inner {
  max-width: var(--container, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-5);
  min-height: 64px;
  gap: var(--sp-4);
}

.topbar__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: nowrap;
}

.topbar__link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  padding: 8px 0;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.topbar__link:hover,
.topbar__link:focus {
  color: var(--primary);
}

.topbar__link--active {
  color: var(--primary);
  font-weight: 600;
}

/* Mobile topbar */
@media (max-width: 768px) {
  .topbar__inner {
    padding: 0 var(--sp-3);
    flex-wrap: wrap;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .topbar__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .topbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: all 0.2s ease;
  }

  .topbar__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .topbar__toggle.open span:nth-child(2) { opacity: 0; }
  .topbar__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(7px,-6px); }

  .topbar__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    background: var(--bg-elevated);
    padding: var(--sp-3) var(--sp-4);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    z-index: 200;
  }

  .topbar__links.open { display: flex !important; }

  .topbar__link {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
    flex-shrink: 0;
    min-height: 40px;
  }

  .topbar__link:last-child {
    border-bottom: none;
  }
}

/* Desktop: hide toggle, show inline nav */
@media (min-width: 769px) {
  .topbar__toggle { display: none; }
  .topbar__links {
    display: flex !important;
    align-items: center;
    gap: var(--sp-5);
  }
}



/* ═══ 18. WEATHER-PRICE COMBO WIDGET ═══
   Reisewetter & Preis-Visualisierung pro Monat.
   Aufbau:
   .weather-combo              — Root-Container (Card)
   .weather-combo__header      — Titel + Untertitel
   .weather-combo__months      — Horizontale Monat-Tabs (mobile scrollbar)
   .weather-combo__month       — Einzelner Tab-Button
   .weather-combo__detail      — Panel mit Metriken des aktiven Monats
   .weather-combo__metric      — Eine Kennzahl (Temp/Wasser/Preis)
   .weather-combo__best-badge  — Badge für beste Reisezeit
   ════════════════════════════════════ */

.weather-combo {
  background: var(--bg-elevated, #ffffff);
  border: 1px solid var(--border, #e8e3dc);
  border-radius: var(--radius-lg, 20px);
  padding: var(--sp-7, 28px) var(--sp-6, 24px);
  margin: var(--sp-7, 28px) 0;
  box-shadow: 0 1px 3px rgba(26, 31, 46, 0.04), 0 8px 24px rgba(26, 31, 46, 0.04);
  scroll-margin-top: 90px;
}

.weather-combo--error,
.weather-combo__error {
  color: var(--text-muted, #6b7280);
  font-size: 0.9rem;
  padding: var(--sp-4, 16px) 0;
  margin: 0;
  text-align: center;
}

/* Header */
.weather-combo__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--sp-5, 20px);
}
.weather-combo__title {
  font-family: var(--font-display, 'Fraunces', Georgia, serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text, #1a1f2e);
  margin: 0;
  line-height: 1.2;
}
.weather-combo__subtitle {
  font-size: 0.875rem;
  color: var(--text-muted, #6b7280);
  margin: 0;
  line-height: 1.5;
}

/* Monat-Tabs (horizontal scrollbar auf mobile) */
.weather-combo__months {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  margin: 0 -6px var(--sp-4, 16px);
  scrollbar-width: thin;
  scrollbar-color: var(--border, #d6cfc4) transparent;
  -webkit-overflow-scrolling: touch;
}
.weather-combo__months::-webkit-scrollbar { height: 5px; }
.weather-combo__months::-webkit-scrollbar-thumb {
  background: var(--border, #d6cfc4);
  border-radius: 999px;
}

.weather-combo__month {
  flex: 0 0 auto;
  min-width: 48px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border, #e8e3dc);
  background: var(--bg-soft, #f3efe9);
  color: var(--text-body, #2d3548);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm, 8px);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
  position: relative;
  white-space: nowrap;
}
.weather-combo__month:hover {
  background: #ece5db;
  border-color: #d6cfc4;
}
.weather-combo__month:focus-visible {
  outline: 2px solid var(--accent, #e85d3a);
  outline-offset: 2px;
}
.weather-combo__month.is-active {
  background: var(--text, #1a1f2e);
  color: #fff;
  border-color: var(--text, #1a1f2e);
}
/* Beste-Monate: kleiner Akzent-Punkt */
.weather-combo__month--best::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent, #e85d3a);
}
.weather-combo__month--best.is-active::after {
  background: var(--accent-light, #ff7a55);
}

/* Detail-Panel */
.weather-combo__detail {
  background: var(--bg, #faf8f5);
  border-radius: var(--radius-md, 12px);
  padding: var(--sp-5, 20px) var(--sp-4, 16px);
  border: 1px solid var(--border, #e8e3dc);
}

.weather-combo__month-label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: var(--sp-4, 16px);
}
.weather-combo__month-name {
  font-family: var(--font-display, 'Fraunces', Georgia, serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text, #1a1f2e);
  line-height: 1;
}

/* Beste-Reisezeit Badge */
.weather-combo__best-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--accent, #e85d3a), var(--accent-dark, #c44a2e));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-full, 999px);
  box-shadow: 0 2px 8px rgba(232, 93, 58, 0.28);
  line-height: 1;
}
.weather-combo__best-badge svg { flex-shrink: 0; opacity: 0.95; }

/* Metriken: Mobile Stack, Desktop Grid */
.weather-combo__metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 560px) {
  .weather-combo__metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}

.weather-combo__metric {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  background: var(--bg-elevated, #ffffff);
  border: 1px solid var(--border, #e8e3dc);
  border-radius: var(--radius-md, 12px);
  min-height: 76px;
}
.weather-combo__metric-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full, 999px);
  background: var(--bg-soft, #f3efe9);
}
.weather-combo__metric-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.weather-combo__metric-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted, #6b7280);
}
.weather-combo__metric-value {
  font-family: var(--font-display, 'Fraunces', Georgia, serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text, #1a1f2e);
  line-height: 1.1;
}
.weather-combo__metric-desc {
  font-size: 0.72rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.3;
}

/* Preis-Färbung (relativ zum Ziel-Min/Max) */
.weather-combo__metric--price .weather-combo__metric-value { color: var(--text, #1a1f2e); }
.weather-combo__metric--price-low {
  border-color: rgba(16, 185, 129, 0.35);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), #ffffff 60%);
}
.weather-combo__metric--price-low .weather-combo__metric-icon { background: rgba(16, 185, 129, 0.12); color: #059669; }
.weather-combo__metric--price-mid .weather-combo__metric-icon { background: rgba(245, 158, 11, 0.12); color: #d97706; }
.weather-combo__metric--price-high {
  border-color: rgba(239, 68, 68, 0.28);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), #ffffff 60%);
}
.weather-combo__metric--price-high .weather-combo__metric-icon { background: rgba(239, 68, 68, 0.1); color: #dc2626; }

/* Legende */
.weather-combo__legend {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: var(--sp-4, 16px);
  padding-top: var(--sp-3, 12px);
  border-top: 1px dashed var(--border, #e8e3dc);
}
.weather-combo__legend-item {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  color: var(--text-muted, #6b7280);
  font-weight: 500;
}
.weather-combo__legend-item--low::before { content: "●"; color: #10b981; margin-right: 4px; font-size: 0.7em; }
.weather-combo__legend-item--mid::before { content: "●"; color: #f59e0b; margin-right: 4px; font-size: 0.7em; }
.weather-combo__legend-item--high::before { content: "●"; color: #ef4444; margin-right: 4px; font-size: 0.7em; }
.weather-combo__legend-source {
  font-size: 0.68rem;
  color: var(--text-muted, #9ca3af);
  margin-left: auto;
  font-style: italic;
}

/* Mobile: kleinere Header, kompaktere Metriken */
@media (max-width: 540px) {
  .weather-combo {
    padding: var(--sp-5, 20px) var(--sp-4, 16px);
  }
  .weather-combo__title { font-size: 1.2rem; }
  .weather-combo__month-name { font-size: 1.3rem; }
  .weather-combo__metric { padding: 12px; min-height: 68px; }
  .weather-combo__metric-value { font-size: 1.25rem; }
  .weather-combo__metric-icon { width: 36px; height: 36px; }
  .weather-combo__legend-source { width: 100%; margin-left: 0; }
}

/* Reduced motion: keine smooth-scroll Animations */
@media (prefers-reduced-motion: reduce) {
  .weather-combo__month,
  .weather-combo__metric { transition: none; }
}

/* ACCESSIBILITY CONTRACT */
.cta-section__content h2,
.cta-section__content p {
  color: var(--text-on-dark, #f0ede8);
}

.article p a,
.article li a,
.prose-card p a,
.prose-card li a {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.footer__inner {
  width: min(100% - 40px, var(--container, 1200px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(140px, 1fr));
  gap: var(--sp-6, 32px);
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer__col > span,
.footer__col h4 {
  color: var(--text-on-dark, #f0ede8) !important;
}

.footer__col p,
.footer__bottom {
  color: var(--text-on-dark-muted, #b7bdc8) !important;
}

.footer__col a {
  color: var(--text-on-dark, #f0ede8) !important;
  text-decoration: none;
}

.footer__col a:hover {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer__bottom {
  justify-content: center;
  margin-top: var(--sp-6, 32px);
  text-align: center;
}

.filter-reset {
  background: var(--bg, #faf8f5) !important;
  border-color: var(--primary, #0d5c63) !important;
  color: var(--primary, #0d5c63) !important;
}

.filter-reset:hover {
  background: rgba(13, 92, 99, 0.08) !important;
  color: var(--primary-dark, #084048) !important;
}

.community-ticker__label {
  color: #f0a48f;
}

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .footer__inner { grid-template-columns: 1fr; }
}


/* Touch target fixes (WCAG 2.5.5) */
.vote-btn { min-height: 44px; min-width: 44px; }
.platform-trust a { display: inline-block; min-height: 44px; line-height: 44px; }

/* ═══════════════════════════════════════════════════════════
   SHARE BUTTONS — Social sharing component
   ═══════════════════════════════════════════════════════════ */
.share-buttons {
  display: flex;
  gap: .5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border, #e5e5e5);
}

.share-buttons__label {
  font-size: .9rem;
  color: var(--text-muted, #59616e);
  margin-right: .5rem;
  font-weight: 500;
}

.share-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform .2s ease, opacity .2s ease;
  flex-shrink: 0;
  cursor: pointer;
}

.share-btn:hover {
  transform: scale(1.1);
  opacity: .9;
}

.share-btn:active {
  transform: scale(.95);
}

.share-btn--whatsapp  { background: #25D366; color: #fff; }
.share-btn--facebook  { background: #1877F2; color: #fff; }
.share-btn--telegram  { background: #0088cc; color: #fff; }
.share-btn--email     { background: var(--text-muted, #6b6b7b); color: #fff; border: none; }
.share-btn--copy      { background: var(--text, #1a1f2e); color: #fff; border: none; }

@media (max-width: 480px) {
  .share-buttons {
    justify-content: center;
    gap: .4rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   RELATED CONTENT — Hub-and-spoke internal linking cards
   ═══════════════════════════════════════════════════════════ */
.related-content {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border, #e5e5e5);
}

.related-content__title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-family: var(--font-display, 'Fraunces', Georgia, serif);
}

.related-content__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.related-card {
  display: block;
  padding: 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  font-weight: 500;
}

.related-card:hover {
  border-color: var(--primary, #0d5c63);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════════════════
   DESIGN-SYSTEM HARMONIZATION LAYER (v3.2 — 2026-08-12)
   ═══════════════════════════════════════════════════════════════════
   Zweck: Kanonische Überschreibung aller fragmentierter Patch-Runden.
   Löst widersprüchliche Deklarationen, Duplikate und Inkonsistenzen auf.

   Priorität: Höchste Source-Order → überschreibt alle vorigen Regeln.
   Prinzip:  Ein Button, ein Section-Rhythmus, eine Typo-Skala, ein Radius.
   ═══════════════════════════════════════════════════════════════════ */

/* ─── 1. CANONICAL DESIGN TOKENS (resolve all aliases) ─── */
:root {
  /* Color aliases — ensure all semantic tokens resolve */
  --coral: var(--accent);
  --coral-dark: var(--accent-dark);
  --teal: var(--primary);
  --teal-light: var(--primary-light);
  --teal-dark: var(--primary-dark);
  --cream: var(--bg-soft);

  /* Unified button radius — all buttons share ONE radius */
  --btn-radius: var(--radius-full);

  /* Canonical type scale — 8 steps, modular ratio 1.2 */
  --fs-xs:   0.75rem;    /* 12px — labels, badges, meta */
  --fs-sm:   0.875rem;   /* 14px — secondary text, captions */
  --fs-base: 1rem;       /* 16px — body text */
  --fs-md:   1.125rem;   /* 18px — lead paragraphs */
  --fs-lg:   1.375rem;   /* 22px — card titles, h3 */
  --fs-xl:   1.75rem;    /* 28px — section titles, h2 */
  --fs-2xl:  clamp(2rem, 5vw, 3.5rem);  /* h1, hero */
  --fs-3xl:  clamp(2.5rem, 6vw, 4.5rem); /* display, hero hero */

  /* Canonical section spacing */
  --section-py: var(--sp-8);         /* 64px desktop default */
  --section-py-tight: var(--sp-7);   /* 48px — --tight variant */
  --section-head-mb: var(--sp-6);    /* 32px — head margin-bottom */
}

/* ─── 2. CANONICAL BUTTON SYSTEM (single source of truth) ─── */
/* ALL buttons share: same radius, same hover transform, same transition */
.btn,
.btn-primary,
.btn--coral,
.cta-link,
.compare-btn,
.hero-search__btn,
.search-btn {
  /* Shared visual DNA */
  border-radius: var(--btn-radius) !important;
  font-family: var(--font-body);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease) !important;
  /* Touch target minimum */
  min-height: 44px;
}

/* Primary button — accent coral, unified across all naming variants */
.btn--primary,
.btn-primary,
.btn--coral,
.cta-link,
.compare-btn,
.hero-search__btn,
.search-btn {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(180, 71, 42, 0.25);
}

/* Hover: unified lift effect for ALL primary buttons */
.btn--primary:hover,
.btn-primary:hover,
.btn--coral:hover,
.cta-link:hover,
.compare-btn:hover,
.hero-search__btn:hover,
.search-btn:hover {
  background: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(180, 71, 42, 0.35);
}

/* Secondary button — outlined teal */
.btn--secondary {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn--secondary:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Dark button */
.btn--dark {
  background: var(--bg-dark);
  color: #ffffff;
}

.btn--dark:hover {
  background: var(--bg-dark-soft);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Ghost button */
.btn--ghost {
  background: transparent;
  color: var(--text-body);
  border: 1px solid transparent;
}

.btn--ghost:hover {
  background: var(--bg-soft);
  color: var(--text);
}

/* Button size variants — unified padding scale */
.btn--sm {
  padding: 8px 16px;
  font-size: var(--fs-sm);
}

.btn--lg {
  padding: 14px 32px;
  font-size: var(--fs-md);
}

.btn--block {
  display: flex;
  width: 100%;
}

/* Base button padding (default size) */
.btn:not(.btn--sm):not(.btn--lg) {
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-base);
}

/* ─── 3. CANONICAL SECTION SPACING (single rhythm) ─── */
/* Override ALL conflicting .section padding declarations */
.section {
  padding: var(--section-py) 0;
}

.section--tight,
.section--hero {
  padding: var(--section-py-tight) 0;
}

.section--alt {
  background: var(--bg-soft);
}

.section__head {
  margin-bottom: var(--section-head-mb);
}

/* Remove the conflicting "section + section { padding-top: 0 }" that
   creates jarring zero-gap transitions. Each section has its own rhythm. */

/* ─── 4. CANONICAL TYPOGRAPHY SCALE ─── */
/* Map all heading classes to the type scale */
h1, .hero__title, .page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2, .section__title, .cta-section__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-2);
}

h3, .feature__title, .deal-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--sp-2);
}

h4 {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--sp-2);
}

h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.4;
}

h5 { font-size: var(--fs-base); }
h6 { font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: 0.05em; }

.section__sub,
.hero__sub,
.cta-section__sub {
  font-size: var(--fs-md);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 620px;
}

/* Body text minimum — anti-tiny-text */
body {
  font-size: var(--fs-base);
  line-height: 1.65;
}

.article, .prose-card, .container-narrow {
  font-size: var(--fs-base);
  line-height: 1.7;
}

/* Minimum text size enforcement — nothing below 12px */
.deal-card__badge,
.hero-trustbar__pill,
.footer-col__heading,
.trust-pill {
  font-size: var(--fs-xs);
}

/* ─── 5. CANONICAL CARD RADIUS ─── */
/* All cards share the large radius for visual consistency */
.dest-card,
.deal-card,
.testimonial-card,
.testi-card,
.feature {
  border-radius: var(--radius-lg);
}

/* Smaller functional cards use medium radius */
.prose-card,
.info-box,
.callout,
.compare-table {
  border-radius: var(--radius-md);
}

/* ─── 6. CANONICAL BADGE / PILL RADIUS ─── */
.deal-card__badge,
.hero-trustbar__pill,
.trust-pill,
.chip {
  border-radius: var(--radius-full);
}

/* ═══ END HARMONIZATION LAYER ═══ */
