/* ==========================================================================
   33 Wellington Street — site styles
   Mobile-first. Light, bold, generous whitespace. One green accent.
   Light theme only.
   ========================================================================== */

:root {
  --ink: #1a2420;
  --ink-soft: #4c5a52;
  --ink-faint: #75837a;
  --paper: #fbfdfb;
  --paper-alt: #f2f7f3;
  --card: #ffffff;
  --line: #dde8de;
  --accent: #3f7d54;        /* light-green palette — AA on white (4.9:1) */
  --accent-dark: #33663f;
  --accent-tint: #eaf3ec;
  --ok: #2e7d4f;
  --warn-bg: #f2f7f3;
  --radius: 14px;
  --radius-sm: 10px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- type: big, confident, mobile-first ---------- */

h1, h2, h3 { line-height: 1.08; letter-spacing: -0.025em; }

h1 {
  font-size: clamp(2.35rem, 8.5vw, 4.4rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.75rem, 6vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 0.9rem;
  max-width: 22ch;
}
h3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -0.01em; }

.kicker {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.lede {
  font-size: clamp(1.1rem, 4vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 36em;
}

.muted { color: var(--ink-soft); }
.small { font-size: 0.9rem; }

/* ---------- header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 253, 251, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.brand:hover { text-decoration: none; }
.brand .brand-no { color: var(--accent); }

.site-nav { display: flex; align-items: center; gap: 20px; }
.site-nav a { color: var(--ink-soft); font-size: 0.95rem; font-weight: 550; }
.site-nav a:hover { color: var(--ink); text-decoration: none; }
.site-nav a.btn-primary { color: #fff; }
.site-nav a.btn-primary:hover { color: #fff; }
.site-nav .nav-links { display: none; gap: 22px; }

@media (min-width: 720px) {
  .site-nav .nav-links { display: flex; }
  .site-header .container { padding-top: 16px; padding-bottom: 16px; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-primary:disabled { background: var(--ink-faint); cursor: not-allowed; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: #cbdccf;
}
.btn-ghost:hover { border-color: var(--ink-faint); }

.btn-small { padding: 9px 18px; font-size: 0.9rem; }

/* ---------- sections ---------- */

.section { padding: 68px 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-alt { background: var(--paper-alt); }
.section-alt .kicker { color: var(--accent-dark); }
.section-alt .lede a { color: var(--accent-dark); }

@media (min-width: 720px) {
  .section { padding: 112px 0; }
}

/* ---------- hero ---------- */

.hero { padding: 52px 0 0; }

.hero-intro { text-align: center; max-width: 840px; }

.hero h1 { margin-bottom: 1.1rem; }
.hero .lede { margin-bottom: 1.9rem; margin-left: auto; margin-right: auto; }
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: center;
}
.hero-ctas .btn-primary { padding: 16px 34px; font-size: 1.05rem; }

.hero-stats {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  list-style: none;
}
.hero-stats li {
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--ink-soft);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  white-space: nowrap;
}
.hero-stats li strong { color: var(--ink); font-weight: 800; }

.hero-photo {
  width: 100%;
  height: clamp(340px, 62vh, 760px);
  object-fit: cover;
  margin-top: 40px;
}

@media (min-width: 860px) {
  .hero { padding: 96px 0 0; }
  .hero-photo { margin-top: 72px; }
}

/* ---------- grids ---------- */

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .grid-2, .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* "Everything included" — clean two-column split list (single column on small mobile) */
.amenities {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 0 40px;
  grid-template-columns: 1fr;
}
.amenities li {
  position: relative;
  padding: 13px 0 13px 30px;
  font-size: 0.98rem;
  font-weight: 550;
  border-bottom: 1px solid var(--line);
}
.amenities li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--accent);
  font-weight: 800;
}
@media (min-width: 560px) {
  .amenities { grid-template-columns: 1fr 1fr; }
  .amenities li { font-size: 1rem; }
}

/* ---------- pricing table ---------- */

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

table.pricing {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-width: 480px;
}
table.pricing th, table.pricing td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
table.pricing thead th {
  background: var(--accent-tint);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
table.pricing tbody tr:last-child td { border-bottom: none; }
table.pricing td.price { font-weight: 800; font-size: 1.08rem; font-variant-numeric: tabular-nums; }
table.pricing td .slot-hours { display: block; font-size: 0.85rem; color: var(--ink-faint); font-weight: 400; }

.pricing-note { margin-top: 14px; font-size: 0.88rem; color: var(--ink-faint); max-width: 60ch; }

/* ---------- rules strip ---------- */

.rules { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .rules { grid-template-columns: repeat(3, 1fr); } }
.rule {
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius-sm);
  background: var(--card);
  padding: 20px 22px;
}
.rule strong { display: block; font-size: 1.05rem; letter-spacing: -0.01em; margin-bottom: 0.3rem; }
.rule p { font-size: 0.93rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */

.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 17px 20px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--accent); font-weight: 800; }
.faq details[open] summary::after { content: "–"; }
.faq details .faq-body { padding: 0 20px 18px; color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- location ---------- */

.location-facts { list-style: none; display: grid; gap: 12px; margin-top: 1.25rem; }
.location-facts li { padding-left: 1.5em; position: relative; }
.location-facts li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 800;
}

.location-media { margin-top: 1.75rem; }
.location-media .photo { aspect-ratio: 4 / 3; }
.location-media a { display: block; border-radius: var(--radius); }
/* map.jpg is a raw Maps screenshot — crop the app sidebar out of the cover window */
.location-media .photo-map { object-position: 72% center; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 56px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.site-footer .cols { display: grid; gap: 28px; }
@media (min-width: 720px) { .site-footer .cols { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer h3 { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.7rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 6px; }
.site-footer .fineprint { margin-top: 32px; font-size: 0.82rem; color: var(--ink-faint); }

/* ---------- sticky mobile book bar ---------- */

.mobile-book-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.mobile-book-bar .bar-price { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.3; }
.mobile-book-bar .bar-price strong { display: block; font-size: 1.02rem; color: var(--ink); font-weight: 800; }
.mobile-book-bar .btn { padding: 12px 26px; white-space: nowrap; }

body.has-book-bar { padding-bottom: 84px; }

@media (min-width: 720px) {
  .mobile-book-bar { display: none; }
  body.has-book-bar { padding-bottom: 0; }
}

/* ---------- prose pages (terms / house rules) ---------- */

.prose { max-width: 720px; margin: 0 auto; }
.prose h1 { font-size: clamp(2.1rem, 7vw, 3.2rem); margin-bottom: 0.5rem; }
.prose h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); margin-top: 2.4rem; }
.prose h3 { margin-top: 1.4rem; margin-bottom: 0.4rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose p { margin-bottom: 0.9rem; }
.prose ol, .prose ul { margin: 0 0 1rem 1.4rem; }
.prose li { margin-bottom: 0.45rem; }
.prose strong { color: var(--ink); }
.prose .table-wrap { margin-bottom: 1rem; }
.prose table {
  width: 100%; min-width: 420px;
  border-collapse: collapse; background: var(--card);
  border: 1px solid var(--line); font-size: 0.94rem;
}
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.prose thead th { background: var(--accent-tint); }

.notice {
  background: var(--warn-bg);
  border: 1px solid #cfe0d3;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 1.2rem 0 2rem;
}

/* ---------- booking page ---------- */

.book-main { padding: 28px 0 68px; }
@media (min-width: 720px) { .book-main { padding: 56px 0 112px; } }

.book-head { margin-bottom: 20px; }
.book-head h1 { font-size: clamp(1.9rem, 7vw, 3.2rem); margin-bottom: 0.35rem; }
.book-head .book-sub { font-size: 0.95rem; color: var(--ink-soft); max-width: 44em; }
@media (min-width: 720px) {
  .book-head { margin-bottom: 36px; }
  .book-head .book-sub { font-size: 1.05rem; }
}

.book-layout { display: grid; gap: 24px; }
@media (min-width: 900px) {
  .book-layout { grid-template-columns: 1.15fr 1fr; gap: 32px; align-items: start; }
}

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
}
@media (min-width: 560px) { .panel { padding: 26px; } }

.panel h2 { font-size: 1.2rem; margin-bottom: 1rem; max-width: none; }
.panel .step-no {
  display: inline-flex;
  width: 26px; height: 26px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  margin-right: 9px;
  vertical-align: 2px;
}

/* calendar */

.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.cal-header .cal-title { font-weight: 800; font-size: 1.02rem; }
.cal-nav {
  background: none; border: 1px solid var(--line); border-radius: 10px;
  width: 40px; height: 40px; font-size: 1.05rem; cursor: pointer; color: var(--ink);
}
.cal-nav:hover { border-color: var(--ink-faint); }
.cal-nav:disabled { opacity: 0.35; cursor: not-allowed; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  padding: 5px 0;
  text-transform: uppercase;
}
.cal-day {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid transparent;
  border-radius: 9px;
  background: none;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 550;
  color: var(--ink);
  cursor: pointer;
}
.cal-day:hover:not(:disabled) { border-color: var(--accent); }
.cal-day:disabled { color: #bfcbc2; cursor: default; font-weight: 400; }
.cal-day.is-selected { background: var(--accent); color: #fff; font-weight: 800; }
.cal-day.has-busy::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 5px;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.cal-day.is-selected.has-busy::after { background: #fff; }
/* Fully booked: struck through and unselectable — distinct from a past date. */
.cal-day.is-full { color: #bfcbc2; text-decoration: line-through; }

.date-busy { display: block; margin-top: 4px; color: var(--ink-faint); }

.cal-legend { margin-top: 10px; font-size: 0.8rem; color: var(--ink-faint); }
.cal-legend .dot {
  display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); margin-right: 5px; vertical-align: 2px;
}

.availability-fallback {
  margin-top: 12px;
  background: var(--warn-bg);
  border: 1px solid #cfe0d3;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* forms */

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.field input, .field select {
  width: 100%;
  padding: 12px 13px;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
}
.field input:focus, .field select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.field-row { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }

.slot-options { display: grid; gap: 8px; margin-bottom: 16px; }
.slot-option {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  cursor: pointer;
  background: #fff;
}
.slot-option:has(input:checked) { border-color: var(--accent); background: var(--accent-tint); }
.slot-option input { accent-color: var(--accent); }
.slot-option .slot-label { font-weight: 700; font-size: 0.96rem; }
.slot-option .slot-sub { font-size: 0.82rem; color: var(--ink-faint); margin-left: auto; text-align: right; }
/* A package that can't run on the chosen date. It has to read as OUT at a
   glance — greyed alone was mistaken for "the whole day is blocked". */
.slot-option.is-unavailable {
  background: #f4f4f1;
  border-color: #e2e2dc;
  border-style: dashed;
  cursor: not-allowed;
}
.slot-option.is-unavailable .slot-label,
.slot-option.is-unavailable .slot-sub {
  color: #a0a5a0;
  text-decoration: line-through;
}
.slot-option.is-unavailable input { opacity: 0.35; }
.slot-option .slot-flag:empty { display: none; }
.slot-option .slot-flag {
  flex-basis: 100%;
  margin-top: 6px;
  padding: 4px 9px;
  border-radius: 6px;
  background: #fbeee2;
  color: #8a4f22;
  font-size: 0.78rem;
  font-weight: 700;
}

/* Bump-in rule, stated where hours are chosen (mirrors terms 2.4). */
.bump-note {
  margin: 0 0 14px;
  padding: 9px 11px;
  border-left: 3px solid var(--accent);
  background: var(--accent-tint);
  border-radius: 0 6px 6px 0;
  font-size: 0.83rem;
  line-height: 1.45;
  color: var(--ink);
}

/* Fully-booked day marker used in the calendar legend. */
.legend-full {
  display: inline-block;
  min-width: 1.4em;
  text-align: center;
  color: #bfcbc2;
  text-decoration: line-through;
  font-weight: 550;
}

.agree-row {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.92rem; color: var(--ink-soft);
  margin: 18px 0;
}
.agree-row input { margin-top: 4px; accent-color: var(--accent); }

.price-line {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--line);
  margin-top: 18px; padding-top: 16px;
}
.price-line .amount { font-size: 1.9rem; font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.price-line .label { font-size: 0.9rem; color: var(--ink-faint); }

.form-error {
  display: none;
  background: #fdeeee;
  border: 1px solid #f0cccc;
  color: #8c2f2f;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.form-error.is-visible { display: block; }

.slot-warning {
  display: none;
  background: var(--warn-bg);
  border: 1px solid #cfe0d3;
  color: var(--ink-soft);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.slot-warning.is-visible { display: block; }

.hidden { display: none !important; }

/* ---------- status pages ---------- */

.status-page { max-width: 560px; margin: 0 auto; text-align: center; padding: 96px 20px; }
.status-page .status-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem; color: #fff;
}
.status-page .status-icon.ok { background: var(--ok); }
.status-page .status-icon.neutral { background: var(--ink-faint); }
.status-page h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); margin-bottom: 0.8rem; }
.status-page p { color: var(--ink-soft); margin-bottom: 1rem; }
.status-page .actions { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- photography ---------- */

.photo { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.photo-wide { aspect-ratio: 16 / 9; }

/* floor plan figure */
.floorplan {
  margin: 2.75rem auto 0;
  max-width: 560px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.floorplan img { width: 100%; height: auto; }
.floorplan figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-faint);
}

/* use-case cards with photos */
.usecase-grid { margin-top: 2rem; gap: 18px; }
@media (min-width: 860px) { .usecase-grid { gap: 22px; } }
.usecase {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.usecase img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.usecase figcaption { padding: 16px 18px 18px; }
.usecase h3 { margin-bottom: 0.3rem; }
.usecase p { color: var(--ink-soft); font-size: 0.93rem; }

/* ---------- swipeable gallery carousel ---------- */

.carousel {
  position: relative;
  margin-top: 2.25rem;
}
.carousel-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding: 0 20px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 auto;
  width: min(88vw, 900px);
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
.carousel-slide img {
  width: 100%;
  height: 40vh;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}
@media (min-width: 720px) {
  .carousel-slide img { height: 60vh; min-height: 420px; max-height: 720px; }
  .carousel-track { gap: 16px; padding: 0 max(20px, calc((100vw - 1120px) / 2 + 20px)); }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
  font-family: var(--font);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(26, 36, 32, 0.12);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.carousel-btn:hover { background: #fff; border-color: var(--accent); color: var(--accent-dark); }
.carousel-btn.prev { left: 18px; }
.carousel-btn.next { right: 18px; }
@media (min-width: 720px) {
  .carousel-btn { display: flex; }
  .carousel-btn.prev { left: 34px; }
  .carousel-btn.next { right: 34px; }
}

.carousel-count {
  margin: 14px 20px 0;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}

/* Mobile: fit all three pricing columns on screen — never hide the weekend column */
@media (max-width: 480px) {
  table.pricing { min-width: 0; width: 100%; }
  table.pricing th, table.pricing td { padding: 10px 6px; font-size: 0.82rem; }
  table.pricing td.price { font-size: 0.95rem; }
  table.pricing td .slot-hours { font-size: 0.72rem; }
}
