/* ============================================================================
   Ikaros Holidays — Aegean-premium design system
   Single source of truth: :root tokens + [data-theme="admin"] overrides.
   ========================================================================== */

/* ---------- Tokens -------------------------------------------------------- */
:root {
  --c-primary: #0B3B4A; --c-primary-600: #0E4A5C; --c-primary-900: #062A36;
  --c-accent: #0E9F8B; --c-accent-600: #0C8A78; --c-accent-100: #D6F0EA; --c-accent-text: #0A6E60;
  --c-limestone: #F3EEE4; --c-sand: #EBE3D4; --c-whitewash: #FBF8F2;
  --c-ink: #0A2530; --c-ink-muted: #4A5D64; --c-ink-faint: #7E8E92; --c-line: #DED6C6;
  --c-success: #1F9D6B; --c-warning: #D9902B; --c-danger: #C4443A; --c-gold: #E0A64C;

  --bg-page: var(--c-limestone); --bg-surface: var(--c-sand); --bg-raised: var(--c-whitewash);
  --bg-inverse: var(--c-primary-900); --text-strong: var(--c-ink); --text-body: #1C3138;
  --text-muted: var(--c-ink-muted); --border: var(--c-line);
  --focus-ring: 0 0 0 3px var(--c-accent-100), 0 0 0 1.5px var(--c-accent);

  --grad-hero: radial-gradient(120% 90% at 78% 8%, #1CA893 0%, rgba(28,168,147,0) 46%), linear-gradient(178deg, #0E5568 0%, #0B3B4A 42%, #072B38 100%);
  --grad-hero-water: linear-gradient(180deg, rgba(14,159,139,0) 0%, rgba(11,59,74,.55) 100%);
  --grad-cta: linear-gradient(135deg, #12B39B 0%, #0E9F8B 55%, #0C8A78 100%);
  --grad-sand: linear-gradient(180deg, #FBF8F2 0%, #F3EEE4 100%);

  --shadow-soft: 0 1px 2px rgba(6,42,54,.04), 0 4px 14px rgba(6,42,54,.06);
  --shadow-elevated: 0 8px 24px rgba(6,42,54,.10), 0 2px 6px rgba(6,42,54,.06);
  --shadow-float: 0 18px 50px -12px rgba(6,42,54,.28), 0 6px 16px rgba(6,42,54,.10);
  --shadow-glow: 0 8px 24px -6px rgba(14,159,139,.45), 0 0 0 1px rgba(14,159,139,.18);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fs-display: 4.209rem; --fs-h1: 3.157rem; --fs-h2: 2.369rem; --fs-h3: 1.777rem;
  --fs-h4: 1.333rem; --fs-lead: 1.25rem; --fs-body: 1.0625rem; --fs-sm: .9375rem; --fs-xs: .8125rem;
  --lh-tight: 1.06; --lh-snug: 1.22; --lh-body: 1.62;
  --ls-display: -.02em; --ls-heading: -.011em; --ls-label: .08em;

  --sp-1:.25rem; --sp-2:.5rem; --sp-3:.75rem; --sp-4:1rem; --sp-5:1.5rem; --sp-6:2rem;
  --sp-7:3rem; --sp-8:4rem; --sp-9:6rem; --sp-10:8rem;
  --container: 1200px; --container-narrow: 760px; --gutter: clamp(1rem, 4vw, 2.5rem);
  --r-xs:6px; --r-sm:10px; --r-md:14px; --r-lg:20px; --r-xl:28px; --r-pill:999px;

  --dur-fast:140ms; --dur-base:240ms; --dur-slow:420ms;
  --ease-out: cubic-bezier(.22,.61,.36,1); --ease-in-out: cubic-bezier(.65,.05,.36,1); --ease-spring: cubic-bezier(.34,1.56,.64,1);
}
[data-theme="admin"] {
  --bg-page:#071D26; --bg-surface:#0C2A34; --bg-raised:#113642; --bg-sidebar:#051820;
  --bg-inverse:#FBF8F2; --text-strong:#EAF2F1; --text-body:#C4D3D5; --text-muted:#8AA1A6;
  --border:#163C48; --c-accent:#16B7A0; --c-accent-100:rgba(22,183,160,.16);
  --focus-ring:0 0 0 3px rgba(22,183,160,.30), 0 0 0 1.5px #16B7A0;
  --shadow-soft:0 1px 2px rgba(0,0,0,.30), 0 4px 14px rgba(0,0,0,.35);
  --shadow-elevated:0 10px 28px rgba(0,0,0,.45);
}

/* ---------- Base --------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body); font-size: var(--fs-body); line-height: var(--lh-body);
  color: var(--text-body); background: var(--bg-page); -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; overflow-x: hidden;
}
h1,h2,h3,h4,.display { font-family: var(--font-display); text-wrap: balance; color: var(--text-strong); font-weight: 600; }
.display { font-size: var(--fs-display); line-height: var(--lh-tight); letter-spacing: var(--ls-display); font-optical-sizing: auto; }
h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); letter-spacing: var(--ls-display); }
h2 { font-size: var(--fs-h2); line-height: var(--lh-snug); letter-spacing: var(--ls-heading); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); }
h4 { font-size: var(--fs-h4); line-height: var(--lh-snug); }
p { max-width: 66ch; }
a { color: var(--c-accent-text); text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--r-xs); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: var(--container-narrow); }
section { padding-block: var(--sp-9); }
.lead { font-family: var(--font-body); font-size: var(--fs-lead); font-weight: 400; line-height: 1.5; color: var(--text-muted); max-width: 60ch; }
.eyebrow { font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 700; letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--c-accent-text); }
.price { font-family: var(--font-body); font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.section-head { max-width: 640px; margin-bottom: var(--sp-7); }
.section-head .eyebrow { margin-bottom: var(--sp-2); display: block; }
.section-head h2 { margin-bottom: var(--sp-3); }
.text-center { text-align: center; margin-inline: auto; }
@media (max-width: 720px) { :root { --fs-display: 2.75rem; --fs-h1: 2.25rem; --fs-h2: 1.85rem; } }

/* ---------- Buttons ------------------------------------------------------ */
.btn { font: 600 var(--fs-sm)/1 var(--font-body); border-radius: var(--r-pill); padding: .85rem 1.5rem;
  display: inline-flex; gap: .5rem; align-items: center; justify-content: center;
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast), background var(--dur-fast), color var(--dur-fast);
  border: 1.5px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--grad-cta); color: #fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover { box-shadow: var(--shadow-glow); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--c-primary); border-color: var(--c-primary); }
[data-theme="admin"] .btn-secondary { color: var(--text-strong); border-color: var(--border); }
.btn-secondary:hover { background: var(--c-primary); color: #fff; }
[data-theme="admin"] .btn-secondary:hover { background: var(--bg-raised); }
.btn-ghost { background: transparent; color: var(--c-accent-text); padding-inline: .5rem; }
.btn-ghost:hover { color: var(--c-accent); text-decoration: underline; text-underline-offset: 4px; }
.btn-danger { background: var(--c-danger); color: #fff; }
.btn-danger:hover { filter: brightness(1.06); }
.btn-lg { padding: 1.05rem 2rem; font-size: var(--fs-body); }
.btn-sm { padding: .5rem .9rem; font-size: var(--fs-xs); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-block { width: 100%; }

/* ---------- Badges ------------------------------------------------------- */
.badge { display: inline-flex; align-items: center; gap: .35rem; border-radius: var(--r-pill);
  padding: .28rem .7rem; font: 700 var(--fs-xs)/1 var(--font-body); letter-spacing: .02em; }
.badge-accent { background: var(--c-accent-100); color: var(--c-accent-600); }
.badge-gold { background: rgba(224,166,76,.16); color: #9c6f1e; }
.badge-success { background: rgba(31,157,107,.14); color: var(--c-success); }
.badge-warning { background: rgba(217,144,43,.16); color: #a96a13; }
.badge-danger { background: rgba(196,68,58,.14); color: var(--c-danger); }
.badge-blue { background: rgba(11,59,74,.10); color: var(--c-primary); }

/* ---------- Top navigation ---------------------------------------------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; height: 72px;
  display: flex; align-items: center; transition: background var(--dur-base), box-shadow var(--dur-base), height var(--dur-base); }
.nav::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(4,26,34,.5), rgba(4,26,34,0)); transition: opacity var(--dur-base); }
.nav.is-scrolled::before, .nav.is-solid::before { opacity: 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav.is-scrolled { height: 60px; background: rgba(11,59,74,.72); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,.10); }
.nav.is-solid { background: var(--c-primary); box-shadow: var(--shadow-soft); }
.brand { display: flex; align-items: center; gap: .6rem; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; letter-spacing: -.01em; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__logo { height: 44px; width: auto; display: block; transition: height var(--dur-base); filter: drop-shadow(0 2px 6px rgba(0,0,0,.28)); }
.nav.is-scrolled .brand__logo { height: 38px; }
.brand__logo--lg { height: 58px; }
.brand small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--c-accent-100); opacity: .85; }
.nav__links { display: flex; align-items: center; gap: var(--sp-5); }
.nav__links a { color: rgba(251,248,242,.88); font-weight: 600; font-size: var(--fs-sm); position: relative; padding: .3rem 0; transition: color var(--dur-fast); }
.nav__links a:hover { color: #fff; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; background: var(--c-accent); transform: scaleX(0); transform-origin: left; transition: transform var(--dur-base) var(--ease-out); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: var(--sp-3); }
.lang-switch { display: inline-flex; background: rgba(255,255,255,.10); border-radius: var(--r-pill); padding: 3px; }
.lang-switch button { background: transparent; border: 0; color: rgba(255,255,255,.85); font-weight: 700; font-size: var(--fs-xs); padding: .3rem .6rem; border-radius: var(--r-pill); text-transform: uppercase; letter-spacing: .04em; }
.lang-switch button.is-active { background: #fff; color: var(--c-primary); }
.nav__burger { display: none; background: transparent; border: 0; color: #fff; padding: .3rem; }
.nav__burger svg { width: 26px; height: 26px; }
@media (max-width: 940px) {
  .nav__links { position: fixed; inset: 60px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--c-primary); padding: var(--sp-3) var(--gutter) var(--sp-5); transform: translateY(-120%); transition: transform var(--dur-base) var(--ease-out); box-shadow: var(--shadow-elevated); }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav__links a::after { display: none; }
  .nav__burger { display: inline-flex; }
  .nav .btn-primary { display: none; }
}

/* ---------- Hero --------------------------------------------------------- */
.hero { position: relative; min-height: 92vh; background: var(--grad-hero); overflow: hidden; isolation: isolate;
  display: flex; align-items: center; padding-top: 72px; }
.hero__svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; }
.hero__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6,42,54,.5) 0%, rgba(6,42,54,.3) 38%, rgba(7,43,56,.82) 100%); }
.hero__sun { animation: sun-breathe 30s ease-in-out infinite; transform-origin: center; }
.hero__wave--front { animation: wave-drift 24s linear infinite; }
@keyframes sun-breathe { 0%,100% { opacity: .85; transform: scale(1); } 50% { opacity: 1; transform: scale(1.04); } }
@keyframes wave-drift { from { transform: translateX(0); } to { transform: translateX(-80px); } }
.hero__content { position: relative; z-index: 2; max-width: 720px; padding-block: var(--sp-8) 7rem; }
.hero .eyebrow { color: var(--c-accent-100); }
.hero__title { color: #fff; margin: var(--sp-4) 0 var(--sp-5); }
.hero__sub { color: rgba(251,248,242,.88); font-size: var(--fs-lead); max-width: 40ch; margin-bottom: var(--sp-6); }
.hero__cta { display: flex; gap: var(--sp-3); flex-wrap: wrap; align-items: center; }
.hero__cta .btn-secondary { color: #fff; border-color: rgba(255,255,255,.5); }
.hero__cta .btn-secondary:hover { background: #fff; color: var(--c-primary); }
.hero__rating { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-weight: 700; font-size: var(--fs-sm); }
.stars { color: var(--c-gold); letter-spacing: 2px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: var(--sp-6); }
.chip-glass { display: inline-flex; align-items: center; gap: .45rem; background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18); color: #fff; border-radius: var(--r-pill); padding: .5rem .9rem; font-size: var(--fs-sm); font-weight: 600; }
.chip-glass svg { width: 16px; height: 16px; color: var(--c-accent-100); }

/* ---------- Booking bar (floating) -------------------------------------- */
.booking-bar-wrap { position: relative; z-index: 5; margin-top: -3.75rem; }
.booking-bar { background: rgba(251,248,242,.9); backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.7); border-radius: var(--r-xl); box-shadow: var(--shadow-float);
  padding: var(--sp-4); display: grid; grid-template-columns: 1.3fr 1fr 1fr auto; gap: var(--sp-3); align-items: end; }
.booking-bar .field { margin: 0; }
.booking-bar .btn { height: 52px; }
@media (max-width: 860px) { .booking-bar { grid-template-columns: 1fr 1fr; } .booking-bar .field--search { grid-column: 1 / -1; } }

/* ---------- Fields ------------------------------------------------------- */
.field { margin-bottom: var(--sp-4); }
.field > label { display: block; font: 700 var(--fs-xs)/1 var(--font-body); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--text-muted); margin-bottom: .4rem; }
.input, .select, textarea.input { width: 100%; background: var(--bg-raised); border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: .8rem 1rem; font: 500 var(--fs-body) var(--font-body); color: var(--text-strong);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast); }
.input::placeholder { color: var(--c-ink-faint); }
.input:focus, .select:focus, textarea.input:focus { outline: none; border-color: var(--c-accent); box-shadow: var(--focus-ring); }
.input.is-error, .select.is-error { border-color: var(--c-danger); }
.hint { font-size: var(--fs-xs); color: var(--text-muted); margin-top: .35rem; }
.error-text { font-size: var(--fs-xs); color: var(--c-danger); margin-top: .3rem; display: none; }
.field.is-error .error-text { display: block; }
.check { display: flex; align-items: flex-start; gap: .6rem; cursor: pointer; padding: .5rem 0; }
.check input { margin-top: .2rem; width: 18px; height: 18px; accent-color: var(--c-accent); flex: none; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3) var(--sp-4); }
@media (max-width: 560px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---------- Trust bar ---------------------------------------------------- */
.trust-strip { background: var(--bg-raised); border-block: 1px solid var(--border); }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: var(--sp-5); justify-content: center; padding-block: var(--sp-4); }
.trust-item { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: var(--fs-sm); color: var(--text-strong); }
.trust-item svg { width: 20px; height: 20px; color: var(--c-accent); flex: none; }

/* ---------- Fleet -------------------------------------------------------- */
.fleet-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: var(--sp-6); }
.filter-chip { background: var(--bg-raised); border: 1.5px solid var(--border); color: var(--text-muted);
  border-radius: var(--r-pill); padding: .5rem 1rem; font-weight: 700; font-size: var(--fs-sm); transition: all var(--dur-fast); }
.filter-chip.is-active { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--sp-5); }
.fleet-card { background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft); overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base); }
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.fleet-media { position: relative; aspect-ratio: 16/10; background: var(--grad-hero); overflow: hidden; }
.fleet-media svg.car-illo { position: absolute; inset: 0; width: 100%; height: 100%; }
.fleet-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.fleet-card:hover .fleet-media img { transform: scale(1.04); }
.fleet-media .badge { position: absolute; top: .8rem; left: .8rem; }
.fleet-media .badge-highlight { position: absolute; top: .8rem; right: .8rem; background: var(--c-gold); color: #3a2a08; }
.fleet-body { padding: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.fleet-body h3 { font-size: var(--fs-h4); }
.fleet-blurb { font-size: var(--fs-sm); color: var(--text-muted); }
.spec-row { display: flex; flex-wrap: wrap; gap: .4rem; }
.spec { display: inline-flex; align-items: center; gap: .3rem; background: var(--bg-surface); border-radius: var(--r-pill);
  padding: .28rem .6rem; font-size: var(--fs-xs); font-weight: 600; color: var(--text-muted); }
.spec svg { width: 14px; height: 14px; }
.fleet-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: var(--sp-3); border-top: 1px solid var(--border); }
.fleet-foot .from { display: block; font-size: var(--fs-xs); color: var(--text-muted); }
.fleet-foot .price { font-size: 1.4rem; color: var(--text-strong); }
.fleet-foot .price small { font-size: var(--fs-xs); font-weight: 600; color: var(--text-muted); }

/* ---------- Section: why / features ------------------------------------- */
.alt { background: var(--grad-sand); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--sp-5); }
.why-card { background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-5); box-shadow: var(--shadow-soft); }
.why-card .ic { width: 48px; height: 48px; border-radius: var(--r-md); background: var(--c-accent-100); color: var(--c-accent-600);
  display: grid; place-items: center; margin-bottom: var(--sp-4); }
.why-card .ic svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 1.2rem; margin-bottom: var(--sp-2); }
.why-card p { font-size: var(--fs-sm); color: var(--text-muted); }

/* ---------- Reviews ------------------------------------------------------ */
.reviews-head { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-5); justify-content: space-between; margin-bottom: var(--sp-6); }
.rating-badge { display: inline-flex; align-items: center; gap: var(--sp-4); background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-4) var(--sp-5); box-shadow: var(--shadow-soft); }
.rating-badge .big { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--text-strong); }
.rating-badge .stars { font-size: 1.2rem; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: var(--sp-5); }
.review-card { background: var(--bg-raised); border: 1px solid var(--border); border-left: 3px solid var(--c-accent);
  border-radius: var(--r-lg); box-shadow: var(--shadow-soft); padding: var(--sp-5); }
.review-card .stars { font-size: 1rem; margin-bottom: var(--sp-3); }
.review-quote { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: var(--fs-lead); color: var(--text-strong); line-height: 1.5; margin-bottom: var(--sp-4); }
.review-author { display: flex; align-items: center; gap: .8rem; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-cta); color: #fff; display: grid; place-items: center; font-weight: 800; flex: none; }
.review-author .name { font-weight: 700; color: var(--text-strong); }
.review-author .meta { font-size: var(--fs-xs); color: var(--text-muted); }

/* ---------- Locations ---------------------------------------------------- */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--sp-5); }
.loc-card { background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-5); box-shadow: var(--shadow-soft); }
.loc-card .ic { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--c-accent-100); color: var(--c-accent-600); display: grid; place-items: center; margin-bottom: var(--sp-3); }
.loc-card h3 { font-size: 1.15rem; margin-bottom: var(--sp-2); }
.loc-card p { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--sp-3); }

/* ---------- Ikaria gallery ---------------------------------------------- */
.ikaria-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); margin-bottom: var(--sp-6); }
.ikaria-gallery figure { position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 4/3; }
.ikaria-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.ikaria-gallery figure:hover img { transform: scale(1.05); }
.ikaria-gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: var(--sp-5) var(--sp-4) var(--sp-3); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; background: linear-gradient(180deg, transparent, rgba(6,42,54,.72)); }
@media (max-width: 640px) { .ikaria-gallery { grid-template-columns: 1fr 1fr; } .ikaria-gallery figure:last-child { grid-column: 1 / -1; aspect-ratio: 16/9; } }

/* ---------- Map + Google reviews ---------------------------------------- */
.map-block { display: grid; grid-template-columns: 1.7fr 1fr; gap: var(--sp-5); margin-bottom: var(--sp-6); align-items: stretch; }
@media (max-width: 820px) { .map-block { grid-template-columns: 1fr; } }
.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--border); min-height: 360px; background: var(--bg-surface); }
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.map-reviews { background: var(--bg-raised); border: 1px solid var(--border); border-left: 3px solid var(--c-gold); border-radius: var(--r-lg); box-shadow: var(--shadow-soft); padding: var(--sp-5); display: flex; flex-direction: column; justify-content: center; text-align: center; }

/* ---------- FAQ ---------------------------------------------------------- */
.faq-list { max-width: var(--container-narrow); margin-inline: auto; }
.faq-item { background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: var(--sp-3); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: transparent; border: 0; padding: var(--sp-4) var(--sp-5); display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4);
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--text-strong); }
.faq-q .chev { width: 22px; height: 22px; color: var(--c-accent); transition: transform var(--dur-base) var(--ease-in-out); flex: none; }
.faq-item.is-open .chev { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; visibility: hidden; transition: grid-template-rows var(--dur-base) var(--ease-in-out), visibility 0s linear var(--dur-base); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; visibility: visible; transition: grid-template-rows var(--dur-base) var(--ease-in-out); }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 var(--sp-5) var(--sp-4); font-size: var(--fs-sm); color: var(--text-muted); max-width: none; }

/* ---------- Contact ------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); align-items: start; }
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-cards { display: flex; flex-direction: column; gap: var(--sp-3); }
.contact-line { display: flex; align-items: center; gap: var(--sp-3); background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--sp-4); }
.contact-line .ic { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--c-accent-100); color: var(--c-accent-600); display: grid; place-items: center; flex: none; }
.contact-line a, .contact-line span { font-weight: 600; color: var(--text-strong); }
.contact-line small { display: block; font-size: var(--fs-xs); color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Footer ------------------------------------------------------- */
.footer { background: var(--c-primary-900); color: rgba(251,248,242,.72); border-top: 2px solid var(--c-accent); padding-block: var(--sp-8) var(--sp-5); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--sp-6); margin-bottom: var(--sp-6); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h3, .footer h4 { color: #fff; font-size: 1rem; margin-bottom: var(--sp-4); font-family: var(--font-body); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.footer a { color: rgba(251,248,242,.72); display: block; padding: .3rem 0; }
.footer a:hover { color: #fff; }
.footer .brand { margin-bottom: var(--sp-4); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: var(--sp-5); display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: space-between; align-items: center; font-size: var(--fs-xs); }
.footer__bottom a { display: inline; }

/* ---------- Reveal animation -------------------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Modal -------------------------------------------------------- */
.modal-backdrop { position: fixed; inset: 0; background: rgba(6,42,54,.55); backdrop-filter: blur(3px); z-index: 100;
  display: grid; place-items: center; padding: var(--gutter); opacity: 0; pointer-events: none; transition: opacity var(--dur-base); }
.modal-backdrop.is-open { opacity: 1; pointer-events: auto; }
.modal { background: var(--bg-page); border-radius: var(--r-lg); box-shadow: var(--shadow-float); width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto; transform: translateY(12px); transition: transform var(--dur-base) var(--ease-spring); }
.modal-backdrop.is-open .modal { transform: none; }
.modal.modal-lg { max-width: 720px; }
.modal__head { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-5); border-bottom: 1px solid var(--border); position: sticky; top: 0; background: var(--bg-page); }
.modal__head h3 { font-size: 1.3rem; }
.modal__body { padding: var(--sp-5); }
.modal__foot { padding: var(--sp-4) var(--sp-5); border-top: 1px solid var(--border); display: flex; gap: var(--sp-3); justify-content: flex-end; position: sticky; bottom: 0; background: var(--bg-page); }
.icon-btn { background: transparent; border: 0; color: var(--text-muted); width: 36px; height: 36px; border-radius: var(--r-sm); display: grid; place-items: center; }
.icon-btn:hover { background: var(--bg-surface); color: var(--text-strong); }

/* ---------- Booking success --------------------------------------------- */
.success-panel { text-align: center; max-width: 520px; margin-inline: auto; background: var(--bg-raised);
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-7); box-shadow: var(--shadow-elevated); }
.success-panel .check-circle { width: 72px; height: 72px; border-radius: 50%; background: rgba(31,157,107,.14); color: var(--c-success); display: grid; place-items: center; margin: 0 auto var(--sp-4); }
.success-panel .ref-box { display: inline-block; background: var(--c-primary); color: #fff; font-family: var(--font-body); font-weight: 800; letter-spacing: .1em; font-size: 1.4rem; padding: .7rem 1.4rem; border-radius: var(--r-md); margin: var(--sp-3) 0; }

/* ---------- Toasts ------------------------------------------------------- */
.toast-host { position: fixed; bottom: 1.2rem; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: .5rem; align-items: center; }
.toast { background: var(--c-primary-900); color: #fff; padding: .8rem 1.2rem; border-radius: var(--r-pill); font-size: var(--fs-sm); font-weight: 600;
  box-shadow: var(--shadow-float); opacity: 0; transform: translateY(10px); transition: opacity var(--dur-base), transform var(--dur-base); max-width: 90vw; }
.toast.is-in { opacity: 1; transform: none; }
.toast--success { background: var(--c-success); }
.toast--error { background: var(--c-danger); }

/* ---------- Steps rail (booking flow) ----------------------------------- */
.steps { display: flex; align-items: center; gap: 0; margin-bottom: var(--sp-6); }
.step { display: flex; align-items: center; gap: .6rem; color: var(--text-muted); font-weight: 700; font-size: var(--fs-sm); }
.step .node { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--border); display: grid; place-items: center; background: var(--bg-raised); font-size: var(--fs-sm); }
.step.is-active .node { border-color: var(--c-accent); color: var(--c-accent-600); box-shadow: 0 0 0 4px var(--c-accent-100); }
.step.is-done .node { background: var(--c-success); border-color: var(--c-success); color: #fff; }
.step.is-active { color: var(--text-strong); }
.step-line { flex: 1; height: 2px; background: var(--border); margin: 0 .8rem; min-width: 24px; }
.step-line.is-done { background: var(--c-success); }
@media (max-width: 560px) { .step span.lbl { display: none; } }

/* ---------- A11y utilities ---------- */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--c-primary); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 var(--r-sm) 0; z-index: 200; font-weight: 700; }
.skip-link:focus { left: 0; box-shadow: var(--focus-ring); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.fleet-card.is-unavailable { opacity: .55; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
