/* =========================================================
   Ladybug Travel Agency — Redesign
   Palette: ladybug red, deep ink, warm cream
========================================================= */
:root {
  --red: #C8102E;
  --red-deep: #9A0B22;
  --red-soft: #E84C5F;
  --ink: #1A1413;
  --ink-2: #3A2E2C;
  --muted: #6E6260;
  --cream: #F5EFE6;
  --cream-2: #EDE3D2;
  --paper: #FBF7F0;
  --line: rgba(26, 20, 19, 0.12);
  --line-strong: rgba(26, 20, 19, 0.25);

  --serif: "Fraunces", "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter Tight", "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 22px;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
}
.eyebrow.dark { color: var(--ink); }
.eyebrow.cream { color: var(--cream); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
h1 { font-size: clamp(48px, 8vw, 116px); }
h2 { font-size: clamp(36px, 5.5vw, 76px); }
h3 { font-size: clamp(24px, 2.6vw, 36px); }
h4 { font-size: 20px; line-height: 1.25; }

p { margin: 0 0 1em; }
.lead { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; color: var(--ink-2); max-width: 60ch; }

.italic { font-style: italic; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(64px, 9vw, 128px) 0; }

.row { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.grid { display: grid; gap: 24px; }
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
@media (max-width: 860px) { .split-2 { grid-template-columns: 1fr; } }

/* ---------- Topbar (announcement) ---------- */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; padding-bottom: 10px;
}
.topbar a:hover { color: var(--red-soft); }
.topbar .tb-left { display: flex; gap: 22px; }
.topbar .tb-right { display: flex; gap: 18px; }
@media (max-width: 700px) {
  .topbar .tb-left .hide-sm { display: none; }
}

/* ---------- Header / Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 240, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 18px; padding-bottom: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: auto; }
.brand .bn { font-family: var(--serif); font-size: 22px; line-height: 1; }
.brand .bn small { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.nav ul { list-style: none; display: flex; gap: 32px; justify-content: center; padding: 0; margin: 0; }
.nav ul a {
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  position: relative;
  color: var(--ink);
  padding: 6px 0;
}
.nav ul a:hover, .nav ul a.active { color: var(--red); }
.nav ul a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--red);
}
@media (max-width: 900px) { .nav ul { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn .arr { transition: transform 0.2s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-deep); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: rgba(255,255,255,0.92); color: var(--ink); }
.btn-light:hover { background: #fff; }
.btn-sm { padding: 10px 16px; font-size: 11px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 72px) 0 0;
  background: var(--paper);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 {
  font-style: italic;
}
.hero h1 .sans {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 200;
  font-size: 0.5em;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  margin-top: 0.2em;
}
.hero h1 .red { color: var(--red); }

.hero-meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  margin-top: 32px;
  font-size: 13px;
  color: var(--ink-2);
}
.hero-meta b { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; font-weight: 500; }

.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(26, 20, 19, 0.45);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .stamp {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255,255,255,0.92);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-photo .stamp .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--red); margin-right: 8px; vertical-align: middle; animation: pulse 2s infinite; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Marquee strip */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: clamp(56px, 8vw, 88px);
  overflow: hidden;
  background: var(--paper);
}
.marquee-track {
  display: flex;
  gap: 64px;
  padding: 22px 0;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--ink);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee-track .star { color: var(--red); font-style: normal; }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Pillars ---------- */
.pillars { background: var(--cream); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
}
@media (max-width: 900px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillars-grid { grid-template-columns: 1fr; } }

.pillar {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
}
.pillar:last-child { border-right: 0; }
@media (max-width: 900px) {
  .pillar { border-bottom: 1px solid var(--line); }
  .pillar:nth-child(2n) { border-right: 0; }
  .pillar:nth-last-child(-n+2) { border-bottom: 0; }
}
.pillar .num { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--red); }
.pillar h4 { font-family: var(--serif); margin-top: 24px; }
.pillar p { color: var(--muted); font-size: 14px; margin-top: 12px; line-height: 1.5; }
.pillar .ico { margin-top: 20px; width: 38px; height: 38px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; color: #fff; }

/* ---------- Section header ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.section-head .left .eyebrow { margin-bottom: 16px; }
.section-head h2 { max-width: 14ch; }
.section-head .right { font-size: 14px; color: var(--muted); max-width: 320px; text-align: right; }
@media (max-width: 700px) {
  .section-head { grid-template-columns: 1fr; }
  .section-head .right { text-align: left; }
}

/* ---------- Destination cards ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .dest-grid { grid-template-columns: 1fr; } }

.dest {
  position: relative;
  display: block;
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.dest:hover { transform: translateY(-6px); }
.dest .img { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--cream-2); }
.dest .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest:hover .img img { transform: scale(1.05); }
.dest .img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,20,19,0.55) 100%);
}
.dest .price-tag {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.95);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.dest .price-tag b { color: var(--red); font-weight: 600; }
.dest .meta {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  color: #fff;
  display: flex; justify-content: space-between; align-items: end;
  z-index: 2;
}
.dest .meta .name { font-family: var(--serif); font-size: 28px; line-height: 1; }
.dest .meta .country { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.85; margin-top: 8px; display: block; }
.dest .meta .more {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Packages ---------- */
.packages { background: var(--ink); color: var(--cream); }
.packages .section-head { border-bottom-color: rgba(245, 239, 230, 0.15); }
.packages .section-head .right { color: rgba(245, 239, 230, 0.7); }
.packages .eyebrow { color: var(--red-soft); }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; } }

.pkg {
  background: #221A18;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid rgba(245, 239, 230, 0.08);
}
.pkg .img { aspect-ratio: 4/3; overflow: hidden; }
.pkg .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pkg:hover .img img { transform: scale(1.04); }
.pkg .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.pkg h3 { color: var(--cream); margin-bottom: 8px; }
.pkg .price { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--red-soft); }
.pkg ul { list-style: none; padding: 0; margin: 20px 0 28px; flex: 1; }
.pkg ul li {
  font-size: 14px; padding: 10px 0;
  border-bottom: 1px solid rgba(245, 239, 230, 0.08);
  display: flex; gap: 12px; align-items: center;
  color: rgba(245, 239, 230, 0.86);
}
.pkg ul li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red);
}
.pkg ul li:last-child { border-bottom: 0; }
.pkg .actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- About / Founder block ---------- */
.founder-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; } }
.founder-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-2);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo .badge {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 168px; height: 168px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.2;
  padding: 18px;
  transform: rotate(-8deg);
  box-shadow: 0 20px 40px -15px rgba(200, 16, 46, 0.5);
}
.founder-photo .badge b { display: block; font-size: 32px; font-style: normal; }

.founder h2 { margin-bottom: 24px; }
.founder .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.founder .stats .v { font-family: var(--serif); font-size: clamp(36px, 5vw, 56px); color: var(--red); }
.founder .stats .l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.founder .sig { font-family: var(--serif); font-style: italic; font-size: 22px; margin-top: 24px; color: var(--ink-2); }

/* ---------- Services tile ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }

.svc {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--ink);
}
.svc img { width: 100%; height: 100%; object-fit: cover; opacity: 0.78; transition: all .4s ease; }
.svc:hover img { opacity: 0.95; transform: scale(1.05); }
.svc .label {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  color: #fff; z-index: 2;
}
.svc .label .name { font-family: var(--serif); font-size: 22px; line-height: 1.1; }
.svc .label .num { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; opacity: 0.7; margin-bottom: 8px; }
.svc::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--red);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--red-deep);
  opacity: 0.5;
}
.cta-banner h2 { color: #fff; max-width: 18ch; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 50ch; position: relative; }
.cta-banner .btn-light { position: relative; }
@media (max-width: 800px) { .cta-banner { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(56px, 8vw, 88px) 0 32px;
}
.footer h2 { color: var(--cream); font-style: italic; margin-bottom: 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 56px;
  border-top: 1px solid rgba(245, 239, 230, 0.15);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red-soft); margin: 0 0 18px; font-weight: 500; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 14px; color: rgba(245, 239, 230, 0.78); }
.footer-grid li a:hover { color: var(--red-soft); }
.footer-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(245, 239, 230, 0.15);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  color: rgba(245, 239, 230, 0.5);
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(245, 239, 230, 0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.socials a:hover { background: var(--red); border-color: var(--red); }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  padding: clamp(64px, 8vw, 120px) 0 clamp(48px, 6vw, 80px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero .container { max-width: 1100px; }
.page-hero h1 { font-style: italic; font-size: clamp(48px, 7vw, 96px); }
.page-hero h1 .red { color: var(--red); }
.page-hero p { max-width: 60ch; color: var(--ink-2); margin-top: 24px; font-size: 18px; }
.crumb { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.crumb a:hover { color: var(--red); }

/* ---------- Trips list ---------- */
.trip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .trip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .trip-grid { grid-template-columns: 1fr; } }

.trip {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .3s ease;
}
.trip:hover { border-color: var(--ink); transform: translateY(-4px); }
.trip .img { aspect-ratio: 5/4; overflow: hidden; }
.trip .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.trip:hover .img img { transform: scale(1.05); }
.trip .body { padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.trip .body .top { display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.trip .body .top .tag { color: var(--red); }
.trip .body h4 { font-family: var(--serif); font-size: 24px; }
.trip .body .price { font-family: var(--mono); font-size: 13px; color: var(--ink); margin-top: 8px; }
.trip .body .price b { color: var(--red); font-weight: 600; }
.trip .body .desc { font-size: 14px; color: var(--muted); margin-top: 8px; line-height: 1.5; }

/* ---------- Filter bar ---------- */
.filterbar {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
}
.chip {
  padding: 9px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  border: 1px solid var(--line-strong);
  transition: all .2s ease;
  background: var(--paper);
}
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip:hover:not(.active) { border-color: var(--ink); }

/* ---------- Service detail layout ---------- */
.svc-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .svc-detail { grid-template-columns: 1fr; } }
.svc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) { .svc-card { grid-template-columns: 1fr; } }
.svc-card .img { aspect-ratio: 4/3; }
.svc-card .img img { width: 100%; height: 100%; object-fit: cover; }
.svc-card .body { padding: 28px; display: flex; flex-direction: column; }
.svc-card .num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--red); }
.svc-card h3 { font-family: var(--serif); font-size: 28px; margin-top: 12px; }
.svc-card p { color: var(--muted); font-size: 14px; margin-top: 12px; flex: 1; line-height: 1.6; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 64px);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info .row-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  background: var(--paper);
}
.contact-info .row-card .label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.contact-info .row-card .val { font-family: var(--serif); font-size: 22px; }
.contact-info .row-card a:hover { color: var(--red); }

.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
}
.form .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form .grid-2 { grid-template-columns: 1fr; } }
.form label {
  display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.form .field { margin-bottom: 18px; }
.form input, .form select, .form textarea {
  width: 100%;
  font: inherit; font-size: 15px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 8px 0 12px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--red);
}
.form textarea { resize: vertical; min-height: 100px; }
.form .submit-row { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; flex-wrap: wrap; gap: 16px; }
.form .submit-row .note { font-size: 12px; color: var(--muted); }

.form-success {
  background: var(--cream);
  border: 1px solid var(--red);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  display: none;
}
.form-success.show { display: block; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; } }
.test {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
}
.test .stars { color: var(--red); letter-spacing: 0.1em; margin-bottom: 16px; font-size: 14px; }
.test blockquote { font-family: var(--serif); font-size: 22px; line-height: 1.3; margin: 0 0 24px; font-style: italic; }
.test .who { display: flex; align-items: center; gap: 12px; }
.test .who .av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 16px;
}
.test .who .n { font-weight: 600; font-size: 14px; }
.test .who .t { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* ---------- Booking form (full page) ---------- */
.booking-summary {
  position: sticky; top: 100px;
  background: var(--ink); color: var(--cream);
  border-radius: var(--r-lg);
  padding: 32px;
}
.booking-summary h4 { color: var(--cream); font-family: var(--serif); font-size: 24px; margin-bottom: 8px; font-style: italic; }
.booking-summary .row-line { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(245,239,230,0.12); font-size: 14px; color: rgba(245,239,230,0.8); }
.booking-summary .row-line b { color: var(--cream); font-weight: 500; }
.booking-summary .total { display: flex; justify-content: space-between; padding-top: 16px; margin-top: 12px; border-top: 1px solid rgba(245,239,230,0.3); font-family: var(--serif); font-size: 22px; }
.booking-summary .total b { color: var(--red-soft); }

.steps {
  display: flex; gap: 8px; margin-bottom: 32px; align-items: center;
}
.step {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--cream-2);
  color: var(--muted);
  cursor: pointer;
}
.step.active { background: var(--ink); color: #fff; }
.step.done { background: var(--red); color: #fff; }
.step .n {
  width: 18px; height: 18px; border-radius: 50%; background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 10px;
}
.step:not(.active):not(.done) .n { background: rgba(0,0,0,0.1); color: var(--ink); }

.step-divider { flex: 1; height: 1px; background: var(--line-strong); min-width: 12px; max-width: 40px; }

/* Utility */
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-end { display: flex; justify-content: flex-end; }
.spacer { height: 1px; }
