/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --ink:          #0f2e2f;
  --muted:        #4c6b6a;
  --line:         #d2e1e0;
  --surface:      #f5faf9;
  --accent:       #0D5F63;  /* deep teal */
  --accent-dark:  #094a4e;
  --fuchsia:      #E91E63;  /* brand accent */
  --fuchsia-dark: #c2154f;
  --cream:        #f7f3ec;
}

/* ── Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('/static/walensee-wide.jpg') center / cover no-repeat;
  opacity: .06;
  z-index: -1;
  pointer-events: none;
}
img { max-width: 100%; display: block; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.1; }
h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-weight: 700; font-size: 1.05rem; }

/* ── Site header ────────────────────────────────────────── */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 60px);
  background: white;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 100;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}
.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  background: url('/static/logo-emblem-color.png') center / contain no-repeat;
}
.brand-name { letter-spacing: -.01em; }
.site-header nav { display: flex; gap: 20px; align-items: center; }
.site-header nav a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: .9rem; }
.site-header nav a:hover { color: var(--ink); }

/* Home page: transparent header floats over hero */
.page-home .site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: transparent;
  border-bottom-color: rgba(255,255,255,.12);
}
.page-home .brand,
.page-home .site-header nav a { color: white; }
.page-home .site-header nav a:hover { color: rgba(255,255,255,.7); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  min-height: 100vh;
  display: grid;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 120px clamp(20px, 6vw, 80px) 80px;
  color: white;
  background-color: var(--accent-dark);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(10,26,22,.54) 0%, rgba(10,26,22,.22) 52%, rgba(10,26,22,.62) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.hero-dot.active { background: white; transform: scale(1.35); }
/* Touch devices: keep the dot small but give it a finger-sized hit area. */
@media (hover: none) {
  .hero-dot {
    width: 22px; height: 22px;
    padding: 7px;
    background-clip: content-box;
  }
}
.hero-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  margin-bottom: 22px;
}
.hero h1 {
  font-weight: 900;
  font-size: clamp(4rem, 13vw, 9.5rem);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero h1 + .script-tagline { margin-top: -10px; }
.script-tagline {
  font-family: 'Yellowtail', 'Brush Script MT', cursive;
  color: var(--fuchsia);
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1;
  margin: 0 0 18px;
}
.hero .script-tagline {
  color: var(--fuchsia);
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.hero .lead {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: rgba(255,255,255,.84);
  margin: 0 auto 20px;
  max-width: 480px;
}
.hero-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 40px;
}
.hero-pill {
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.84);
  letter-spacing: .02em;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  background: var(--fuchsia);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(233,30,99,.42);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-hero:hover { transform: translateY(-2px); background: var(--fuchsia-dark); box-shadow: 0 10px 30px rgba(233,30,99,.5); }
/* Tighter hero rhythm on phones so the CTA stays above the fold. */
@media (max-width: 600px) {
  /* Shorter hero on phones so the landscape photo crops less (zoomed out). */
  .hero { min-height: 76svh; min-height: 76vh; padding: 84px 22px 56px; }
  /* Show the full carousel photo (no cover-zoom/crop) on phones. */
  .hero-slide { background-size: contain; background-repeat: no-repeat; background-position: center; }
  .hero-eyebrow { margin-bottom: 14px; }
  .hero h1 { margin-bottom: 14px; }
  .hero-pills { margin-bottom: 28px; }
}

/* ── Info bar ───────────────────────────────────────────── */
.info-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #000;
}
.info-bar-item {
  padding: clamp(20px, 3.5vw, 36px) clamp(20px, 4vw, 48px);
  border-right: 1px solid rgba(255,255,255,.08);
}
.info-bar-item:last-child { border-right: none; }
.info-bar-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  margin-bottom: 5px;
}
.info-bar-value {
  font-size: clamp(.92rem, 1.8vw, 1.05rem);
  font-weight: 500;
  color: white;
}
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  background: #46d39a;
  box-shadow: 0 0 0 0 rgba(70,211,154,.7);
  animation: live-pulse 2s infinite;
  vertical-align: middle;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(70,211,154,.6); }
  70%  { box-shadow: 0 0 0 7px rgba(70,211,154,0); }
  100% { box-shadow: 0 0 0 0 rgba(70,211,154,0); }
}
.info-bar-note {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-left: 4px;
  cursor: help;
}
.weather-emoji {
  margin-right: 6px;
  font-size: 1.05em;
  vertical-align: middle;
}
@media (max-width: 880px) {
  .info-bar { grid-template-columns: repeat(2, 1fr); }
  .info-bar-item:nth-child(2n) { border-right: none; }
}
@media (max-width: 600px) {
  /* Compact 2-up grid on phones instead of one tall stacked column. */
  .info-bar-item { padding: 18px 16px; }
  .info-bar-item:nth-child(2n) { border-right: none; }
  .info-bar-item:nth-child(1), .info-bar-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .info-bar-label { font-size: .64rem; }
}

/* ── Photo strip ────────────────────────────────────────── */
.photo-strip { display: flex; height: 300px; }
.strip-photo {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-color: var(--accent);
  transition: flex .65s cubic-bezier(.25,.46,.45,.94);
  cursor: pointer;
}
.strip-photo:hover { flex: 2.8; }
@media (max-width: 640px) {
  .photo-strip { height: 150px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .strip-photo { flex: 0 0 75vw; scroll-snap-align: start; }
  .strip-photo:hover { flex: 0 0 75vw; }
}

/* ── Experience split ───────────────────────────────────── */
.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.experience-photo {
  background:
    url("/static/walensee-umbrella.jpg") center / cover no-repeat;
  background-color: var(--accent);
  min-height: 540px;
}
.experience-copy {
  background: var(--cream);
  padding: clamp(48px, 8vw, 96px) clamp(32px, 7vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fuchsia);
}
.experience-copy h2 { color: var(--ink); }
.experience-copy p { color: var(--muted); font-size: 1.05rem; max-width: 44ch; }
@media (max-width: 800px) {
  .experience { grid-template-columns: 1fr; }
  .experience-photo { min-height: 220px; }
}

/* ── Home availability ──────────────────────────────────── */
.home-availability {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 5vw, 52px);
  align-items: center;
  padding: clamp(42px, 7vw, 86px) clamp(20px, 5vw, 64px);
  background: var(--surface);
}
.home-availability-copy {
  display: grid;
  gap: 14px;
}
.home-availability-copy h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}
.home-availability-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.home-calendar-panel {
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: white;
  padding: clamp(16px, 3vw, 26px);
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
@media (max-width: 800px) {
  .home-availability { grid-template-columns: 1fr; }
}

/* ── Steps ──────────────────────────────────────────────── */
.steps {
  padding: clamp(60px, 9vw, 112px) clamp(20px, 5vw, 60px);
  background: var(--surface);
  text-align: center;
}
.steps-header { max-width: 520px; margin: 0 auto 56px; }
.steps-header h2 { margin-bottom: 12px; }
.steps-header p { color: var(--muted); font-size: 1.05rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.step-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  text-align: left;
}
.step-photo {
  height: 210px;
  background-size: cover;
  background-position: center;
  background-color: var(--accent);
}
.step-body { padding: 24px 22px; }
.step-num {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.step-body h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step-body p { color: var(--muted); font-size: .92rem; }
@media (max-width: 720px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .step-photo { height: 150px; }
}

/* ── CTA band ───────────────────────────────────────────── */
.cta-band {
  min-height: 56vh;
  display: grid;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 60px);
  color: white;
  background:
    linear-gradient(170deg, rgba(10,26,22,.52) 0%, rgba(10,26,22,.28) 100%),
    url("/static/stock-27442752.jpg") center / cover no-repeat;
  background-color: var(--accent-dark);
}
.cta-band-inner { max-width: 560px; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.78); font-size: 1.1rem; margin: 0 auto 36px; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq {
  padding: clamp(60px, 9vw, 112px) clamp(20px, 5vw, 60px);
  background: var(--surface);
}
.faq-header { max-width: 520px; margin: 0 auto 48px; text-align: center; }
.faq-header h2 { margin: 8px 0 12px; }
.faq-header p { color: var(--muted); font-size: 1.05rem; }
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--ink);
  padding: 18px 0;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p { color: var(--muted); font-size: .96rem; padding: 0 0 20px; max-width: 64ch; }

/* ── Site footer ────────────────────────────────────────── */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
  padding: 24px clamp(20px, 5vw, 60px);
  background: #000;
  color: rgba(255,255,255,.38);
  font-size: .8rem;
  text-align: center;
}
.site-footer a {
  color: rgba(255,255,255,.68);
  text-decoration: none;
}
.site-footer a:hover { color: white; }
.footer-brand {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.footer-mark {
  width: 56px;
  height: 56px;
  background: url('/static/logo-emblem-color.png') center / contain no-repeat;
}
.footer-script {
  font-family: 'Yellowtail', 'Brush Script MT', cursive;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--fuchsia);
}
.footer-meta { color: rgba(255,255,255,.55); }

/* ── Ambient page hero (book / confirm / cancel) ────────── */
.page-hero {
  min-height: 34vh;
  display: grid;
  align-items: flex-end;
  padding: clamp(32px, 6vw, 64px) clamp(20px, 5vw, 60px);
  color: white;
  background:
    linear-gradient(180deg, rgba(10,26,22,.26) 0%, rgba(10,26,22,.66) 100%),
    url("/static/stock-12300986.jpg") center / cover no-repeat;
  background-color: var(--accent-dark);
}
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
}
.page-hero-sub {
  color: rgba(255,255,255,.72);
  font-size: .97rem;
  margin-top: 8px;
}

/* Book page: taller hero, centred, different shot */
.book-hero {
  min-height: 62vh;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(170deg, rgba(10,26,22,.35) 0%, rgba(10,26,22,.18) 48%, rgba(10,26,22,.62) 100%),
    url("/static/stock-1763525704370.jpg") center / cover no-repeat;
}
.book-hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
.book-hero .page-hero-sub { font-size: 1.08rem; }
.legal-hero {
  background:
    linear-gradient(180deg, rgba(10,26,22,.22) 0%, rgba(10,26,22,.74) 100%),
    url("/static/walensee-lighthouse.jpg") center / cover no-repeat;
  background-color: var(--accent-dark);
}

/* ── Page card ──────────────────────────────────────────── */
.page-card {
  max-width: 800px;
  margin: -52px auto 80px;
  position: relative;
  z-index: 10;
  background: white;
  border-radius: 20px;
  padding: clamp(28px, 5vw, 52px);
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
}
.page-card.narrow { max-width: 620px; }

.legal-card {
  display: grid;
  max-width: 900px;
  gap: 30px;
}
.legal-intro {
  max-width: 620px;
  padding-bottom: 10px;
}
.legal-intro h2 {
  margin: 6px 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.legal-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.legal-panel {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}
.legal-section {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.legal-card h3 {
  margin-bottom: 10px;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.legal-card p {
  max-width: 72ch;
  color: var(--muted);
}
.legal-card a { color: var(--accent-dark); }
@media (max-width: 700px) {
  .legal-details { grid-template-columns: 1fr; }
  .legal-panel { min-height: auto; }
}

/* ── Buttons ────────────────────────────────────────────── */
.button, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s;
}
.button:hover, button:hover { background: var(--accent-dark); }
.button.secondary {
  background: white;
  color: var(--accent-dark);
  border: 1.5px solid var(--line);
}
.button.secondary:hover { border-color: var(--accent); color: var(--accent); background: white; }
button.danger { background: #d64545; }
button.danger:hover { background: #b33030; }

/* ── Forms ──────────────────────────────────────────────── */
label { display: grid; gap: 6px; font-weight: 600; font-size: .88rem; color: var(--ink); }
input:not([type=checkbox]):not([type=submit]),
textarea,
select {
  width: 100%;
  min-height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  font: inherit;
  color: var(--ink);
  background: white;
  transition: border-color .15s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); }
textarea { min-height: 80px; resize: vertical; }

.form-section { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.date-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
}
.section-divider { border: none; border-top: 1px solid var(--line); margin: 28px 0; }
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

/* ── Book page ──────────────────────────────────────────── */
.book-card { max-width: 1280px; }

.availability-calendar {
  display: grid;
  gap: 12px;
}
.calendar-head {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
}
.calendar-head h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}
.calendar-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  color: var(--accent-dark);
  font-size: 1.6rem;
  font-weight: 800;
  text-decoration: none;
  background: white;
}
.calendar-nav:hover { border-color: var(--accent); color: var(--accent); }
.calendar-nav-disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}
.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}
.calendar-weekdays span {
  min-width: 0;
  text-align: center;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.calendar-day {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  aspect-ratio: 1 / 1;
  border: 1.5px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.calendar-day:hover { border-color: var(--accent-dark); }
.cal-day-free { background: #dff3e5; }
.cal-day-partial { background: #ffe3ad; }
.cal-day-full { background: #f5b9b2; }
.cal-day-closed,
.cal-day-unavailable { background: #e7eaee; color: var(--muted); }
.cal-day-muted { opacity: .48; }
.cal-day-disabled {
  opacity: .32;
  cursor: default;
  pointer-events: none;
}
.cal-day-selected {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(13,95,99,.14);
}
.cal-day-number { line-height: 1; }
.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 700;
}
.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.legend-free { background: #80c995; }
.legend-partial { background: #f5b84b; }
.legend-full { background: #df6358; }
.legend-closed { background: #b9c0c8; }

/* ── Single product card ── */
.product-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}
.product-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  background-color: var(--accent-dark);
  flex-shrink: 0;
}
.product-img:not([style]) {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}
.product-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  flex: 1;
}
.product-meta {
  display: flex;
  justify-content: flex-end;
}
.product-avail {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 500;
}
.product-price {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent-dark);
  line-height: 1;
}
.product-price span {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
}
.product-includes {
  font-size: .9rem;
  color: var(--muted);
  padding: 10px 14px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--line);
}
.product-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1.5px solid var(--line);
}
.product-stepper-label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}
.product-stepper-controls {
  display: flex;
  align-items: center;
}

/* Gear grid */
/* ── Book split layout ── */
.book-split {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 8px;
}
.book-split-left { min-width: 0; }
.book-split-right { min-width: 0; }

.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 8px;
}
.gear-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.gear-card:hover { border-color: #a8ccc8; box-shadow: 0 4px 18px rgba(0,0,0,.1); }
.gear-selected {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(13,95,99,.12), 0 4px 18px rgba(0,0,0,.1) !important;
}

/* Photo band */
.gear-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--accent-dark);
  flex-shrink: 0;
}
/* No image set: clean teal gradient placeholder */
.gear-card-img:not([style]) {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

/* Card body */
.gear-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 16px 14px;
  flex: 1;
}
.gear-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}
.gear-badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(13,95,99,.1);
  padding: 3px 8px;
  border-radius: 20px;
}
.gear-avail {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
}
.gear-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.gear-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
}
.gear-price span { font-size: .78rem; font-weight: 500; color: var(--muted); }
.gear-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.gear-stepper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  margin-top: 10px;
}
.step-btn {
  width: 34px;
  min-height: 34px;
  padding: 0;
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background .1s, border-color .1s;
}
.step-btn:hover { background: var(--line); border-color: #b0ccc8; }
.step-val {
  min-width: 38px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  user-select: none;
}

/* Submit row */
.book-fields { margin-bottom: 20px; }
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: -4px 0 18px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.4;
}
.consent-row input {
  margin-top: 3px;
  flex: 0 0 auto;
}
.book-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  background: var(--surface);
  border-radius: 12px;
  border: 1.5px solid var(--line);
}
.book-submit-row button {
  padding: 12px 32px;
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.book-total {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.book-total-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.book-total-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
}

.no-items {
  text-align: center;
  color: var(--muted);
  padding: 32px 20px;
  background: var(--surface);
  border-radius: 10px;
  border: 1.5px dashed var(--line);
}

/* ── Flash messages ─────────────────────────────────────── */
.flash-stack { max-width: 820px; margin: 16px auto 0; padding: 0 20px; }
.flash {
  padding: 13px 16px;
  border-radius: 8px;
  background: white;
  border: 1.5px solid var(--line);
  font-weight: 500;
  font-size: .93rem;
}
.flash-error { border-color: #d64545; color: #8a1f1f; background: #fff5f5; }
.flash-success { border-color: #1a9952; color: #0f5c30; background: #f0faf4; }

/* ── Booking summary (confirmation / cancel) ────────────── */
.booking-ref-chip {
  display: inline-block;
  padding: 4px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink);
  margin-bottom: 8px;
}
.booking-date { color: var(--muted); font-size: .93rem; margin-bottom: 24px; }
.item-lines { list-style: none; display: grid; gap: 8px; margin-bottom: 16px; }
.item-lines li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  background: var(--surface);
  border-radius: 8px;
  font-weight: 500;
  font-size: .95rem;
}
.item-lines li .price { color: var(--accent-dark); font-weight: 700; }
.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--ink);
  color: white;
  border-radius: 10px;
  font-weight: 700;
  margin-bottom: 20px;
}
.total-row .amount { font-size: 1.25rem; }
.pickup-note {
  color: var(--muted);
  font-size: .88rem;
  padding: 12px 14px;
  background: var(--surface);
  border-radius: 8px;
  margin-bottom: 20px;
}
.cancel-link {
  display: block;
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
  text-decoration: none;
  margin-top: 16px;
}
.cancel-link:hover { color: var(--ink); text-decoration: underline; }
.cancel-warning {
  padding: 14px 16px;
  background: #fffbf0;
  border: 1.5px solid #f5c842;
  border-radius: 10px;
  color: #7a4d00;
  font-size: .93rem;
  margin-bottom: 20px;
}
.already-cancelled { text-align: center; padding: 24px 0; color: var(--muted); }

/* ── Admin ──────────────────────────────────────────────── */
.page { max-width: 980px; margin: 0 auto; padding: clamp(24px, 5vw, 56px) 20px; }
.narrow { max-width: 680px; }
.booking-form { display: grid; gap: 18px; margin: 24px 0; }
.form-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.date-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  align-items: end;
  gap: 12px;
  margin: 24px 0;
}
.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 24px; }
.table-wrap { overflow-x: auto; background: white; border: 1px solid var(--line); border-radius: 10px; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: .93rem; }
th { color: var(--muted); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.checkline { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.checkline input { width: auto; min-height: auto; }

/* Booking-page calendar — compact */
.book-card .availability-calendar { max-width: 420px; }
.book-card .calendar-head { grid-template-columns: 36px 1fr 36px; }
.book-card .calendar-nav { min-height: 36px; font-size: 1.3rem; }
.book-card .calendar-head h2 { font-size: 1rem; }
.book-card .calendar-weekdays span { font-size: .65rem; }
.book-card .calendar-day { font-size: .78rem; border-radius: 6px; }
.book-card .calendar-legend { font-size: .72rem; gap: 10px; }

@media (max-width: 860px) {
  .book-split { grid-template-columns: 1fr; }
  .book-card .availability-calendar { max-width: 100%; }
}
@media (max-width: 720px) {
  .form-row, .form-grid, .date-form, .date-row { grid-template-columns: 1fr; }
  .book-submit-row { flex-direction: column; align-items: stretch; }
  .book-submit-row button { width: 100%; }
  .gear-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gear-grid { grid-template-columns: 1fr; }
}

/* ── Language switcher ── */
.lang-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: 16px;
}
.lang-code {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: inherit;
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.15s;
}
.lang-code:hover { opacity: 0.85; }
.lang-code.lang-active {
  opacity: 1;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── WhatsApp FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,.28);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide { transition: none; }
  .live-dot { animation: none; }
  .btn-hero, .button, button,
  .whatsapp-fab, .strip-photo, .gear-card { transition: none; }
}

/* ── Sticky mobile book bar (homepage, small screens only) ── */
.mobile-book-bar { display: none; }
@media (max-width: 720px) {
  .mobile-book-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1001;
    padding: 15px 24px;
    background: var(--accent);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(0,0,0,.28);
  }
  /* Lift the WhatsApp FAB above the book bar so they don't overlap. */
  .whatsapp-fab { bottom: 84px; right: 16px; }
  /* Keep the footer reachable above the fixed bar. */
  .page-home .site-footer { padding-bottom: 88px; }
}

/* ── Admin dashboard ── */
.admin-dash { max-width: 1080px; }
.admin-dash .toolbar-actions { display: flex; gap: 10px; align-items: center; }
.admin-dash .toolbar-actions form { margin: 0; }

.kpi-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.kpi {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kpi-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.kpi-value { font-size: 2.4rem; font-weight: 700; line-height: 1.05; color: var(--ink); }
.kpi-sub { font-size: .82rem; color: var(--muted); }
.kpi-hero { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); border-color: transparent; }
.kpi-hero .kpi-label, .kpi-hero .kpi-sub { color: rgba(255,255,255,.85); }
.kpi-hero .kpi-value { color: white; }
.kpi-hero.kpi-off { background: white; border-color: var(--line); }
.kpi-hero.kpi-off .kpi-label, .kpi-hero.kpi-off .kpi-sub { color: var(--muted); }
.kpi-hero.kpi-off .kpi-value { color: var(--line); }

.dash-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 24px;
}
.dash-card-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 16px; }
.dash-card-head h2 { font-size: 1.1rem; color: var(--ink); }
.dash-card .table-wrap { border: none; }
.dash-card .date-form { margin: 0 0 16px; }
.dash-empty { color: var(--muted); font-size: .92rem; }

.range-toggle { display: flex; gap: 6px; }
.range-pill {
  font-size: .78rem; font-weight: 600; padding: 5px 12px;
  border: 1.5px solid var(--line); border-radius: 999px;
  color: var(--muted); text-decoration: none;
}
.range-pill:hover { border-color: var(--accent); color: var(--accent); }
.range-active { background: var(--accent); border-color: var(--accent); color: white; }
.range-active:hover { color: white; }

.activity-headline { display: flex; gap: 40px; margin-bottom: 20px; }
.metric { display: flex; flex-direction: column; }
.metric-value { font-size: 1.9rem; font-weight: 700; color: var(--ink); line-height: 1; }
.metric-label { font-size: .8rem; color: var(--muted); }

.bar-chart {
  display: flex; align-items: flex-end; gap: 6px;
  height: 120px; padding: 8px 0 0;
  border-bottom: 1px solid var(--line); margin-bottom: 22px;
}
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
.bar { width: 100%; max-width: 34px; background: var(--accent); border-radius: 4px 4px 0 0; min-height: 2px; transition: background .15s; }
.bar-col:hover .bar { background: var(--accent-dark); }
.bar-label { font-size: .66rem; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; }

.activity-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 32px; }
.activity-panel h3 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 10px; }
.rank-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.rank-list li { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px solid var(--surface); font-size: .9rem; color: var(--ink); }
.rank-list li:last-child { border-bottom: none; }
.rank-count { font-weight: 700; color: var(--accent-dark); }

.status-tag { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 3px 9px; border-radius: 999px; }
.status-confirmed { background: #f0faf4; color: #0f5c30; }
.status-cancelled { background: #fff5f5; color: #8a1f1f; }

@media (max-width: 860px) {
  .kpi-row { grid-template-columns: 1fr 1fr; }
  .activity-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .kpi-row { grid-template-columns: 1fr 1fr; }
  .kpi-value { font-size: 1.9rem; }
}
