/* =========================================================================
   dubrovnikgameofthrones.com — Dubrovnik Game of Thrones Tour
   Palette: Adriatic teal / caramel terracotta / desert dust / Spanish raisin
   Mobile-first; all colors live in :root only.
   NOTE on border-radius: sharp layout by default, with slightly rounded
   first-party buttons. The GetYourGuide widget is the third-party exception
   (its iframe uses rounded corners internally; we do not override the
   iframe's own user-agent styling).
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Marcellus&display=swap');

:root {
  /* Palette — derived from dubrovnik.jpg (Adriatic + terracotta rooftops) */
  --color-primary:        #3490a8;
  --color-primary-hover:  #2a7890;
  --color-dark:           #62504d;
  --color-body:           #62504d;
  --color-bg:             #dfd3c7;
  --color-surface:        #f7f0e6;
  --color-white:          #ffffff;
  --color-black:          #000000;
  --color-border:         rgba(98, 80, 77, 0.14);
  --color-border-strong:  rgba(98, 80, 77, 0.35);
  --color-footer-bg:      #62504d;
  --color-star:           #d4a017;

  /* Pillar colors — distinct, AA contrast with paired text */
  --pillar-1: #3490a8;   /* Adriatic teal — white text */
  --pillar-2: #b9623c;   /* caramel terracotta — white text */
  --pillar-3: #e2b68c;   /* desert dust — dark text */
  --pillar-4: #9c968f;   /* elephant grey — white text */

  /* Derived tokens */
  --color-text-muted:   rgba(98, 80, 77, 0.72);
  --color-text-soft:    rgba(98, 80, 77, 0.58);
  --color-surface-alt:  rgba(255, 255, 255, 0.6);
  --color-overlay-30:   rgba(0, 0, 0, 0.30);
  --color-overlay-50:   rgba(0, 0, 0, 0.50);
  --color-overlay-70:   rgba(0, 0, 0, 0.70);
  --color-card-shadow:  rgba(98, 80, 77, 0.08);
  --color-accent-bg:    rgba(52, 144, 168, 0.10);

  /* Layout */
  --container-max:     1290px;
  --container-narrow:  820px;
  --header-height:     70px;

  /* Gaps */
  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 40px;
  --gap-xl: 60px;

  /* Typography */
  --font-display: 'Marcellus', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, sans-serif;

  /* Easing */
  --ease: cubic-bezier(0.455, 0.03, 0.515, 0.955);

  /* Shape */
  --radius-sm: 6px;
}

@media (min-width: 1000px) {
  :root { --header-height: 88px; }
}

/* -------------------------------------------------------------------------
   Global reset — sharp corners by default. Buttons opt back into a slight
   radius below.
   ------------------------------------------------------------------------- */

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.12s var(--ease); }
a:hover { color: var(--color-primary-hover); }
::selection { background: var(--color-primary); color: var(--color-white); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--color-dark);
}

h1 { font-size: clamp(2rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.2rem); line-height: 1.25; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); line-height: 1.3; }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
p  { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li { margin-bottom: 0.35em; }

/* -------------------------------------------------------------------------
   Layout primitives
   ------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: var(--container-narrow); }

section[id] { scroll-margin-top: var(--header-height); }

.section { padding: 50px 0; }
@media (min-width: 1000px) { .section { padding: 70px 0; } }

.section--alt  { background: var(--color-white); }
.section--dark { background: var(--color-dark); color: var(--color-white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--color-white); }

.section-heading { text-align: center; margin-bottom: var(--gap-lg); }
.section-heading p { max-width: 760px; margin: 0 auto; color: var(--color-text-muted); font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.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;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 26px;
  min-height: 48px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), color-mix(in srgb, var(--color-primary) 90%, white));
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-primary-hover), color-mix(in srgb, var(--color-primary-hover) 90%, white));
  border-color: var(--color-primary-hover);
  color: var(--color-white);
  transform: translate3d(0, -2px, 0);
}
.btn--ghost {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.18));
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn--ghost:hover {
  background: linear-gradient(135deg, var(--color-white), color-mix(in srgb, var(--color-white) 92%, var(--color-surface)));
  color: var(--color-dark);
}
.btn--outline {
  background: linear-gradient(135deg, rgba(52, 144, 168, 0.06), rgba(52, 144, 168, 0.14));
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: linear-gradient(135deg, var(--color-primary), color-mix(in srgb, var(--color-primary) 90%, white));
  color: var(--color-white);
}
.btn--hero {
  font-size: 17px;
  padding: 18px 34px;
  min-height: 60px;
}

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-md);
  width: 100%;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--color-dark);
  text-decoration: none;
  line-height: 1.1;
  min-height: 44px;
}
.site-logo__mark { display: inline-block; width: 30px; height: 30px; flex-shrink: 0; }
.site-logo__text { display: inline-block; }

.site-nav { display: none; }
.site-nav__list { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; align-items: center; }
.site-nav__list a {
  color: var(--color-dark);
  font-weight: 500;
  font-size: 15px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.site-nav__list a:hover { color: var(--color-primary); }

.site-header__cta { display: none; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(98, 80, 77, 0.02), rgba(98, 80, 77, 0.08));
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 14px;
  min-height: 44px;
  cursor: pointer;
}
.menu-toggle__icon { display: inline-block; width: 18px; height: 12px; position: relative; margin-right: 8px; }
.menu-toggle__icon::before, .menu-toggle__icon::after,
.menu-toggle__icon span { content: ''; position: absolute; left: 0; right: 0; height: 2px; background: currentColor; }
.menu-toggle__icon::before { top: 0; }
.menu-toggle__icon span { top: 5px; display: block; }
.menu-toggle__icon::after { bottom: 0; }

@media (min-width: 1000px) {
  .site-nav { display: block; }
  .site-header__cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

.site-header.site-header--scrolled { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  color: var(--color-white);
  z-index: 100;
  padding: 24px 24px 40px;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu[aria-hidden="false"] { display: flex; }
.mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-menu__close {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.18));
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: 14px;
  padding: 10px 14px;
  min-height: 44px;
  cursor: pointer;
}
.mobile-menu__list { list-style: none; padding: 0; margin: 0 0 32px; }
.mobile-menu__list li { border-bottom: 1px solid rgba(255,255,255,0.12); }
.mobile-menu__list a {
  display: block;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  padding: 18px 0;
  font-weight: 600;
}
.mobile-menu__cta { align-self: flex-start; }
.site-logo--on-dark { color: var(--color-white); }

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background-color: var(--color-dark);
  background-image: linear-gradient(var(--color-overlay-50), var(--color-overlay-50)), url('../dubrovnik-hero.webp');
  background-size: cover;
  background-position: 50% 45%;
  padding: 80px 0 90px;
}
@media (min-width: 1000px) {
  .hero { min-height: 700px; padding: 140px 0 200px; }
}
.hero__inner { max-width: 820px; }
.hero__overline {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0 0 18px;
}
.hero h1 {
  color: var(--color-white);
  font-weight: 400;
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
  max-width: 680px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 15px;
  color: rgba(255,255,255,0.95);
  align-items: center;
}
.trust-row__item { display: inline-flex; align-items: center; gap: 8px; }
.trust-row__star { color: var(--color-star); font-size: 18px; letter-spacing: 1px; }

/* -------------------------------------------------------------------------
   Hero pillars (4 color-blocked cards, overlap hero)
   ------------------------------------------------------------------------- */

.hero-pillars {
  position: relative;
  z-index: 2;
  margin-top: -40px;
  padding: 0 0 32px;
}
.hero-pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.hero-pillar {
  position: relative;
  padding: 26px 22px 24px;
  border-radius: var(--radius-sm);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px -18px rgba(0,0,0,0.45);
}
.hero-pillar__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.9;
  margin: 0;
}
.hero-pillar__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  margin: 0;
  color: inherit;
}
.hero-pillar__text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: inherit;
  opacity: 0.95;
}
.hero-pillar__proof {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0;
  opacity: 0.85;
  text-transform: uppercase;
}

.hero-pillar--1 { background: linear-gradient(135deg, var(--pillar-1), color-mix(in srgb, var(--pillar-1) 90%, white)); color: var(--color-white); }
.hero-pillar--2 { background: linear-gradient(135deg, var(--pillar-2), color-mix(in srgb, var(--pillar-2) 90%, white)); color: var(--color-white); }
.hero-pillar--3 { background: linear-gradient(135deg, var(--pillar-3), color-mix(in srgb, var(--pillar-3) 90%, white)); color: var(--color-dark); }
.hero-pillar--4 { background: linear-gradient(135deg, var(--pillar-4), color-mix(in srgb, var(--pillar-4) 90%, white)); color: var(--color-white); }

@media (min-width: 690px) {
  .hero-pillars { margin-top: -48px; padding: 0 0 40px; }
  .hero-pillars__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .hero-pillars { margin-top: -80px; padding: 0 0 48px; }
  .hero-pillars__grid { grid-template-columns: repeat(4, 1fr); }
  .hero-pillar { padding: 30px 24px 26px; }
}

/* -------------------------------------------------------------------------
   Intro
   ------------------------------------------------------------------------- */

.intro {
  padding: 56px 0 64px;
  background-image: linear-gradient(rgba(20, 18, 18, 0.68), rgba(20, 18, 18, 0.68)), url('../dubrovnik-game-of-thrones-tour.webp');
  background-position: 50% 50%;
  background-size: cover;
}
.intro__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1000px) {
  .intro__layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 48px;
  }
}
.intro__text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 1em;
  color: var(--color-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.38);
}

.intro__widget {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 22px 22px 18px;
  box-shadow: 0 20px 48px -14px rgba(0, 0, 0, 0.5);
  color: var(--color-dark);
  align-self: start;
  scroll-margin-top: var(--header-height);
}
.intro__widget-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 10px;
  text-shadow: none;
}
.intro__widget-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--color-dark);
  margin: 0 0 6px;
  text-shadow: none;
}
.intro__widget-sub {
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-text-muted);
  margin: 0 0 14px;
  text-shadow: none;
}

/* -------------------------------------------------------------------------
   Key Takeaways — 6-card unified color strip
   Locked rule: .glance-card__title { color: inherit; }
   ------------------------------------------------------------------------- */

.at-a-glance { padding: 50px 0; }

.glance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 32px 0 0;
}
@media (min-width: 690px) {
  .glance-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .glance-grid { grid-template-columns: repeat(3, 1fr); }
}
.glance-card {
  padding: 32px 28px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px -24px rgba(98, 80, 77, 0.34);
}
.glance-card__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0;
  opacity: 0.9;
}
.glance-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  color: inherit;
}
.glance-card__title strong { font-weight: 700; }
.glance-card__body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  opacity: 0.95;
}
.glance-card__body strong { font-weight: 700; }

.glance-card--1 { background: linear-gradient(135deg, var(--pillar-1), color-mix(in srgb, var(--pillar-1) 90%, white));       color: var(--color-white); }
.glance-card--2 { background: linear-gradient(135deg, var(--pillar-2), color-mix(in srgb, var(--pillar-2) 90%, white));       color: var(--color-white); }
.glance-card--3 { background: linear-gradient(135deg, var(--pillar-3), color-mix(in srgb, var(--pillar-3) 90%, white));       color: var(--color-dark); }
.glance-card--4 { background: linear-gradient(135deg, var(--pillar-4), color-mix(in srgb, var(--pillar-4) 90%, white));       color: var(--color-white); }
.glance-card--5 { background: linear-gradient(135deg, var(--color-dark), color-mix(in srgb, var(--color-dark) 90%, white));     color: var(--color-white); }
.glance-card--6 { background: linear-gradient(135deg, var(--color-surface), color-mix(in srgb, var(--color-surface) 90%, white));  color: var(--color-dark); }

/* -------------------------------------------------------------------------
   Destinations — "Choose Your Experience" 3 cards
   Pattern: top banner carries a background photo with the heading overlay.
   Cards use negative margin-top to straddle the banner edge — the top ~1/3
   of each card sits on the image, the bottom ~2/3 sits on the page bg.
   Same visual technique as the hero → hero-pillars overlap.
   ------------------------------------------------------------------------- */

.destinations { padding: 0 0 60px; }

.destinations__banner {
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 55%, rgba(0, 0, 0, 0.28) 100%),
    url('../dubrovnik-game-of-thrones-tour-categories.webp');
  background-size: cover;
  background-position: center;
  padding: 24px 0 140px;
  color: var(--color-white);
}
@media (min-width: 690px) {
  .destinations__banner { padding: 32px 0 170px; }
}
@media (min-width: 1000px) {
  .destinations__banner { padding: 40px 0 210px; }
}

.destinations__heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.destinations__heading .eyebrow,
.destinations__heading h2,
.destinations__heading p { color: var(--color-white); }
.destinations__heading .eyebrow { opacity: 0.92; }
.destinations__heading h2 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.destinations__heading p {
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  opacity: 0.96;
}

.destinations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 2;
}
@media (min-width: 690px) {
  .destinations-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* Overlap pull-up — card tops sit on the banner image, bottoms on page bg */
.destinations-grid--overlap { margin-top: -70px; }
@media (min-width: 690px) {
  .destinations-grid--overlap { margin-top: -90px; }
}
@media (min-width: 1000px) {
  .destinations-grid--overlap { margin-top: -110px; }
}
.destination-card {
  background: linear-gradient(135deg, var(--color-surface), color-mix(in srgb, var(--color-surface) 90%, white));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: var(--color-dark);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
  box-shadow: 0 8px 18px -10px var(--color-card-shadow);
}
.destination-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -10px var(--color-card-shadow);
  color: var(--color-dark);
}
.destination-card__kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0;
}
.destination-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-dark);
  margin: 0;
}
.destination-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--color-primary);
  margin: 0;
}
.destination-card__price-unit {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-left: 4px;
  font-family: var(--font-body);
}
.destination-card__meta {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}
.destination-card__meta-star { color: var(--color-star); font-weight: 700; }
.destination-card__cta {
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-border-strong);
  padding-bottom: 4px;
  align-self: flex-start;
}

/* Destination-card per-category accent — matches the category section the
   card links to, so the visual thread is consistent top-to-bottom. */
.destination-card--classic  { --card-accent: var(--color-primary); }
.destination-card--extended { --card-accent: var(--pillar-2); }
.destination-card--private  { --card-accent: var(--color-dark); }

.destination-card--classic,
.destination-card--extended,
.destination-card--private { border-top: 3px solid var(--card-accent); }

.destination-card--classic  .destination-card__kicker,
.destination-card--extended .destination-card__kicker,
.destination-card--private  .destination-card__kicker,
.destination-card--classic  .destination-card__price,
.destination-card--extended .destination-card__price,
.destination-card--private  .destination-card__price,
.destination-card--classic  .destination-card__cta,
.destination-card--extended .destination-card__cta,
.destination-card--private  .destination-card__cta { color: var(--card-accent); }

.destination-card__lead {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-body);
  margin: 4px 0 0;
}

.destination-card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}
.destination-card__row .destination-card__price { margin: 0; }
.destination-card__row .destination-card__meta  { margin: 0; }

.destination-card__fit {
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
  margin-top: 2px;
}
.destination-card__fit-heading {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-dark);
  margin: 0 0 10px;
  padding-left: 28px;
  position: relative;
  line-height: 1;
}
.destination-card__fit-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--card-accent, var(--color-primary));
  transform: translateY(-50%);
}
.destination-card__fit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--color-body);
}
.destination-card__fit-list li {
  padding-left: 14px;
  position: relative;
  margin-bottom: 5px;
}
.destination-card__fit-list li:last-child { margin-bottom: 0; }
.destination-card__fit-list li::before {
  content: '\00B7';
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--card-accent, var(--color-primary));
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}

/* -------------------------------------------------------------------------
   Gallery — horizontal scroll-snap strip
   ------------------------------------------------------------------------- */

.gallery { padding: 50px 0; background: var(--color-white); }
.gallery__viewport { position: relative; }
.gallery__scroller {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 20px 20px;
  margin: 0 -20px;
  scrollbar-width: none;
}
.gallery__scroller::-webkit-scrollbar { display: none; }
.gallery__item {
  flex: 0 0 85vw;
  max-width: 480px;
  scroll-snap-align: start;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-surface), color-mix(in srgb, var(--color-surface) 90%, white));
}
@media (min-width: 690px) { .gallery__item { flex: 0 0 420px; } }
@media (min-width: 1000px) { .gallery__item { flex: 0 0 480px; } }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-white), color-mix(in srgb, var(--color-white) 92%, var(--color-surface)));
  color: var(--color-dark);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 14px -4px rgba(98, 80, 77, 0.22);
}
.gallery__btn:hover {
  background: linear-gradient(135deg, var(--color-dark), color-mix(in srgb, var(--color-dark) 90%, white));
  color: var(--color-white);
  border-color: var(--color-dark);
}
.gallery__btn--prev { left: 8px; }
.gallery__btn--next { right: 8px; }
.gallery__btn[disabled] { opacity: 0.35; cursor: not-allowed; pointer-events: none; }
@media (min-width: 690px) {
  .gallery__btn { width: 56px; height: 56px; font-size: 32px; }
  .gallery__btn--prev { left: 16px; }
  .gallery__btn--next { right: 16px; }
}

/* -------------------------------------------------------------------------
   Category sections (.cat) — header + tagline + desc + 4-pill strip + two-col info
   ------------------------------------------------------------------------- */

.cat { padding: 60px 0 30px; }
.cat__header { margin: 0 0 28px; text-align: left; }
.cat__header h2 {
  margin: 0;
  padding: 0 0 8px;
  position: relative;
  color: var(--color-dark);
}
.cat__header h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  background: var(--color-primary);
  margin-top: 8px;
}
.cat__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--color-text-muted);
  margin: 14px 0 14px;
  line-height: 1.35;
}
@media (min-width: 690px) {
  .cat__tagline { font-size: 23px; }
}
@media (min-width: 1000px) {
  .cat__tagline { font-size: 26px; }
}
.cat__desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-dark);
  max-width: 820px;
  margin: 0;
}
@media (min-width: 690px) {
  .cat__desc { font-size: 16px; }
}

.cat__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
  max-width: 840px;
}
.cat__fact {
  flex: 1 1 45%;
  min-width: 140px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--color-white), color-mix(in srgb, var(--color-white) 92%, var(--color-surface)));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
}
@media (min-width: 690px) {
  .cat__fact { flex: 1 1 0; }
}
.cat__fact-value {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.1;
}
.cat__fact-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-top: 0;
}

.cat__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 0 0 32px;
}
@media (min-width: 768px) {
  .cat__info { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.cat__info-col { background: transparent; border: 0; }
.cat__info-heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-dark);
  margin: 0 0 16px;
  position: relative;
  padding-bottom: 8px;
}
.cat__info-heading::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
}
.cat__info-heading--extra { margin-top: 24px; }

.cat__info-list { margin: 0; padding: 0; }
.cat__info-item { margin-bottom: 16px; }
.cat__info-item dt {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 4px;
}
.cat__info-item dd {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}
.cat__info-list--bullets { list-style: none; padding: 0; margin: 0; }
.cat__info-list--bullets li {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-dark);
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}
.cat__info-list--bullets li::before {
  content: '\00B7';
  position: absolute;
  left: 0;
  color: var(--cat-accent, var(--color-primary));
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

/* -------------------------------------------------------------------------
   Category accent scheme — one distinct hue per category so visitors can
   tell the three tiers apart at a glance. Used on H2 underline, info-heading
   underline, fact-strip top border, bullet dots, and tour-card__pick badge.
   ------------------------------------------------------------------------- */

.cat--classic  { --cat-accent: var(--color-primary); }  /* Adriatic teal */
.cat--extended { --cat-accent: var(--pillar-2); }       /* caramel terracotta */
.cat--private  { --cat-accent: var(--color-dark); }     /* Spanish raisin */

.cat--classic  .cat__header h2::after,
.cat--extended .cat__header h2::after,
.cat--private  .cat__header h2::after { background: var(--cat-accent); }

.cat--classic  .cat__tagline,
.cat--extended .cat__tagline,
.cat--private  .cat__tagline { color: var(--cat-accent); }

.cat--classic  .cat__info-heading::after,
.cat--extended .cat__info-heading::after,
.cat--private  .cat__info-heading::after { background: var(--cat-accent); }

.cat--classic  .cat__fact,
.cat--extended .cat__fact,
.cat--private  .cat__fact {
  background: linear-gradient(135deg, var(--cat-accent), color-mix(in srgb, var(--cat-accent) 90%, white));
  border: none;
  color: var(--color-white);
}
.cat--classic  .cat__fact .cat__fact-value,
.cat--extended .cat__fact .cat__fact-value,
.cat--private  .cat__fact .cat__fact-value { color: var(--color-white); }

.cat--classic  .cat__fact .cat__fact-label,
.cat--extended .cat__fact .cat__fact-label,
.cat--private  .cat__fact .cat__fact-label { color: rgba(255, 255, 255, 0.78); }

.cat--classic  .tour-card__pick  { background: var(--color-primary); color: var(--color-white); }
.cat--extended .tour-card__pick  { background: var(--pillar-2);     color: var(--color-white); }
.cat--private  .tour-card__pick  { background: var(--color-dark);   color: var(--color-white); }

/* -------------------------------------------------------------------------
   Category audience block — "Best for" + "Skip if" two-column decision aid.
   Sits between .cat__desc and .cat__facts. Sharp corners, unified strip,
   accent color inherits via --cat-accent from the parent .cat--X modifier.
   ------------------------------------------------------------------------- */

.cat__audience {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 0 28px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  max-width: 840px;
}
@media (min-width: 690px) {
  .cat__audience { grid-template-columns: 1fr 1fr; }
}
.cat--classic  .cat__audience,
.cat--private  .cat__audience { background: var(--color-bg); }

.cat__audience-col {
  padding: 22px 26px;
  border-bottom: 1px solid var(--color-border);
}
.cat__audience-col:last-child { border-bottom: 0; }
@media (min-width: 690px) {
  .cat__audience-col { border-bottom: 0; border-right: 1px solid var(--color-border); }
  .cat__audience-col:last-child { border-right: 0; }
}

.cat__audience-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-dark);
  margin: 0 0 14px;
  padding-left: 30px;
  position: relative;
  line-height: 1;
}
.cat__audience-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--cat-accent, var(--color-primary));
  transform: translateY(-50%);
}
.cat__audience-col--skip h4::before {
  background: transparent;
  border-top: 2px dashed var(--cat-accent, var(--color-primary));
  height: 0;
  top: calc(50% - 1px);
}

.cat__audience-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-body);
}
.cat__audience-col li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}
.cat__audience-col li:last-child { margin-bottom: 0; }
.cat__audience-col li::before {
  content: '\00B7';
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--cat-accent, var(--color-primary));
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}
.cat__audience-col--skip li { color: var(--color-text-muted); }

/* -------------------------------------------------------------------------
   Tour cards — 3-level flex stack for equal-height widget alignment
   ------------------------------------------------------------------------- */

.tours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
  align-items: stretch;
}
@media (min-width: 900px)  { .tours-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (min-width: 1200px) { .tours-grid { grid-template-columns: repeat(3, 1fr); } }

.tour-card {
  background: linear-gradient(135deg, var(--color-white), color-mix(in srgb, var(--color-white) 92%, var(--color-surface)));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 22px -8px var(--color-card-shadow);
  overflow: hidden;
  scroll-margin-top: var(--header-height);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tour-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.tour-card__pick {
  display: inline-block;
  align-self: flex-start;
  background: linear-gradient(135deg, var(--pillar-2), color-mix(in srgb, var(--pillar-2) 90%, white));
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: 14px;
}
.tour-card__title {
  font-size: 1.18rem;
  margin: 0 0 10px;
  line-height: 1.3;
  color: var(--color-dark);
}
.tour-card__meta {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.tour-card__rating {
  color: var(--color-star);
  font-weight: 700;
  letter-spacing: 0.3px;
}
.tour-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}
.tour-card__price-unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  margin-left: 4px;
}
.tour-card__price-note {
  font-size: 13px;
  color: var(--color-text-soft);
  margin: 0 0 14px;
  line-height: 1.5;
}
.tour-card__highlights { list-style: none; padding: 0; margin: 6px 0 20px; }
.tour-card__highlights li {
  font-size: 14px;
  padding: 4px 0 4px 22px;
  position: relative;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.tour-card__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 2px;
  background: var(--color-primary);
}
.tour-card__widget {
  border-top: 1px solid var(--color-border);
  margin: 8px -24px -28px;
  padding: 20px 20px 22px;
  background: linear-gradient(135deg, var(--color-surface), color-mix(in srgb, var(--color-surface) 90%, white));
  scroll-margin-top: var(--header-height);
  margin-top: auto;
}

/* -------------------------------------------------------------------------
   Filming locations — 12-card grid after Reviews section.
   3 cols desktop, 2 cols tablet, 1 col mobile. 12 items fit cleanly at all
   three breakpoints (4/6/12 rows). Uses same surface gradient as destination
   cards for visual consistency.
   ------------------------------------------------------------------------- */

.locations { padding: 0 0 60px; }

.locations__banner {
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 55%, rgba(0, 0, 0, 0.28) 100%),
    url('../dubrovnik-got-locations.webp');
  background-size: cover;
  background-position: center top;
  padding: 24px 0 140px;
  color: var(--color-white);
}
@media (min-width: 690px) {
  .locations__banner { padding: 32px 0 170px; }
}
@media (min-width: 1000px) {
  .locations__banner { padding: 40px 0 210px; }
}

.locations__heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.locations__heading .eyebrow,
.locations__heading h2,
.locations__heading p { color: var(--color-white); }
.locations__heading .eyebrow { opacity: 0.92; }
.locations__heading h2 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.locations__heading p {
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  opacity: 0.96;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
@media (min-width: 690px) { .locations-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (min-width: 1000px) { .locations-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* Overlap pull-up — card tops sit on the banner image, bottoms on page bg */
.locations-grid--overlap { margin-top: -70px; }
@media (min-width: 690px) {
  .locations-grid--overlap { margin-top: -90px; }
}
@media (min-width: 1000px) {
  .locations-grid--overlap { margin-top: -110px; }
}

.location-card {
  background: linear-gradient(135deg, var(--color-surface), color-mix(in srgb, var(--color-surface) 90%, white));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  box-shadow: 0 8px 18px -10px var(--color-card-shadow);
  border-top: 3px solid var(--color-primary);
}
.location-card__alias {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0;
}
.location-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--color-dark);
  margin: 0;
}
.location-card__desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-body);
  margin: 0;
}

/* -------------------------------------------------------------------------
   Reviews
   ------------------------------------------------------------------------- */

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-md);
  align-items: stretch;
}
@media (min-width: 690px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: linear-gradient(135deg, var(--color-white), color-mix(in srgb, var(--color-white) 92%, var(--color-surface)));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
  box-shadow: 0 12px 18px -6px var(--color-card-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.review__stars {
  color: var(--color-star);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 16px;
}
.review__body {
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-dark);
  margin-bottom: 12px;
  quotes: none;
}
.review__body,
.review__body * { color: var(--color-dark); }
.review__attr {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-muted);
  text-align: center;
  margin: auto 0 0;
  padding-top: 12px;
}
.review__attr strong { color: var(--color-dark); }

/* -------------------------------------------------------------------------
   Tables
   ------------------------------------------------------------------------- */

.table-wrap { overflow-x: auto; margin: 0 0 var(--gap-md); }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  font-size: 14px;
  min-width: 560px;
}
th, td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  line-height: 1.5;
}
th {
  background: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
tbody tr:nth-child(even) { background: var(--color-surface); }
td strong { color: var(--color-dark); }

/* Cost split */
.cost-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
  margin-top: var(--gap-lg);
}
@media (min-width: 690px) { .cost-split { grid-template-columns: repeat(2, 1fr); } }

.info-card {
  background: linear-gradient(135deg, var(--color-white), color-mix(in srgb, var(--color-white) 92%, var(--color-surface)));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 24px;
}
.info-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.info-card ul { padding-left: 1.1em; }
.info-card li {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 6px;
}

/* -------------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------------- */

.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
  background: linear-gradient(135deg, var(--color-white), color-mix(in srgb, var(--color-white) 92%, var(--color-surface)));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  line-height: 1.3;
  color: var(--color-dark);
  position: relative;
  padding-right: 58px;
  min-height: 44px;
}
@media (min-width: 690px) {
  .faq-item summary { font-size: 1.32rem; }
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item__body {
  padding: 0 24px 24px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text-muted);
}
@media (min-width: 690px) {
  .faq-item__body { font-size: 18px; }
}
.faq-item__body p { margin: 0 0 0.8em; }

/* -------------------------------------------------------------------------
   Practical info — 3 columns
   ------------------------------------------------------------------------- */

.cols-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-md);
}
@media (min-width: 690px) { .cols-3 { grid-template-columns: repeat(3, 1fr); } }

/* -------------------------------------------------------------------------
   Final CTA (book-now)
   ------------------------------------------------------------------------- */

.book-now {
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  padding: 70px 0;
}
.book-now h2 { color: var(--color-white); margin-bottom: 14px; }
.book-now__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pillar-3);
  margin-bottom: 14px;
}
.book-now > .container > p {
  color: rgba(255,255,255,0.88);
  max-width: 720px;
  margin: 0 auto 18px;
  font-size: 1.05rem;
  line-height: 1.6;
}
.book-now__urgency {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--pillar-3);
  margin: 0 auto 28px;
}
.book-now__ctas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 690px) {
  .book-now__ctas { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
.book-now .btn { width: 100%; }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */

.site-footer {
  background: var(--color-footer-bg);
  color: rgba(255,255,255,0.74);
  padding: 60px 0 30px;
}
.site-footer a { color: var(--color-white); }
.site-footer a:hover { color: var(--pillar-3); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
  margin-bottom: 40px;
}
@media (min-width: 690px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }
.footer-col h4 {
  color: var(--color-white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; font-size: 14px; }
.footer-col a { min-height: 44px; display: inline-block; padding: 4px 0; }
.footer-about {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.74);
  margin: 0 0 12px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.footer-logo img { width: 30px; height: 30px; }
.footer-disclosure {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
  text-align: center;
}
.footer-disclosure p { margin: 0 0 8px; }
.footer-legal { margin-top: 8px; }
.footer-legal a { margin: 0 10px; }
.footer-updated {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

/* -------------------------------------------------------------------------
   404 page
   ------------------------------------------------------------------------- */

.notfound {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  flex-direction: column;
}
.notfound h1 { font-size: clamp(2rem, 6vw, 3.2rem); margin-bottom: 12px; }
.notfound p { font-size: 1.1rem; color: var(--color-text-muted); margin-bottom: 28px; }

/* -------------------------------------------------------------------------
   Legal pages (privacy, affiliate disclosure)
   ------------------------------------------------------------------------- */

.legal-page { padding: 50px 0 70px; background: var(--color-white); }
.legal-page .container { max-width: 820px; }
.legal-page h1 { margin-bottom: 14px; }
.legal-page h2 {
  margin-top: 36px;
  margin-bottom: 14px;
  font-size: 1.4rem;
}
.legal-page p,
.legal-page li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-dark);
}
.legal-page__meta {
  font-size: 13px;
  color: var(--color-text-soft);
  margin-bottom: 30px;
}
