:root {
  color-scheme: light;
  --ink: #1d2422;
  --muted: #596762;
  --paper: #fffdf8;
  --soft: #f4efe5;
  --surface: #fff;
  --field: #fff;
  --leaf: #386b52;
  --leaf-dark: #254d3c;
  --action-bg: var(--leaf);
  --action-hover: var(--leaf-dark);
  --clay: #c86f4f;
  --sky: #d9e8ee;
  --contact-bg: var(--sky);
  --inverse-bg: var(--ink);
  --inverse-text: #fff;
  --inverse-muted: var(--sky);
  --line: rgba(29, 36, 34, 0.12);
  --header-bg: rgba(255, 253, 248, 0.9);
  --hero-panel-bg: rgba(255, 253, 248, 0.9);
  --check-bg: rgba(255, 255, 255, 0.66);
  --shadow: 0 24px 80px rgba(27, 43, 38, 0.16);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --ink: #eef4ef;
    --muted: #b8c8c0;
    --paper: #111816;
    --soft: #1a2521;
    --surface: #18211e;
    --field: #101715;
    --leaf: #6fb28c;
    --leaf-dark: #8fcbab;
    --action-bg: #386b52;
    --action-hover: #254d3c;
    --clay: #f0a285;
    --sky: #adcbd5;
    --contact-bg: #20363b;
    --inverse-bg: #0c1411;
    --inverse-text: #eef4ef;
    --inverse-muted: #adcbd5;
    --line: rgba(238, 244, 239, 0.16);
    --header-bg: rgba(17, 24, 22, 0.9);
    --hero-panel-bg: rgba(24, 33, 30, 0.92);
    --check-bg: rgba(255, 255, 255, 0.07);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ink: #eef4ef;
  --muted: #b8c8c0;
  --paper: #111816;
  --soft: #1a2521;
  --surface: #18211e;
  --field: #101715;
  --leaf: #6fb28c;
  --leaf-dark: #8fcbab;
  --action-bg: #386b52;
  --action-hover: #254d3c;
  --clay: #f0a285;
  --sky: #adcbd5;
  --contact-bg: #20363b;
  --inverse-bg: #0c1411;
  --inverse-text: #eef4ef;
  --inverse-muted: #adcbd5;
  --line: rgba(238, 244, 239, 0.16);
  --header-bg: rgba(17, 24, 22, 0.9);
  --hero-panel-bg: rgba(24, 33, 30, 0.92);
  --check-bg: rgba(255, 255, 255, 0.07);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 9px;
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 8px;
}

.nav {
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--leaf);
}

.theme-toggle {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
}

.theme-toggle:hover {
  color: var(--leaf);
}

.theme-toggle svg {
  grid-area: 1 / 1;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: opacity 160ms ease, transform 160ms ease;
}

.theme-toggle-sun {
  opacity: 0;
  transform: scale(0.72) rotate(-18deg);
}

.theme-toggle-moon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle-sun {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }

  :root:not([data-theme="light"]) .theme-toggle-moon {
    opacity: 0;
    transform: scale(0.72) rotate(18deg);
  }
}

:root[data-theme="dark"] .theme-toggle-sun {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

:root[data-theme="dark"] .theme-toggle-moon {
  opacity: 0;
  transform: scale(0.72) rotate(18deg);
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(240px, 1fr);
  align-items: end;
  gap: 28px;
  padding: 150px clamp(20px, 5vw, 72px) 56px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 25, 20, 0.72) 0%, rgba(13, 25, 20, 0.42) 46%, rgba(13, 25, 20, 0.05) 100%),
    url("assets/site/hero-dogs.jpg") center / cover;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(0deg, var(--paper), transparent);
  pointer-events: none;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd7c8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.instagram-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  padding: 10px 4px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  text-decoration: none;
}

.instagram-link:hover {
  color: white;
}

.instagram-link svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--action-bg);
}

.button.primary:hover {
  background: var(--action-hover);
}

.button:disabled {
  opacity: 0.66;
  cursor: not-allowed;
}

.button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.12);
}

.hero-panel {
  justify-self: end;
  max-width: 340px;
  padding: 22px;
  color: var(--ink);
  background: var(--hero-panel-bg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel strong,
.hero-panel span,
.contact-card span {
  display: block;
}

.hero-panel span {
  margin-top: 6px;
  color: var(--muted);
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1100px;
  margin: -26px auto 0;
  padding: 0 clamp(20px, 4vw, 0px);
}

.trust-strip div {
  min-height: 112px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span,
.card p,
.area-copy p,
.about-copy p,
.steps-grid p,
.about-points span,
.price-card p,
.care-copy p,
.testimonial-quote,
.contact-section p,
.faq-list p,
.form-note,
.legal-copy p {
  color: var(--muted);
}

.section,
.about-section,
.testimonial-section,
.contact-section {
  padding: 94px clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.area-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: 70px clamp(20px, 5vw, 72px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.area-band .section-heading {
  margin-bottom: 0;
}

.area-band h2 {
  max-width: 760px;
}

.area-copy {
  max-width: 640px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.area-copy p {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.service-grid,
.pricing-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.price-card,
.steps-grid article,
.calculator-form,
.contact-card,
.booking-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.card,
.price-card,
.steps-grid article {
  padding: 26px;
}

.card-icon,
.steps-grid span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
}

.steps-section {
  background: var(--paper);
}

.testimonial-section {
  background: var(--surface);
}

.testimonial-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(280px, 1fr);
  gap: clamp(22px, 4vw, 44px);
  width: min(100%, 980px);
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.testimonial-card:hover,
.testimonial-card:focus-visible {
  border-color: var(--leaf);
  outline: 2px solid var(--leaf);
  outline-offset: 4px;
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: left center;
}

.testimonial-content {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(22px, 4vw, 42px) clamp(22px, 4vw, 48px) clamp(24px, 4vw, 48px) 0;
}

.testimonial-rating {
  color: var(--clay);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.testimonial-quote {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 850;
  line-height: 1.16;
}

.testimonial-author,
.testimonial-action {
  font-weight: 900;
}

.testimonial-author {
  color: var(--ink);
}

.testimonial-action {
  color: var(--leaf);
}

.testimonial-modal {
  width: min(100% - 32px, 1040px);
  max-height: min(860px, calc(100vh - 32px));
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.testimonial-modal::backdrop {
  background: rgba(12, 20, 17, 0.72);
}

.testimonial-modal-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1fr);
  max-height: inherit;
}

.testimonial-modal-grid > img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: left center;
}

.testimonial-modal-copy {
  position: relative;
  max-height: inherit;
  padding: clamp(26px, 4vw, 48px);
  overflow: auto;
}

.testimonial-modal blockquote {
  display: grid;
  gap: 16px;
  margin: 0 0 22px;
}

.testimonial-modal blockquote p {
  margin: 0;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  color: var(--leaf);
  outline: 2px solid var(--leaf);
  outline-offset: 2px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
  background: var(--surface);
}

.about-copy {
  max-width: 720px;
}

.about-photo {
  width: 132px;
  height: 132px;
  margin-bottom: 24px;
  border: 4px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 16px 42px rgba(27, 43, 38, 0.18);
  object-fit: cover;
}

.about-points {
  display: grid;
  gap: 12px;
}

.about-points div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points span {
  margin-top: 6px;
}

.care-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: 84px clamp(20px, 5vw, 72px);
  background: var(--soft);
}

.care-image {
  min-height: 520px;
  border-radius: 8px;
  background: url("assets/site/care-dog.jpg") center / cover;
  box-shadow: var(--shadow);
}

.care-copy {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  background: var(--check-bg);
  border-left: 4px solid var(--leaf);
}

.price-card.featured {
  color: white;
  background: var(--action-bg);
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.price {
  margin-bottom: 14px;
  color: var(--leaf);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}

.featured .price {
  color: white;
}

.reassurance-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--inverse-bg);
  color: var(--inverse-text);
}

.reassurance-band article {
  margin: 0;
  padding: clamp(38px, 6vw, 74px);
  background: rgba(255, 255, 255, 0.04);
}

.reassurance-band h2 {
  max-width: 620px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.reassurance-band p:not(.eyebrow) {
  max-width: 560px;
  color: var(--inverse-muted);
}

.faq-section {
  background: var(--surface);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  font-weight: 850;
  cursor: pointer;
}

.faq-list p {
  margin: 14px 0 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 78px);
  background: var(--contact-bg);
}

.contact-card {
  max-width: 420px;
  margin-top: 30px;
  padding: 24px;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--leaf-dark);
  font-weight: 800;
  text-decoration: none;
}

.contact-social svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--field);
  font: inherit;
}

textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.booking-form .button {
  width: 100%;
  border-radius: 8px;
  font-size: 1rem;
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer a {
  text-decoration: none;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-section {
  min-height: calc(100vh - 170px);
  background: var(--paper);
}

.legal-section h1 {
  max-width: 860px;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
}

.legal-copy {
  display: grid;
  gap: 28px;
  max-width: 860px;
}

.legal-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.legal-copy p {
  margin-bottom: 0;
}

.calculator-page {
  min-height: calc(100vh - 170px);
  background: var(--paper);
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
  padding: 94px clamp(20px, 5vw, 72px);
}

.calculator-intro {
  max-width: 640px;
}

.calculator-intro h1 {
  font-size: clamp(2.8rem, 6vw, 5.9rem);
}

.calculator-intro p:not(.eyebrow),
.hint,
.step-count {
  color: var(--muted);
}

.calculator-form {
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.calculator-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.calculator-step.is-active {
  display: block;
}

.calculator-step legend,
.result-step h2 {
  margin-bottom: 24px;
  padding: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.step-count {
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 800;
}

.radio-stack,
.answer-list,
.result-breakdown {
  display: grid;
  gap: 12px;
}

.radio-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
}

.radio-card:has(input:checked) {
  border-color: var(--leaf);
  box-shadow: inset 0 0 0 2px var(--leaf);
}

.radio-card input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.radio-card strong,
.radio-card small {
  display: block;
}

.radio-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.date-picker {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.date-picker-header,
.date-picker-grid {
  display: grid;
}

.date-picker-header {
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.date-picker-header strong {
  font-size: 1rem;
}

.date-picker-nav,
.date-picker-day {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.date-picker-nav {
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  font-weight: 900;
}

.date-picker-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.date-picker-weekday {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.date-picker-day,
.date-picker-spacer {
  aspect-ratio: 1;
}

.date-picker-day {
  font-weight: 800;
}

.date-picker-day:hover:not(:disabled),
.date-picker-day:focus-visible {
  border-color: var(--leaf);
  outline: 2px solid var(--leaf);
  outline-offset: 2px;
}

.date-picker-day.is-in-range {
  border-color: rgba(56, 107, 82, 0.32);
  background: var(--soft);
}

.date-picker-day.is-selected {
  color: var(--inverse-text);
  border-color: var(--action-bg);
  background: var(--action-bg);
}

.date-picker-day:disabled {
  color: color-mix(in srgb, var(--muted) 60%, transparent);
  border-color: var(--line);
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 6px,
      color-mix(in srgb, var(--muted) 14%, transparent) 6px,
      color-mix(in srgb, var(--muted) 14%, transparent) 8px
    ),
    var(--soft);
  cursor: not-allowed;
}

.date-picker-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.quantity-field[hidden],
[data-pet-type-options][hidden],
.calculator-back[hidden],
.calculator-next[hidden] {
  display: none;
}

.quantity-field {
  display: grid;
  gap: 8px;
}

.pet-count-field {
  margin-top: 18px;
}

.hint {
  margin: 14px 0 0;
  font-size: 0.95rem;
}

.calculator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.calculator-actions .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.result-price {
  margin-bottom: 22px;
  color: var(--leaf);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
}

.answer-list,
.result-breakdown {
  margin: 0 0 22px;
}

.answer-list div,
.result-breakdown div {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.answer-list dt,
.result-breakdown dt {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.answer-list dd,
.result-breakdown dd,
.confirmation-summary dd {
  margin: 0;
  font-weight: 800;
}

.calculator-step.confirmation-step.is-active {
  display: grid;
  gap: 18px;
}

.confirmation-step h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.confirmation-summary,
.next-steps {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.confirmation-summary {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 12px 18px;
}

.next-steps {
  display: grid;
  gap: 12px;
}

.next-steps h3 {
  margin: 0;
  color: var(--ink);
}

.next-steps ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.confirmation-step .button {
  width: fit-content;
}

.quote-enquiry {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.quote-enquiry h3 {
  margin-bottom: 0;
}

.quote-enquiry .button {
  width: 100%;
  border-radius: 8px;
}

.meet-greet-choice {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.meet-greet-choice legend {
  margin-bottom: 2px;
  padding: 0 6px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.meet-greet-options {
  display: grid;
  gap: 8px;
}

.meet-greet-choice .radio-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-color: color-mix(in srgb, var(--leaf) 30%, var(--line));
  background: var(--paper);
  cursor: pointer;
}

.meet-greet-choice .radio-option:has(input:checked) {
  border-color: var(--leaf);
  box-shadow: inset 0 0 0 2px var(--leaf);
}

.meet-greet-choice .radio-option input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.answer-change {
  border: 0;
  padding: 0;
  color: var(--leaf);
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
}

.answer-change:hover {
  color: var(--leaf-dark);
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .theme-toggle {
    position: absolute;
    top: 14px;
    right: clamp(20px, 5vw, 72px);
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .area-band,
  .calculator-shell,
  .care-band,
  .about-section,
  .testimonial-card,
  .testimonial-modal-grid,
  .contact-section,
  .reassurance-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
    padding-top: 120px;
    background-position: 58% center;
  }

  .hero-panel {
    justify-self: start;
  }

  .trust-strip,
  .service-grid,
  .pricing-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .care-image {
    min-height: 360px;
  }

  .testimonial-content {
    padding: 0 clamp(22px, 5vw, 34px) clamp(24px, 5vw, 34px);
  }

  .testimonial-card img {
    min-height: 260px;
    aspect-ratio: 16 / 9;
  }

  .testimonial-modal-grid > img {
    min-height: 260px;
    max-height: 42vh;
  }
}

@media (max-width: 560px) {
  .nav {
    flex-wrap: nowrap;
    gap: 10px;
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .hero {
    min-height: 720px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 3.05rem;
  }

  .button {
    width: 100%;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .date-grid {
    grid-template-columns: 1fr;
  }

  .answer-list div,
  .result-breakdown div {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .nav {
    gap: 8px;
    font-size: 0.72rem;
  }
}
