:root {
  --paper: #f7f3ec;
  --panel: #fffdf8;
  --linen: #ede5d6;
  --sage-soft: #eaf0e0;
  --sage: #5f7650;
  --sage-dark: #3f5036;
  --forest: #27351f;
  --charcoal: #2c241b;
  --brown: #4a2e14;
  --taupe: #8b6844;
  --stone: #d6cbba;
  --stone-deep: #b7a68f;
  --brass: #aa8444;
  --danger: #8f3029;
  --shadow: 0 20px 50px rgba(46, 36, 26, 0.12);
  --radius: 6px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(95, 118, 80, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 84px 84px;
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.72;
}

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

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  color: var(--charcoal);
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(2.85rem, 5.8vw, 5.25rem);
  line-height: 0.96;
  max-width: 11ch;
  text-wrap: balance;
}

h1 em,
h2 em {
  color: var(--sage-dark);
  font-style: italic;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.02;
  text-wrap: balance;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.16;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(170, 132, 68, 0.55);
  outline-offset: 3px;
}

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

.skip-link {
  background: var(--charcoal);
  color: var(--panel);
  left: 1rem;
  padding: 0.65rem 0.85rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-160%);
  z-index: 60;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(247, 243, 236, 0.94);
  border-bottom: 1px solid rgba(214, 203, 186, 0.95);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  min-height: 78px;
  padding: 0.7rem clamp(1rem, 4vw, 3.25rem);
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  align-items: center;
  display: flex;
  gap: 0.7rem;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  height: 48px;
  width: 48px;
}

.brand span {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.brand strong {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1;
}

.brand small {
  color: var(--sage-dark);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 0.25rem;
  white-space: nowrap;
}

.desktop-nav a,
.mobile-menu a,
.mobile-book {
  border-radius: 999px;
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 0.55rem 0.82rem;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: rgba(95, 118, 80, 0.13);
  color: var(--sage-dark);
}

.desktop-nav .nav-cta,
.mobile-book {
  background: var(--sage-dark);
  color: var(--panel);
}

.desktop-nav .nav-cta:hover,
.desktop-nav .nav-cta:focus-visible,
.mobile-book:hover,
.mobile-book:focus-visible {
  background: var(--forest);
  color: var(--panel);
}

.mobile-actions {
  align-items: center;
  display: none;
  gap: 0.55rem;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--stone);
  border-radius: 999px;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.menu-toggle span[aria-hidden="true"],
.menu-toggle span[aria-hidden="true"]::before,
.menu-toggle span[aria-hidden="true"]::after {
  background: var(--brown);
  content: "";
  display: block;
  height: 1px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 18px;
}

.menu-toggle span[aria-hidden="true"]::before {
  position: absolute;
  top: -6px;
}

.menu-toggle span[aria-hidden="true"]::after {
  position: absolute;
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"] {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  background: rgba(255, 253, 248, 0.98);
  border-bottom: 1px solid var(--stone);
  display: grid;
  gap: 0.4rem;
  padding: 0.75rem 1rem 1rem;
  position: sticky;
  top: 78px;
  z-index: 45;
}

.mobile-menu[hidden] {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: min(720px, calc(100svh - 78px));
}

.hero-copy {
  align-content: center;
  display: grid;
  padding: clamp(3.5rem, 7vw, 6.5rem) clamp(1.15rem, 5vw, 4.8rem);
}

.eyebrow,
.section-number,
.card-eyebrow {
  color: var(--sage-dark);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #c0d49a;
}

.hero-copy > p:not(.eyebrow) {
  color: var(--brown);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.86;
  margin-top: 1rem;
  max-width: 38rem;
}

.hero-meta {
  color: var(--sage-dark);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.86rem;
  gap: 0.65rem 1rem;
  margin: 0.4rem 0 1.6rem;
}

.hero-meta span {
  align-items: center;
  display: inline-flex;
  gap: 0.4rem;
}

.hero-meta span::before {
  background: var(--brass);
  border-radius: 999px;
  content: "";
  height: 0.32rem;
  width: 0.32rem;
}

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

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.13em;
  min-height: 2.95rem;
  padding: 0.85rem 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  background: var(--sage-dark);
  border: 1px solid var(--sage-dark);
  color: var(--panel);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--forest);
}

.button.ghost {
  border: 1px solid var(--stone-deep);
  color: var(--brown);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: var(--sage-dark);
}

.hero-media {
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-media figcaption {
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(214, 203, 186, 0.8);
  border-radius: var(--radius);
  bottom: 1.4rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.1rem;
  left: 1.4rem;
  padding: 1rem 1.15rem;
  position: absolute;
}

.hero-media figcaption span {
  color: var(--sage-dark);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-media figcaption strong {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
}

.hero-media figcaption small {
  color: var(--taupe);
  font-size: 0.78rem;
}

.trust-strip {
  background: var(--panel);
  border-bottom: 1px solid var(--stone);
  border-top: 1px solid var(--stone);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.trust-strip div {
  border-right: 1px solid var(--stone);
  display: grid;
  gap: 0.4rem;
  min-height: 7rem;
  padding: 1rem;
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span,
.small-card-grid span,
.feature-grid span,
.local-list span,
.faq-grid span,
.review-grid span {
  color: var(--sage-dark);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.trust-strip strong {
  align-self: end;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.14vw, 1.18rem);
  font-weight: 400;
  line-height: 1.16;
}

.section {
  border-bottom: 1px solid var(--stone);
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.1rem, 5vw, 4.5rem);
  scroll-margin-top: 96px;
}

.section-grid,
.booking-grid,
.direct-section {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.section-heading {
  margin: 0 auto 2rem;
  max-width: 1180px;
}

.section-heading p:not(.section-number),
.section-lede {
  color: var(--taupe);
  font-size: 1.03rem;
  max-width: 48rem;
}

.prose {
  color: var(--brown);
  max-width: 46rem;
}

.prose p {
  font-size: 1.05rem;
}

.pull-quote {
  border-left: 3px solid var(--sage);
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: clamp(1.24rem, 2.5vw, 1.85rem) !important;
  line-height: 1.24;
  margin-top: 1.75rem;
  max-width: 33rem;
  padding-left: 1rem;
  text-wrap: balance;
}

.photo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  max-width: 1180px;
}

.photo-grid figure,
.wide-photo {
  margin: 0;
}

.photo-grid img,
.wide-photo img,
.slide-stage img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.photo-grid img {
  aspect-ratio: 4 / 3;
}

.photo-grid figcaption,
.wide-photo figcaption {
  color: var(--taupe);
  font-size: 0.82rem;
  margin-top: 0.65rem;
}

.muted,
.local-section,
.policies-section {
  background: var(--panel);
}

.small-card-grid,
.feature-grid,
.review-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.small-card-grid article,
.feature-grid article,
.local-list article,
.review-grid article,
.faq-grid article,
.estimate-card,
.availability-card,
  .booking-form,
  .how-it-works,
  .booking-trust,
  .host-handled-note,
  .request-note {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
}

.small-card-grid article,
.feature-grid article,
.local-list article,
.review-grid article {
  padding: 1.15rem;
}

.faq-grid article {
  padding: 1.25rem;
}

.small-card-grid p,
.feature-grid p,
.local-list p,
.faq-grid p {
  color: var(--taupe);
  font-size: 0.95rem;
  margin: 0.55rem 0 0;
}

.feature-grid h3,
.local-list h3,
.faq-grid h3 {
  margin-top: 0.55rem;
}

.faq-grid h3 {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}

.slideshow {
  align-items: stretch;
  background: var(--forest);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  margin: 0 auto;
  max-width: 1180px;
  overflow: hidden;
}

.slide-stage {
  margin: 0;
  position: relative;
}

.slide-stage img {
  aspect-ratio: 16 / 10;
  border-radius: 0;
  box-shadow: none;
  height: 100%;
}

.slide-stage figcaption {
  align-items: end;
  background: linear-gradient(transparent, rgba(28, 24, 18, 0.72));
  bottom: 0;
  color: var(--panel);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  left: 0;
  padding: 3rem 1.2rem 1rem;
  position: absolute;
  right: 0;
}

.slide-stage small {
  color: rgba(255, 253, 248, 0.78);
  white-space: nowrap;
}

.slide-button {
  background: var(--forest);
  border: 0;
  color: #c0d49a;
  font-family: var(--serif);
  font-size: 2.4rem;
}

.slide-button:hover,
.slide-button:focus-visible {
  background: var(--sage-dark);
  color: var(--panel);
}

.slide-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin: 1rem auto 0;
  max-width: 1180px;
}

.slide-dot {
  background: var(--stone-deep);
  border: 0;
  border-radius: 999px;
  height: 0.55rem;
  padding: 0;
  width: 0.55rem;
}

.slide-dot[aria-current="true"] {
  background: var(--sage-dark);
  transform: scale(1.25);
}

.direct-section {
  background: var(--forest);
  color: #eaf0e0;
  max-width: none;
}

.direct-section h2,
.direct-section h3,
.direct-section p {
  color: inherit;
}

.direct-copy {
  align-self: center;
  justify-self: end;
  max-width: 560px;
}

.direct-copy > p {
  color: #c0d49a;
}

.direct-list {
  border-top: 1px solid rgba(192, 212, 154, 0.24);
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
}

.direct-list p {
  color: #c0d49a;
  margin: 0;
}

.direct-list strong {
  color: #eaf0e0;
  font-weight: 500;
}

.estimate-card {
  align-self: center;
  background: rgba(255, 253, 248, 0.08);
  border-color: rgba(192, 212, 154, 0.32);
  justify-self: start;
  max-width: 430px;
  padding: 1.4rem;
}

.estimate-card p {
  color: #c0d49a;
  font-size: 0.95rem;
}

.night-stepper {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  margin: 1.1rem 0;
}

.night-stepper button {
  background: transparent;
  border: 1px solid rgba(192, 212, 154, 0.5);
  border-radius: 999px;
  color: #eaf0e0;
  height: 2rem;
  width: 2rem;
}

.night-stepper span {
  color: #eaf0e0;
  min-width: 5.8rem;
  text-align: center;
}

.estimate-lines {
  border-top: 1px solid rgba(192, 212, 154, 0.2);
  display: grid;
  gap: 0.45rem;
  padding-top: 0.8rem;
}

.estimate-line {
  color: #c0d49a;
  display: flex;
  font-size: 0.9rem;
  justify-content: space-between;
  gap: 1rem;
}

.estimate-line.total {
  color: #eaf0e0;
  font-weight: 500;
  margin-top: 0.2rem;
}

.estimate-note {
  color: #99b87f !important;
  font-size: 0.78rem !important;
  margin: 0.9rem 0 0;
}

.local-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wide-photo {
  margin: 3rem auto 0;
  max-width: 1180px;
}

.wide-photo img {
  aspect-ratio: 16 / 7;
}

.wide-photo a {
  color: var(--sage-dark);
}

.review-grid p {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.16rem;
  font-style: italic;
  line-height: 1.42;
  margin-top: 0.55rem;
}

.review-grid strong {
  color: var(--taupe);
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 0.8rem;
}

.airbnb-link {
  margin: 1.3rem auto 0;
  max-width: 1180px;
}

.airbnb-link a,
.airbnb-option a,
.form-footnote a {
  color: var(--sage-dark);
  font-weight: 400;
}

.accordion {
  display: grid;
  gap: 0.85rem;
}

.accordion details {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.accordion summary {
  color: var(--sage-dark);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.22;
  list-style: none;
}

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

.accordion summary::after {
  color: var(--brass);
  content: "+";
  float: right;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  margin-left: 1rem;
}

.accordion details[open] summary::after {
  content: "-";
}

.accordion p {
  color: var(--taupe);
  font-size: 0.95rem;
  margin: 0.65rem 0 0;
}

.booking-section {
  background:
    linear-gradient(rgba(44, 36, 27, 0.72), rgba(44, 36, 27, 0.72)),
    url("assets/images/43-guest-book-and-georgetown-map.jpg") center / cover;
  color: var(--panel);
}

.booking-section h2,
.booking-section h3,
.booking-section p,
.booking-section .section-number {
  color: inherit;
}

.booking-section .section-number {
  color: #d5bd8b;
}

.booking-grid {
  align-items: start;
}

.booking-grid > div > p {
  color: rgba(255, 253, 248, 0.86);
  max-width: 42rem;
}

.how-it-works,
.booking-trust {
  background: rgba(255, 253, 248, 0.12);
  border-color: rgba(255, 253, 248, 0.28);
  margin: 1.3rem 0;
  padding: 1.1rem;
}

.how-it-works h3 {
  color: var(--panel);
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.how-it-works ol {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.2rem;
}

.how-it-works li {
  color: rgba(255, 253, 248, 0.86);
}

.how-note {
  color: rgba(255, 253, 248, 0.82) !important;
  font-size: 0.9rem;
  margin: 0.85rem 0 0;
}

.booking-trust {
  border-left: 3px solid #d5bd8b;
}

.airbnb-option {
  color: rgba(255, 253, 248, 0.82) !important;
}

.airbnb-option a {
  color: #d5bd8b;
}

.availability-card {
  background: rgba(255, 253, 248, 0.96);
  color: var(--charcoal);
  margin-top: 1.5rem;
  padding: 1.1rem;
}

.availability-card h3,
.availability-card p {
  color: var(--charcoal);
}

.availability-card p {
  color: var(--taupe);
  font-size: 0.88rem;
}

.availability-calendar {
  background: #fff;
  border: 1px solid rgba(80, 68, 56, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(48, 38, 28, 0.08);
  margin-top: 1.25rem;
  overflow: hidden;
}

.availability-calendar iframe {
  border: 0;
  display: block;
  min-height: 650px;
  width: 100%;
}

.date-request-note {
  background: var(--paper);
  border: 1px solid rgba(214, 203, 186, 0.92);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius);
  display: grid;
  gap: 0.3rem;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
}

.date-request-note strong {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 400;
  line-height: 1.1;
}

.date-request-note span {
  color: var(--taupe);
  font-size: 0.9rem;
}

.date-request-note a {
  color: var(--sage-dark);
  font-weight: 500;
}

.booking-form {
  background: rgba(255, 253, 248, 0.96);
  color: var(--charcoal);
  display: grid;
  gap: 0.95rem;
  padding: 1.25rem;
}

.honeypot {
  display: none !important;
}

.field-row {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 0.35rem;
}

label span {
  color: var(--sage-dark);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
textarea {
  background: var(--panel);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  color: var(--charcoal);
  min-height: 3.05rem;
  padding: 0.68rem 0.78rem;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--sage-dark);
  outline: 3px solid rgba(95, 118, 80, 0.18);
}

.field-error {
  color: var(--danger);
  font-size: 0.78rem;
  min-height: 1rem;
}

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

.checkbox-field {
  align-items: start;
  background: var(--paper);
  border: 1px solid rgba(214, 203, 186, 0.85);
  border-radius: var(--radius);
  display: grid;
  gap: 0.65rem;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 0.85rem;
}

.checkbox-field input {
  accent-color: var(--sage-dark);
  height: 1.05rem;
  margin: 0.18rem 0 0;
  min-height: auto;
  padding: 0;
  width: 1.05rem;
}

.checkbox-field span {
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.host-handled-note {
  color: var(--sage-dark);
  font-size: 0.9rem;
  margin: 0;
  padding: 0.85rem 0.9rem;
}

.form-status {
  border-radius: var(--radius);
  display: none;
  font-size: 0.92rem;
  padding: 0.8rem 0.9rem;
}

.form-status.success,
.form-status.error {
  display: block;
}

.form-status.success {
  background: var(--sage-soft);
  border: 1px solid rgba(95, 118, 80, 0.35);
  color: var(--sage-dark);
}

.form-status.error {
  background: #f6e7e4;
  border: 1px solid rgba(143, 48, 41, 0.35);
  color: var(--danger);
}

.request-note {
  color: var(--brown);
  font-size: 0.88rem;
  margin: 0;
  padding: 0.9rem;
}

.form-button {
  border: 0;
  justify-self: start;
}

.form-button[disabled] {
  cursor: wait;
  opacity: 0.75;
}

.form-footnote {
  color: var(--taupe) !important;
  font-size: 0.86rem;
  margin: 0;
}

.site-footer {
  background: #1d2a16;
  color: rgba(255, 253, 248, 0.7);
  display: grid;
  gap: 1.2rem;
  padding: 1.6rem clamp(1rem, 4vw, 3rem);
}

.site-footer div:first-child {
  display: grid;
  gap: 0.12rem;
}

.site-footer strong {
  color: var(--panel);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.site-footer span,
.site-footer p {
  font-size: 0.84rem;
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.site-footer a {
  color: #c0d49a;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer div:first-child a {
  font-size: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.footer-policies {
  border-top: 1px solid rgba(192, 212, 154, 0.22);
  display: grid;
  gap: 0.35rem;
  max-width: 920px;
  padding-top: 1rem;
}

.landing-page {
  background:
    linear-gradient(rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.94)),
    var(--grid);
}

.landing-main {
  padding: clamp(3.5rem, 7vw, 6.5rem) clamp(1rem, 5vw, 4rem);
}

.landing-hero {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.landing-copy h1 {
  color: var(--sage-dark);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  max-width: 11ch;
}

.landing-copy > p:not(.eyebrow) {
  color: var(--brown);
  font-size: 1.1rem;
  max-width: 42rem;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.landing-photo {
  margin: 0;
}

.landing-photo img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.landing-photo figcaption {
  color: var(--taupe);
  font-size: 0.84rem;
  margin-top: 0.7rem;
}

.landing-details {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  max-width: 1180px;
}

.landing-details article {
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.landing-details h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0 0 0.55rem;
}

.landing-details p {
  color: var(--taupe);
  font-size: 0.95rem;
  margin: 0;
}

.compact-button {
  min-height: 2.55rem;
  padding: 0.65rem 1rem;
}

.terms-site-header {
  position: sticky;
}

.terms-page {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem);
}

.terms-hero {
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  max-width: 1060px;
}

.terms-hero h1 {
  color: var(--sage-dark);
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.98;
  max-width: 13ch;
}

.terms-hero > p:not(.eyebrow) {
  color: var(--brown);
  font-size: 1.08rem;
  max-width: 48rem;
}

.terms-layout {
  align-items: start;
  display: grid;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  margin: 0 auto;
  max-width: 1180px;
}

.terms-copy {
  display: grid;
  gap: 1rem;
}

.terms-card,
.terms-ack-form {
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
}

.terms-card {
  padding: clamp(1rem, 3vw, 1.25rem);
}

.terms-card span {
  color: var(--sage-dark);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.terms-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin: 0.35rem 0 0.65rem;
}

.terms-card p {
  color: var(--taupe);
  font-size: 0.96rem;
}

.terms-card p:last-child {
  margin-bottom: 0;
}

.terms-ack-form {
  display: grid;
  gap: 0.95rem;
  padding: clamp(1rem, 3vw, 1.25rem);
  position: sticky;
  top: 96px;
}

.offer-page {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem);
}

.offer-hero h1 {
  max-width: 13.5ch;
}

.offer-layout {
  align-items: start;
  display: grid;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  margin: 0 auto;
  max-width: 1180px;
}

.offer-card {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.25rem;
  padding: clamp(1rem, 3vw, 1.45rem);
}

.offer-card-header {
  align-items: start;
  border-bottom: 1px solid var(--stone);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-bottom: 1rem;
}

.offer-card-header h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.offer-card-header p {
  color: var(--taupe);
}

.offer-card-header img {
  height: 58px;
  width: 58px;
}

.offer-meta {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.offer-meta div {
  background: var(--paper);
  border: 1px solid rgba(214, 203, 186, 0.75);
  border-radius: var(--radius);
  padding: 0.75rem;
}

.offer-meta dt {
  color: var(--sage-dark);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-meta dd {
  color: var(--brown);
  margin: 0.2rem 0 0;
}

.offer-table {
  background: var(--panel);
  border-radius: var(--radius);
}

.inline-terms {
  background: var(--paper);
  border: 1px solid rgba(214, 203, 186, 0.85);
  border-radius: var(--radius);
  padding: 1rem;
}

.inline-terms h3 {
  color: var(--sage-dark);
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}

.inline-terms ul {
  color: var(--brown);
  display: grid;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
  padding-left: 1.1rem;
}

.inline-terms p {
  color: var(--taupe);
  font-size: 0.94rem;
  margin: 0;
}

.inline-terms a {
  color: var(--sage-dark);
  font-weight: 400;
}

.offer-acceptance-form {
  position: sticky;
  top: 96px;
}

.form-card-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.65rem);
}

.form-card-heading p:not(.section-number) {
  color: var(--taupe);
  font-size: 0.94rem;
}

.checkbox-error {
  margin-top: -0.75rem;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .mobile-actions {
    display: flex;
  }

  .hero,
  .section-grid,
  .booking-grid,
  .direct-section,
  .landing-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 390px;
    order: -1;
  }

  .direct-copy,
  .estimate-card {
    justify-self: start;
  }

  .trust-strip,
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .terms-layout {
    grid-template-columns: 1fr;
  }

  .terms-ack-form,
  .offer-acceptance-form {
    position: static;
  }

  .offer-layout {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1121px) {
  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 72px;
  }

  .brand img {
    height: 42px;
    width: 42px;
  }

  .brand strong {
    font-size: 1.04rem;
  }

  .brand small {
    font-size: 0.6rem;
  }

  .mobile-menu {
    top: 72px;
  }

  .section {
    padding: 3.7rem 1rem;
    scroll-margin-top: 96px;
  }

  .hero-copy {
    padding: 3.2rem 1rem;
  }

  .photo-grid,
  .small-card-grid,
  .feature-grid,
  .faq-grid,
  .local-list,
  .review-grid,
  .landing-details {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip div:nth-child(2n) {
    border-right: 0;
  }

  .slideshow {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .slide-stage img {
    aspect-ratio: 4 / 3;
  }

  .slide-stage figcaption {
    align-items: start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .wide-photo img {
    aspect-ratio: 4 / 3;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .booking-form,
  .estimate-card,
  .availability-card,
  .how-it-works,
  .booking-trust,
  .host-handled-note,
  .request-note,
  .terms-ack-form,
  .terms-card,
  .offer-card,
  .accordion details {
    padding: 1rem;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.65rem, 14vw, 3.75rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .site-header {
    padding: 0.65rem 0.85rem;
  }

  .brand small {
    display: none;
  }

  .mobile-book {
    padding-inline: 0.78rem;
  }

  .hero-media {
    min-height: 320px;
  }

  .hero-media figcaption {
    bottom: 0.85rem;
    left: 0.85rem;
    max-width: calc(100% - 1.7rem);
  }

  .hero-actions,
  .landing-actions,
  .button,
  .terms-site-header .compact-button {
    width: 100%;
  }

  .terms-site-header {
    align-items: start;
    display: grid;
  }

  .offer-meta {
    grid-template-columns: 1fr;
  }

  .offer-card-header {
    align-items: start;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    min-height: auto;
  }

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

  .slide-button {
    min-height: 2.8rem;
  }

  .slide-button:first-child {
    order: 2;
  }

  .slide-stage {
    order: 1;
  }

  .slide-button:last-child {
    order: 3;
  }

  .availability-calendar iframe {
    min-height: 520px;
  }
}
