/* ============================================================
   TRETIAKOV IN ATHENS — Brand Identity Stylesheet v2.0
   ============================================================
   Color Palette:
     Primary Blue   : #17579B  (dominant brand color)
     Off-white Cream: #F5F2EE  (backgrounds, breathing space)
     Accent Orange  : #CC5628  (CTA emphasis, key accents)
     Olive Green    : #7A9436  (secondary accent only)

   Typography:
     Doodle Sans — expressive headings, hero phrases, accent words
     Lato        — ALL body text, nav, buttons, descriptions, UI
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&display=swap');

/* ── Doodle Sans — self-hosted fallback approach ─────────────
   Try cdnfonts first; CSS fallback chain ensures Caveat is used
   if cdnfonts 500s (known issue with that CDN).
   The font-face below gives browser a working fallback immediately.
──────────────────────────────────────────────────────────── */

/* Caveat from Google (reliable backup for display) */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Brand palette */
  --blue:          #17579B;
  --blue-dark:     #0E3D72;
  --blue-mid:      #2462A8;
  --blue-light:    #C8DCEE;
  --blue-pale:     #EAF2FA;

  --cream:         #F5F2EE;
  --cream-warm:    #EDE8E0;
  --cream-deep:    #DDD5C8;

  --olive:         #7A9436;
  --olive-dark:    #566A26;
  --olive-light:   #B3C77A;
  --olive-pale:    #EDF2DC;

  --terra:         #CC5628;
  --terra-dark:    #A33F18;
  --terra-light:   #E8916E;
  --terra-pale:    #FAEDE6;

  --white:         #FFFFFF;
  --ink:           #1A1814;
  --ink-soft:      #2E2B26;
  --ink-muted:     #6B6358;

  /* Semantic */
  --color-primary: var(--blue);
  --color-accent:  var(--terra);
  --color-bg:      var(--cream);

  /* ── TYPOGRAPHY ── */
  /* Doodle Sans: display headings, hero, accent labels
     Falls back to Caveat (Google Fonts, always loads)
     Both fonts have the same handwritten personality */
  --font-display: 'Doodle Sans', 'Caveat', cursive;
  /* Lato: everything else */
  --font-body:    'Lato', system-ui, -apple-system, sans-serif;

  /* Type scale */
  --text-xs:   0.70rem;
  --text-sm:   0.82rem;
  --text-base: 1rem;
  --text-md:   1.06rem;
  --text-lg:   1.18rem;
  --text-xl:   1.35rem;

  /* Spacing */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;

  /* Shapes */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-s:  0 2px 12px rgba(23,87,155,0.08);
  --shadow-m:  0 6px 28px rgba(23,87,155,0.11);
  --shadow-l:  0 14px 48px rgba(23,87,155,0.14);
  --shadow-xl: 0 24px 72px rgba(23,87,155,0.18);

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:  0.32s;
  --tr:   var(--dur) var(--ease);

  --container: 1200px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--cream);
  color: var(--ink-soft);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY SYSTEM ────────────────────────────────────── */
/*
  Doodle Sans → h1, h2, h3 (display headings), .doodle-text
  Lato        → h4, h5, h6, p, labels, nav, buttons, UI
*/

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: var(--ink);
}
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.18;
  color: var(--ink);
}
/* h4 and below → Lato */
h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
}
h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.76;
  color: var(--ink-soft);
}

/* Utility classes */
.doodle-text   { font-family: var(--font-display) !important; }
.lato-text     { font-family: var(--font-body) !important; }
.text-muted    { color: var(--ink-muted); }
.text-center   { text-align: center; }
.text-cream    { color: var(--cream); }
.text-blue     { color: var(--blue); }
.text-terra    { color: var(--terra); }
.text-olive    { color: var(--olive); }

.overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: var(--space-9) 0; }

/* ── BUTTONS ──────────────────────────────────────────────── */
/*
  All buttons use Lato — uppercase, tracked
  Primary CTA → terracotta (#CC5628)
  Secondary   → blue outline
  Ghost cream → on dark backgrounds
*/

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr), color var(--tr);
  white-space: nowrap;
  position: relative;
}

/* Primary CTA — Terracotta (main shop/buy action) */
.btn-primary,
.btn-cta {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(204,86,40,0.32);
  border: 2px solid transparent;
}
.btn-primary:hover,
.btn-cta:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(204,86,40,0.38);
}

/* Gold / Buy CTA */
.btn-gold {
  background: #CC5628;
  color: #fff;
  box-shadow: 0 4px 18px rgba(204,86,40,0.32);
  border: 2px solid transparent;
}
.btn-gold:hover {
  background: #b04820;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(204,86,40,0.42);
  color: #fff;
}

/* Blue filled */
.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(23,87,155,0.28);
  border: 2px solid transparent;
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(23,87,155,0.36);
}

/* Outline blue */
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Ghost on dark bg */
.btn-ghost {
  background: transparent;
  color: rgba(245,242,238,0.9);
  border: 1.5px solid rgba(245,242,238,0.4);
}
.btn-ghost:hover {
  background: rgba(245,242,238,0.1);
  border-color: rgba(245,242,238,0.8);
}

/* Cream on dark bg */
.btn-cream {
  background: var(--cream);
  color: var(--blue);
  border: 2px solid transparent;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.btn-cream:hover {
  background: var(--white);
  transform: translateY(-2px);
}

/* Small */
.btn-sm {
  padding: 10px 22px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

/* Large */
.btn-lg {
  padding: 17px 42px;
  font-size: 0.82rem;
}

/* ── BADGES ───────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-xs);
}
.badge-bestseller { background: var(--terra);      color: var(--white); }
.badge-starter    { background: var(--blue);       color: var(--white); }
.badge-seasonal   { background: var(--olive);      color: var(--white); }
.badge-island     { background: var(--blue-mid);   color: var(--white); }
.badge-local      { background: var(--ink);        color: var(--white); }
.badge-soon       { background: var(--cream-deep); color: var(--ink-muted); }

/* ── TAGS / PILLS ─────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: var(--blue-pale);
  color: var(--blue);
  border: 1.5px solid var(--blue-light);
}
.tag-olive  { background: var(--olive-pale);  color: var(--olive-dark); border-color: var(--olive-light); }
.tag-terra  { background: var(--terra-pale);  color: var(--terra-dark); border-color: var(--terra-light); }
.tag-island { background: var(--blue-pale);   color: var(--blue-mid);   border-color: var(--blue-light);  }

/* ── DECORATIVE SYSTEM ────────────────────────────────────── */

/* Wavy underline — used on display headings */
.wave-under {
  position: relative;
  display: inline-block;
}
.wave-under::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 5px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,3 C15,0 30,6 60,3 C90,0 105,6 120,3' stroke='%23CC5628' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x center;
  background-size: 80px 5px;
}

/* Sketchy hand-drawn circle highlight */
.sketch-circle {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.sketch-circle::before {
  content: '';
  position: absolute;
  inset: -5px -14px;
  border: 2.5px solid var(--terra);
  border-radius: 50% 55% 48% 60% / 55% 48% 60% 50%;
  transform: rotate(-1.5deg);
  pointer-events: none;
}

/* Doodle dot pattern */
.bg-dots {
  background-image: radial-gradient(circle, var(--blue-light) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}

/* Sketch border */
.border-sketch {
  border: 2px solid currentColor;
  border-radius: 3px 9px 5px 7px / 7px 5px 9px 3px;
}

/* Section divider wave */
.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg { display: block; width: 100%; }

/* Meander border line */
.meander-line {
  width: 100%;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 6'%3E%3Cpath d='M0,3 L6,3 L6,1 L10,1 L10,5 L14,5 L14,1 L18,1 L18,3 L22,3 L22,1 L26,1 L26,5 L30,5 L30,1 L34,1 L34,3 L40,3' stroke='%2317579B' stroke-width='1.5' fill='none' stroke-linecap='square'/%3E%3C/svg%3E") repeat-x center;
  background-size: 40px 6px;
  opacity: 0.35;
}
.meander-line-cream {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 6'%3E%3Cpath d='M0,3 L6,3 L6,1 L10,1 L10,5 L14,5 L14,1 L18,1 L18,3 L22,3 L22,1 L26,1 L26,5 L30,5 L30,1 L34,1 L34,3 L40,3' stroke='%23F5F2EE' stroke-width='1.5' fill='none' stroke-linecap='square'/%3E%3C/svg%3E");
  opacity: 0.3;
}

/* Deco separator ✦ */
.deco-sep {
  display: inline-block;
  color: var(--terra);
  opacity: 0.7;
  font-size: 0.75rem;
  margin: 0 var(--space-3);
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: padding var(--tr), background var(--tr), box-shadow var(--tr);
}
.navbar.scrolled {
  background: rgba(245,242,238,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(23,87,155,0.09);
  border-bottom: 1px solid var(--cream-warm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* Logo: Doodle Sans for brand name */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity var(--tr);
}
.navbar-logo:hover { opacity: 0.82; }

.logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.navbar-logo-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
  transition: color var(--tr);
}
.navbar.scrolled .logo-main { color: var(--blue-dark); }

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.55);
  transition: color var(--tr);
  margin-top: 2px;
}
.navbar.scrolled .logo-sub { color: var(--ink-muted); }

/* Nav links — Lato */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar-link {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.82);
  transition: color var(--tr);
  position: relative;
}
.navbar.scrolled .navbar-link { color: var(--ink-soft); }
.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--terra);
  border-radius: 2px;
  transition: width var(--dur) var(--ease);
}
.navbar-link:hover::after,
.navbar-link.active::after { width: 100%; }

/* CTA — terracotta pill */
.navbar-cta {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--terra);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--r-pill);
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
  box-shadow: 0 3px 14px rgba(204,86,40,0.32);
}
.navbar-cta:hover {
  background: var(--terra-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(204,86,40,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(245,242,238,0.9);
  border-radius: 2px;
  transition: var(--tr);
}
.navbar.scrolled .hamburger span { background: var(--ink-soft); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: 300px; height: 100vh;
  background: var(--cream);
  z-index: 1100;
  padding: 80px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
  box-shadow: -8px 0 48px rgba(23,87,155,0.12);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-warm);
  transition: color var(--tr);
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav .btn { margin-top: 24px; align-self: flex-start; }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 1.4rem;
  color: var(--ink-muted);
  transition: color var(--tr);
}
.mobile-nav-close:hover { color: var(--terra); }
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23,87,155,0.3);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr);
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

/* ── HERO SECTION ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue);
  padding: 120px 0 100px;
}

/* Textured overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 80%, rgba(204,86,40,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(122,148,54,0.06) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

/* Grain texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* Bottom clip wave */
.hero-wave-bottom {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave-bottom svg { display: block; width: 100%; }

/* Floating illustrations */
.hero-illustrations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Large composition illustration — right side */
.hero-doodle {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(420px, 38vw);
  opacity: 0.82;
  animation: floatDoodle 7s ease-in-out infinite;
  z-index: 1;
}
@keyframes floatDoodle {
  0%, 100% { transform: translateY(-50%) translateY(0px); }
  40%       { transform: translateY(-50%) translateY(-14px); }
  70%       { transform: translateY(-50%) translateY(-7px); }
}

/* Hero map (replaces doodle illustration) */
.hero-doodle-map {
  animation: none !important;
  opacity: 1 !important;
  overflow: visible !important;
}
#hero-leaflet-map {
  width: 100%;
  height: min(420px, 42vw);
  border-radius: 20px;
  border: 2px solid rgba(245,242,238,0.18);
  box-shadow: 0 12px 48px rgba(13,45,85,0.32), 0 0 0 1px rgba(245,242,238,0.10);
  overflow: hidden;
}
.hero-map-legend {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 10px;
  font-family: var(--font-body,'Lato',sans-serif);
  font-size: 0.72rem;
  color: rgba(245,242,238,0.65);
}
.hero-map-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-map-legend i {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Small floating accents */
.hero-float {
  position: absolute;
  animation: floatSmall 5s ease-in-out infinite;
}
.hero-float-owl  { top: 12%; left: 3%;  width: clamp(52px, 5vw, 72px);  animation-delay: 0s;    opacity: 0.38; }
.hero-float-wave { bottom: 22%; left: 8%; width: clamp(70px, 7vw, 100px); animation-delay: 1.2s; opacity: 0.28; }
.hero-float-pin  { top: 20%; left: 48%; width: clamp(30px, 3vw, 44px);  animation-delay: 0.7s;  opacity: 0.3; }

@keyframes floatSmall {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-9px) rotate(2deg); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--terra);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-eyebrow-text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.6);
}

/* Hero headline — Doodle Sans, large, cream */
.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-headline .accent-word {
  color: var(--terra-light);
  position: relative;
  display: inline-block;
}
.hero-headline .accent-word::after {
  content: '';
  position: absolute;
  bottom: 0; left: -2px; right: -2px;
  height: 4px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,3 C20,0 40,5 60,2.5 C80,0 95,5 100,3' stroke='%23E8916E' stroke-width='2.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100% 100%;
}

/* Editorial kicker — Doodle Sans, decorative */
.hero-kicker {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--olive-light);
  font-weight: 400;
  margin-bottom: 6px;
  opacity: 0.9;
}

/* Subheadline — Lato */
.hero-subheadline {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  font-weight: 300;
  line-height: 1.76;
  color: rgba(245,242,238,0.75);
  margin-bottom: 44px;
  max-width: 480px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Micro caption under buttons */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 0.70rem;
  color: rgba(245,242,238,0.45);
  letter-spacing: 0.08em;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(245,242,238,0.35);
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: scrollPulse 2.4s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, rgba(245,242,238,0.35), transparent);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.9; transform: translateX(-50%) translateY(7px); }
}

/* ── ILLUSTRATION BAND ────────────────────────────────────── */
.illus-band {
  background: var(--blue);
  overflow: hidden;
  padding: 0;
  position: relative;
}
.illus-band-inner {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding: 18px 0;
}
.illus-band-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: bandScroll 28s linear infinite;
  will-change: transform;
  flex-shrink: 0;
}
.illus-band-track:hover { animation-play-state: paused; }
@keyframes bandScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.illus-band-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 0 36px;
  color: rgba(245,242,238,0.7);
  flex-shrink: 0;
}
.illus-band-item svg {
  width: 52px;
  height: 56px;
  color: rgba(245,242,238,0.72);
}
.illus-band-item span {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.45);
  white-space: nowrap;
}
.illus-band-sep {
  color: var(--terra);
  opacity: 0.6;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin: 0 4px;
}

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: var(--blue);
  padding: 48px 0;
  position: relative;
}
.stats-bar-grid {
  display: flex;
  justify-content: center;
  gap: clamp(36px, 6vw, 88px);
  flex-wrap: wrap;
  align-items: center;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.46);
  margin-top: 5px;
}
.stat-div {
  width: 1px;
  background: rgba(245,242,238,0.14);
  align-self: stretch;
  margin: 4px 0;
  min-height: 40px;
}

/* ── SECTION CHROME ───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}
.section-kicker {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.section-kicker::before,
.section-kicker::after {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--terra);
  opacity: 0.5;
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.12;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.06rem);
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.72;
}

/* ── FILTER BAR ───────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 56px;
}
.filter-pill {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--cream-deep);
  color: var(--ink-muted);
  background: transparent;
  transition: all var(--tr);
}
.filter-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
}
.filter-pill.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 3px 14px rgba(23,87,155,0.22);
}

/* ── GUIDE CARDS ──────────────────────────────────────────── */
.guides-section {
  background: var(--cream);
  padding: var(--space-9) 0;
}
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
@media (min-width: 861px) and (max-width: 1200px) {
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1201px) {
  .guides-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.guide-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: transform var(--tr), box-shadow var(--tr);
  display: flex;
  flex-direction: column;
}
.guide-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

/* Card image area */
.guide-card-image {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.guide-card-illus {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 14px;
}
.guide-card-illus svg {
  flex-shrink: 0;
  max-height: 130px;
}
.guide-card-badge {
  position: absolute;
  top: 14px; left: 14px;
}
.guide-card-num {
  position: absolute;
  bottom: 14px; right: 14px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(245,242,238,0.14);
  line-height: 1;
  user-select: none;
}

/* Card body */
.guide-card-body {
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.guide-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.guide-card-locations {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}
.guide-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.18;
}
.guide-card-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.68;
  color: var(--ink-muted);
  margin-bottom: 12px;
  flex: 1;
}
.guide-card-for {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--olive-dark);
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}
.guide-card-for i { margin-top: 2px; flex-shrink: 0; }
.guide-card-footer {
  margin-top: auto;
}

/* Coming soon card */
.guide-card-coming-soon {
  position: absolute;
  inset: 0;
  background: rgba(23,87,155,0.6);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
}
.coming-soon-stamp {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  border: 2px solid rgba(245,242,238,0.6);
  padding: 8px 18px;
  border-radius: 3px 8px 5px 7px / 7px 5px 8px 3px;
  transform: rotate(-8deg);
  letter-spacing: 0.05em;
}

/* ── FEATURED / WHICH GUIDE SECTION ──────────────────────── */
.which-guide-section {
  background: var(--blue);
  padding: var(--space-9) 0;
  position: relative;
}
.which-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.which-guide-card {
  background: rgba(245,242,238,0.07);
  border: 1.5px solid rgba(245,242,238,0.14);
  border-radius: var(--r-md);
  padding: 24px;
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: var(--cream);
}
.which-guide-card:hover {
  background: rgba(245,242,238,0.13);
  border-color: rgba(245,242,238,0.28);
  transform: translateY(-4px);
}
.which-guide-icon {
  width: 52px; height: 52px;
  color: rgba(245,242,238,0.65);
  flex-shrink: 0;
}
.which-guide-scenario {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.45);
}
.which-guide-title {
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.22;
}
.which-guide-arrow {
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra-light);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
}

/* ── ABOUT / INTRO SECTION ────────────────────────────────── */
.about-section {
  background: var(--cream);
  padding: var(--space-9) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}
.about-illus {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-text-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-text-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--terra);
  opacity: 0.5;
}
.about-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.12;
}
.about-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.78;
  margin-bottom: 14px;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer,
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 72px 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 580px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand .logo-main { color: var(--cream); }
.footer-brand .logo-sub  { color: rgba(245,242,238,0.38); }
.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(245,242,238,0.5);
  line-height: 1.65;
  margin-top: 14px;
  max-width: 260px;
}
.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.4);
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(245,242,238,0.65);
  transition: color var(--tr);
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(245,242,238,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(245,242,238,0.3);
  letter-spacing: 0.04em;
}
.footer-illus-row {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0.2;
}
.footer-illus-row svg {
  width: 32px;
  height: 36px;
  color: var(--cream);
}

/* ── REVEAL ANIMATION ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-doodle { width: min(320px, 35vw); }
  #hero-leaflet-map { height: min(340px, 38vw); }
}
@media (max-width: 860px) {
  .navbar-menu { display: none; }
  .hamburger   { display: flex; }
  .hero-doodle { display: none; }
  .hero-float  { display: none; }
  .hero-content { max-width: 100%; }
  .guides-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  :root { --space-9: 64px; }
  .container { padding: 0 18px; }
  .guides-grid  { grid-template-columns: 1fr; }
  .filter-bar   { gap: 8px; }
  .hero-headline { font-size: clamp(2.4rem, 10vw, 3.8rem); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Hotel Guide banner — stack on mobile */
  .hotel-guide-banner {
    grid-template-columns: 1fr !important;
  }
  .hotel-guide-banner .hotel-cover {
    min-height: 220px !important;
  }
  .hotel-guide-banner .hotel-content {
    padding: 32px 24px !important;
  }
}
