/* Lightle House — warm historic-inn stylesheet
   Mobile-first. No framework. Cream, brick red, deep green. */

:root {
  --cream: #f7f1e4;
  --cream-deep: #ebe1cc;
  --parchment: #faf6ee;
  --paper: #fffaf1;
  --ink: #241914;
  --ink-soft: #5a4638;
  --muted: #7a6554;
  --brick: #8c3b2a;
  --brick-deep: #6c2c1e;
  --brick-light: #b45a44;
  --green: #1e3d32;
  --green-deep: #142820;
  --green-mid: #2d5647;
  --gold: #b08a58;
  --gold-pale: #e4d2b0;
  --line: rgba(140, 59, 42, 0.28);
  --shadow: 0 18px 40px rgba(36, 25, 20, 0.12);
  --font-display: "Cormorant Garamond", "Iowan Old Style", Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: "Source Serif 4", Charter, "Bitstream Charter", Cambria, Georgia, serif;
  --font-ui: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
  --measure: 70rem;
  --radius: 2px;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(176, 138, 88, 0.12), transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(36, 25, 20, 0.015) 3px,
      rgba(36, 25, 20, 0.015) 4px
    ),
    var(--cream);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--brick-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brick);
}

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

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3.5rem;
  z-index: 100;
  background: var(--green);
  color: var(--parchment);
  padding: 0.5rem 0.9rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
}

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

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--parchment);
  border-bottom: 3px double var(--brick);
}

.header-inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0.7rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--green);
  min-width: 0;
}

.brand:hover {
  color: var(--green-mid);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.brand-place {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brick);
  margin-top: 0.12rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--green);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}

.nav-toggle-bars {
  display: block;
  width: 1.05rem;
  height: 2px;
  background: var(--brick);
  box-shadow: 0 -5px 0 var(--brick), 0 5px 0 var(--brick);
}

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--parchment);
  border-bottom: 1px solid var(--line);
  padding: 0.4rem 1.15rem 1rem;
}

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

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: block;
  padding: 0.55rem 0.15rem;
  text-decoration: none;
  color: var(--green);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(140, 59, 42, 0.12);
}

.site-nav a[aria-current="page"] {
  color: var(--brick);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brick);
}

.nav-book {
  color: var(--brick-deep) !important;
}

@media (min-width: 52rem) {
  .nav-toggle { display: none; }
  .header-inner { padding: 0.85rem 1.5rem; }
  .brand-name { font-size: 1.85rem; }
  .site-nav {
    display: block;
    position: static;
    border: 0;
    padding: 0;
    background: transparent;
  }
  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 0.15rem 1.35rem;
  }
  .site-nav a {
    border: 0;
    padding: 0.35rem 0;
  }
}

/* ---------- Layout ---------- */

.site-main {
  flex: 1;
}

.wrap {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 1.5rem 1.15rem 3rem;
}

@media (min-width: 52rem) {
  .wrap { padding: 2.25rem 1.5rem 4rem; }
}

.page-intro {
  max-width: 42rem;
  margin: 0 0 2rem;
}

.kicker {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brick);
  margin: 0 0 0.45rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green);
  margin: 0 0 0.6rem;
}

h1 {
  font-size: clamp(2.15rem, 6vw, 3.6rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
}

h3 {
  font-size: 1.45rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

.rule {
  width: 4.5rem;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 0 0 1.25rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--brick);
  background: var(--brick);
  color: var(--parchment);
  cursor: pointer;
  line-height: 1.2;
}

.btn:hover,
.btn:focus-visible {
  background: var(--brick-deep);
  border-color: var(--brick-deep);
  color: var(--parchment);
}

.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--green);
  color: var(--parchment);
  border-color: var(--green);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 78vh;
  color: var(--parchment);
  display: flex;
  align-items: flex-end;
  background: var(--green-deep);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 32%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 40, 32, 0.15) 20%, rgba(20, 18, 14, 0.72) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: var(--measure);
  margin: 0 auto;
  padding: 2.5rem 1.15rem 2.6rem;
  width: 100%;
}

.hero-copy h1 {
  color: var(--parchment);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  max-width: 14ch;
}

.hero-copy .kicker {
  color: var(--gold-pale);
}

.hero-copy p {
  max-width: 34rem;
  margin: 0 0 1.2rem;
  font-size: 1.12rem;
  color: #f3ead8;
}

@media (min-width: 52rem) {
  .hero { min-height: 86vh; }
  .hero-copy { padding: 3.5rem 1.5rem 3.4rem; }
}

/* ---------- Sections ---------- */

.split {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 52rem) {
  .split {
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
    align-items: start;
  }
}

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.25rem 1.2rem 1.35rem;
  box-shadow: var(--shadow);
}

.nrhp-band {
  background: var(--green);
  color: var(--parchment);
  padding: 1.6rem 1.15rem;
  text-align: center;
}

.nrhp-band p {
  max-width: 44rem;
  margin: 0 auto;
  font-size: 1.05rem;
}

.nrhp-band strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.place-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 40rem) {
  .place-grid { grid-template-columns: 1fr 1fr; }
}

.place-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.2rem 1.15rem 1.3rem;
}

.place-card h3 {
  margin-bottom: 0.4rem;
}

.place-card p {
  margin: 0;
  color: var(--ink-soft);
}

/* ---------- Room cards ---------- */

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

@media (min-width: 40rem) {
  .room-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 64rem) {
  .room-grid { grid-template-columns: repeat(3, 1fr); }
}

.room-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.room-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: inherit;
}

.room-portrait {
  position: relative;
  aspect-ratio: 5 / 3.4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.05rem 0.9rem;
  color: var(--parchment);
  isolation: isolate;
}

.room-portrait::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 1px solid rgba(250, 246, 238, 0.35);
  pointer-events: none;
  z-index: 1;
}

.room-portrait__num {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 3.4rem);
  line-height: 0.9;
  font-weight: 500;
}

.room-portrait__beds {
  position: relative;
  z-index: 1;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  opacity: 0.9;
}

.room-portrait--1 { background:
  linear-gradient(160deg, rgba(20,18,14,0.08), rgba(20,18,14,0.35)),
  repeating-linear-gradient(135deg, #8c3b2a 0 12px, #7a3224 12px 24px); }
.room-portrait--2 { background:
  linear-gradient(160deg, rgba(20,18,14,0.08), rgba(20,18,14,0.4)),
  repeating-linear-gradient(135deg, #1e3d32 0 12px, #18342b 12px 24px); }
.room-portrait--3 { background:
  linear-gradient(160deg, rgba(20,18,14,0.12), rgba(20,18,14,0.38)),
  repeating-linear-gradient(135deg, #9a6b3a 0 12px, #855b30 12px 24px); }
.room-portrait--4 { background:
  linear-gradient(160deg, rgba(20,18,14,0.1), rgba(20,18,14,0.4)),
  repeating-linear-gradient(135deg, #6c2c1e 0 12px, #5a2418 12px 24px); }
.room-portrait--5 { background:
  linear-gradient(160deg, rgba(20,18,14,0.08), rgba(20,18,14,0.42)),
  repeating-linear-gradient(135deg, #2d5647 0 12px, #24483b 12px 24px); }

.room-card-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.room-card-body h2,
.room-card-body h3 {
  font-size: 1.45rem;
  margin: 0;
}

.room-meta {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.room-status {
  margin: 0.35rem 0 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brick-deep);
  font-weight: 600;
}

.room-rate {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--brick-deep);
  font-weight: 600;
}

.room-rate .per {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.room-detail {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 52rem) {
  .room-detail {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: start;
  }
}

.fact-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  border-top: 1px solid var(--line);
}

.fact-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.fact-list dt,
.fact-list .label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.fact-list .value {
  font-weight: 600;
  color: var(--green);
  text-align: right;
}

.placeholder-note {
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
  margin: 0.75rem 0 0;
}

.room-portrait.room-portrait--tall {
  aspect-ratio: 4 / 5;
  min-height: 18rem;
}

.room-portrait.has-photo {
  padding: 0;
  background: var(--green-deep);
}
.room-portrait.has-photo::before { display: none; }
.room-portrait.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.room-gallery {
  display: grid;
  gap: 0.65rem;
}
.room-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  background: var(--cream-deep);
}


/* ---------- Forms & calendar ---------- */

.book-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 60rem) {
  .book-layout {
    grid-template-columns: 1.35fr 0.8fr;
    align-items: start;
    gap: 1.75rem;
  }
}

.room-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
}

@media (min-width: 40rem) {
  .room-pills { grid-template-columns: repeat(5, 1fr); }
}

.room-pill {
  appearance: none;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.65rem 0.4rem 0.7rem;
  text-align: center;
  cursor: pointer;
  font-family: var(--font-ui);

}

.room-pill strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green);
}

.room-pill span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.room-pill[aria-pressed="true"],
.room-pill.is-selected {
  border-color: var(--brick);
  background: #f3e6d6;
  box-shadow: inset 0 0 0 1px var(--brick);
}

.cal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cal-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--green);
  margin: 0;
  text-align: center;
  flex: 1;
}

.cal-nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--green);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.cal-nav-btn:hover {
  border-color: var(--brick);
  color: var(--brick);
}

.calendar {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: var(--paper);
  border: 1px solid var(--line);
}

.calendar caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.calendar th {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding: 0.55rem 0.15rem;
  border-bottom: 1px solid var(--line);
}

.calendar td {
  padding: 0;
  text-align: center;
  vertical-align: middle;
}

.day-btn {
  width: 100%;
  aspect-ratio: 1;
  min-height: 2.6rem;
  border: 0;
  background: transparent;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
  position: relative;
}

.day-btn:hover:not(:disabled) {
  background: rgba(176, 138, 88, 0.18);
}

.day-btn.is-outside {
  color: #c0b09c;
}

.day-btn.is-today:not(.is-selected) {
  box-shadow: inset 0 0 0 1px var(--gold);
}

.day-btn.is-in-range {
  background: rgba(140, 59, 42, 0.12);
}

.day-btn.is-selected {
  background: var(--brick);
  color: var(--parchment);
}

.day-btn.is-blocked,
.day-btn:disabled {
  color: #b8a898;
  text-decoration: line-through;
  cursor: not-allowed;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 4px,
      rgba(36, 25, 20, 0.04) 4px,
      rgba(36, 25, 20, 0.04) 6px
    );
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--muted);
}

.cal-legend i {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.35rem;
  vertical-align: -1px;
  border: 1px solid var(--line);
}

.cal-legend .swatch-selected { background: var(--brick); border-color: var(--brick); }
.cal-legend .swatch-range { background: rgba(140, 59, 42, 0.12); }
.cal-legend .swatch-blocked {
  background: repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(36,25,20,0.15) 2px, rgba(36,25,20,0.15) 3px);
}

.range-readout {
  margin: 0.9rem 0 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
}

.summary-card h2 {
  font-size: 1.6rem;
}

.summary-total {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--brick-deep);
  margin: 0.4rem 0 0.2rem;
}

.summary-math {
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

.field {
  margin: 0 0 0.9rem;
}

.field label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--line);
  background: #fffef9;
  color: var(--ink);
  border-radius: var(--radius);
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green-mid);
  outline: 2px solid rgba(176, 138, 88, 0.45);
  outline-offset: 0;
}

.field .hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.error {
  color: var(--brick-deep);
  font-size: 0.9rem;
  margin: 0.35rem 0 0;
}

.form-errors {
  background: #f8e6df;
  border: 1px solid var(--brick-light);
  color: var(--brick-deep);
  padding: 0.75rem 0.9rem;
  margin: 0 0 1rem;
}

.form-errors[hidden],
.success[hidden] {
  display: none;
}

.success {
  background: #e7efe8;
  border: 1px solid var(--green-mid);
  padding: 1rem 1.05rem;
  margin: 0 0 1rem;
}

.success h2 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.mailto-box {
  margin-top: 0.85rem;
  word-break: break-word;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--gold-pale);
}

.timeline li {
  padding: 0 0 1.15rem 1.15rem;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  background: var(--brick);
  border-radius: 50%;
}

.timeline strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green);
}

.map-link {
  display: inline-block;
  margin-top: 0.5rem;
}

.about-figure {
  margin: 0 0 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.about-figure img {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  object-position: center 70%;
}

.about-figure figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.7rem 0.9rem 0.85rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--green-deep);
  color: #e6dcc8;
  padding: 2rem 1.15rem 1.6rem;
  margin-top: auto;
  font-size: 0.95rem;
}

.footer-inner {
  max-width: var(--measure);
  margin: 0 auto;
}

.site-footer a {
  color: var(--gold-pale);
}

.site-footer p {
  margin: 0 0 0.55rem;
}

.photo-credit {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(228, 210, 176, 0.25);
  font-size: 0.82rem;
  color: #cbbfaa;
}

/* ---------- Utilities ---------- */

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

.center-cta {
  text-align: center;
  padding: 0.5rem 0 0.25rem;
}

.hero .btn-ghost {
  color: var(--parchment);
  border-color: rgba(250, 246, 238, 0.85);
}
.hero .btn-ghost:hover,
.hero .btn-ghost:focus-visible {
  background: var(--parchment);
  color: var(--green-deep);
  border-color: var(--parchment);
}

.hint {
  font-size: 0.88rem;
  color: var(--muted);
}

.btn:disabled,
.cal-nav-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (min-width: 60rem) {
  .summary-card {
    position: sticky;
    top: 5.5rem;
  }
}

.site-footer address {
  font-style: normal;
}

.day-btn.is-blocked:not(:disabled) {
  text-decoration: none;
  background: transparent;
  box-shadow: inset 0 -2px 0 rgba(140, 59, 42, 0.35);
}

label .hint {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--muted);
}
