/* =========================================================
   Glover Migration — single-page site
   Palette (from brand assets):
   olive  #4c5837 · amber #c7922d · sand #f0ece5
   sand-2 #eae3d8 · sage  #a1b895
   ========================================================= */

:root {
  --olive: #4c5837;
  --olive-dark: #3c4729;
  --olive-darker: #333d22;
  --amber: #c7922d;
  --amber-dark: #b07f22;
  --sand: #f0ece5;
  --sand-2: #eae3d8;
  --sage: #a1b895;
  --sage-light: #bccdb0;
  --ink: #2f3722;          /* text on sand */
  --cream: #f0ece5;        /* text on olive */

  --wrap: 1120px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 40px -18px rgba(33, 40, 22, 0.45);

  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

/* Ensure the hidden attribute always wins over display rules below */
[hidden] { display: none !important; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

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

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

a { color: inherit; }

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.accent { color: var(--sage-light); }

/* Section base ------------------------------------------------ */
.section--olive { background: var(--olive); color: var(--cream); }
.section--sand  { background: var(--sand);  color: var(--ink); }

section { position: relative; }

.eyebrow {
  font-family: var(--font-display);
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 1.4rem;
}

/* ============ BUTTONS ============ */
.btn {
  --btn-pad-y: 0.7rem;
  --btn-pad-x: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--lg { --btn-pad-y: 1rem; --btn-pad-x: 2.4rem; font-size: 1rem; }

.btn--amber { background: var(--amber); color: #fff; box-shadow: 0 10px 22px -12px rgba(199, 146, 45, 0.9); }
.btn--amber:hover { background: var(--amber-dark); transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(240, 236, 229, 0.55); }
.btn--ghost:hover { background: var(--cream); color: var(--olive); }

.btn--olive { background: var(--olive); color: var(--cream); }
.btn--olive:hover { background: var(--olive-dark); transform: translateY(-2px); }

/* ============ NAVBAR ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 0.55rem 0;
}
.nav[data-state="top"] { background: transparent; }
.nav[data-state="scrolled"] {
  background: var(--olive);
  box-shadow: 0 8px 24px -14px rgba(0, 0, 0, 0.55);
}
.nav__inner {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__brand { display: inline-flex; align-items: center; }
.nav__logo { height: 30px; width: auto; }

.nav__links { display: flex; align-items: center; gap: 0.4rem; }
.nav__links > a:not(.btn) {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav__links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.35rem;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav__links > a:not(.btn):hover::after { transform: scaleX(1); }
.nav__links .btn { margin-left: 0.35rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  display: block; height: 2px; width: 26px;
  background: var(--cream);
  margin-inline: auto;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(82vw, 320px);
  background: var(--olive-dark);
  z-index: 70;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  padding: 5.5rem 1.6rem 2rem;
  box-shadow: -20px 0 50px -25px rgba(0,0,0,0.6);
}
.drawer.open { transform: translateX(0); }
.drawer__links { display: flex; flex-direction: column; gap: 0.4rem; }
.drawer__links > a:not(.btn) {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--cream);
  padding: 0.85rem 0.4rem;
  border-bottom: 1px solid rgba(240,236,229,0.12);
}
.drawer__links .btn { margin-top: 0.8rem; }
.drawer__scrim {
  position: fixed; inset: 0;
  background: rgba(20, 24, 14, 0.5);
  z-index: 65;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.drawer__scrim.show { opacity: 1; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--olive);
  overflow: hidden;
  color: var(--cream);
}
.hero__media {
  position: absolute; inset: 0;
  background-image: linear-gradient(90deg, var(--olive) 18%, rgba(76,88,55,0.35) 55%, rgba(76,88,55,0.05) 100%),
                    url("../assets/image-header-laptop.jpg");
  background-size: cover;
  background-position: center right;
}
.hero__inner {
  position: relative;
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
  padding: 7rem 0 5rem;
  max-width: 58rem;
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 2rem;
  max-width: 20ch;
  text-shadow: 0 2px 18px rgba(30,36,20,0.35);
}
.hero__cta { }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 1.8rem;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(240,236,229,0.6);
  border-radius: 14px;
}
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--amber);
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80%,100% { opacity: 0; transform: translateY(14px); }
}

/* ============ ABOUT ============ */
.about { padding: clamp(4rem, 9vw, 7.5rem) 0; overflow: hidden; }
.about__body { max-width: 60ch; }
.about__body p { margin: 0 0 1.3rem; font-size: 1.08rem; }
.about__body strong { color: var(--olive); }
.about__brandmark {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(42vw, 460px);
  aspect-ratio: 1;
  background: url("../assets/brandmark-graphic-bg.svg") no-repeat center / contain;
  opacity: 0.6;
  pointer-events: none;
}

/* ============ SERVICES ============ */
.services { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.services__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.22;
  max-width: 18ch;
  margin: 0 0 2.8rem;
}
.cards {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.cards > li { display: flex; }

.card {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  text-align: center;
  min-height: 164px;
  padding: 1.6rem 1rem;
  background: rgba(240, 236, 229, 0.07);
  border: 1.5px solid rgba(240, 236, 229, 0.28);
  border-radius: var(--radius);
  cursor: pointer;
  overflow: hidden;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover, .card:focus-visible {
  transform: translateY(-5px);
  background: rgba(240, 236, 229, 0.14);
  border-color: rgba(240, 236, 229, 0.55);
  box-shadow: var(--shadow);
  outline: none;
}
.card__label {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  color: #fff;
  line-height: 1.25;
}
.card__icon {
  width: 46px;
  height: 46px;
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.card:hover .card__icon,
.card:focus-visible .card__icon {
  transform: translateY(-3px) scale(1.06);
  color: #fff;
}
/* folded paper corner */
.card__corner {
  position: absolute;
  top: 0; right: 0;
  width: 30px; height: 30px;
}
.card__corner::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  border-style: solid;
  border-width: 0 30px 30px 0;
  border-color: transparent var(--amber) transparent transparent;
}
.card__corner::after {
  content: "";
  position: absolute;
  top: 30px; right: 0;
  border-style: solid;
  border-width: 0 30px 8px 0;
  border-color: transparent rgba(0,0,0,0.18) transparent transparent;
}
.services__hint {
  margin: 1.8rem 0 0;
  font-size: 0.92rem;
  color: var(--sage-light);
  font-style: italic;
}

/* ============ MODAL ============ */
.modal {
  position: fixed; inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.modal[hidden] { display: none; }
.modal__scrim {
  position: absolute; inset: 0;
  background: rgba(28, 33, 18, 0.6);
  backdrop-filter: blur(2px);
  animation: fade 0.25s var(--ease);
}
.modal__panel {
  position: relative;
  width: min(620px, 100%);
  background: rgba(240, 236, 229, 0.08);
  border: 1.5px solid rgba(240, 236, 229, 0.32);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: #fff;
  border-radius: 6px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: 0 30px 70px -25px rgba(0,0,0,0.6);
  animation: pop 0.35s var(--ease);
  max-height: 88vh;
  overflow: auto;
}
/* folded corner on modal */
.modal__panel::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  border-style: solid;
  border-width: 0 56px 56px 0;
  border-color: transparent var(--amber) transparent transparent;
  border-top-right-radius: 6px;
}
.modal__close {
  position: absolute;
  top: 8px; right: 10px;
  z-index: 2;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s var(--ease);
}
.modal__close:hover { transform: rotate(90deg) scale(1.1); }
.modal__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.5rem;
  margin: 0 0 1.4rem;
}
.modal__list { display: grid; gap: 1.2rem; margin-bottom: 1.8rem; }
.modal__item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
}
.modal__item p { margin: 0; color: rgba(255,255,255,0.92); font-size: 0.98rem; }
.modal__cta { width: fit-content; }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop  { from { opacity: 0; transform: translateY(16px) scale(0.97); } to { opacity: 1; transform: none; } }

/* ============ BOOK ============ */
.book { padding: clamp(4rem, 9vw, 7rem) 0; }
.book__wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}
.book__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin: 0 0 1.2rem;
}
.book__copy p { margin: 0 0 0.8rem; color: rgba(240,236,229,0.9); max-width: 46ch; }
.book__copy strong { color: #fff; }
.aster { color: var(--amber); }
.book__fineprint { font-size: 0.85rem; opacity: 0.7; margin-top: 1.2rem !important; }
.book__action { text-align: center; }
.book__dream {
  margin: 1.5rem 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--sage-light);
}

/* ============ TESTIMONIALS ============ */
.testimonials { padding: clamp(4rem, 9vw, 7rem) 0; }
.quote { margin: 0; max-width: 60ch; position: relative; }
.quote::before {
  content: "\201C";
  position: absolute;
  top: -2.5rem; left: -0.5rem;
  font-family: var(--font-display);
  font-size: 7rem;
  color: var(--amber);
  opacity: 0.25;
  line-height: 1;
}
.quote blockquote {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.55;
  font-weight: 500;
  color: var(--ink);
}
.quote figcaption {
  margin-top: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.quote__stars { color: var(--amber); letter-spacing: 0.15em; font-size: 1.1rem; }
.quote__source { font-family: var(--font-display); font-weight: 600; color: var(--olive); }
.link-more {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--amber-dark);
  transition: gap 0.2s;
}
.link-more:hover { text-decoration: underline; }

/* ============ FOOTER ============ */
.footer { padding: clamp(3.5rem, 7vw, 5.5rem) 0 3rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.5rem;
}
.footer__logo { width: 190px; max-width: 60%; margin-bottom: 1.5rem; }
.footer__acknowledge {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(240,236,229,0.72);
  max-width: 38ch;
  margin: 0;
  border-left: 2px solid var(--amber);
  padding-left: 1rem;
}
.footer__col { display: flex; flex-direction: column; gap: 1.4rem; }
.footer__links, .footer__social { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a, .footer__social a {
  text-decoration: none;
  color: var(--cream);
  font-size: 0.9rem;
  width: fit-content;
  transition: color 0.2s;
}
.footer__links a:hover, .footer__social a:hover { color: var(--amber); }
.footer__social { flex-direction: row; gap: 0.7rem; flex-wrap: wrap; margin-top: 0.3rem; }
.footer__social a { display: inline-grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(240,236,229,0.3); border-radius: 50%; color: var(--cream); transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease); }
.footer__social a:hover { background: var(--amber); border-color: var(--amber); color: #fff; transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; fill: currentColor; }

.footer__legal { gap: 0.7rem; }
.footer__mara {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer__mara-badge {
  display: inline-block;
  width: fit-content;
  background: rgba(240,236,229,0.1);
  border: 1px solid rgba(240,236,229,0.3);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 30px;
}
.footer__small {
  font-size: 0.8rem;
  color: rgba(240,236,229,0.65);
  margin: 0;
  line-height: 1.7;
}
.footer__top {
  display: block;
  width: fit-content;
  margin: 2.5rem auto 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  border: 1px solid rgba(240,236,229,0.3);
  padding: 0.55rem 1.3rem;
  border-radius: 30px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.footer__top:hover { background: var(--amber); border-color: var(--amber); color: #fff; }

/* ============ REVEAL ANIM ============ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll span { animation: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .book__wrap { grid-template-columns: 1fr; gap: 2rem; }
  .book__action { text-align: left; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .hero__media {
    background-image: linear-gradient(180deg, rgba(76,88,55,0.15), var(--olive) 78%),
                      url("../assets/image-header-mobile.jpg");
    background-position: top center;
  }
  .hero__inner { padding-top: 6rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .card { min-height: 148px; gap: 0.7rem; }
  .about__brandmark { opacity: 0.35; right: -18%; }
}

/* =========================================================
   SUBPAGES — booking + legal
   ========================================================= */
.subpage { background: var(--sand); }
.nav--solid { background: var(--olive); box-shadow: 0 8px 24px -14px rgba(0,0,0,.55); }

/* page header band */
.pagehead { padding: 7.5rem 0 3rem; }
.pagehead__crumb { font-size: .85rem; letter-spacing: .04em; color: var(--sage-light); margin: 0 0 1rem; }
.pagehead__crumb a { color: var(--sage-light); text-decoration: none; }
.pagehead__crumb a:hover { color: var(--amber); }
.pagehead__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 4vw, 3rem); margin: 0 0 1rem; }
.pagehead__lead { max-width: 55ch; color: rgba(240,236,229,.9); font-size: 1.05rem; margin: 0; }
.pagehead__lead strong { color: #fff; }

/* booking layout */
.booking { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 6rem); }
.booking__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 2.5rem; align-items: start; }
.step { background: #fff; border-radius: 8px; padding: clamp(1.4rem, 3vw, 2rem); box-shadow: 0 18px 40px -28px rgba(33,40,22,.4); min-width: 0; }
.step--wide { grid-column: 1 / -1; }
.step__title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin: 0 0 1.3rem; display: flex; align-items: center; gap: .7rem; color: var(--olive); }
.step__num { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--olive); color: var(--cream); font-size: .95rem; flex: 0 0 auto; }

/* service options */
.svc { display: flex; flex-direction: column; gap: .8rem; }
.svc__opt { display: block; cursor: pointer; position: relative; }
.svc__opt input { position: absolute; opacity: 0; pointer-events: none; }
.svc__card { display: grid; grid-template-columns: auto 1fr auto; gap: .2rem 1.1rem; align-items: center; padding: 1rem 1.1rem; border: 2px solid #e3ddd0; border-radius: 6px; transition: border-color .2s, background .2s; }
.svc__icon { grid-column: 1; grid-row: 1 / span 2; width: 30px; height: 30px; color: var(--sage); align-self: center; transition: color .2s; }
.svc__name { font-family: var(--font-display); font-weight: 600; color: var(--ink); grid-column: 2; }
.svc__meta { font-size: .85rem; color: #7a7a6a; grid-column: 2; }
.svc__price { grid-column: 3; grid-row: 1 / span 2; font-family: var(--font-display); font-weight: 700; color: var(--olive); font-size: 1.1rem; white-space: nowrap; }
.svc__opt input:checked + .svc__card .svc__icon { color: var(--olive); }
.svc__price small { font-weight: 500; font-size: .7rem; color: #7a7a6a; }
.svc__opt input:checked + .svc__card { border-color: var(--olive); background: #f6f4ee; }
.svc__opt input:focus-visible + .svc__card { outline: 2px solid var(--amber); outline-offset: 2px; }

/* slot picker */
.slots__dates { display: grid; grid-auto-flow: column; grid-auto-columns: 66px; gap: .5rem; overflow-x: auto; padding-bottom: .6rem; scrollbar-width: thin; }
.datechip { display: flex; flex-direction: column; align-items: center; gap: .15rem; padding: .6rem .4rem; background: #fff; border: 2px solid #e3ddd0; border-radius: 6px; cursor: pointer; transition: border-color .2s, background .2s; }
.datechip__dow { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: #7a7a6a; }
.datechip__num { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.datechip__mon { font-size: .7rem; color: #7a7a6a; }
.datechip:hover { border-color: var(--sage); }
.datechip.is-active { border-color: var(--olive); background: var(--olive); }
.datechip.is-active .datechip__num,
.datechip.is-active .datechip__dow,
.datechip.is-active .datechip__mon { color: var(--cream); }
.slots__times { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.1rem; min-height: 44px; }
.slots__placeholder { color: #7a7a6a; font-size: .92rem; margin: .3rem 0; }
.timeslot { font-family: var(--font-display); font-weight: 600; font-size: .9rem; padding: .55rem 1rem; border: 2px solid #e3ddd0; border-radius: 6px; background: #fff; color: var(--ink); cursor: pointer; transition: border-color .2s, background .2s, color .2s; }
.timeslot:hover:not(:disabled) { border-color: var(--sage); }
.timeslot.is-active { border-color: var(--olive); background: var(--olive); color: var(--cream); }
.timeslot:disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.slots__note { font-size: .8rem; color: #7a7a6a; margin: 1rem 0 0; }

/* fields */
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field span { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field span i { color: var(--amber); font-style: normal; }
.field input, .field textarea { font-family: var(--font-body); font-size: .95rem; padding: .7rem .85rem; border: 2px solid #e3ddd0; border-radius: 6px; background: #fff; color: var(--ink); transition: border-color .2s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--olive); }
.field textarea { resize: vertical; }

/* summary */
.summary { margin: 1.6rem 0 0; background: #f6f4ee; border-radius: 6px; padding: 1.2rem 1.3rem; }
.summary h3 { font-family: var(--font-display); font-size: 1rem; margin: 0 0 .8rem; color: var(--olive); }
.summary ul { list-style: none; margin: 0 0 .8rem; padding: 0; display: grid; gap: .5rem; }
.summary li { display: flex; justify-content: space-between; gap: 1rem; font-size: .95rem; border-bottom: 1px dashed #ddd6c8; padding-bottom: .5rem; }
.summary li span { color: #7a7a6a; }
.summary li b { font-family: var(--font-display); color: var(--ink); text-align: right; }
.summary__pay { font-size: .8rem; color: #7a7a6a; margin: 0; }

.formerror { color: #a23b2d; font-size: .9rem; font-weight: 600; margin: 1rem 0 0; }
.booking__submit { margin-top: 1.4rem; }

/* confirmation */
.confirm { background: #fff; border-radius: 8px; padding: clamp(2rem, 5vw, 3.5rem); text-align: center; box-shadow: 0 18px 40px -28px rgba(33,40,22,.4); max-width: 620px; margin-inline: auto; }
.confirm__mark { width: 64px; height: 64px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--sage); color: #fff; display: grid; place-items: center; font-size: 2rem; }
.confirm h2 { font-family: var(--font-display); color: var(--olive); margin: 0 0 1rem; }
.confirm p { color: var(--ink); margin: 0 0 .8rem; }

/* contact form (booking page) */
.contact { padding: 0 0 clamp(4rem, 8vw, 6rem); }
.contact__card { max-width: 820px; margin-inline: auto; }
.contact__card h2 { font-family: var(--font-display); color: var(--olive); margin: 0 0 .4rem; font-size: clamp(1.4rem, 3vw, 1.9rem); }
.contact__card > p { color: #43483a; margin: 0 0 1.5rem; }
.contact__card .btn { margin-top: 1.3rem; }
.contact__done { color: var(--olive); font-family: var(--font-display); font-weight: 600; margin: 1rem 0 0; }

/* legal prose */
.legal { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 6rem); }
.legal__wrap { width: min(100% - 2.5rem, 760px); margin-inline: auto; }
.legal h2 { font-family: var(--font-display); color: var(--olive); font-size: 1.3rem; margin: 2.2rem 0 .7rem; }
.legal h3 { font-family: var(--font-display); color: var(--ink); font-size: 1.05rem; margin: 1.4rem 0 .5rem; }
.legal p, .legal li { color: #43483a; font-size: 1rem; line-height: 1.75; }
.legal ul { padding-left: 1.2rem; }
.legal li { margin-bottom: .4rem; }
.legal a { color: var(--amber-dark); }
.legal__updated { font-size: .85rem; color: #7a7a6a; font-style: italic; }
.todo { background: #fbe8c8; color: #8a6d1f; padding: 0 .35em; border-radius: 3px; font-weight: 600; }

@media (max-width: 760px) {
  .booking__grid { grid-template-columns: 1fr; }
  .fields { grid-template-columns: 1fr; }
}
