/* ===== Theme ===== */
:root {
  --coral: #ff6b6b;
  --coral-dark: #ee5a52;
  --teal: #2ec4b6;
  --teal-dark: #21a99c;
  --yellow: #ffd23f;
  --purple: #7c5cff;
  --ink: #2b2440;
  --ink-soft: #5a5470;
  --cream: #fff7ef;
  --card: #ffffff;
  --shadow: 0 14px 35px rgba(43, 36, 64, 0.10);
  --shadow-lg: 0 22px 50px rgba(43, 36, 64, 0.16);
  --radius: 22px;
  --radius-sm: 14px;
  --font-head: "Baloo 2", "Nunito", sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --blob-display: block;
}

/* ===== Theme: Warm & friendly ===== */
[data-theme="warm"] {
  --coral: #c9745a;
  --coral-dark: #b35f47;
  --teal: #8a9b6e;
  --teal-dark: #6f8056;
  --yellow: #e0b25b;
  --purple: #a9663f;
  --ink: #43382f;
  --ink-soft: #6f6253;
  --cream: #fbf5ec;
  --card: #fffaf2;
  --shadow: 0 14px 32px rgba(67, 56, 47, 0.10);
  --shadow-lg: 0 22px 46px rgba(67, 56, 47, 0.16);
  --radius: 24px;
  --radius-sm: 16px;
  --font-head: "Quicksand", sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
}
[data-theme="warm"] .hero h1 {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--coral);
}

/* ===== Theme: Clean & modern ===== */
[data-theme="modern"] {
  --coral: #0ea5a4;
  --coral-dark: #0c8a89;
  --teal: #0ea5a4;
  --teal-dark: #0c8a89;
  --yellow: #0ea5a4;
  --purple: #0ea5a4;
  --ink: #0f172a;
  --ink-soft: #64748b;
  --cream: #ffffff;
  --card: #ffffff;
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 14px 34px rgba(15, 23, 42, 0.10);
  --radius: 12px;
  --radius-sm: 10px;
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --blob-display: none;
}
[data-theme="modern"] .hero {
  background: #ffffff;
  border-bottom: 1px solid #e6e9ee;
}
[data-theme="modern"] .hero h1 {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--ink);
}
[data-theme="modern"] .section-tint {
  background: #f8fafc;
}
[data-theme="modern"] .price-card,
[data-theme="modern"] .trust-card,
[data-theme="modern"] .koda-card,
[data-theme="modern"] .badge,
[data-theme="modern"] .hero-kicker,
[data-theme="modern"] .booking-calendar,
[data-theme="modern"] .booking-form,
[data-theme="modern"] .review-card,
[data-theme="modern"] .rec-card {
  border: 1px solid #e6e9ee;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand { font-family: var(--font-head); line-height: 1.15; }

a { color: inherit; }

img { max-width: 100%; display: block; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 5vw, 56px);
  background: rgba(255, 247, 239, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(124, 92, 255, 0.10);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
}
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(43, 36, 64, 0.18);
}
.brand-paw { filter: drop-shadow(0 2px 4px rgba(255, 107, 107, 0.4)); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: rgba(124, 92, 255, 0.10); color: var(--ink); }
.nav-cta {
  background: var(--coral) !important;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
}
.nav-cta:hover { background: var(--coral-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px; border-radius: 3px;
  background: var(--ink); transition: 0.25s;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  font-family: var(--font-head);
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 107, 107, 0.45);
}
.btn-primary:hover { background: var(--coral-dark); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 9vw, 110px) clamp(18px, 5vw, 56px) clamp(64px, 9vw, 120px);
  text-align: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 210, 63, 0.25), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(46, 196, 182, 0.22), transparent 42%),
    radial-gradient(circle at 75% 90%, rgba(124, 92, 255, 0.18), transparent 45%);
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.hero-logo {
  width: clamp(180px, 32vw, 260px);
  height: clamp(180px, 32vw, 260px);
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 22px;
  box-shadow: 0 14px 38px rgba(43, 36, 64, 0.22);
}
.hero-kicker {
  display: inline-block;
  background: #fff;
  color: var(--purple);
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  margin: 0 0 18px;
  background: linear-gradient(120deg, var(--coral), var(--purple) 55%, var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub { font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: var(--ink-soft); margin: 0 auto 32px; max-width: 620px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.hero-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.badge {
  background: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--shadow);
}

/* floating blobs */
.hero-blobs .blob { display: var(--blob-display); position: absolute; border-radius: 50%; filter: blur(8px); opacity: 0.55; animation: float 9s ease-in-out infinite; }
.blob-1 { width: 150px; height: 150px; background: var(--yellow); top: 12%; left: 8%; }
.blob-2 { width: 110px; height: 110px; background: var(--teal); top: 22%; right: 10%; animation-delay: 1.5s; }
.blob-3 { width: 90px; height: 90px; background: var(--coral); bottom: 14%; left: 18%; animation-delay: 3s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }

/* ===== Sections ===== */
.section { padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 56px); max-width: 1080px; margin: 0 auto; }
.section-tint { max-width: none; background: linear-gradient(180deg, rgba(46,196,182,0.07), rgba(124,92,255,0.06)); }
.section-tint > * { max-width: 1080px; margin-left: auto; margin-right: auto; }

.section-head { text-align: center; margin-bottom: 46px; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.section-head h2 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); margin: 0; }
.section-lead { color: var(--ink-soft); max-width: 560px; margin: 14px auto 0; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 42px; align-items: center; }
/* Single featured photo in the About section */
.about-photo > img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
/* About uses a 2-up grid (Koda's grid below stays 3-up) */
.about-photo .about-thumbs { grid-template-columns: 1fr; gap: 18px; }
.about-photo .about-thumbs > * { aspect-ratio: 1/1; }

/* Thumbnail grids (About + Koda) */
.photo-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.photo-thumbs > * { aspect-ratio: 1/1; width: 100%; min-height: 0; border-radius: var(--radius-sm); }
.photo-thumbs .photo-placeholder { font-size: 0.82rem; }
.photo-thumbs img {
  object-fit: cover;
  cursor: zoom-in;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.2s;
}
.photo-thumbs img:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-lg); }
.photo-thumbs img:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }
.about-text p { margin: 0 0 16px; font-size: 1.06rem; }
.checklist { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.checklist li { padding-left: 32px; position: relative; font-weight: 600; }
.checklist li::before { content: "🐾"; position: absolute; left: 0; }

/* ===== Photo placeholders ===== */
.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, #ffe9d6, #ffe9d6 14px, #fff3e8 14px, #fff3e8 28px);
  border: 2px dashed rgba(124, 92, 255, 0.35);
  color: var(--ink-soft);
  font-weight: 800;
  font-family: var(--font-head);
  min-height: 160px;
}

/* ===== Koda ===== */
.koda-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  background: var(--card);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 42px);
  box-shadow: var(--shadow);
}
/* Koda thumbnails reuse the shared .photo-thumbs grid above. */
.koda-text p { font-size: 1.06rem; margin: 0 0 22px; }
.koda-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stat {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
}
.stat-emoji { grid-row: 1 / 3; font-size: 1.7rem; }
.stat-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); font-weight: 700; }
.stat-value { font-weight: 800; font-family: var(--font-head); }
.koda-insta {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 24px auto 0;
  padding: 11px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, #f58529, #dd2a7b 55%, #8134af);
  box-shadow: 0 8px 20px rgba(221, 42, 123, 0.35);
  transition: transform 0.15s, box-shadow 0.2s;
}
.koda-insta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(221, 42, 123, 0.45); }
.koda-insta-emoji { font-size: 1.2rem; }

/* ===== Pricing ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-featured {
  background: linear-gradient(165deg, #fff, #fff);
  border: 3px solid var(--coral);
  transform: scale(1.03);
}
.price-featured:hover { transform: scale(1.03) translateY(-6px); }
.price-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: #fff; font-weight: 800; font-size: 0.78rem;
  padding: 6px 16px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.06em;
  box-shadow: 0 6px 14px rgba(255,107,107,0.4);
}
.price-emoji { font-size: 2.4rem; }
.price-card h3 { margin: 8px 0 6px; font-size: 1.4rem; }
.price { font-size: 2.4rem; font-weight: 800; font-family: var(--font-head); color: var(--purple); margin: 0 0 16px; }
.price span { font-size: 1rem; font-weight: 700; color: var(--ink-soft); }
.price-extra {
  display: inline-block; margin: -10px 0 16px; padding: 4px 12px;
  background: rgba(14, 165, 164, 0.10); border-radius: 999px;
  font-size: 0.82rem; font-weight: 800; color: var(--teal-dark);
}
.price-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.price-card li { padding-left: 28px; position: relative; }
.price-card li::before { content: "✔"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.price-note { text-align: center; color: var(--ink-soft); margin-top: 30px; }
.price-note a { color: var(--purple); font-weight: 800; }

/* ===== Reviews ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  margin: 0; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 28px); display: flex; flex-direction: column; gap: 12px;
}
.review-stars { color: #f5b301; font-size: 1.1rem; letter-spacing: 3px; }
.review-card blockquote { margin: 0; font-size: 1.02rem; line-height: 1.6; color: var(--ink); }
.review-card figcaption { font-family: var(--font-head); font-weight: 800; font-size: 0.92rem; color: var(--ink-soft); }

/* ===== Recommended ===== */
.rec-group { max-width: 1080px; margin: 0 auto; }
.rec-group + .rec-group { margin-top: 28px; }
.rec-title { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; margin: 0 0 14px; }
.rec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.rec-card {
  display: flex; flex-direction: column; gap: 4px; align-items: flex-start;
  background: var(--card); border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding: 18px 20px; text-decoration: none; color: var(--ink);
  transition: transform 0.15s, box-shadow 0.2s;
}
.rec-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.rec-emoji { font-size: 1.4rem; }
.rec-name { font-family: var(--font-head); font-weight: 800; font-size: 1.02rem; }
.rec-handle { color: var(--teal-dark); font-weight: 700; font-size: 0.88rem; }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { aspect-ratio: 1/1; border-radius: var(--radius-sm); overflow: hidden; }
.gallery-item img,
img.gallery-item { width: 100%; height: 100%; object-fit: cover; display: block; }
img.gallery-item { transition: transform 0.15s; }
img.gallery-item:hover { transform: scale(1.03); }

/* ===== Trust ===== */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.trust-card:hover { transform: translateY(-5px); }
.trust-emoji { font-size: 2.4rem; }
.trust-card h3 { margin: 10px 0 8px; font-size: 1.2rem; }
.trust-card p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* ===== Booking ===== */
.visually-hidden { position: absolute; width: 1px !important; height: 1px !important; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
.booking-note {
  max-width: 760px;
  margin: 0 auto 28px;
  background: var(--card);
  border-radius: var(--radius);
  border-left: 6px solid var(--coral);
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 30px);
}
.booking-note-title { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; margin: 0 0 14px; }
.booking-note ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.booking-note li { position: relative; padding-left: 26px; color: var(--ink-soft); }
.booking-note li::before { content: "🐾"; position: absolute; left: 0; top: 1px; font-size: 0.95rem; }
.booking-note li strong { color: var(--ink); }
.booking-note-foot { margin: 16px 0 0; font-weight: 700; color: var(--ink); }

.booking-embed { max-width: 940px; margin: 0 auto; }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }

/* Calendar */
.booking-calendar, .booking-form {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 26px);
}
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-title { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; }
.cal-nav {
  width: 38px; height: 38px; border: 0; border-radius: 50%;
  background: var(--cream); color: var(--ink); font-size: 1.3rem; line-height: 1;
  cursor: pointer; transition: background 0.15s;
}
.cal-nav:hover:not(:disabled) { background: rgba(124, 92, 255, 0.14); }
.cal-nav:disabled { opacity: 0.3; cursor: default; }
.cal-weekdays, .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-weekdays span { text-align: center; font-size: 0.72rem; font-weight: 800; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; padding-bottom: 6px; }
.cal-day {
  aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center;
  border: 0; background: rgba(14, 165, 164, 0.10); cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem; color: var(--ink);
  border-radius: 50%; transition: background 0.12s, color 0.12s;
}
.cal-day.empty { cursor: default; background: transparent; }
.cal-day:disabled { color: rgba(90, 84, 112, 0.4); cursor: default; text-decoration: line-through; background: rgba(15, 23, 42, 0.05); }
.cal-day.today { box-shadow: inset 0 0 0 2px var(--teal); }
.cal-day:hover:not(:disabled):not(.empty) { background: rgba(124, 92, 255, 0.16); }
.cal-day.in-range { background: rgba(124, 92, 255, 0.14); border-radius: 0; color: var(--ink); }
.cal-day.range-start, .cal-day.range-end { background: var(--coral); color: #fff; }
.cal-day.range-start { border-top-left-radius: 50%; border-bottom-left-radius: 50%; }
.cal-day.range-end { border-top-right-radius: 50%; border-bottom-right-radius: 50%; }
.cal-day.range-start.range-end { border-radius: 50%; }
.cal-hint { font-size: 0.86rem; color: var(--ink-soft); margin: 14px 0 0; text-align: center; }

/* Form */
.booking-dates {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px;
  background: var(--cream); border: 1px solid rgba(15, 23, 42, 0.12); border-radius: var(--radius-sm); padding: 12px 14px; margin-bottom: 16px;
}
.booking-dates > div:not(.bd-arrow) { display: grid; }
.bd-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); }
.bd-value { font-family: var(--font-head); font-weight: 800; font-size: 1rem; }
.bd-arrow { color: var(--coral); font-size: 1.2rem; font-weight: 800; }
.booking-form label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 12px; color: var(--ink); }
.booking-form [hidden] { display: none !important; }
.booking-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-form .form-hint { font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); margin: -2px 0 14px; line-height: 1.5; }
.booking-form .form-hint strong { color: var(--ink); }
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%; margin-top: 5px; padding: 11px 13px;
  font-family: var(--font-body); font-size: 0.96rem; color: var(--ink);
  background: var(--cream); border: 2px solid rgba(15, 23, 42, 0.12); border-radius: var(--radius-sm);
  transition: border-color 0.15s, background 0.15s;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { outline: none; border-color: var(--purple); background: #fff; }
.booking-form textarea { resize: vertical; }
.dog-block { margin-bottom: 4px; }
.dog-block + .dog-block { margin-top: 8px; padding-top: 16px; border-top: 1px dashed rgba(15, 23, 42, 0.14); }
.dog-block-title { font-family: var(--font-head); font-weight: 800; font-size: 1rem; margin: 0 0 8px; display: flex; align-items: center; gap: 10px; }
.dog-remove {
  margin-left: auto; border: 0; background: transparent; cursor: pointer;
  color: var(--coral-dark); font-family: var(--font-body); font-weight: 700; font-size: 0.82rem; padding: 2px 4px;
}
.dog-remove:hover { text-decoration: underline; }
.dog-add {
  width: 100%; margin: 6px 0 0; padding: 11px 13px; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem; color: var(--teal-dark);
  background: var(--cream); border: 2px dashed rgba(15, 23, 42, 0.18); border-radius: var(--radius-sm);
  transition: border-color 0.15s, background 0.15s;
}
.dog-add:hover { border-color: var(--teal); background: #fff; }
.booking-form .form-hint#dog-add-note { margin: 6px 0 14px; }
.bk-cost {
  margin: 6px 0 16px; padding: 14px 16px;
  background: rgba(14, 165, 164, 0.08); border: 1px solid rgba(14, 165, 164, 0.35);
  border-radius: var(--radius-sm);
}
.bk-cost-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.bk-cost-label { font-family: var(--font-head); font-weight: 800; font-size: 0.98rem; color: var(--ink); }
.bk-cost-amount { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--teal-dark); }
.bk-cost-detail { margin: 4px 0 0; font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.bk-cost-fine { margin: 6px 0 0; font-size: 0.78rem; color: var(--ink-soft); }
.booking-submit { width: 100%; margin-top: 4px; border: 0; cursor: pointer; font-size: 1rem; }
.booking-submit:disabled { opacity: 0.6; cursor: default; }
.booking-status { margin: 12px 0 0; text-align: center; font-weight: 700; font-size: 0.92rem; min-height: 1.2em; }
.booking-status.is-error { color: var(--coral-dark); }
.booking-status.is-success { color: var(--teal-dark); }

/* ===== Intake form page ===== */
.intake-page { max-width: 760px; margin: 0 auto; padding: clamp(24px, 5vw, 48px) clamp(16px, 5vw, 24px) 64px; }
.intake-head { text-align: center; margin-bottom: 30px; }
.intake-head img { width: 132px; height: 132px; border-radius: 50%; box-shadow: var(--shadow); }
.intake-head h1 { font-size: clamp(1.6rem, 4.5vw, 2.3rem); margin: 14px 0 8px; }
.intake-intro { color: var(--ink-soft); max-width: 560px; margin: 0 auto; }
.intake-form { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(20px, 4vw, 40px); }
.intake-section {
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--ink);
  margin: 34px 0 6px; padding-top: 22px; border-top: 2px solid rgba(124, 92, 255, 0.14);
}
.intake-section:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.intake-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.q { margin: 16px 0; }
.q-label { display: block; font-weight: 700; font-size: 0.92rem; color: var(--ink); margin-bottom: 6px; }
.q .muted { font-weight: 600; color: var(--ink-soft); font-size: 0.85rem; }
.q input[type=text], .q input[type=email], .q input[type=tel], .q input[type=date],
.q input[type=number], .q select, .q textarea {
  width: 100%; margin-top: 6px; padding: 11px 13px; font-family: var(--font-body);
  font-size: 0.96rem; color: var(--ink); background: var(--cream);
  border: 2px solid rgba(15, 23, 42, 0.12); border-radius: var(--radius-sm); transition: border-color 0.15s, background 0.15s;
}
.q input:focus, .q select:focus, .q textarea:focus { outline: none; border-color: var(--purple); background: #fff; }
.q textarea { resize: vertical; }
.opts { display: flex; flex-wrap: wrap; gap: 10px; }
.checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 8px; }
.opt {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  background: var(--cream); border: 2px solid rgba(15, 23, 42, 0.12); border-radius: 999px;
  padding: 9px 16px; font-weight: 600; font-size: 0.92rem;
}
.checks .opt { border-radius: var(--radius-sm); }
.opt input { accent-color: var(--purple); width: auto; margin: 0; }
.opt:has(input:checked) { border-color: var(--purple); background: #fff; }
.opt-block { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; font-size: 0.92rem; cursor: pointer; }
.opt-block input { accent-color: var(--purple); margin-top: 3px; }
.consent { background: var(--cream); border: 1px solid rgba(15, 23, 42, 0.12); border-radius: var(--radius-sm); padding: 14px 16px; }
.packing-list { margin: 6px 0 0; padding-left: 22px; color: var(--ink); font-size: 0.94rem; line-height: 1.7; }
.packing-list li { margin: 2px 0; }
.intake-alert {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255, 107, 107, 0.10); border: 2px solid #ff6b6b;
  border-radius: var(--radius-sm); padding: 14px 16px; margin: 0 0 26px;
}
.intake-alert-icon { font-size: 1.3rem; line-height: 1.4; flex-shrink: 0; }
.intake-alert p { margin: 0; font-size: 0.92rem; line-height: 1.55; color: var(--ink); }
.intake-alert strong { color: #d63d3d; }
.q[hidden] { display: none; }
.intake-note { font-size: 0.84rem; color: var(--ink-soft); background: var(--cream); border-radius: var(--radius-sm); padding: 10px 14px; margin: 8px 0 0; line-height: 1.5; }
.intake-submit { width: 100%; margin-top: 26px; border: 0; cursor: pointer; font-size: 1rem; }
.intake-submit:disabled { opacity: 0.6; cursor: default; }
.intake-status { margin: 14px 0 0; text-align: center; font-weight: 700; min-height: 1.2em; }
.intake-status.is-error { color: var(--coral-dark); }
.intake-status.is-success { color: var(--teal-dark); font-size: 1.05rem; }
.intake-back { text-align: center; margin: 20px 0 0; }
.intake-back a { color: var(--purple); font-weight: 700; text-decoration: none; }
@media (max-width: 560px) { .intake-form .form-row { grid-template-columns: 1fr; } }

@media (max-width: 720px) {
  .booking-grid { grid-template-columns: 1fr; }
}

/* ===== Contact ===== */
.section-contact { max-width: none; }
.contact-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  border-radius: 30px;
  padding: clamp(34px, 6vw, 64px);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.contact-card .eyebrow { color: var(--yellow); }
.contact-card h2 { color: #fff; }
.contact-card .section-lead { color: rgba(255,255,255,0.92); }
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 10px; }
.contact-method {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-decoration: none;
  color: #fff;
  display: grid;
  gap: 4px;
  transition: background 0.2s, transform 0.15s;
}
.contact-method:hover { background: rgba(255,255,255,0.24); transform: translateY(-3px); }
.contact-emoji { font-size: 1.8rem; }
.contact-label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; font-weight: 700; }
.contact-value { font-weight: 800; font-family: var(--font-head); font-size: 1.05rem; word-break: break-word; }
.contact-area { margin-top: 26px; font-weight: 700; }

/* ===== Footer ===== */
.footer { text-align: center; padding: 40px 20px; color: var(--ink-soft); }
.footer p { margin: 4px 0; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--ink); }
.footer-logo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; box-shadow: 0 2px 8px rgba(43, 36, 64, 0.18); }
.footer-fine { font-size: 0.9rem; }

/* ===== Responsive ===== */
/* Nav collapses to a menu a bit earlier so the full link row never wraps. */
@media (max-width: 1120px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--cream);
    padding: 14px clamp(18px, 5vw, 56px) 22px;
    gap: 4px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
}
@media (max-width: 860px) {
  .about-grid, .koda-card { grid-template-columns: 1fr; }
  .about-photo .about-thumbs > * { aspect-ratio: 3/2; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-featured, .price-featured:hover { transform: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .koda-stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
}

/* ===== Lightbox (photo popup) ===== */
img.zoomable { cursor: zoom-in; }
.gallery-item.zoomable:focus-visible,
img.zoomable:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 16, 30, 0.9);
  backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 92vw;
  max-height: 82vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  animation: lb-pop 0.2s ease;
}
@keyframes lb-pop { from { transform: scale(0.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-caption {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 0 24px;
}
.lightbox-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.lightbox-btn:hover { background: rgba(255, 255, 255, 0.32); transform: scale(1.06); }
.lightbox-close { top: 20px; right: 20px; font-size: 1.9rem; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.06); }
@media (max-width: 520px) {
  .lightbox-btn { width: 42px; height: 42px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}
