:root {
  --cream: #F5EBD6;
  --sepia: #4A3728;
  --honey: #D9A85B;
  --honey-dark: #C3923E;
  --sage: #7A8F6E;
  --sage-dark: #5F7356;
  --slate: #5C6F82;
  --slate-dark: #455564;
  --deep: #EADFC6;
  --white-ish: #FBF6EC;
  --muted: #6B5746;
  --line: rgba(74, 55, 40, 0.14);
  --radius: 999px;
  --shadow: 0 10px 30px rgba(74, 55, 40, 0.08);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  background: var(--cream);
  color: var(--sepia);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--honey-dark); }
a:hover { color: var(--sepia); }

h1, h2, h3, .serif {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--sepia);
}
h1 { font-size: clamp(2rem, 5vw, 3.15rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.45rem, 3vw, 1.9rem); margin: 0 0 0.7rem; }
h3 { font-size: 1.2rem; margin: 0 0 0.4rem; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.wrap {
  width: min(1120px, calc(100% - 2.4rem));
  margin-inline: auto;
}
.band { padding: 3.2rem 0; }
.band-deep { background: var(--deep); }
.band-cream { background: var(--cream); }
.band-sage { background: var(--sage); color: #f7f4ec; }
.band-slate { background: var(--slate); color: #f4f6f8; }
.band-sage h2, .band-sage h3, .band-slate h2, .band-slate h3 { color: inherit; }
.lede { font-size: 1.12em; max-width: 38rem; }

/* Header */
.top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  padding: 0.85rem 0 0.7rem;
  padding-top: max(0.85rem, env(safe-area-inset-top));
}
.brand { line-height: 0; }
.brand img {
  height: 72px;
  width: auto;
  max-width: min(100%, 11.5rem);
}
.top-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1rem;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.15rem;
}
nav a {
  color: var(--sepia);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.2rem 0.65rem;
  border-bottom: 2px solid transparent;
  font-weight: 500;
}
nav a:hover, nav a[aria-current="page"] {
  border-bottom-color: var(--honey);
  color: var(--sepia);
}
.phone-btn { white-space: nowrap; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.7rem 1.45rem;
  background: var(--honey);
  color: var(--sepia);
  text-decoration: none;
  border: 0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(74,55,40,0.08);
}
.btn:hover { background: var(--honey-dark); color: var(--sepia); }
.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1.5px solid currentColor;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: inherit; }
.btn-sage { background: var(--sage); color: #f7f4ec; }
.btn-sage:hover { background: var(--sage-dark); color: #fff; }
.btn-slate { background: var(--slate); color: #f4f6f8; }
.btn-slate:hover { background: var(--slate-dark); color: #fff; }
.btn-full { width: 100%; }

/* Hero photo */
.hero-photo {
  width: 100%;
  height: min(58vw, 420px);
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-hero { background: var(--cream); }
.page-hero .wrap { padding: 2.4rem 0 2.6rem; max-width: 760px; margin-left: max(1.2rem, calc((100% - 1120px) / 2)); margin-right: auto; }
.kicker {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--honey-dark);
  margin: 0 0 0.55rem;
}
.page-holiday .kicker { color: var(--slate); }
.page-help .kicker { color: var(--sage-dark); }

/* Service colour bands */
.colour-bar { height: 10px; width: 100%; }
.colour-bar.slate { background: var(--slate); }
.colour-bar.sage { background: var(--sage); }

/* Home service panels */
.panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.panel {
  display: flex;
  flex-direction: column;
  background: var(--white-ish);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  min-height: 100%;
}
.panel img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.panel .panel-body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.panel h2 { margin: 0; }
.panel p { margin: 0; flex: 1; }
.panel.holiday .panel-body { border-top: 8px solid var(--slate); }
.panel.help .panel-body { border-top: 8px solid var(--sage); }
.panel .btn { align-self: flex-start; margin-top: 0.4rem; }

/* Cards / splits */
.split {
  display: grid;
  gap: 1.6rem 2.4rem;
  align-items: start;
}
.prose { max-width: 40rem; }
.prose + .prose { margin-top: 1.6rem; }

.about-grid {
  display: grid;
  gap: 1.6rem 2.2rem;
  align-items: start;
}
.about-grid img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 520px;
  object-position: center 18%;
}

.block {
  background: var(--white-ish);
  border-radius: 16px;
  padding: 1.4rem 1.4rem 1.35rem;
}
.block h2 { margin-bottom: 0.55rem; }

/* Forms */
form { max-width: 40rem; }
label {
  display: block;
  font-weight: 600;
  margin: 0 0 0.35rem;
}
.field { margin: 0 0 1.15rem; }
input[type="text"], input[type="tel"], input[type="email"], textarea, select {
  width: 100%;
  font: inherit;
  color: var(--sepia);
  background: var(--white-ish);
  border: 1.5px solid rgba(74,55,40,0.22);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  min-height: 52px;
}
textarea { min-height: 140px; resize: vertical; }
input:focus, textarea:focus {
  outline: 3px solid rgba(217,168,91,0.45);
  border-color: var(--honey);
}
.choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice label {
  margin: 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.8rem 0.6rem;
  border-radius: 14px;
  border: 2px solid rgba(74,55,40,0.2);
  background: var(--white-ish);
  cursor: pointer;
  font-weight: 600;
}
.choice input:checked + label {
  border-color: var(--honey);
  background: #F3E3C0;
}
.choice input:focus-visible + label { outline: 3px solid rgba(217,168,91,0.45); }
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}
.days label {
  margin: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1.5px solid rgba(74,55,40,0.2);
  background: var(--white-ish);
  font-size: 0.92rem;
  cursor: pointer;
}
.days input { position: absolute; opacity: 0; pointer-events: none; }
.days input:checked + label {
  background: var(--sage);
  color: #f7f4ec;
  border-color: var(--sage);
}
.hint { font-size: 0.95rem; color: var(--muted); margin-top: 0.35rem; }
.done {
  display: none;
  background: var(--deep);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  max-width: 40rem;
}
body.sent .enquiry, body.sent .join-form { display: none; }
body.sent .done { display: block; }

/* Footer */
footer {
  margin-top: auto;
  background: #3d2d22;
  color: #EADFC6;
  padding: 2rem 0 max(2rem, env(safe-area-inset-bottom));
}
footer a { color: #F3E3C0; }
footer a:hover { color: #fff; }
.foot-grid {
  display: grid;
  gap: 1.1rem;
}
.foot-name {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}
.foot-meta { color: #cbb79a; font-size: 0.98rem; }
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  align-items: center;
}
.foot-links a { text-decoration: none; border-bottom: 1px solid rgba(243,227,192,0.35); }
footer .btn { color: var(--sepia); }

@media (min-width: 720px) {
  body { font-size: 20px; }
  .brand img { height: 86px; }
  .hero-photo { height: min(48vw, 460px); }
  .panels { grid-template-columns: 1fr 1fr; }
  .panel img { height: 240px; }
  .about-grid { grid-template-columns: 1fr 1.15fr; }
  .about-grid img { height: 100%; max-height: 640px; }
  .foot-grid {
    grid-template-columns: 1.3fr 1fr;
    align-items: end;
  }
  .days { gap: 0.5rem; }
}

@media (max-width: 719px) {
  .top { padding-bottom: 0.55rem; }
  .top-right { width: 100%; }
  nav { width: 100%; justify-content: space-between; }
  nav a { padding: 0.15rem 0.15rem; font-size: 0.98rem; }
  .phone-btn { width: 100%; }
  .days { grid-template-columns: repeat(4, 1fr); }
  .choice { grid-template-columns: 1fr; }
}

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