
:root {
  --slate: #0F1923; --slate2: #1A2535; --azure: #1AAFB0; --azure-h: #179FA0;
  --bg: #F9FAFB; --surface: #FFFFFF; --text: #111827; --muted: #6B7280;
  --border: #E5E7EB; --gold: #C9A84C; --r: 16px; --r-sm: 12px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; overflow-x: clip; -webkit-tap-highlight-color: transparent; }

/* ── Container System ────────────────────────────── */
.container { width: 100%; max-width: 1436px; margin: 0 auto; padding: 0 48px; }
.pill { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--azure); margin-bottom: 10px; }
.stitle { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 48px); font-weight: 700; color: var(--text); line-height: 1.1; margin-bottom: 12px; }
.ssub { font-size: 15.5px; color: var(--muted); line-height: 1.6; font-weight: 400; max-width: 500px; }
.shead { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }

/* ── Global Buttons ──────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-size: 14px; font-weight: 600; padding: 13px 26px; border-radius: 8px; cursor: pointer; transition: all .2s; }
.btn-p { background: var(--azure); color: #fff; border: 1px solid var(--azure); }
.btn-call { position: relative; overflow: hidden; min-width: 180px; justify-content: center; }
.btn-call-default { transition: all 0.25s ease; display: flex; align-items: center; gap: 8px; }
.btn-call-hover { position: absolute; opacity: 0; transform: translateY(8px); font-size: 13px; letter-spacing: 0.5px; transition: all 0.25s ease; }
.btn-call svg { transition: all 0.25s ease; }
.btn-call:hover svg { opacity: 0; width: 0; margin: 0; }
.btn-call:hover .btn-call-default { opacity: 0; transform: translateY(-8px); }
.btn-call:hover .btn-call-hover { opacity: 1; transform: translateY(0); }
.btn-p:hover { background: var(--azure-h); border-color: var(--azure-h); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,175,176,0.3); }
.btn-o { background: transparent; border: 1px solid rgba(255,255,255,0.4); color: #fff; backdrop-filter: blur(8px); }
.btn-o:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.8); }

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: stretch;       /* hero-content fills full height */
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible;
}
.hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); animation: hZoom 16s ease-out forwards; }
@keyframes hZoom { from { transform: scale(1.05) } to { transform: scale(1.0) } }
.hero-grad { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,25,35,0.5) 0%, rgba(15,25,35,0) 30%, rgba(15,25,35,0.1) 60%, rgba(15,25,35,0.85) 100%); }
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  transform: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;       /* anchor search bar to bottom */
  padding-top: max(88px, 11vh);    /* nav clearance */
  padding-bottom: max(32px, 5vh);  /* air below search bar */
  min-height: 0;
  box-sizing: border-box;
}
.hero-label { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.hero-label::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero-h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 7.5vw, 96px); font-weight: 600; color: #fff; line-height: 1.05; margin-bottom: clamp(12px, 2.5vh, 24px); letter-spacing: -0.5px; }
.hero-h1 em { font-style: italic; color: rgba(255,255,255,0.7); }
.hero-desc { font-size: clamp(15px, 1.6vw, 17px); color: rgba(255,255,255,0.75); max-width: 640px; line-height: 1.65; margin-bottom: clamp(20px, 4vh, 40px); }
.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; align-items: flex-start; }

/* ── Trust Strip (editorial) ─────────────────────── */
.tstrip {
  background: linear-gradient(180deg, #FBFCFC 0%, var(--surface) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.ts-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(48px, 6vh, 72px);
  position: relative;
}
.ts-head .pill { margin-bottom: 20px; }
.ts-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--text);
  margin: 0 0 22px;
}
.ts-head::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--azure);
  margin: 26px auto 0;
  opacity: .5;
}
.ts-title em {
  font-style: italic;
  color: var(--azure);
  font-weight: 500;
}
.ts-sub {
  font-size: clamp(14.5px, 1.2vw, 16px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}
.ts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ts-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, border-color .4s;
  overflow: hidden;
}
.ts-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--azure), rgba(26,175,176,0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.ts-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(15,25,35,.18), 0 4px 12px rgba(26,175,176,.06);
  border-color: rgba(26,175,176,.25);
}
.ts-card:hover::before { transform: scaleX(1); }
.ts-idx {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.02em;
  opacity: .55;
  transition: color .3s, opacity .3s;
}
.ts-card:hover .ts-idx { color: var(--azure); opacity: 1; }
.ts-ico {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(26,175,176,.28);
  color: var(--azure);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  transition: background .4s, color .4s, border-color .4s;
}
.ts-card:hover .ts-ico {
  background: rgba(26,175,176,.06);
  border-color: var(--azure);
  color: var(--azure);
}
.ts-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.005em;
  margin: 0 0 10px;
}
.ts-card-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* ── Regions Mosaic ──────────────────────────────── */
.rgrid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-template-rows: 320px 300px; gap: 18px; }
.rc { position: relative; overflow: hidden; text-decoration: none; display: block; background: linear-gradient(135deg, #1AAFB0 0%, #0E8A8A 40%, #0F1923 100%); border-radius: 22px; box-shadow: 0 20px 48px -24px rgba(15,25,35,0.4), 0 2px 6px rgba(15,25,35,0.06); transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.5s; }
.rc:hover { transform: translateY(-4px); box-shadow: 0 30px 64px -28px rgba(15,25,35,0.5), 0 4px 12px rgba(26,175,176,0.14); }
.rc.rc-tall { grid-row: 1/3; }
.rc-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s cubic-bezier(0.2,0.8,0.2,1); }
.rc:hover .rc-img { transform: scale(1.05); }
.rc-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,25,35,0.82) 0%, rgba(15,25,35,0.35) 35%, transparent 55%); transition: background 0.3s; }
.rc:hover .rc-ov { background: linear-gradient(to top, rgba(15,25,35,0.88) 0%, rgba(15,25,35,0.3) 40%, transparent 60%); }
.rc-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
.rc-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.rc.rc-tall .rc-name { font-size: 40px; }
.rc-places { font-size: 13px; color: rgba(255,255,255,0.7); }
.rc-arr { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.3s; backdrop-filter: blur(4px); }
.rc:hover .rc-arr { opacity: 1; transform: scale(1.05); }

/* ── Popular Places (New Grid) ───────────────────── */
/* ── Places Nav Buttons ──────────────────────────── */
.scroll-zone {
  position: relative;
}
.scroll-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.scroll-nav-btn:hover {
  background: var(--azure);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 28px rgba(26,175,176,0.35);
}
.scroll-nav-btn:disabled {
  opacity: 0;
  pointer-events: none;
}
.scroll-nav-btn.prev { left: 16px; }
.scroll-nav-btn.next { right: 16px; }

/* ── Popular Places — Cinematic Horizontal Scroll ── */
.places-scroll-wrap {
  margin: 0 -48px;
  padding: 0 48px;
  overflow: hidden;
  position: relative;
}
.places-scroll-wrap::after { display: none; }
.places-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x proximity;
  scroll-padding-left: 48px;
  scrollbar-width: none;
  cursor: grab;
}
.places-grid:active { cursor: grabbing; }
.places-grid::-webkit-scrollbar { display: none; }

.pc-card {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  height: 400px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  background: linear-gradient(135deg, #1AAFB0 0%, #0E8A8A 45%, #0F1923 100%);
  box-shadow: none;
  scroll-snap-align: start;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s;
}
.pc-card:hover { box-shadow: 0 18px 40px -20px rgba(15,25,35,0.35); }
.pc-card:hover { transform: translateY(-8px) scale(1.02); }

.pc-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  color: transparent;
  font-size: 0;
  transition: transform 0.8s cubic-bezier(0.2,0.8,0.2,1);
  filter: brightness(1) saturate(1.05);
}
.pc-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1.1);
}

/* Gradient layers */
.pc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    rgba(10,20,35,0.55) 75%,
    rgba(10,20,35,0.92) 100%
  );
  z-index: 1;
}
/* Teal top accent line on hover */
.pc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--azure);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 4;
}
.pc-card:hover::after { transform: scaleX(1); }

.pc-num {
  position: absolute;
  top: 20px; left: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  letter-spacing: 2px;
  z-index: 2;
  transition: color 0.3s;
}
.pc-card:hover .pc-num { color: var(--azure); }

.pc-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 26px;
  z-index: 2;
}
.pc-region {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 8px;
  transition: letter-spacing 0.3s;
}
.pc-card:hover .pc-region { letter-spacing: 3px; }

.pc-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.pc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s;
}
.pc-card:hover .pc-cta {
  color: #fff;
  gap: 10px;
}
.pc-cta svg { transition: transform 0.3s; }
.pc-card:hover .pc-cta svg { transform: translateX(3px); }

/* ── Featured Listings (Horizontal Scroll) ───────── */
.feat-wrapper {
  position: relative;
  margin: 0 -48px;
  padding: 0 48px;
  overflow: hidden;
}
.feat-scroll { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.feat-scroll::-webkit-scrollbar { display: none; }
.lc { min-width: 300px; max-width: 340px; scroll-snap-align: start; flex-shrink: 0; background: #fff; border-radius: 22px; border: 1px solid rgba(15,25,35,.08); text-decoration: none; box-shadow: none; transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s, border-color 0.3s; display: flex; flex-direction: column; overflow: hidden; }
.lc:hover { transform: translateY(-6px); box-shadow: 0 18px 40px -20px rgba(15,25,35,0.22); border-color: rgba(15,25,35,.12); }
.lc-img { position: relative; aspect-ratio: 16/10; overflow: hidden; border-radius: 22px 22px 0 0; background: linear-gradient(135deg,#1AAFB0 0%,#0E8A8A 50%,#0F1923 100%); }
.lc-img img { width: 100%; height: 100%; object-fit: cover; color: transparent; font-size: 0; transition: transform 0.6s cubic-bezier(.2,.8,.2,1); }
.lc:hover .lc-img img { transform: scale(1.06); }
.lc-badge { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.9); color: var(--text); font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.lc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.lc-loc { font-size: 12px; color: var(--muted); margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.lc-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 12px; line-height: 1.2; }
.lc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.lc-tag { font-size: 11px; font-weight: 500; background: var(--bg); color: var(--muted); padding: 4px 10px; border-radius: 4px; border: 1px solid var(--border); }
.lc-foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.lc-price { font-size: 13px; color: var(--muted); }
.lc-price strong { font-size: 18px; color: var(--text); font-weight: 700; }
.lc-link { font-size: 13px; font-weight: 600; color: var(--azure); display: flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.lc:hover .lc-link { gap: 8px; }

/* ── How to Book (6-step editorial timeline) ─────── */
.hb { background: #fff; border-top: 1px solid var(--border); }
.hb-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 32px;
}
.hb-step {
  position: relative;
  padding: 20px 0 0;
  border-top: 1px solid rgba(15,25,35,0.12);
}
.hb-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 500;
  font-style: italic;
  color: var(--azure);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  line-height: 1;
}
.hb-t {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.hb-d {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 400;
}

/* ── Why Greece — Editorial image grid ───────────── */
.bvsec { background: #EEF2F0; overflow: hidden; }
.bvsec .pill { color: var(--azure); }
.bvsec .stitle { color: var(--text); }
.bvsec .stitle em { color: var(--muted); }

.greece-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: rgba(15,25,35,0.18);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(15,25,35,0.35);
}
.gc {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: #0F1923;
}
.gc-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 10s ease;
}
.gc:hover .gc-img { transform: scale(1.08); }
.gc-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,20,40,0) 0%, rgba(10,20,40,0.15) 40%, rgba(10,20,40,0.82) 100%);
}
.gc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(26,175,176,0.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.gc:hover::after { opacity: 1; }
.gc-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 40px 40px;
  z-index: 2;
}
.gc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 500;
  font-style: italic;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 32px rgba(0,0,0,0.3);
  min-height: 76px;
  display: flex;
  align-items: flex-end;
}
.gc-num--icon {
  color: #fff;
  line-height: 0;
  align-items: center;
}
.gc-num--icon svg { filter: drop-shadow(0 2px 10px rgba(0,0,0,0.35)); }
.gc-accent {
  display: inline-block;
  width: 44px; height: 1px;
  background: var(--gold);
  margin-bottom: 18px;
  transform-origin: left;
  transition: width 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.gc:hover .gc-accent { width: 72px; }
.gc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-bottom: 10px;
  min-height: 14px;
}
.gc-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  max-width: 340px;
  font-weight: 300;
  min-height: 70px;
}
.gc-corner-badge {
  position: absolute;
  top: 32px; left: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.02em;
  z-index: 3;
  padding-left: 22px;
  text-shadow: 0 1px 12px rgba(10,20,40,0.55);
}
.gc-corner-badge::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 1px;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 1px 4px rgba(10,20,40,0.4);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE SYSTEM — Flexbox + clamp()
   Breakpoints: 1024 · 820 · 768 · 560 · 430 · 390
   ══════════════════════════════════════════════════ */

/* ── 1024px — Tablet landscape ────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .sec { padding: 56px 0; }

  /* Regions: 2-col mosaic */
  .rgrid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 300px 300px; }
  .rc.rc-tall { grid-row: 1/3; grid-column: 1/2; }

  /* Trust strip: 2x2 */
  .ts-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  /* How to Book: 2-col */
  .hb-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 28px; }

  /* Carousels: match container padding */
  .places-scroll-wrap { margin: 0 -32px; padding: 0 32px; }
  .feat-wrapper { margin: 0 -32px; padding: 0 32px; }

  /* Greece grid: still 2-col but shorter cells */
  .gc { min-height: 340px; }
  .gc-body { padding: 36px 32px 32px; }
  .gc-num { font-size: clamp(54px, 5.2vw, 76px); }
  .gc-corner-badge { top: 28px; left: 32px; }
}

/* ── 820px — Tablet portrait ───────────────────────── */
@media (max-width: 820px) {
  .container { padding: 0 28px; }

  /* Regions: stack — unified card sizes */
  .rgrid { display: flex; flex-direction: column; gap: 12px; }
  .rc, .rc.rc-tall { height: 220px; }
  .rc.rc-tall .rc-name { font-size: 28px; }

  /* Places scroll cards: 3 visible */
  .pc-card { width: 228px; height: 335px; }

  /* Featured cards: match places */
  .lc { min-width: 228px; }

  /* Greece: 1-col */
  .greece-grid { grid-template-columns: 1fr; }
  .gc { min-height: 280px; }
  .gc-num { font-size: clamp(56px, 10vw, 76px); }
  .gc-body { padding: 32px 28px 28px; }
  .gc-corner-badge { top: 26px; left: 28px; }

  /* shead stacks on narrow tablet */
  .shead { flex-wrap: wrap; gap: 16px; }
}

/* ── 768px — Tablet / large mobile ────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .sec { padding: 44px 0; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding-top: max(80px, 10vh); padding-bottom: max(44px, 5.5vh); }
  .hero-content { transform: translateY(0); }
  .hero-text { padding-top: max(32px, 5vh); }
  .hero-h1 { font-size: clamp(38px, 9vw, 60px); }
  .hero-desc { font-size: 15px; max-width: 100%; margin-bottom: 6px; }

  /* Hero CTAs — side by side on tablet */
  .hero-btns { flex-direction: row; align-items: center; gap: 12px; flex-wrap: wrap; }
  .hero-btns .btn { width: auto; }

  /* shead */
  .shead { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
  .shead .btn { width: 100%; justify-content: center; }

  /* Places */
  .places-scroll-wrap { margin: 0 -20px; padding: 0 20px; }
  .places-scroll-wrap::after { width: 48px; }
  .feat-wrapper { margin: 0 -20px; padding: 0 20px; }
  .pc-card { width: 216px; height: 312px; }

  /* Featured */
  .feat-scroll { gap: 14px; padding: 0 20px; }
  .lc { min-width: calc(100vw - 72px); max-width: calc(100vw - 72px); }

  /* How to Book: 1-col on mobile */
  .hb-grid { grid-template-columns: 1fr; gap: 20px; }
  .hb-step { padding-top: 22px; }
  .hb-t { font-size: 22px; }
}

/* ── 560px — Large phone ───────────────────────────── */
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .sec { padding: 36px 0; }

  .hero-content { padding-top: max(64px, 8vh); padding-bottom: max(24px, 3vh); }
  .hero-text { padding-top: max(10px, 1.5vh); }

  /* Label */
  .hero-label {
    margin-bottom: 8px;
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.65);
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  }
  .hero-label::before { width: 18px; }

  /* Title */
  .hero-h1 {
    font-size: clamp(28px, 8.5vw, 42px);
    line-height: 1.05;
    margin-bottom: 8px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  }

  /* Description — clean, no box */
  .hero-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.82);
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 0;
    border-radius: 0;
    opacity: 1;
    max-width: 100%;
  }

  .hero-btns { margin-top: 0; }
  .hsb-wrap { margin-bottom: 14px; }

  /* Stronger gradient overlay on mobile for text readability */
  .hero-grad {
    background: linear-gradient(
      to bottom,
      rgba(10,18,28,0.55) 0%,
      rgba(10,18,28,0.15) 25%,
      rgba(10,18,28,0.25) 55%,
      rgba(10,18,28,0.78) 100%
    );
  }

  /* Hero CTAs: hidden on mobile — replaced by inline links in search card */
  .hero-btns { display: none; }
  .mob-hero-actions { display: flex !important; margin-top: 2px; }

  /* Typography scale */
  .stitle { font-size: clamp(26px, 7vw, 36px); }
  .ssub { font-size: 14px; }

  /* Trust strip: single column on mobile */
  .ts-grid { grid-template-columns: 1fr; gap: 14px; }
  .ts-card { padding: 26px 22px 24px; }
  .ts-card::before { left: 22px; right: 22px; }
  .ts-ico { width: 46px; height: 46px; margin-bottom: 18px; }
  .ts-ico svg { width: 26px; height: 26px; }
  .ts-card-title { font-size: 19px; margin-bottom: 8px; }
  .ts-card-text { font-size: 13.5px; line-height: 1.6; }
  .ts-idx { top: 20px; right: 22px; font-size: 15px; }
  .ts-head::after { width: 32px; margin-top: 22px; }

  /* Regions */
  .rc, .rc.rc-tall { height: 200px; }

  /* Places — B3: scroll-snap peek on mobile */
  .places-scroll-wrap { margin: 0 -16px; padding: 0 16px; }
  .places-scroll-wrap::after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 16px;
    width: 28px;
    background: linear-gradient(to right, rgba(238,242,240,0) 0%, rgba(238,242,240,0.6) 100%);
    pointer-events: none;
    z-index: 2;
  }
  .places-grid { scroll-padding-left: 16px; }
  .feat-wrapper { margin: 0 -16px; padding: 0 16px; }
  .pc-card {
    width: min(74vw, 290px);
    height: auto;
    aspect-ratio: 190 / 275;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .pc-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.12); }
  .pc-content h3 { font-size: 22px; }

  /* Featured */
  .lc { min-width: 190px; }
  .lc-title { font-size: 19px; }

  /* Greece */
  .gc { min-height: 240px; }
  .gc-num { font-size: clamp(48px, 11vw, 62px); }
  .gc-body { padding: 24px 20px 22px; }
  .gc-desc { display: none; } /* clean on small screens */
  .gc-corner-badge { top: 18px; left: 20px; font-size: 11px; padding-left: 18px; }
  .gc-corner-badge::before { width: 12px; }

}

/* ── 430px — iPhone Pro Max ────────────────────────── */
@media (max-width: 430px) {
  .container { padding: 0 14px; }

  .hero-h1 { font-size: clamp(32px, 9vw, 48px); }
  .hero-label { font-size: 10px; letter-spacing: 1.5px; }

  .pc-card { width: 170px; height: 250px; }
  .pc-content h3 { font-size: 20px; }

  .lc { min-width: 170px; }

  .hb-t { font-size: 20px; }

  .gc { min-height: 220px; }
  .gc-num { font-size: clamp(44px, 11vw, 56px); margin-bottom: 10px; }
  .gc-body { padding: 22px 18px 20px; }
  .gc-label { font-size: 10px; }
}

/* ── 390px — iPhone 14/15 ──────────────────────────── */
@media (max-width: 390px) {
  .container { padding: 0 12px; }

  .hero-h1 { font-size: clamp(30px, 8.5vw, 44px); }

  .pc-card { width: 170px; height: 250px; }
  .lc { min-width: 170px; }

  .gc-num { font-size: 42px; }
  .gc-body { padding: 16px; }
}

/* ══════════════════════════════════════════════════
   HERO SEARCH BAR — Fully responsive, premium
   ══════════════════════════════════════════════════ */

/* Wrapper — always inside hero, bottom of content */
.hsb-wrap {
  margin-top: 0;   /* space-between in hero-content handles gap */
  width: 100%;
  overflow: visible;
}
/* Mobile-only action links inside search card */
.mob-hero-actions {
  display: none; /* hidden by default, shown on mobile */
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 8px;
}
.mob-hero-actions a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.mob-hero-actions a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.mob-hero-actions a svg { opacity: 0.7; }
.mob-hero-actions .mob-sep {
  width: 3px; height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Make hero-content overflow visible so dropdown escapes */
.hero-content { overflow: visible; }

/* hero-text: sits at natural vertical position, pushed down by padding-top */
.hero-text {
  margin-bottom: auto;  /* pushes search bar to bottom */
  padding-top: max(32px, 5vh);   /* extra air between nav clear and text start */
}

/* ── Desktop pill (≥769px) ── */
.hsb {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 100px;
  padding: 7px 7px 7px 0;
  gap: 0;
  width: 100%;          /* full width of container — stretches with zoom */
  max-width: 920px;     /* wider to fit 3 fields + button */
  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
  transition: background 0.25s, border-color 0.25s;
  position: relative;
  overflow: visible;
}
.hsb:focus-within {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.42);
}

/* ── Field ── */
.hsb-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(10px,1.2vw,14px) clamp(16px,2vw,24px) clamp(9px,1.1vw,13px);
  position: static; /* CHANGED: static so dropdown can use fixed positioning */
  cursor: pointer;
  min-width: 0;
}

/* Divider */
.hsb-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.22);
  flex-shrink: 0;
  align-self: center;
}

/* Label */
.hsb-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 3px;
  pointer-events: none;
  white-space: nowrap;
}

/* ── Custom select trigger ── */
.hsb-custom-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  outline: none;
  user-select: none;
}
.hsb-custom-select--disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}
.hsb-custom-select:focus-visible {
  outline: 2px solid var(--azure);
  outline-offset: 6px;
  border-radius: 2px;
}
.hsb-btn:focus-visible {
  outline: 2px solid rgba(255,255,255,0.95);
  outline-offset: 3px;
}
.hsb-value {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hsb-chev {
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
  transition: transform 0.2s;
}
.hsb-field.open .hsb-chev { transform: rotate(180deg); }

/* ── Premium Dropdown — FIXED positioning to escape all clipping ── */
.hsb-dropdown {
  /* Moved to <body> by JS — position:fixed, z-index:9999 set via JS */
  display: none;
  position: fixed;
  min-width: 200px;
  max-height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
  background: rgba(15, 24, 36, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(26,175,176,0.1);
  z-index: 9999;
  padding: 6px;
  list-style: none;
  animation: hsbDrop 0.24s cubic-bezier(0.2,0.9,0.25,1) both;
  transform-origin: top center;
}
.hsb-dropdown.hsb-dropdown--open { display: block; }

@keyframes hsbDrop {
  from { opacity: 0; transform: translateY(-6px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

.hsb-dropdown li {
  padding: 12px 14px;
  min-height: 44px;
  box-sizing: border-box;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease, font-weight 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.hsb-dropdown li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.hsb-dropdown li:hover { background: rgba(255,255,255,0.08); color: #fff; padding-left: 17px; }
.hsb-dropdown li:hover::before { background: rgba(255,255,255,0.55); }
.hsb-dropdown li.selected { background: rgba(26,175,176,0.18); color: var(--azure); font-weight: 600; }
.hsb-dropdown li.selected::before { background: var(--azure); transform: scale(1.4); box-shadow: 0 0 0 3px rgba(26,175,176,0.18); }
.hsb-dropdown li:focus-visible { outline: none; background: rgba(255,255,255,0.08); color: #fff; }

/* ── Native selects: hidden on desktop ── */
.hsb-native { display: none; }

/* ── CTA Button ── */
.hsb-btn {
  flex-shrink: 0;
  background: var(--azure);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: clamp(12px,1.2vw,16px) clamp(18px,2vw,26px);
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px,1vw,14px);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 7px;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  letter-spacing: 0.2px;
}
.hsb-btn:hover {
  background: var(--azure-h);
  box-shadow: 0 6px 24px rgba(26,175,176,0.4);
  transform: scale(1.03);
}
.hsb-btn:active { transform: scale(0.97); }

/* ── Error shake ── */
@keyframes hsb-shake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-6px); }
  40%,80% { transform: translateX(6px); }
}
.hsb--error { animation: hsb-shake 0.35s ease; }

/* Hide mobile-only elements on tablet+ */
@media (min-width: 561px) {
  .mob-hero-actions { display: none !important; }
}

/* ── Tablet ≤1024px ── */
@media (max-width: 1024px) {
  .hsb { width: 100%; max-width: 100%; }
  .hsb-field { padding: 11px 16px 10px; min-width: 0; }
  .hsb-value { font-size: 13px; }
  .hsb-btn { padding: 12px 18px; font-size: 13px; }
  .hero-content { padding-top: max(96px, 12vh); padding-bottom: max(56px, 7vh); }
  .hero-text { padding-top: max(40px, 6vh); }
  .hero-h1 { font-size: clamp(42px, 6.5vw, 80px); }
  .hero-label { margin-bottom: 20px; }
  .hero-desc { font-size: 15px; max-width: 520px; }
  .hero-btns { gap: 14px; }
  .pc-card { width: 290px; height: 375px; }
  .lc { min-width: 290px; }
}

/* ── Tablet ≤768px: pill, compact ── */
@media (max-width: 768px) {
  .hsb-wrap { margin-top: 0; }
  .hsb { width: 100%; max-width: 100%; padding: 6px 6px 6px 0; border-radius: 100px; }
  .hsb-field { padding: 10px 14px 9px; }
  .hsb-label { font-size: 8px; letter-spacing: 1.4px; }
  .hsb-value { font-size: 13px; }
  .hsb-divider { display: flex; }
  .hsb-custom-select { display: flex; }
  .hsb-native { display: none; }
  .hsb-btn { padding: 11px 16px; font-size: 13px; margin-left: 5px; }
}

/* ── Mobile dropdown tap targets ── */
@media (max-width: 768px) {
  .hsb-dropdown li { padding: 14px 16px; min-height: 48px; font-size: 15px; }
  .hsb-dropdown li:hover { padding-left: 19px; }
}

/* ── Mobile ≤560px: lightweight pill search ── */
@media (max-width: 560px) {
  /* Push search bar closer to bottom of viewport on mobile */
  .hero-content { padding-bottom: max(24px, 3vh); }
  .hsb-wrap { margin-bottom: 14px; }
  .hsb {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
    padding: 4px 14px 12px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.22);
    overflow: visible;
  }
  .hsb-field {
    flex: unset;
    padding: 10px 0 6px;
    border-bottom: 1px solid rgba(255,255,255,0.14);
    min-width: 0;
    cursor: pointer;
  }
  .hsb-field:last-of-type { border-bottom: none; padding-bottom: 2px; }
  .hsb-label {
    font-size: 8.5px;
    letter-spacing: 1.8px;
    margin-bottom: 2px;
    color: rgba(255,255,255,0.55);
  }
  .hsb-value { font-size: 14px; font-weight: 600; color: #fff; }
  .hsb-chev { display: flex; }
  .hsb-chev svg { width: 11px; height: 11px; opacity: 0.45; }
  .hsb-divider { display: none; }
  .hsb-custom-select { display: flex; }
  .hsb-native { display: none; }
  .hsb-btn {
    width: 100%; flex: unset;
    justify-content: center;
    margin: 10px 0 0;
    padding: 13px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
  }
  .hsb-btn svg { display: inline-block; }
}

/* ── Very small ≤390px ── */
@media (max-width: 390px) {
  .hsb { padding: 2px 12px 10px; }
  .hsb-value { font-size: 13px; }
  .hsb-label { font-size: 8px; }
  .hsb-btn { padding: 12px; font-size: 13px; }
}

/* ── Short viewport (≤780px height) — 1280×720, 1366×768 ── */
@media (max-height: 780px) and (min-width: 769px) {
  .hero-content {
    padding-top: max(76px, 10vh);
    padding-bottom: max(24px, 3.5vh);
  }
  .hero-text { padding-top: max(48px, 7vh); }
  .hero-label { margin-bottom: 14px; }
  .hero-h1 { font-size: clamp(36px, 5.5vw, 72px); margin-bottom: max(10px, 1.5vh); }
  .hero-desc { font-size: 15px; line-height: 1.5; margin-bottom: max(14px, 2vh); }
  .hero-btns { gap: 12px; }
  .btn { padding: 11px 22px; font-size: 13px; }
}

/* ── Very short viewport (≤680px height) — 200% zoom on 1366×768 ── */
@media (max-height: 680px) and (min-width: 569px) {
  .hero-content {
    padding-top: max(68px, 9vh);
    padding-bottom: max(16px, 2.5vh);
  }
  .hero-text { padding-top: max(10px, 1.5vh); }
  .hero-label { margin-bottom: 8px; font-size: 10px; }
  .hero-h1 { font-size: clamp(26px, 4.8vw, 52px); margin-bottom: max(6px, 1vh); }
  .hero-desc { font-size: 13px; margin-bottom: max(10px, 1.5vh); max-width: 360px; }
  .hero-btns { gap: 8px; }
  .btn { padding: 10px 18px; font-size: 12px; }
  .hsb-field { padding: 7px 12px 6px; }
  .hsb-label { font-size: 8px; letter-spacing: 1.2px; }
  .hsb-value { font-size: 12px; }
  .hsb-btn { padding: 9px 14px; font-size: 12px; }
}

@media (max-width: 560px) {
  .hero-desc { font-size: 14px; line-height: 1.6; }
}
