/* ============================================
   Haku Petsitting — Beachy + Pets theme
   Palette: white, teal, tan (sand)
   ============================================ */

:root {
  --white: #fdfcf9;
  --cream: #faf6ee;
  --sand: #e9d8b8;
  --sand-light: #f5ecd9;
  --teal: #2e9e9b;
  --teal-dark: #1f7472;
  --teal-light: #a8dedb;
  --teal-pale: #e3f4f3;
  --ink: #35504f;
  --ink-soft: #5d7a78;

  --font-display: 'Caveat', cursive;
  --font-body: 'Quicksand', sans-serif;

  --radius: 22px;
  --shadow: 0 8px 24px rgba(46, 158, 155, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

a { color: var(--teal); }

h1, h2, h3 { line-height: 1.2; }

.script {
  font-family: var(--font-display);
  color: var(--teal);
  font-weight: 600;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  /* Solid, not translucent+blurred — a see-through header looks fine over
     flat section colors, but smears anything busy (like the testimonial
     photo) into a washed-out grey band as it scrolls underneath. */
  background: var(--white);
  border-bottom: 1px solid var(--teal-pale);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo img { height: 58px; width: auto; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--teal-dark);
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
  border-bottom-color: var(--sand);
}

.nav-cta {
  background: var(--teal);
  color: #fff !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 999px;
  border-bottom: none !important;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--teal-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--teal-dark);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--teal-pale) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 6rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--ink);
  margin-bottom: 1rem;
}

.hero h1 .script { font-size: 1.15em; }

.hero p.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
  max-width: 32rem;
}

.hero-art { text-align: center; }

/* ---------- Hero photo collage ----------
   Two columns, no overlap: a tall 3:4 tile on the left, and a right column
   split into two 4:3 tiles. With a 4% gap, a left tile of 51.8% makes the
   right pair land on exactly 4:3, so every tile matches its source crop and
   object-fit never trims. Frames are drawn with box-shadow rings rather than
   borders, which keeps them outside the layout box — so restyling the frame
   never changes the crop. */
.hero-collage {
  position: relative;
  display: flex;
  gap: 4%;
  width: min(520px, 100%);
  margin: 0 auto;
}

.hero-collage .tile-duo {
  flex: 0 0 51.8%;
  aspect-ratio: 3 / 4;
}

.hero-collage .collage-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4%;
}

.hero-collage .collage-col .tile { flex: 1; }

/* soft sand blob behind the photos */
.hero-collage::before {
  content: '';
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  top: 4%;
  right: -13%;
  background: var(--sand);
  opacity: 0.55;
  border-radius: 50%;
  z-index: 0;
}

/* teal blob, bottom left */
.hero-collage::after {
  content: '';
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  bottom: -6%;
  left: -14%;
  background: var(--teal-light);
  opacity: 0.5;
  border-radius: 50%;
  z-index: 0;
}

.hero-collage .tile {
  margin: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fff;
}

/* Two stacked layers per tile. JS cross-fades between them on a timer, so the
   photos quietly rotate through the pools in js/script.js. */
.hero-collage .tile .shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.hero-collage .tile .shot.is-active { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .hero-collage .tile .shot { transition: none; }
}

/* ---------- Frame styles ----------
   Put one of these classes on .hero-collage to restyle all three frames at
   once. See frames.html for a side-by-side preview. Each is drawn with rings
   and pseudo-elements, so none of them re-crop the photo. */

/* 1. Clean — a thin white edge, the quietest option (default) */
.hero-collage .tile,
.hero-collage.frame-clean .tile {
  box-shadow: 0 0 0 6px #fff, 0 8px 22px rgba(46, 158, 155, 0.16);
}

/* 2. Polaroid — a deep white margin with a heavier foot, like a photo print */
.hero-collage.frame-polaroid { gap: 7%; }
.hero-collage.frame-polaroid .tile {
  box-shadow: 0 0 0 11px #fff, 0 10px 24px rgba(46, 158, 155, 0.2);
}
.hero-collage.frame-polaroid .tile::after {
  content: '';
  position: absolute;
  left: -11px;
  right: -11px;
  top: 100%;
  height: 20px;
  background: #fff;
}

/* 3. Colour block — a hard offset slab behind each photo, screen-print style */
.hero-collage.frame-block .tile {
  box-shadow: 12px 12px 0 0 var(--teal-light);
}
.hero-collage.frame-block .tile-top { box-shadow: 12px 12px 0 0 var(--sand); }
.hero-collage.frame-block .tile-bottom { box-shadow: 12px 12px 0 0 var(--teal); }

/* 4. Double outline — a white edge with a teal keyline just beyond it */
.hero-collage.frame-outline .tile {
  box-shadow: 0 0 0 7px #fff, 0 0 0 9px var(--teal), 0 8px 20px rgba(46, 158, 155, 0.16);
}

/* 5. Taped — scrapbook strips of washi tape across two corners */
.hero-collage.frame-tape { gap: 6%; }
.hero-collage.frame-tape .tile {
  box-shadow: 0 0 0 7px #fff, 0 6px 18px rgba(46, 158, 155, 0.18);
}
.hero-collage.frame-tape .tile::before,
.hero-collage.frame-tape .tile::after {
  content: '';
  position: absolute;
  width: 62px;
  height: 20px;
  background: rgba(168, 222, 219, 0.72);
  border-left: 2px dotted rgba(255, 255, 255, 0.65);
  border-right: 2px dotted rgba(255, 255, 255, 0.65);
  z-index: 4;
}
.hero-collage.frame-tape .tile::before {
  top: -8px;
  left: -18px;
  transform: rotate(-38deg);
}
.hero-collage.frame-tape .tile::after {
  bottom: -8px;
  right: -18px;
  transform: rotate(-38deg);
  background: rgba(233, 216, 184, 0.8);
}

/* 6. Hairline — no outer frame, just a fine white keyline inside the photo */
.hero-collage.frame-hairline .tile {
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.92), 0 10px 24px rgba(46, 158, 155, 0.2);
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }

.btn-secondary {
  background: var(--sand);
  color: var(--ink);
  margin-left: 0.8rem;
}

.btn-secondary:hover { background: var(--sand-light); transform: translateY(-2px); }

/* ---------- Wave dividers ---------- */
.wave {
  display: block;
  width: 100%;
  height: 70px;
  margin-bottom: -1px;
}

/* Sits inside a section rather than between two — used to cap the top and
   bottom of the full-bleed testimonials photo with the same curve style as
   the other section transitions, so the seams line up exactly with the
   solid-color sections directly above and below it. */
.wave-overlay {
  position: absolute;
  left: 0;
  right: 0;
  margin-bottom: 0;
  pointer-events: none;
}

.wave-overlay-top {
  top: 0;
  /* Must beat the slide's ::before darkening gradient (z-index 1), which
     otherwise paints over the wave's white cap — they tie on z-index and the
     gradient comes later in the DOM, leaving a grey veil above the curve.
     Same level as the bottom wave, which never had the problem. */
  z-index: 4;
}

.wave-overlay-bottom {
  bottom: 0;
  z-index: 4;
}

.wave svg { display: block; width: 100%; height: 100%; }

/* ---------- Sections ---------- */
section.block { padding: 4rem 0; }

.section-title {
  text-align: center;
  margin-bottom: 0.4rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.section-sub {
  text-align: center;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.bg-cream { background: var(--cream); }
.bg-teal-pale { background: var(--teal-pale); }
.bg-sand { background: var(--sand-light); }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.card:hover { transform: translateY(-4px); }

.card .icon { font-size: 2.6rem; margin-bottom: 0.8rem; }

.card h3 { margin-bottom: 0.6rem; color: var(--teal-dark); }

.card p { color: var(--ink-soft); font-size: 0.98rem; }

.card .price {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 0.3rem 1rem;
  border-radius: 999px;
}

/* ---------- Services (boxless, icon-led) ----------
   No card box — just a big icon with a centered title and blurb underneath,
   sitting straight on the section's own background. */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-icon {
  width: 150px;
  height: auto;
  margin-bottom: 1rem;
}

.service h3 { margin-bottom: 0.5rem; color: var(--teal-dark); }

.service p { color: var(--ink-soft); font-size: 0.98rem; max-width: 26rem; }

/* ---------- Animals I've cared for ---------- */
.animal-grid {
  /* Flexbox instead of grid so a half-empty last row (7 items) centers
     itself instead of hugging the left edge the way grid leftovers do. */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.animal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 130px;
  max-width: 160px;
}

.animal-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow);
  margin-bottom: 0.7rem;
}

.animal-card span { font-weight: 700; color: var(--teal-dark); }

/* ---------- Gallery strip ---------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.gallery-strip .ph {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}

.gallery-strip .ph img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Testimonials parallax carousel ----------
   The photo fills the *whole* section, edge to edge. Each slide has its own
   .carousel-bg layer, oversized (130% tall) and absolutely positioned so JS
   can translateY it a few px on scroll for a parallax drift without ever
   exposing an edge. Slides still page by sliding .carousel-track
   horizontally; the parallax offset is a separate transform applied to the
   bg layers themselves. */
.carousel {
  position: relative;
  width: 100%;
  min-height: 672px;
  overflow: hidden;
  background: var(--teal-pale);
}

.carousel-track {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
}

.carousel-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -15%;
  height: 130%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.carousel-slide::before {
  /* No card background anymore — the quote sits directly on the photo as
     white text, so this now carries the full legibility load. Strongest on
     the left where the text lives, fading out by ~70% so the photo still
     shows its true colour on the right. */
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10, 35, 35, 0.72) 0%, rgba(10, 35, 35, 0.5) 32%, rgba(10, 35, 35, 0.18) 55%, rgba(10, 35, 35, 0) 72%);
}

.carousel-card {
  /* Absolutely positioned so its content height never affects the photo —
     a long quote just makes a taller block of text, not a stretched
     background. No box of its own now: the dark gradient above is what
     keeps the white text readable. */
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(1.25rem, 6vw, 5rem);
  transform: translateY(-50%);
  width: min(480px, 82%);
  max-height: 74%;
  overflow-y: auto;
  color: #fff;
}

.carousel-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  color: #fff;
  display: block;
  /* line-height was squeezed to 0.4 to pull the quote mark tight to the text
     below it, but Caveat's curly-quote glyph has tall metrics at this size —
     that tight a line-height clipped it into two disconnected blobs instead
     of one mark. A normal line-height lets it render whole; the negative
     margin below pulls it back close to the paragraph. */
  line-height: 1;
  margin-bottom: -1.4rem;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.carousel-card p {
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.carousel-card .who {
  margin-top: 1.3rem;
  font-weight: 700;
  color: var(--sand);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s, opacity 0.2s;
  z-index: 3;
}

.carousel-arrow:hover { opacity: 0.8; transform: translateY(-50%) scale(1.12); }

.carousel-prev { left: 1.2rem; }
.carousel-next { right: 1.2rem; }

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.2rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(20, 58, 58, 0.15);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot:hover { background: #fff; }

.carousel-dot.is-active {
  background: var(--teal);
  box-shadow: none;
  transform: scale(1.25);
}

@media (max-width: 720px) {
  .carousel { min-height: 672px; }
  .carousel-card {
    top: auto;
    left: 0;
    /* Cleared above the exit wave (70px tall) so its curve never cuts into
       the card's own text. */
    bottom: 70px;
    width: 100%;
    max-height: 62%;
    max-width: none;
    transform: none;
    border-radius: 0;
    padding: 1.75rem 1.5rem 2rem;
  }
  .carousel-card p { font-size: 1.2rem; }
  .carousel-card::before { font-size: 4.5rem; }
  /* No box behind the text here either, so darken bottom-up (the card sits
     flush at the bottom on mobile) instead of desktop's left-to-right. */
  .carousel-slide::before {
    background: linear-gradient(0deg, rgba(10, 35, 35, 0.78) 0%, rgba(10, 35, 35, 0.55) 35%, rgba(10, 35, 35, 0.1) 65%, rgba(10, 35, 35, 0) 80%);
  }
  .carousel-arrow {
    /* Fixed rather than percentage-based, so it stays clear of both the top
       wave and the card (which now takes up the bottom ~65% of the section)
       regardless of exact section height. */
    top: 90px;
    transform: none;
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
  .carousel-arrow:hover { transform: scale(1.06); }
  .carousel-dots { bottom: 0.9rem; }
}

/* ---------- About preview / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split .art { text-align: center; }

.split h2 { margin-bottom: 1rem; }

.split p { color: var(--ink-soft); margin-bottom: 1rem; }

/* ---------- Service bands (services.html) ----------
   Full-width alternating rows: icon on one side, title/blurb on the other,
   each band its own flat background so the color itself marks where one
   service ends and the next begins. */
.service-band { padding: 3.5rem 0; }

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-row.reverse > .service-row-art { order: 2; }
.service-row.reverse > .service-row-text { order: 1; }

.service-row-art { text-align: center; }

.service-row-art img { width: min(300px, 80%); height: auto; margin: 0 auto; }

.service-row-text h2 { color: var(--teal-dark); margin-bottom: 0.8rem; }

.service-row-text p { color: var(--ink-soft); margin-bottom: 1rem; }

.service-row-text .price {
  /* Solid white + a shadow (not a translucent tint) so the badge still reads
     as its own shape even on the band that happens to already be white. */
  display: inline-block;
  font-weight: 700;
  color: var(--teal);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0.3rem 1rem;
  border-radius: 999px;
}

@media (max-width: 720px) {
  .service-row { grid-template-columns: 1fr; text-align: center; }
  .service-row.reverse > .service-row-art,
  .service-row.reverse > .service-row-text { order: initial; }
}

/* ---------- Paw print accents ---------- */
.paw-trail {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 1.2rem;
  color: var(--teal-light);
  padding: 0.5rem 0 1.5rem;
  user-select: none;
}

/* ---------- Contact form ---------- */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.field { margin-bottom: 1.2rem; }

.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--teal-pale);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal-light);
}

.form-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  background: var(--teal-pale);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1.2rem;
  font-weight: 600;
  color: var(--teal-dark);
}

/* ---------- Availability calendar ---------- */
.avail-calendar {
  /* White, like the form card it sits inside, but a border keeps it from
     visually vanishing into that surrounding white — same treatment the
     text inputs use. Same width as the fields above it, so it reads as
     part of the form rather than a separate floating panel. */
  background: #fff;
  border: 2px solid var(--teal-pale);
  border-radius: var(--radius);
  padding: 1rem 1.1rem 0.9rem;
  width: 100%;
  margin: 0.4rem 0 0;
}

.avail-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.avail-cal-title { font-weight: 700; color: var(--teal-dark); }

.avail-cal-nav {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal-dark);
  cursor: pointer;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.avail-cal-nav:hover:not(:disabled) { background: var(--teal-light); }

.avail-cal-nav:disabled { opacity: 0.35; cursor: default; }

.avail-cal-weekdays,
.avail-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.avail-cal-weekdays {
  margin-bottom: 0.2rem;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.avail-day {
  /* Fixed (short) height rather than aspect-ratio: 1 — the grid is wider
     than it is tall now, and letting cell height scale with the wider
     columns would fight the "more condensed" request. Pill radius instead
     of a full circle since the cells are no longer square. */
  height: 30px;
  border: none;
  border-radius: 999px;
  background: none;
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.avail-day:hover:not(:disabled) { background: var(--teal-pale); }

.avail-day.is-past {
  color: var(--ink-soft);
  opacity: 0.35;
  cursor: default;
}

.avail-day.is-busy {
  color: var(--ink-soft);
  background: var(--sand-light);
  text-decoration: line-through;
  cursor: default;
}

.avail-day.is-selected { background: var(--teal); color: #fff; font-weight: 700; }

.avail-cal-legend {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.avail-cal-legend span { display: inline-flex; align-items: center; gap: 0.35rem; }

.avail-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.avail-dot.is-open { background: var(--teal-pale); border: 1px solid var(--teal-light); }
.avail-dot.is-busy { background: var(--sand-light); }
.avail-dot.is-selected { background: var(--teal); }

.avail-cal-status {
  min-height: 1.2em;
  margin-top: 0.6rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--teal-dark);
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 4rem 0;
}

.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 1rem; }

.cta-band p { color: var(--ink-soft); margin-bottom: 1.8rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-dark);
  color: var(--teal-pale);
  padding: 3rem 0 2rem;
  text-align: center;
}

.site-footer .logo-text { color: var(--sand); font-size: 2.2rem; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin: 1.2rem 0;
  flex-wrap: wrap;
}

.footer-links a { color: var(--teal-pale); text-decoration: none; font-weight: 600; }

.footer-links a:hover { color: var(--sand); }

.site-footer .fine { font-size: 0.85rem; opacity: 0.75; margin-top: 1rem; }

/* ---------- About page ---------- */
.about-hero { text-align: center; padding: 3.5rem 0 2rem; }

.about-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.fact {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.fact .icon { font-size: 2rem; }

.fact h4 { color: var(--teal-dark); margin: 0.4rem 0 0.2rem; }

.fact p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .hero-inner, .split { grid-template-columns: 1fr; }
  .hero-inner { padding: 2.5rem 0 4rem; text-align: center; }
  .hero p.lead { margin-inline: auto; }
  .split .art { order: -1; }
  .form-row { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--teal-pale);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
}
