:root {
  --ink: #1d241f;
  --pine: #27362e;
  --pine-2: #33483d;
  --moss: #66724d;
  --clay: #934727;
  --copper: #b77933;
  --cream: #f7f1e7;
  --paper: #fffaf2;
  --mist: #e6eadc;
  --line: rgba(39, 54, 46, 0.16);
  --shadow: 0 18px 50px rgba(22, 28, 23, 0.16);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  inset: 16px auto auto 16px;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--pine);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: transform 0.2s ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(16px, 4vw, 54px);
  color: var(--paper);
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 250, 242, 0.96);
  color: var(--pine);
  box-shadow: 0 8px 30px rgba(18, 24, 20, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand__mark {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 250, 242, 0.65);
  border-radius: 50%;
  background: var(--paper);
}

.site-header.is-scrolled .brand__mark,
.site-header.is-open .brand__mark {
  border-color: var(--line);
}

.brand__text {
  display: grid;
  line-height: 1.1;
}

.brand__text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 700;
}

.brand__text small {
  font-size: 0.74rem;
  opacity: 0.86;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 650;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 750;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(660px, 86svh, 840px);
  overflow: hidden;
  color: var(--paper);
}

.hero__image,
.page-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 28, 22, 0.82), rgba(23, 28, 22, 0.36) 55%, rgba(23, 28, 22, 0.14)),
    linear-gradient(0deg, rgba(18, 22, 19, 0.48), rgba(18, 22, 19, 0.08));
}

.hero__content {
  align-self: center;
  padding-top: 88px;
  padding-bottom: 132px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-heading--light .section-kicker,
.section-olive .section-kicker {
  color: #f0bd72;
}

h1,
h2,
h3,
p {
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4rem, 12vw, 9rem);
}

.hero__lead {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  max-width: 100%;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
}

.btn-primary {
  background: var(--clay);
  color: #fffaf4;
  box-shadow: 0 12px 28px rgba(56, 22, 12, 0.28);
}

.btn-secondary {
  background: var(--pine);
  color: var(--paper);
}

.btn-ghost {
  border-color: rgba(255, 250, 242, 0.72);
  background: rgba(255, 250, 242, 0.1);
  color: var(--paper);
  backdrop-filter: blur(8px);
}

.hero__facts {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  width: min(var(--container), calc(100% - 32px));
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: var(--radius);
  background: rgba(26, 35, 29, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.hero__facts li {
  display: grid;
  gap: 2px;
  padding: 18px;
  border-right: 1px solid rgba(255, 250, 242, 0.2);
}

.hero__facts li:last-child {
  border-right: 0;
}

.hero__facts strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.hero__facts span {
  font-size: 0.92rem;
  opacity: 0.85;
}

.section {
  padding: clamp(72px, 10vw, 116px) 0;
}

.section-soft {
  background:
    linear-gradient(135deg, rgba(230, 234, 220, 0.76), rgba(247, 241, 231, 0.92)),
    var(--cream);
}

.section-olive {
  background: var(--pine);
  color: var(--paper);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.intro-copy h2,
.split-layout__copy h2,
.details-grid h2,
.route-panel h2,
.story-grid h2,
.location-grid h2,
.form-heading h2,
.booking-band h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(32px, 7vw, 86px);
}

.intro-copy p:not(.section-kicker),
.split-layout__copy p,
.details-grid p,
.story-grid p,
.location-grid p {
  max-width: 680px;
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--clay);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.review-panel {
  border-left: 4px solid var(--clay);
  padding: 10px 0 10px 24px;
}

.review-panel p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.2;
}

.review-panel span {
  display: inline-flex;
  margin-top: 16px;
  color: var(--moss);
  font-weight: 800;
}

.feature-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--pine);
  color: var(--paper);
}

.feature-rail article {
  min-height: 220px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid rgba(255, 250, 242, 0.14);
}

.feature-rail article:last-child {
  border-right: 0;
}

.feature-rail svg {
  color: #f0bd72;
  width: 2rem;
  height: 2rem;
}

.feature-rail h2 {
  margin-top: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.feature-rail p {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.82);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(36px, 8vw, 92px);
}

.split-layout--reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.split-layout__copy .btn {
  margin-top: 20px;
}

.collage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}

.collage img,
.image-stack img,
.story-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.collage img:first-child {
  grid-row: 1 / span 2;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0;
}

.check-grid span {
  position: relative;
  padding: 11px 12px 11px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  font-weight: 750;
}

.check-grid span::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  transform: translateY(-50%);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.experience-grid article {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.06);
}

.experience-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.experience-grid div {
  padding: 24px;
}

.experience-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.experience-grid p {
  color: rgba(255, 250, 242, 0.78);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--mist);
  cursor: zoom-in;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(2, minmax(0, 0.95fr));
  gap: 18px;
}

.testimonial {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.testimonial p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.25;
}

.testimonial span {
  color: var(--moss);
  font-weight: 800;
}

.booking-band {
  padding: 42px 0;
  background: var(--clay);
  color: var(--paper);
}

.booking-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.booking-band .section-kicker {
  color: #ffdb9e;
}

.booking-band h2 {
  max-width: 760px;
  color: #fffaf4;
}

.booking-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-band .btn-primary {
  background: var(--paper);
  color: var(--clay);
  box-shadow: none;
}

.booking-band .btn-secondary {
  border-color: rgba(255, 250, 242, 0.72);
  background: transparent;
}

.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(440px, 62svh, 620px);
  overflow: hidden;
  color: var(--paper);
}

.page-hero__content {
  align-self: end;
  padding-top: 120px;
  padding-bottom: clamp(56px, 9vw, 100px);
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.7rem, 8vw, 5.8rem);
}

.details-grid,
.story-grid,
.location-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 7vw, 82px);
  align-items: start;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.spec-list div {
  min-height: 140px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
}

.spec-list strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--clay);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
}

.spec-list span {
  font-weight: 800;
}

.room-grid,
.service-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.room-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.room-card,
.service-card,
.values-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(35, 42, 34, 0.08);
}

.room-card img,
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-card div,
.service-card div,
.values-grid article {
  padding: 24px;
}

.room-card h2,
.service-card h2,
.values-grid h2 {
  font-size: 1.65rem;
}

.room-grid--four .room-card h2 {
  font-size: 1.4rem;
}

.room-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.room-gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  margin: 0;
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: 0 14px 32px rgba(35, 42, 34, 0.08);
}

.room-gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.room-gallery figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(23, 35, 29, 0.78);
  color: var(--paper);
  font-weight: 800;
  line-height: 1.15;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.image-stack img {
  aspect-ratio: 3 / 4;
}

.image-stack img:last-child {
  margin-top: 52px;
}

.route-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 32px;
}

.route-panel ul,
.location-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-panel li,
.location-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.route-panel span,
.location-list span {
  color: var(--clay);
  font-weight: 850;
}

.story-grid {
  align-items: center;
}

.story-grid img {
  aspect-ratio: 4 / 5;
}

.letter-section {
  background:
    linear-gradient(135deg, rgba(230, 234, 220, 0.76), rgba(247, 241, 231, 0.94)),
    var(--cream);
}

.letter-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.letter-intro h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.letter-intro p:not(.section-kicker) {
  max-width: 600px;
  font-size: 1.05rem;
}

.letter-photo-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
  margin-top: 28px;
}

.letter-photo-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.letter-photo-strip img:first-child {
  height: 220px;
  margin-top: 44px;
}

.old-letter {
  position: relative;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(91, 62, 34, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 12%, rgba(183, 121, 51, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(237, 217, 184, 0.92));
  box-shadow: 0 22px 60px rgba(66, 42, 23, 0.18);
  color: #35261a;
}

.old-letter::before,
.old-letter::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.old-letter::before {
  inset: 14px;
  border: 1px solid rgba(91, 62, 34, 0.18);
  border-radius: calc(var(--radius) - 2px);
}

.old-letter::after {
  right: 34px;
  bottom: 28px;
  width: 76px;
  height: 76px;
  border: 2px solid rgba(147, 71, 39, 0.28);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.old-letter p {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.72;
}

.old-letter p:first-of-type::first-letter {
  float: left;
  padding: 0 8px 0 0;
  color: var(--clay);
  font-size: 3.9rem;
  line-height: 0.9;
}

.letter-date,
.letter-signature {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--clay);
  font-weight: 850;
}

.letter-date {
  margin-bottom: 20px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.letter-signature {
  margin-top: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.values-grid article {
  min-height: 220px;
}

.host-panel {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  max-width: 760px;
}

.host-panel img,
.contact-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid rgba(255, 250, 242, 0.24);
}

.host-panel h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.contact-grid {
  align-items: stretch;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--pine);
  color: var(--paper);
}

.contact-card h2 {
  font-size: 2rem;
}

.contact-card p {
  margin: -8px 0 8px;
  color: rgba(255, 250, 242, 0.72);
}

.contact-line {
  color: #ffdb9e;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--pine);
  font-weight: 800;
}

.privacy-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.45;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--clay);
}

.privacy-check a,
.form-note a {
  color: var(--clay);
  font-weight: 850;
}

.form-note {
  margin: -4px 0 0;
  color: rgba(29, 36, 31, 0.72);
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(39, 54, 46, 0.22);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 12px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(183, 121, 51, 0.35);
  outline-offset: 3px;
}

.site-footer {
  padding: 54px 0;
  background: #17231d;
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 34px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-decoration: none;
}

.site-footer h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.site-footer p {
  margin: 0 0 12px;
  color: rgba(255, 250, 242, 0.72);
}

.site-footer a {
  display: block;
  width: fit-content;
  color: rgba(255, 250, 242, 0.86);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffdb9e;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 242, 0.14);
  color: rgba(255, 250, 242, 0.66);
  font-size: 0.9rem;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-legal button {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 250, 242, 0.86);
  cursor: pointer;
  font: inherit;
}

.footer-legal button:hover,
.footer-legal button:focus-visible {
  color: #ffdb9e;
}

.legal-page {
  padding: 132px 0 86px;
  background:
    linear-gradient(135deg, rgba(230, 234, 220, 0.7), rgba(255, 250, 242, 0.96)),
    var(--paper);
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
}

.legal-nav a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.72);
  color: var(--pine);
  text-decoration: none;
  font-weight: 800;
}

.legal-nav a.is-active,
.legal-nav a:hover,
.legal-nav a:focus-visible {
  background: var(--pine);
  color: var(--paper);
}

.legal-card {
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(35, 42, 34, 0.08);
}

.legal-card h1 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-card p,
.legal-card li,
.legal-card dd {
  color: rgba(29, 36, 31, 0.82);
}

.legal-card a {
  color: var(--clay);
  font-weight: 850;
}

.legal-data {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 10px 18px;
  margin: 20px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.legal-data dt {
  color: var(--pine);
  font-weight: 850;
}

.legal-data dd {
  margin: 0;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}

.legal-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: var(--cream);
}

.legal-table th,
.legal-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--pine);
  font-weight: 850;
}

.legal-table code {
  color: var(--clay);
  font-weight: 850;
}

.cookie-banner {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(1040px, calc(100% - 24px));
  padding: 18px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: var(--radius);
  background: rgba(23, 35, 29, 0.96);
  color: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.cookie-banner__copy p {
  margin: 0;
  color: rgba(255, 250, 242, 0.78);
}

.cookie-banner__actions,
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.btn-quiet {
  border-color: rgba(255, 250, 242, 0.42);
  background: transparent;
  color: var(--paper);
}

.cookie-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(9, 14, 11, 0.68);
}

.cookie-modal__panel {
  position: relative;
  width: min(680px, 100%);
  max-height: min(780px, calc(100vh - 36px));
  overflow-y: auto;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.cookie-modal__panel h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.cookie-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--pine);
  cursor: pointer;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 14px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.cookie-option strong,
.cookie-option span {
  display: block;
}

.cookie-option span {
  margin-top: 4px;
  color: rgba(29, 36, 31, 0.72);
  font-size: 0.94rem;
  line-height: 1.35;
}

.cookie-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--clay);
}

.cookie-modal .btn-quiet {
  border-color: var(--line);
  color: var(--pine);
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(230, 234, 220, 0.72), rgba(255, 250, 242, 0.94)),
    var(--paper);
}

.not-found-card {
  width: min(620px, 100%);
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  text-align: center;
  box-shadow: var(--shadow);
}

.not-found-card img {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  border-radius: 50%;
}

.not-found-card h1 {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
}

.not-found-card p:not(.section-kicker) {
  margin: 16px auto 24px;
  max-width: 420px;
}

.lightbox {
  width: min(1040px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(9, 14, 11, 0.78);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #111;
}

.lightbox__close {
  position: absolute;
  z-index: 1;
  right: 10px;
  top: 10px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 242, 0.44);
  border-radius: var(--radius);
  background: rgba(23, 35, 29, 0.8);
  color: var(--paper);
  cursor: pointer;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    background: rgba(23, 35, 29, 0.24);
    backdrop-filter: blur(8px);
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 16px;
    right: 16px;
    display: none;
    grid-column: 1 / -1;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--pine);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: grid;
    gap: 6px;
  }

  .site-nav a {
    padding: 10px 0;
  }

  .header-cta {
    display: none;
  }

  .feature-rail,
  .experience-grid,
  .room-grid,
  .service-grid,
  .values-grid,
  .room-gallery,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .split-layout--reverse,
  .details-grid,
  .story-grid,
  .letter-layout,
  .legal-layout,
  .contact-grid,
  .route-panel,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    min-height: 68px;
    padding-inline: 12px;
  }

  .nav-toggle {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 70;
    border-color: rgba(255, 250, 242, 0.7);
    background: var(--clay);
    color: var(--paper);
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__text small {
    display: none;
  }

  .hero {
    min-height: 82svh;
  }

  .hero__content {
    padding-top: 86px;
    padding-bottom: 184px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .section-heading h2,
  .intro-copy h2,
  .split-layout__copy h2,
  .details-grid h2,
  .route-panel h2,
  .story-grid h2,
  .location-grid h2,
  .form-heading h2,
  .booking-band h2 {
    font-size: clamp(1.85rem, 7.6vw, 2.45rem);
  }

  .hero__actions,
  .booking-band__actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero__facts {
    grid-template-columns: repeat(2, 1fr);
    bottom: 12px;
  }

  .hero__facts li {
    padding: 12px;
  }

  .hero__facts li:nth-child(2) {
    border-right: 0;
  }

  .hero__facts li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 250, 242, 0.2);
  }

  .intro-grid,
  .feature-rail,
  .experience-grid,
  .room-grid,
  .service-grid,
  .values-grid,
  .room-gallery,
  .reviews-grid,
  .footer-grid,
  .spec-list,
  .route-panel ul,
  .location-list,
  .form-row,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .feature-rail article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.14);
  }

  .feature-rail article:last-child {
    border-bottom: 0;
  }

  .collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 190px 190px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .booking-band__inner {
    display: grid;
  }

  .host-panel {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-card {
    padding: 22px;
  }

  .footer-legal {
    display: grid;
  }

  .footer-legal nav {
    justify-content: flex-start;
  }

  .legal-page {
    padding-top: 104px;
  }

  .legal-nav,
  .legal-data {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .gallery-grid,
  .collage,
  .image-stack {
    grid-template-columns: 1fr;
  }

  .collage {
    grid-template-rows: repeat(3, 220px);
  }

  .collage img:first-child {
    grid-row: auto;
  }

  .image-stack img:last-child {
    margin-top: 0;
  }
}
