@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/fraunces-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/fraunces-latin-500-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/fraunces-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-700-normal.woff2") format("woff2");
}

:root {
  --ivory: #f3eee4;
  --ivory-deep: #e7dfd0;
  --paper: #fbf7f1;
  --ink: #241e18;
  --muted: #534b42;
  --green: #1a4034;
  --green-dark: #10281f;
  --green-soft: #e4eee8;
  --line: #d9cbb6;
  --gold: #8d6b3a;
  --danger: #8a2e2e;
  --danger-bg: #f8ece7;
  --success-bg: #e4f0e8;
  --shadow: 0 16px 40px rgba(36, 30, 24, 0.08);
  --radius: 12px;
  --max: 1120px;
  --serif: "Fraunces", "Iowan Old Style", Palatino, "Palatino Linotype", Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
}

body.has-bar {
  padding-bottom: calc(4.75rem + env(safe-area-inset-bottom));
}

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

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

a:hover {
  color: var(--green-dark);
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--paper);
  color: var(--ink);
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
}

.skip-link:focus {
  top: 0.75rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 238, 228, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: var(--green);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.brand-place {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  font: inherit;
  font-weight: 700;
  color: var(--green);
  background: transparent;
  border: 1px solid var(--green);
  border-radius: 8px;
  min-height: 44px;
  padding: 0.4rem 0.85rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  text-decoration: underline;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.button-primary {
  background: var(--green);
  color: #f7f3eb;
}

.button-primary:hover {
  background: var(--green-dark);
  color: #f7f3eb;
}

.button-primary:focus-visible {
  outline-color: #e7d3a1;
}

.button-secondary {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.button-secondary:hover {
  background: var(--green-soft);
}

.button-block {
  width: 100%;
}

.hero {
  padding: 2.5rem 0 1rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green);
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  max-width: 13em;
}

.hero-copy .lede {
  margin: 0 0 1.25rem;
  max-width: 38rem;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.quiet-note {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
}

.booking-card,
.panel,
.service-card,
.area-card,
.step,
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.booking-card {
  padding: 1.25rem 1.15rem 1.15rem;
  box-shadow: var(--shadow);
}

.panel {
  padding: 1.25rem 1.2rem 1.35rem;
}

.panel h3 {
  margin: 0 0 0.5rem;
}

.panel p {
  margin: 0 0 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.booking-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.7rem;
}

.booking-card .card-lede,
.field-hint,
.recaptcha-note,
.call-fallback,
.message-count {
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-card .card-lede {
  margin: 0 0 1rem;
}

form {
  display: grid;
  gap: 0.85rem;
}

.field {
  display: grid;
  gap: 0.3rem;
}

.field label,
.check label {
  font-weight: 600;
}

.req {
  color: var(--danger);
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfc4b2;
  border-radius: 8px;
  padding: 0.7rem 0.75rem;
  min-height: 48px;
}

textarea {
  min-height: 7.5rem;
  resize: vertical;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--danger);
  background: #fffafa;
}

.field-error {
  margin: 0;
  color: var(--danger);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-row {
  display: grid;
  gap: 0.85rem;
}

.check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.check input {
  width: 1.25rem;
  height: 1.25rem;
  min-height: 1.25rem;
  margin-top: 0.2rem;
  accent-color: var(--green);
}

.check label {
  font-weight: 500;
}

.form-status {
  margin: 0 0 0.9rem;
  padding: 0.85rem 0.9rem;
  border-radius: 8px;
}

.form-status:empty {
  display: none;
}

.form-status.is-pending {
  background: var(--green-soft);
}

.form-status.is-error {
  background: var(--danger-bg);
  color: var(--danger);
}

.form-status.is-success {
  background: var(--success-bg);
  color: var(--green-dark);
  font-weight: 600;
}

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-photo {
  margin: 0;
}

.hero-photo img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 1800 / 1188;
}

.hero-photo figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 4.25rem 0;
}

.section-alt {
  background: #efe6d6;
}

.section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section-intro {
  margin: 0 0 1.5rem;
  max-width: 40rem;
}

.cards-3,
.cards-2,
.steps {
  display: grid;
  gap: 1rem;
}

.service-card,
.area-card,
.step {
  padding: 1.25rem 1.2rem 1.3rem;
}

.service-card h3,
.area-card h3,
.step h3 {
  margin: 0.8rem 0 0.4rem;
  font-size: 1.4rem;
}

.service-card p,
.area-card p,
.step p {
  margin: 0;
}

.icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.step {
  position: relative;
}

.step-num {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #f7f3eb;
  font-family: var(--serif);
  font-weight: 600;
  box-shadow: 0 0 0 3px #e7d3a1;
}

.confirm-note {
  margin: 1.25rem 0 0;
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--gold);
  background: var(--paper);
  border-radius: 0 8px 8px 0;
}

.faqs {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  padding: 0.2rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item summary h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.faq-item p {
  margin: 0 0 1rem;
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.contact-list strong {
  display: inline-block;
  min-width: 7rem;
}

.site-footer {
  background: var(--green);
  color: #f3eee4;
  padding: 2.5rem 0 2rem;
}

.site-footer a {
  color: #f3eee4;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.site-footer .brand-name,
.site-footer h2 {
  color: #f7f3eb;
}

.site-footer p,
.fine {
  margin: 0.35rem 0 0;
  color: #e7dccb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(243, 238, 228, 0.96);
  border-top: 1px solid var(--line);
}

.mobile-bar a {
  text-decoration: none;
}

.page-main {
  padding: 2.5rem 0 4rem;
}

.prose {
  max-width: 42rem;
}

.prose h1 {
  max-width: none;
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.prose h2 {
  margin: 2rem 0 0.5rem;
  font-size: 1.6rem;
}

.prose ul {
  padding-left: 1.2rem;
}

.prose li + li {
  margin-top: 0.35rem;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

@media (min-width: 700px) {
  .form-row,
  .cards-2,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .cards-3,
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
    column-gap: 2.5rem;
    row-gap: 1.5rem;
    align-items: start;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-photo {
    grid-column: 1;
    grid-row: 2;
  }

.booking-card {
  grid-column: 2;
  grid-row: 1 / span 2;
}

  body.has-bar {
    padding-bottom: 0;
  }

  .mobile-bar {
    display: none;
  }
}

@media (max-width: 899px) {
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.75rem 1.25rem 1rem;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .header-inner {
    position: relative;
  }
}

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

@media print {
  .site-header,
  .mobile-bar,
  .booking-card {
    position: static;
  }

  .mobile-bar,
  .nav-toggle {
    display: none;
  }

  body.has-bar {
    padding-bottom: 0;
  }
}
