/* ==========================================================================
   Sunday Cleaning — Design tokens & base
   ========================================================================== */

:root {
  --bg: #F4F1EA;
  --surface: #EAE6DE;
  --surface-alt: #E1DCCE;
  --cream: #FBF9F4;
  --text: #25251F;
  --text-muted: #5B584C;
  --text-soft: #83806F;
  --olive: #4C5438;
  --olive-dark: #383E29;
  --olive-light: #6B7550;
  --divider: #D2CDC2;
  --danger: #8C3B2E;

  --font-serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-sm: 4px;
  --radius-md: 8px;

  --shadow-panel: 0 18px 40px -22px rgba(37, 37, 31, 0.35);
  --transition: 220ms ease;
}

@media (prefers-reduced-motion: reduce) {
  :root { --transition: 0ms; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
svg { display: block; }

a { color: inherit; }

button {
  font-family: inherit;
  cursor: pointer;
}

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--olive);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top var(--transition);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--olive-dark);
  outline-offset: 3px;
}

/* Section scaffolding ------------------------------------------------- */

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--alt { background: var(--surface); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--olive);
  display: inline-block;
}
.eyebrow-index { color: var(--text-soft); font-weight: 600; }

.section-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}
.section-head__aside {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 34ch;
  border-left: 1px solid var(--divider);
  padding-left: 20px;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; }
  .section-head__aside { border-left: none; padding-left: 0; }
}

.lede {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 60ch;
}

.divider {
  height: 1px;
  background: var(--divider);
  border: none;
  margin: 0;
}

/* Buttons --------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--olive);
  color: var(--cream);
}
.btn-primary:hover { background: var(--olive-dark); }
.btn-primary:disabled {
  background: var(--olive-light);
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-ghost {
  background: transparent;
  border-color: var(--olive);
  color: var(--olive);
}
.btn-ghost:hover { background: rgba(76, 84, 56, 0.08); }

.btn-quiet {
  background: transparent;
  color: var(--text);
  border-color: var(--divider);
}
.btn-quiet:hover { border-color: var(--olive); color: var(--olive); }

.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 234, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.site-header.is-scrolled {
  border-bottom-color: var(--divider);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.wordmark__mark { width: 30px; height: 30px; flex-shrink: 0; }
.wordmark__text {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--olive);
  transition: right var(--transition);
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle__bars::before { transform: translateY(-6px); }
.nav-toggle__bars::after { transform: translateY(4.5px); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(0) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn-ghost { display: none; }

  .mobile-nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--bg);
    z-index: 90;
    padding: 28px var(--gutter) 40px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    overflow-y: auto;
  }
  .mobile-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .mobile-nav ul {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .mobile-nav ul a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--divider);
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-serif);
    font-size: 1.4rem;
  }
  .mobile-nav .btn { margin-top: 8px; }
}
@media (min-width: 901px) {
  .mobile-nav { display: none; }
}

/* ==========================================================================
   Hero — full-bleed photo background
   ========================================================================== */

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(600px, 84vh, 880px);
  display: flex;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

/* Layered scrim: an overall gradient for general legibility, plus a
   stronger pool behind the text corner so headline/meta stay readable
   regardless of what's happening in the photo underneath. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(60% 55% at 18% 28%, rgba(20, 20, 16, 0.65) 0%, rgba(20, 20, 16, 0) 72%),
    linear-gradient(180deg, rgba(20, 20, 16, 0.45) 0%, rgba(20, 20, 16, 0.05) 32%, rgba(20, 20, 16, 0.1) 55%, rgba(20, 20, 16, 0.6) 100%),
    linear-gradient(90deg, rgba(20, 20, 16, 0.55) 0%, rgba(20, 20, 16, 0.1) 55%, rgba(20, 20, 16, 0) 78%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: start;
  gap: clamp(24px, 4vw, 56px);
  padding-block: clamp(28px, 5vw, 48px);
}

.hero__content { grid-column: 1; max-width: 640px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  margin-bottom: 22px;
}
.hero__eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--cream);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero__title {
  color: var(--cream);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  max-width: 13ch;
  margin-bottom: 22px;
}

.hero__subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  max-width: 42ch;
  margin-bottom: 32px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}
.hero__meta-item {
  max-width: 220px;
  background: rgba(20, 20, 16, 0.4);
  border: 1px solid rgba(251, 249, 244, 0.22);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__meta-item dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251, 249, 244, 0.75);
  margin-bottom: 6px;
}
.hero__meta-item dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero__panel-row {
  grid-column: 2;
  display: flex;
  justify-content: flex-end;
  align-self: start;
}

/* Booking panel ---------------------------------------------------------- */

.booking-panel {
  position: relative;
  width: min(360px, 100%);
  background: var(--cream);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.55), 0 2px 8px rgba(0, 0, 0, 0.2);
  padding: 24px 22px 22px;
  z-index: 2;
}
.booking-panel__title {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.booking-panel__hint {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.field-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  background: var(--bg) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%234C5438' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat right 14px center;
  appearance: none;
  -webkit-appearance: none;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

/* Calendar ---------------------------------------------------------------- */

.calendar { margin-bottom: 16px; }

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cal-month-label {
  font-family: var(--font-serif);
  font-size: 1.02rem;
}
.cal-nav {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--divider);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--olive);
  transition: background var(--transition), border-color var(--transition);
}
.cal-nav:hover:not(:disabled) { background: var(--surface); border-color: var(--olive); }
.cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.cal-weekdays span {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding-bottom: 6px;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-row { display: contents; }
.cal-cell-empty { visibility: hidden; }

.cal-day {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 40px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  font-size: 0.88rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.cal-day:hover:not(:disabled):not(.is-selected) {
  border-color: var(--olive);
}
.cal-day.is-today {
  font-weight: 700;
  color: var(--olive);
}
.cal-day.is-today::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--olive);
}
.cal-day.is-selected {
  background: var(--olive);
  color: var(--cream);
  font-weight: 600;
}
.cal-day.is-selected::after { display: none; }
.cal-day:disabled,
.cal-day.is-disabled {
  color: var(--text-soft);
  opacity: 0.38;
  cursor: not-allowed;
}
.cal-day.is-disabled:hover { border-color: transparent; }

.cal-selection {
  font-size: 0.86rem;
  color: var(--text-muted);
  padding: 12px 0 16px;
  border-top: 1px solid var(--divider);
  margin-top: 4px;
  min-height: 1.4em;
}
.cal-selection strong { color: var(--text); }

.booking-panel__error {
  color: var(--danger);
  font-size: 0.82rem;
  margin-bottom: 12px;
  display: none;
}
.booking-panel__error.is-visible { display: block; }

/* ==========================================================================
   Materials / spaces gallery
   ========================================================================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: start;
}
.gallery__item { grid-column: span 4; }
.gallery__item--tall { margin-top: 56px; }
.gallery__item img {
  width: 100%;
  border-radius: var(--radius-sm);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.gallery__item--wide img { aspect-ratio: 4 / 3; }
.gallery__caption {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-soft);
}

@media (max-width: 820px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item { grid-column: span 2; }
  .gallery__item--tall { margin-top: 0; }
  .gallery__item:first-child { grid-column: span 2; }
}

/* ==========================================================================
   Services list
   ========================================================================== */

.service-rows { border-top: 1px solid var(--divider); }

.service-row {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 96px 1fr 32px;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--divider);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  transition: background var(--transition);
}
.service-row:hover,
.service-row:focus-visible { background: rgba(76, 84, 56, 0.05); }
.service-row.is-active { background: rgba(76, 84, 56, 0.08); }

.service-row__index {
  font-size: 0.82rem;
  color: var(--text-soft);
  font-variant-numeric: tabular-nums;
}
.service-row__thumb {
  width: 96px; height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.service-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.service-row__body h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.service-row__body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 58ch;
}
.service-row__arrow {
  font-size: 1.3rem;
  color: var(--olive);
  transition: transform var(--transition);
  justify-self: end;
}
.service-row.is-active .service-row__arrow { transform: rotate(90deg); }

.service-detail {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition);
}
.service-detail.is-open { max-height: 240px; }
.service-detail__inner {
  padding: 4px 0 30px 176px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.service-detail__inner p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 52ch;
  margin: 0;
}
@media (max-width: 720px) {
  .service-row {
    grid-template-columns: 40px 1fr 24px;
  }
  .service-row__thumb { display: none; }
  .service-detail__inner { padding-left: 0; }
}

/* ==========================================================================
   Approach section
   ========================================================================== */

.approach-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
}
.approach-grid__main img {
  width: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.approach-grid__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.approach-grid__side img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.approach-copy {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.approach-copy h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 600;
  font-family: var(--font-sans);
}
.approach-copy p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

@media (max-width: 820px) {
  .approach-grid { grid-template-columns: 1fr; }
  .approach-grid__side { flex-direction: row; }
  .approach-grid__side > img { flex: 1 1 0; min-width: 0; }
  .approach-copy { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Process / How it works
   ========================================================================== */

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--divider);
}
.process-step {
  padding: 30px 28px 30px 0;
  border-right: 1px solid var(--divider);
}
.process-step:last-child { border-right: none; }
.process-step__num {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--olive);
  margin-bottom: 14px;
}
.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.92rem;
  color: var(--text-muted);
}
@media (max-width: 820px) {
  .process-list { grid-template-columns: 1fr; }
  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--divider);
    padding: 26px 0;
  }
  .process-step:last-child { border-bottom: none; }
}

/* ==========================================================================
   Service area
   ========================================================================== */

.service-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--cream);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 48px);
}
.service-area__copy p { color: var(--text-muted); margin-top: 14px; }
.postal-check {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.postal-check input {
  flex: 1;
  min-width: 160px;
  padding: 12px 14px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  background: var(--bg);
}
.postal-result {
  margin-top: 14px;
  font-size: 0.88rem;
  min-height: 1.4em;
  color: var(--text-muted);
}
.postal-result.is-in { color: var(--olive-dark); font-weight: 600; }

.service-area__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-area__list li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--divider);
  font-size: 0.92rem;
}
.service-area__list span:last-child { color: var(--text-soft); }

@media (max-width: 760px) {
  .service-area { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { border-top: 1px solid var(--divider); }
.faq-item {
  border-bottom: 1px solid var(--divider);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-serif);
  font-size: 1.12rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.4rem;
  color: var(--olive);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 0 24px;
  max-width: 66ch;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   Booking form
   ========================================================================== */

.booking-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field-input,
.field-textarea,
.field-select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  background: var(--cream);
}
.field-input:focus,
.field-textarea:focus,
.field-select:focus { border-color: var(--olive); }
.field-textarea { resize: vertical; min-height: 100px; }

.field-error {
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
}
.is-invalid .field-input,
.is-invalid .field-select,
.is-invalid .field-textarea { border-color: var(--danger); }
.is-invalid .field-error { display: block; }

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.choice-chip {
  position: relative;
}
.choice-chip input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
}
.choice-chip label {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid var(--divider);
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--text-muted);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.choice-chip input:checked + label {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--cream);
}
.choice-chip input:focus-visible + label {
  outline: 2px solid var(--olive-dark);
  outline-offset: 2px;
}

.service-choice-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.service-choice { position: relative; }
.service-choice input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
}
.service-choice label {
  display: block;
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  padding: 16px 16px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.service-choice label strong { display: block; font-family: var(--font-serif); font-size: 1.05rem; font-weight: 500; }
.service-choice label span { font-size: 0.8rem; color: var(--text-soft); }
.service-choice input:checked + label {
  border-color: var(--olive);
  background: rgba(76, 84, 56, 0.07);
}
.service-choice input:focus-visible + label {
  outline: 2px solid var(--olive-dark);
  outline-offset: 2px;
}
@media (max-width: 480px) {
  .service-choice-group { grid-template-columns: 1fr; }
}

.photo-upload {
  border: 1px dashed var(--divider);
  border-radius: var(--radius-sm);
  padding: 22px;
  text-align: center;
  background: var(--cream);
}
.photo-upload input { display: none; }
.photo-upload__label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.photo-upload__hint { font-size: 0.76rem; color: var(--text-soft); }
.photo-upload__error { font-size: 0.78rem; color: var(--danger); margin-top: 10px; }
.photo-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.photo-preview {
  position: relative;
  width: 76px; height: 76px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--divider);
}
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.photo-preview button {
  position: absolute;
  top: 3px; right: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: none;
  background: rgba(37, 37, 31, 0.7);
  color: #fff;
  font-size: 0.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary-panel {
  position: sticky;
  top: 96px;
  background: var(--cream);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 26px;
}
.summary-panel h3 { font-size: 1.2rem; margin-bottom: 18px; }
.summary-panel dl { margin: 0; }
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--divider);
  font-size: 0.88rem;
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row dt { color: var(--text-soft); }
.summary-row dd { margin: 0; text-align: right; color: var(--text); font-weight: 500; }
.summary-panel__note {
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--text-soft);
  border-top: 1px solid var(--divider);
  padding-top: 16px;
}

.form-status {
  margin-top: 18px;
  font-size: 0.88rem;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  display: none;
}
.form-status.is-visible { display: block; }
.form-status--loading { background: var(--surface); color: var(--text-muted); }
.form-status--error { background: #F3E1DC; color: var(--danger); }
.form-status--success {
  background: rgba(76, 84, 56, 0.1);
  color: var(--olive-dark);
}

.booking-complete {
  display: none;
  background: var(--cream);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 44px);
  text-align: left;
}
.booking-complete.is-visible { display: block; }
.booking-complete h3 { font-size: 1.6rem; margin-bottom: 12px; }
.booking-complete p { color: var(--text-muted); margin-bottom: 10px; }
.booking-complete .demo-flag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--olive);
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .booking-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .summary-panel { position: static; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--olive);
  color: rgba(251, 249, 244, 0.86);
  padding: clamp(56px, 7vw, 88px) 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(251, 249, 244, 0.2);
}
.footer-brand .wordmark { color: var(--cream); }
.footer-brand p {
  margin-top: 16px;
  max-width: 34ch;
  font-size: 0.9rem;
  color: rgba(251, 249, 244, 0.72);
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251, 249, 244, 0.6);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col a {
  text-decoration: none;
  color: var(--cream);
  font-size: 0.92rem;
}
.footer-col a:hover { text-decoration: underline; }
.footer-col p { font-size: 0.92rem; color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(251, 249, 244, 0.6);
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Responsive: hero stacking
   ========================================================================== */

@media (max-width: 980px) {
  .hero { min-height: 0; }
  .hero__inner {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .hero__content { grid-column: auto; max-width: none; }
  .hero__panel-row { grid-column: auto; justify-content: stretch; }
  .booking-panel { width: 100%; }
}

@media (max-width: 480px) {
  .hero { min-height: 0; }
  .hero__inner { gap: 24px; }
  .hero__title { max-width: none; }
  .hero__meta { gap: 10px; }
  .hero__meta-item { padding: 10px 12px; }
  .cal-day { min-height: 38px; font-size: 0.84rem; }
  .booking-panel { padding: 20px 16px; }
}
