/* =============================================================
   Nurel Rent A Car — Design System
   DNA: Akdeniz editoryal / bol beyaz alan / kırık-beyaz + mürekkep + derin turkuaz
   Fonts: Bricolage Grotesque (display) + Manrope (body)
   Not: ayaz (koyu neon) ve sedirhan (toprak/serif) ile bilinçli olarak zıt.
   ============================================================= */

:root {
  /* Renk paleti — warm bone + ink + deep teal */
  --bg: #efe9dd;
  --bg-2: #e7e0d1;
  --surface: #faf7ef;
  --surface-2: #f3eee2;
  --ink: #17191f;
  --ink-soft: #4b4d47;
  --muted: #7b7c72;
  --accent: #0e6b5c;
  --accent-bright: #12a08c;
  --accent-ink: #073d34;
  --sand: #c69a5b;
  --line: rgba(23, 25, 31, 0.12);
  --line-strong: rgba(23, 25, 31, 0.22);
  --shadow-sm: 0 1px 2px rgba(23, 25, 31, 0.06), 0 4px 14px rgba(23, 25, 31, 0.05);
  --shadow-md: 0 10px 30px -12px rgba(23, 25, 31, 0.22);
  --shadow-lg: 0 30px 60px -22px rgba(14, 107, 92, 0.28);

  --radius: 14px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --font-display: "Bricolage Grotesque", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121317;
    --bg-2: #0d0e11;
    --surface: #1a1c22;
    --surface-2: #20232a;
    --ink: #f2efe6;
    --ink-soft: #cdcabf;
    --muted: #9a9b90;
    --accent: #24b39c;
    --accent-bright: #33d3b8;
    --accent-ink: #bff3e8;
    --sand: #d9ad6c;
    --line: rgba(242, 239, 230, 0.14);
    --line-strong: rgba(242, 239, 230, 0.26);
    --shadow-md: 0 10px 30px -12px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 30px 60px -22px rgba(0, 0, 0, 0.7);
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Atmosfer: yumuşak turkuaz mesh + grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 55% at 82% -8%, rgba(18, 160, 140, 0.14), transparent 60%),
    radial-gradient(50% 45% at -8% 12%, rgba(198, 154, 91, 0.12), transparent 55%),
    radial-gradient(70% 60% at 50% 118%, rgba(14, 107, 92, 0.10), transparent 60%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2.5px solid var(--accent-bright); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* Skip link */
.skip { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--ink); color: var(--bg); padding: 0.7rem 1.1rem; border-radius: 0 0 10px 0; }
.skip:focus { left: 0; }

/* ---------- Tipografi yardımcıları ---------- */
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 700; line-height: 1.02; letter-spacing: -0.02em; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--accent); display: inline-block; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-display); font-weight: 800; font-size: 1.22rem; letter-spacing: -0.02em; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--accent), var(--accent-ink));
  color: #fff; box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 20px; height: 20px; }
.brand small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.28em; color: var(--muted); text-transform: uppercase; margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: var(--ink-soft); position: relative; transition: color 0.2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--accent); transition: width 0.28s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-tel { font-weight: 700; color: var(--ink); font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.45rem; }
.nav-tel svg { width: 16px; height: 16px; color: var(--accent); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 700; font-size: 0.95rem; padding: 0.8rem 1.35rem; border-radius: var(--radius-pill);
  border: 1px solid transparent; transition: transform 0.18s var(--ease), box-shadow 0.25s, background 0.25s, color 0.2s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px -8px rgba(14, 107, 92, 0.6); }
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(14, 107, 92, 0.6); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-wa { background: #1faf54; color: #fff; }
.btn-wa:hover { background: #23c65f; transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 1rem 1.6rem; font-size: 1.02rem; }

.nav-toggle { display: none; background: none; border: 1px solid var(--line-strong); border-radius: 10px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0.5rem 0.95rem 0.5rem 0.6rem;
  font-size: 0.85rem; font-weight: 600; box-shadow: var(--shadow-sm); margin-bottom: 1.6rem;
}
.hero-badge .stars { color: var(--sand); letter-spacing: 1px; }
.hero-badge b { color: var(--ink); }
.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  margin-bottom: 1.3rem;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 em { font-style: normal; color: var(--accent); position: relative; }
.hero h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0.06em; height: 0.14em; background: color-mix(in srgb, var(--accent) 30%, transparent); border-radius: 2px; z-index: -1; }
.hero-lead { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.22rem); color: var(--ink-soft); max-width: 46ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.4rem; }
.hero-stats { display: flex; gap: clamp(1.4rem, 4vw, 2.8rem); flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.05rem); line-height: 1; color: var(--ink); }
.hero-stat .lab { font-size: 0.82rem; color: var(--muted); font-weight: 600; margin-top: 0.35rem; }

/* Rezervasyon kartı — yıldız */
.booking-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.booking-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, color-mix(in srgb, var(--accent) 45%, transparent), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.booking-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.booking-head h2 { font-size: 1.3rem; }
.booking-head .tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent); padding: 0.35rem 0.7rem; border-radius: var(--radius-pill); }

/* ---------- Form ---------- */
.field { margin-bottom: 0.95rem; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.field label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 0.4rem; letter-spacing: 0.01em; }
.field label .req { color: var(--accent); }
.control {
  width: 100%; font-family: inherit; font-size: 0.98rem; color: var(--ink);
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.8rem 0.9rem; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
}
.control::placeholder { color: var(--muted); }
.control:hover { border-color: var(--line-strong); }
.control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent); background: var(--surface); }
select.control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%237b7c72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.4rem; cursor: pointer;
}
.control.invalid { border-color: #d1483b; box-shadow: 0 0 0 3px rgba(209, 72, 59, 0.15); }
.field .hint { font-size: 0.76rem; color: var(--muted); margin-top: 0.35rem; }
.field .error { font-size: 0.76rem; color: #d1483b; margin-top: 0.35rem; font-weight: 600; display: none; }
.field .error.show { display: block; }
.booking-actions { display: grid; gap: 0.6rem; margin-top: 1.15rem; }
.booking-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 0.85rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.booking-note svg { width: 14px; height: 14px; color: var(--accent); }

/* ---------- Section shell ---------- */
section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin: 1rem 0 0.9rem; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Fleet ---------- */
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.car-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.car-visual { position: relative; aspect-ratio: 16 / 10; display: grid; place-items: center; overflow: hidden; }
.car-visual.eco { background: linear-gradient(150deg, #e9f3ef, #d3e7e0); }
.car-visual.mid { background: linear-gradient(150deg, #eaf0f4, #d6e2ea); }
.car-visual.suv { background: linear-gradient(150deg, #f1ece2, #e3d7c2); }
.car-visual.lux { background: linear-gradient(150deg, #1a1c22, #2b2f38); }
@media (prefers-color-scheme: dark) {
  .car-visual.eco { background: linear-gradient(150deg, #14322b, #0f2621); }
  .car-visual.mid { background: linear-gradient(150deg, #16242e, #101a22); }
  .car-visual.suv { background: linear-gradient(150deg, #2a2419, #1c1811); }
}
.car-visual svg.car-art { width: 76%; height: auto; filter: drop-shadow(0 12px 14px rgba(0,0,0,0.18)); }
.car-visual .price-badge {
  position: absolute; top: 0.9rem; right: 0.9rem; background: var(--surface); color: var(--ink);
  font-weight: 800; font-family: var(--font-display); font-size: 1rem; padding: 0.4rem 0.75rem; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.car-visual .price-badge span { font-family: var(--font-body); font-weight: 600; font-size: 0.72rem; color: var(--muted); }
.car-body { padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.car-body .cls { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.car-body h3 { font-size: 1.28rem; margin: 0.35rem 0 0.1rem; }
.car-body .ex { font-size: 0.86rem; color: var(--muted); }
.car-specs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 1.25rem; }
.spec { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); background: var(--surface-2); border: 1px solid var(--line); padding: 0.35rem 0.6rem; border-radius: 8px; }
.spec svg { width: 14px; height: 14px; color: var(--accent); }
.car-body .btn { margin-top: auto; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding: 1.8rem 1.5rem 1.5rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: color-mix(in srgb, var(--accent) 22%, transparent); line-height: 1; display: block; margin-bottom: 0.8rem; }
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Trust / why ---------- */
.trust { background: var(--surface); border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.feature-list { display: grid; gap: 1.15rem; }
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature .fi { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--accent) 12%, transparent); color: var(--accent); }
.feature .fi svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.feature p { font-size: 0.92rem; color: var(--ink-soft); }
.review-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-md); }
.review-score { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.review-score .big { font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; }
.review-score .stars { color: var(--sand); font-size: 1.1rem; letter-spacing: 2px; }
.review-score .meta { font-size: 0.85rem; color: var(--muted); }
.quote { font-size: 1.05rem; color: var(--ink-soft); font-style: italic; border-left: 3px solid var(--accent); padding-left: 1.1rem; margin-bottom: 1rem; }
.quote-author { font-weight: 700; font-size: 0.9rem; }
.quote-author span { color: var(--muted); font-weight: 500; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.85rem; max-width: 760px; margin-inline: auto; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.15rem 1.3rem; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q .chev { flex: none; width: 22px; height: 22px; transition: transform 0.3s var(--ease); color: var(--accent); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Contact / Footer ---------- */
.footer { background: var(--ink); color: #efe9dd; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; margin-top: 2rem; }
@media (prefers-color-scheme: dark) { .footer { background: #0a0b0d; } }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer .brand { color: #fff; margin-bottom: 1rem; }
.footer p { color: rgba(239, 233, 221, 0.7); font-size: 0.95rem; max-width: 34ch; }
.footer h4 { font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(239, 233, 221, 0.55); margin-bottom: 1.1rem; }
.footer-list { list-style: none; display: grid; gap: 0.7rem; }
.footer-list a, .footer-list li { color: rgba(239, 233, 221, 0.85); font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.55rem; transition: color 0.2s; }
.footer-list a:hover { color: var(--accent-bright); }
.footer-list svg { width: 16px; height: 16px; color: var(--accent-bright); flex: none; }
.footer-bottom { border-top: 1px solid rgba(239, 233, 221, 0.14); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; font-size: 0.83rem; color: rgba(239, 233, 221, 0.55); }
.footer-bottom a { color: rgba(239, 233, 221, 0.8); }
.socials { display: flex; gap: 0.6rem; }
.socials a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(239, 233, 221, 0.08); transition: background 0.2s, transform 0.2s; }
.socials a:hover { background: var(--accent); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

/* ---------- Sticky mobile book bar ---------- */
.book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: color-mix(in srgb, var(--surface) 92%, transparent); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); box-shadow: 0 -8px 24px -12px rgba(0,0,0,0.2);
  padding: 0.7rem var(--gutter); transform: translateY(120%); transition: transform 0.4s var(--ease);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.book-bar.show { transform: translateY(0); }
.book-bar .bb-price { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; }
.book-bar .bb-price span { font-family: var(--font-body); font-weight: 600; font-size: 0.78rem; color: var(--muted); display: block; }

/* ---------- Modal (rezervasyon onayı) ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 1.2rem;
  background: rgba(15, 17, 20, 0.55); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal {
  background: var(--surface); border-radius: var(--radius-lg); max-width: 460px; width: 100%;
  padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  transform: translateY(16px) scale(0.98); transition: transform 0.35s var(--ease); text-align: center;
}
.modal-overlay.show .modal { transform: none; }
.modal-icon { width: 64px; height: 64px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent); display: grid; place-items: center; margin: 0 auto 1.2rem; }
.modal-icon svg { width: 32px; height: 32px; }
.modal h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.modal p { color: var(--ink-soft); margin-bottom: 1.3rem; }
.modal-summary { text-align: left; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.15rem; margin-bottom: 1.3rem; display: grid; gap: 0.55rem; }
.modal-summary .row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9rem; }
.modal-summary .row .k { color: var(--muted); font-weight: 600; }
.modal-summary .row .v { color: var(--ink); font-weight: 700; text-align: right; }
.modal-actions { display: grid; gap: 0.6rem; }
.modal-close { position: absolute; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* hero intro */
@keyframes riseIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.hero .anim { opacity: 0; animation: riseIn 0.9s var(--ease) forwards; }
.hero .anim.a1 { animation-delay: 0.05s; }
.hero .anim.a2 { animation-delay: 0.15s; }
.hero .anim.a3 { animation-delay: 0.25s; }
.hero .anim.a4 { animation-delay: 0.35s; }
.hero .booking-card.anim { animation-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .booking-card { order: -1; max-width: 520px; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-tel { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    background: var(--surface); border-bottom: 1px solid var(--line); padding: 1.2rem var(--gutter); gap: 1.1rem; box-shadow: var(--shadow-md);
  }
  .footer-grid { grid-template-columns: 1fr; }
  .field.row { grid-template-columns: 1fr; }
}
@media (min-width: 721px) { .book-bar { display: none !important; } }
