/* ================================================================
   STAY IN CHANIA — Production Stylesheet
   Target market: European couples, UK/DE/SCAN, 30-50
   Palette: Aegean Deep Navy + Warm Terracotta + Ivory Linen
   ================================================================ */

:root {
  /* Colours */
  --navy:          #0f2d4a;
  --navy-light:    #1a4568;
  --aegean:        #1e6fa8;
  --aegean-light:  #4d9ecf;
  --terracotta:    #c4552a;
  --terra-hover:   #a84420;
  --terra-light:   #f7e0d5;
  --gold:          #e8a84c;
  --ivory:         #faf7f2;
  --cream:         #f3ede4;
  --white:         #ffffff;
  --ink:           #1a1410;
  --ink-2:         #3d3028;
  --ink-3:         #7a6e64;
  --ink-4:         #b5aca3;
  --border:        #e2d9ce;
  --border-strong: #c8bdb0;

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;

  /* Sizes */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.825rem);
  --text-sm:   clamp(0.875rem, 0.82rem + 0.3vw,  0.975rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.1rem);
  --text-md:   clamp(1.125rem, 1rem    + 0.6vw,  1.35rem);
  --text-lg:   clamp(1.35rem,  1rem    + 1.1vw,  1.9rem);
  --text-xl:   clamp(1.75rem,  1rem    + 2.5vw,  3rem);
  --text-2xl:  clamp(2.25rem,  1rem    + 4vw,    4.5rem);
  --text-hero: clamp(3rem,     1rem    + 7.5vw,  7rem);

  /* Spacing */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4: 1rem;     --sp-5: 1.25rem;  --sp-6: 1.5rem;
  --sp-8: 2rem;     --sp-10: 2.5rem;  --sp-12: 3rem;
  --sp-16: 4rem;    --sp-20: 5rem;    --sp-24: 6rem;
  --sp-32: 8rem;

  /* Other */
  --r-sm: 0.375rem;  --r-md: 0.625rem;
  --r-lg: 1rem;      --r-xl: 1.5rem;  --r-full: 9999px;
  --transition: 160ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 4px rgba(15,45,74,0.07);
  --shadow-md: 0 4px 20px rgba(15,45,74,0.1);
  --shadow-lg: 0 12px 48px rgba(15,45,74,0.15);
  --content: 1160px;
}

/* ------------------------------------------------------------------ Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 74px;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  line-height: 1.12;
  text-wrap: balance;
  font-weight: 600;
}
p { max-width: 70ch; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
ul { list-style: none; }
::selection { background: color-mix(in srgb, var(--aegean) 18%, transparent); }
:focus-visible { outline: 2px solid var(--aegean); outline-offset: 3px; border-radius: var(--r-sm); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

/* ------------------------------------------------------------------ Utils */
.container { width: 100%; max-width: var(--content); margin-inline: auto; padding-inline: clamp(var(--sp-5), 5vw, var(--sp-16)); }
.section { padding-block: clamp(var(--sp-12), 8vw, var(--sp-24)); }
.section--light  { background: var(--white); }
.section--cream  { background: var(--cream); }
.section--dark   { background: var(--navy); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--sp-3);
}
.eyebrow--light { color: color-mix(in srgb, white 75%, var(--terracotta)); }

.section-intro { text-align: center; max-width: 680px; margin-inline: auto; margin-bottom: clamp(var(--sp-10), 5vw, var(--sp-16)); }
.section-h2 { font-size: var(--text-xl); color: var(--ink); margin-bottom: var(--sp-4); }
.section-h2--light { color: var(--white); }
.section-desc { color: var(--ink-3); font-size: var(--text-base); max-width: 60ch; margin-inline: auto; }
.section-desc--light { color: rgba(255,255,255,0.72); }

/* ------------------------------------------------------------------ Buttons */
.btn-primary, .btn-secondary, .btn-primary-lg, .btn-affiliate,
.btn-affiliate-sm, .btn-affiliate-outline, .btn-hero-primary, .btn-hero-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2); font-family: var(--font-body); font-weight: 500;
  border-radius: var(--r-full); text-decoration: none; cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-primary, .btn-primary-lg {
  background: var(--terracotta); color: white;
  padding: var(--sp-3) var(--sp-6);
  font-size: var(--text-sm);
  box-shadow: 0 2px 8px rgba(196,85,42,0.28);
}
.btn-primary-lg { padding: var(--sp-4) var(--sp-8); font-size: var(--text-base); }
.btn-primary:hover, .btn-primary-lg:hover { background: var(--terra-hover); box-shadow: 0 4px 16px rgba(196,85,42,0.38); transform: translateY(-1px); }

.btn-secondary {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: var(--sp-3) var(--sp-6);
  font-size: var(--text-sm);
}
.btn-secondary:hover { background: var(--navy); color: white; }

.btn-affiliate {
  background: var(--aegean); color: white;
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--text-sm);
  margin-top: auto;
}
.btn-affiliate:hover { background: var(--navy); transform: translateY(-1px); }

.btn-affiliate-sm {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  font-size: var(--text-xs); font-weight: 600; color: var(--aegean);
  padding: var(--sp-2) var(--sp-4);
  border: 1.5px solid var(--aegean);
  border-radius: var(--r-full);
  margin-top: var(--sp-4);
  transition: background var(--transition), color var(--transition);
}
.btn-affiliate-sm:hover { background: var(--aegean); color: white; }

.btn-affiliate-outline {
  display: inline-flex; align-items: center;
  font-size: var(--text-sm); font-weight: 500; color: var(--aegean);
  padding: var(--sp-3) var(--sp-6);
  border: 1.5px solid var(--aegean);
  border-radius: var(--r-full);
  margin-top: var(--sp-6);
  transition: background var(--transition), color var(--transition);
}
.btn-affiliate-outline:hover { background: var(--aegean); color: white; }

.btn-hero-primary {
  background: var(--terracotta); color: white;
  padding: var(--sp-4) var(--sp-8); font-size: var(--text-base);
  box-shadow: 0 4px 20px rgba(196,85,42,0.4);
}
.btn-hero-primary:hover { background: var(--terra-hover); transform: translateY(-2px); }
.btn-hero-ghost {
  background: rgba(255,255,255,0.14); color: white;
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(12px);
  padding: var(--sp-4) var(--sp-8); font-size: var(--text-base);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.25); }

/* ------------------------------------------------------------------ Header */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: color-mix(in srgb, var(--navy) 96%, transparent);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: white;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(15,45,74,0.35); }
.header-wrap {
  display: flex; align-items: center; gap: var(--sp-6);
  padding-inline: clamp(var(--sp-5), 4vw, var(--sp-12));
  height: 72px;
}
.brand { display: flex; align-items: center; gap: var(--sp-3); font-size: 1.15rem; color: white; flex-shrink: 0; }
.brand strong { color: var(--gold); font-weight: 600; }
.brand svg { color: var(--aegean-light); }
.brand--footer { color: var(--ink); }
.brand--footer svg { color: var(--aegean); }
.brand--footer strong { color: var(--terracotta); }

.main-nav { display: flex; align-items: center; gap: var(--sp-5); margin-left: auto; }
.nav-link { font-size: var(--text-sm); font-weight: 400; color: rgba(255,255,255,0.78); transition: color var(--transition); }
.nav-link:hover { color: white; }
.nav-cta-btn {
  background: var(--terracotta); color: white !important;
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full); font-size: var(--text-sm); font-weight: 500;
  transition: background var(--transition);
}
.nav-cta-btn:hover { background: var(--terra-hover); }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 38px; height: 38px; align-items: center; justify-content: center; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: white; border-radius: 2px; transition: all 0.2s; }
.mobile-menu { display: none; flex-direction: column; padding: var(--sp-4) clamp(var(--sp-5), 4vw, var(--sp-12)); background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a { padding: var(--sp-3) 0; font-size: var(--text-base); color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-menu.open { display: flex; }

@media (max-width: 820px) { .main-nav { display: none; } .hamburger { display: flex; } }

/* ------------------------------------------------------------------ Hero */
.hero { position: relative; height: 95vh; min-height: 600px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,20,35,0.92) 0%, rgba(10,20,35,0.48) 50%, rgba(10,20,35,0.18) 100%); }
.hero-body { position: relative; z-index: 2; width: 100%; max-width: var(--content); margin-inline: auto; padding-inline: clamp(var(--sp-5), 5vw, var(--sp-16)); padding-bottom: clamp(var(--sp-12), 7vw, var(--sp-24)); }
.hero-sup { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--sp-4); max-width: none; }
.hero-h1 { font-size: var(--text-hero); color: white; font-weight: 400; margin-bottom: var(--sp-5); max-width: none; line-height: 1.05; }
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-desc { font-size: var(--text-md); color: rgba(255,255,255,0.8); max-width: 54ch; margin-bottom: var(--sp-8); line-height: 1.6; }
.hero-btns { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-bottom: var(--sp-8); }
.hero-chips { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; padding: var(--sp-2) var(--sp-4); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); border-radius: var(--r-full); font-size: var(--text-xs); font-weight: 500; color: rgba(255,255,255,0.9); backdrop-filter: blur(8px); transition: background var(--transition); }
.chip:hover { background: rgba(255,255,255,0.22); }

/* ------------------------------------------------------------------ Trust Bar */
.trust-bar { background: var(--navy); color: white; padding-block: var(--sp-5); }
.trust-wrap { display: flex; align-items: center; justify-content: center; gap: clamp(var(--sp-6), 4vw, var(--sp-12)); max-width: var(--content); margin-inline: auto; padding-inline: clamp(var(--sp-5), 4vw, var(--sp-12)); flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: var(--sp-1); }
.trust-item strong { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--gold); line-height: 1; }
.trust-item span { font-size: var(--text-xs); color: rgba(255,255,255,0.6); text-align: center; max-width: 14ch; }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }
@media (max-width: 640px) { .trust-divider { display: none; } }

/* ------------------------------------------------------------------ Hotel Zones */
.hotel-zones { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--sp-5); margin-bottom: var(--sp-10); }
@media (max-width: 1024px) { .hotel-zones { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .hotel-zones { grid-template-columns: 1fr; } }

.hotel-zone-card {
  background: var(--ivory); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-3);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.hotel-zone-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.hotel-zone-card--featured { background: var(--navy); color: white; border-color: var(--navy-light); }
.hotel-zone-card--featured h3 { color: white; }
.hotel-zone-card--featured p { color: rgba(255,255,255,0.75); }
.hotel-zone-card--featured .hotel-price-range { color: rgba(255,255,255,0.6); }
.hotel-zone-card--featured .hotel-price-range strong { color: var(--gold); }
.hotel-zone-badge { position: absolute; top: var(--sp-4); right: var(--sp-4); background: var(--terracotta); color: white; font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: var(--sp-1) var(--sp-3); border-radius: var(--r-full); }
.hotel-zone-card h3 { font-size: var(--text-md); }
.hotel-zone-card p { font-size: var(--text-sm); color: var(--ink-3); line-height: 1.65; flex: 1; max-width: none; }
.hotel-zone-pros { display: flex; flex-direction: column; gap: var(--sp-2); }
.hotel-zone-pros li { font-size: var(--text-xs); color: rgba(255,255,255,0.7); padding-left: var(--sp-4); position: relative; }
.hotel-zone-pros li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 600; }
.hotel-price-range { font-size: var(--text-xs); color: var(--ink-3); margin-top: auto; }
.hotel-price-range strong { font-family: var(--font-display); font-size: var(--text-base); color: var(--terracotta); }

.booking-cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--r-xl); padding: clamp(var(--sp-8), 4vw, var(--sp-12));
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-8); flex-wrap: wrap;
  color: white;
}
.booking-cta-box--inline { background: white; border: 1px solid var(--border); color: var(--ink); }
.booking-cta-box--inline p { color: var(--ink-3); max-width: 55ch; }
.booking-cta-text h3 { font-size: var(--text-lg); color: white; margin-bottom: var(--sp-2); }
.booking-cta-text p { color: rgba(255,255,255,0.72); font-size: var(--text-sm); max-width: 50ch; }
.inline-btns { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* ------------------------------------------------------------------ Beaches */
.beach-grid { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: auto auto; gap: var(--sp-5); margin-bottom: var(--sp-10); }
@media (max-width: 768px) { .beach-grid { grid-template-columns: 1fr; } }

.beach-card {
  background: white; border: 1px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.beach-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.beach-card--hero { grid-row: 1 / 3; }
.beach-img-wrap { position: relative; overflow: hidden; }
.beach-img-wrap img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.5s ease; }
.beach-img-wrap--sm img { height: 200px; }
.beach-card--hero .beach-img-wrap img { height: 360px; }
.beach-card:hover .beach-img-wrap img { transform: scale(1.04); }
.beach-tag { position: absolute; top: var(--sp-4); left: var(--sp-4); background: var(--terracotta); color: white; font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: var(--sp-1) var(--sp-3); border-radius: var(--r-full); }
.beach-body { padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.beach-body--text-only { padding: var(--sp-8); }
.beach-meta { display: flex; align-items: center; gap: var(--sp-4); }
.beach-dist { font-size: var(--text-xs); font-weight: 600; color: var(--aegean); background: color-mix(in srgb, var(--aegean) 10%, transparent); padding: var(--sp-1) var(--sp-3); border-radius: var(--r-full); }
.beach-rating { font-size: var(--text-xs); font-weight: 600; color: var(--gold); }
.beach-card h3 { font-size: var(--text-lg); }
.beach-card p { font-size: var(--text-sm); color: var(--ink-3); line-height: 1.7; flex: 1; max-width: none; }
.beach-tips { font-size: var(--text-xs); background: color-mix(in srgb, var(--aegean) 8%, transparent); border-left: 3px solid var(--aegean); padding: var(--sp-3) var(--sp-4); border-radius: 0 var(--r-sm) var(--r-sm) 0; color: var(--ink-2); max-width: none; }

.car-rental-nudge {
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: var(--sp-8); display: flex; align-items: center; gap: var(--sp-6); flex-wrap: wrap;
}
.car-icon { width: 56px; height: 56px; background: white; border: 1px solid var(--border); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; color: var(--aegean); flex-shrink: 0; }
.car-text { flex: 1; }
.car-text h4 { font-size: var(--text-md); margin-bottom: var(--sp-2); }
.car-text p { font-size: var(--text-sm); color: var(--ink-3); max-width: 52ch; }

/* ------------------------------------------------------------------ Things To Do */
.things-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--sp-6); }
@media (max-width: 900px) { .things-grid { grid-template-columns: 1fr; } }

.thing-card {
  background: var(--ivory); border: 1px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.thing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.thing-img { overflow: hidden; }
.thing-img img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s ease; }
.thing-card:hover .thing-img img { transform: scale(1.04); }
.thing-body { padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.thing-category { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--terracotta); }
.thing-card h3 { font-size: var(--text-md); }
.thing-card p { font-size: var(--text-sm); color: var(--ink-3); line-height: 1.7; flex: 1; max-width: none; }
.thing-details { display: flex; gap: var(--sp-4); flex-wrap: wrap; font-size: var(--text-xs); color: var(--ink-4); padding-top: var(--sp-2); border-top: 1px solid var(--border); }

.things-list-col { display: flex; flex-direction: column; }
.things-list-title { font-size: var(--text-md); margin-bottom: var(--sp-5); }
.things-list { display: flex; flex-direction: column; gap: var(--sp-1); }
.things-list li { display: flex; gap: var(--sp-4); align-items: flex-start; padding: var(--sp-5); background: var(--ivory); border: 1px solid var(--border); border-radius: var(--r-lg); transition: box-shadow var(--transition); }
.things-list li:hover { box-shadow: var(--shadow-md); }
.thing-list-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.things-list li > div { display: flex; flex-direction: column; gap: var(--sp-1); }
.things-list strong { font-size: var(--text-base); font-family: var(--font-display); font-weight: 600; }
.things-list span { font-size: var(--text-sm); color: var(--ink-3); max-width: 42ch; }
.list-link { font-size: var(--text-xs); font-weight: 600; color: var(--aegean); margin-top: var(--sp-2); display: inline-block; }
.list-link:hover { color: var(--terracotta); }

/* ------------------------------------------------------------------ Day Trips */
.daytrip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
@media (max-width: 900px) { .daytrip-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .daytrip-grid { grid-template-columns: 1fr; } }

.daytrip-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl); padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-3);
  transition: background var(--transition), box-shadow var(--transition);
}
.daytrip-card:hover { background: rgba(255,255,255,0.1); box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.daytrip-number { font-family: var(--font-display); font-size: 2.5rem; color: rgba(255,255,255,0.12); line-height: 1; font-weight: 700; }
.daytrip-card h4 { font-size: var(--text-md); color: white; }
.daytrip-card p { font-size: var(--text-sm); color: rgba(255,255,255,0.65); line-height: 1.65; flex: 1; max-width: none; }
.daytrip-info { display: flex; gap: var(--sp-4); font-size: var(--text-xs); color: rgba(255,255,255,0.45); }
.daytrip-link { display: inline-flex; align-items: center; font-size: var(--text-xs); font-weight: 600; color: var(--gold); transition: color var(--transition); }
.daytrip-link:hover { color: white; }

/* ------------------------------------------------------------------ Food */
.food-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--sp-10), 6vw, var(--sp-20)); align-items: center; }
@media (max-width: 768px) { .food-layout { grid-template-columns: 1fr; } }
.food-photo { border-radius: var(--r-xl); width: 100%; height: auto; box-shadow: var(--shadow-lg); }
.food-text-col { display: flex; flex-direction: column; gap: var(--sp-5); }
.food-text-col .section-h2 { text-align: left; }
.food-text-col > p { color: var(--ink-3); font-size: var(--text-base); max-width: none; }
.food-items { display: flex; flex-direction: column; gap: var(--sp-4); }
.food-item { display: flex; flex-direction: column; gap: var(--sp-1); padding-left: var(--sp-5); border-left: 2.5px solid var(--terracotta); }
.food-item strong { font-size: var(--text-base); font-weight: 600; }
.food-item span { font-size: var(--text-sm); color: var(--ink-3); max-width: 44ch; }
.food-where { background: var(--cream); border-radius: var(--r-lg); padding: var(--sp-5); }
.food-where h4 { font-size: var(--text-base); margin-bottom: var(--sp-2); }
.food-where p { font-size: var(--text-sm); color: var(--ink-3); max-width: none; }

/* ------------------------------------------------------------------ When to Visit */
.season-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: var(--sp-5); margin-bottom: var(--sp-10); }
@media (max-width: 1024px) { .season-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .season-grid { grid-template-columns: 1fr; } }

.season-card {
  background: white; border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3);
  position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
}
.season-card--best { border-color: var(--terracotta); }
.season-card--best::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--terracotta); }
.season-card--muted { opacity: 0.8; }
.season-badge { display: inline-block; font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: white; background: var(--terracotta); padding: var(--sp-1) var(--sp-3); border-radius: var(--r-full); width: fit-content; }
.season-card h4 { font-size: var(--text-lg); }
.season-temp { font-size: var(--text-xs); font-weight: 600; color: var(--aegean); background: color-mix(in srgb, var(--aegean) 10%, transparent); padding: var(--sp-1) var(--sp-3); border-radius: var(--r-full); width: fit-content; }
.season-card p { font-size: var(--text-sm); color: var(--ink-3); line-height: 1.7; max-width: none; }
.season-card ul { display: flex; flex-direction: column; gap: var(--sp-2); margin-top: auto; }
.season-card li { font-size: var(--text-xs); color: var(--ink-3); padding-left: var(--sp-4); position: relative; }
.season-card li::before { content: '→'; position: absolute; left: 0; color: var(--terracotta); }

/* ------------------------------------------------------------------ Plan CTA */
.plan-section { position: relative; padding-block: clamp(var(--sp-16), 10vw, var(--sp-32)); overflow: hidden; }
.plan-bg { position: absolute; inset: 0; }
.plan-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.plan-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,45,74,0.94) 0%, rgba(15,45,74,0.8) 100%); }
.plan-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--sp-6); }
.plan-h2 { font-size: var(--text-xl); color: white; max-width: none; }
.plan-desc { color: rgba(255,255,255,0.72); max-width: 55ch; font-size: var(--text-base); }
.plan-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); width: 100%; max-width: 800px; }
@media (max-width: 640px) { .plan-links { grid-template-columns: 1fr 1fr; } }

.plan-link-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-xl); padding: var(--sp-6) var(--sp-4);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  text-decoration: none; color: white;
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(10px);
}
.plan-link-card:hover { background: rgba(255,255,255,0.16); transform: translateY(-3px); }
.plan-link-icon { font-size: 2rem; line-height: 1; }
.plan-link-card strong { font-size: var(--text-sm); font-weight: 600; }
.plan-link-card span { font-size: var(--text-xs); color: rgba(255,255,255,0.55); text-align: center; max-width: 16ch; }
.affiliate-disclosure { font-size: var(--text-xs); color: rgba(255,255,255,0.35); max-width: 50ch; }

/* ------------------------------------------------------------------ Footer */
.site-footer { background: var(--cream); border-top: 1px solid var(--border); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: clamp(var(--sp-8), 5vw, var(--sp-16)); padding-block: clamp(var(--sp-12), 6vw, var(--sp-20)); }
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr 1fr; } .footer-brand-col { grid-column: 1 / -1; } }

.footer-brand-col { display: flex; flex-direction: column; gap: var(--sp-4); }
.footer-brand-col p { font-size: var(--text-sm); color: var(--ink-3); max-width: 32ch; }
.footer-disclosure { font-size: var(--text-xs) !important; color: var(--ink-4) !important; font-style: italic; }
.footer-nav-col { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-nav-col h5 { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin-bottom: var(--sp-1); }
.footer-nav-col a { font-size: var(--text-sm); color: var(--ink-3); transition: color var(--transition); }
.footer-nav-col a:hover { color: var(--terracotta); }
.footer-bottom { background: color-mix(in srgb, var(--cream) 60%, var(--border)); border-top: 1px solid var(--border); padding-block: var(--sp-5); }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-4); }
.footer-bottom p { font-size: var(--text-xs); color: var(--ink-4); max-width: none; }
.footer-legal { display: flex; gap: var(--sp-5); }
.footer-legal a { font-size: var(--text-xs); color: var(--ink-4); transition: color var(--transition); }
.footer-legal a:hover { color: var(--ink); }
