:root {
  --ink: #111814;
  --ink-soft: #4b5a50;
  --forest: #1d3028;
  --forest-deep: #0d1814;
  --olive: #6f7662;
  --ivory: #fbf7ee;
  --oyster: #fffdf7;
  --linen: #eee4d3;
  --sand: #d9c7ab;
  --clay: #884739;
  --clay-soft: #b0705d;
  --brass: #b88a4b;
  --brass-light: #e6c790;
  --fig: #563342;
  --white: #ffffff;
  --hairline: rgba(17, 24, 20, 0.13);
  --hairline-light: rgba(251, 247, 238, 0.2);
  --shadow-soft: 0 24px 70px rgba(17, 24, 20, 0.12);
  --shadow-deep: 0 32px 90px rgba(17, 24, 20, 0.28);
  --radius: 6px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.86), rgba(251, 247, 238, 0.98)),
    var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 240ms var(--ease);
}

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

.text-link {
  color: var(--clay);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(184, 138, 75, 0.62);
  outline-offset: 4px;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  transition: transform 220ms var(--ease);
}

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

.breadcrumbs {
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  background: rgba(255, 253, 247, 0.88);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li:not(:last-child)::after {
  color: rgba(17, 24, 20, 0.32);
  content: "/";
}

.breadcrumbs a {
  color: var(--clay);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink);
}

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

.narrow {
  width: min(100% - 32px, 820px);
  margin-inline: auto;
}

.section {
  padding: 76px 0;
}

.section.compact {
  padding: 56px 0;
}

.section-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(136, 71, 57, 0.14), transparent 48%),
    var(--forest);
  color: var(--ivory);
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.48), rgba(238, 228, 211, 0.95)),
    var(--linen);
}

.kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  font-size: 3.45rem;
  line-height: 0.92;
}

h2 {
  font-size: 2.35rem;
  line-height: 1.02;
}

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

p {
  margin: 0;
}

.lead {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.72;
}

.section-band .lead,
.section-band p {
  color: rgba(251, 247, 238, 0.78);
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 38px;
}

.section-head .lead {
  max-width: 700px;
}

.section-head.split {
  align-items: end;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(251, 247, 238, 0.88);
  border-bottom: 1px solid rgba(17, 24, 20, 0.08);
  backdrop-filter: blur(18px) saturate(1.15);
  transition: background 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(251, 247, 238, 0.96);
  border-color: rgba(17, 24, 20, 0.12);
  box-shadow: 0 16px 40px rgba(17, 24, 20, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.12rem;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(17, 24, 20, 0.26);
  border-radius: 50%;
  color: var(--forest);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nav-toggle {
  position: relative;
  z-index: 90;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(17, 24, 20, 0.18);
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.28);
  color: var(--ink);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 240ms var(--ease), opacity 240ms var(--ease), background 240ms var(--ease);
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(6px);
}

.nav-open .nav-toggle {
  border-color: rgba(251, 247, 238, 0.34);
  color: var(--ivory);
}

.nav-open .nav-toggle span {
  background: transparent;
}

.nav-open .nav-toggle span::before {
  background: var(--ivory);
  transform: rotate(45deg);
}

.nav-open .nav-toggle span::after {
  background: var(--ivory);
  transform: translateY(-1px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 104px 32px 44px;
  background:
    linear-gradient(150deg, rgba(86, 51, 66, 0.22), transparent 45%),
    var(--forest-deep);
  color: var(--ivory);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 280ms var(--ease), transform 280ms var(--ease);
}

.nav-open .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  width: fit-content;
  color: inherit;
  font-family: var(--serif);
  font-size: 2.45rem;
  line-height: 0.98;
}

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

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 18px;
  padding: 12px 18px;
  border: 1px solid rgba(251, 247, 238, 0.36);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.language-switcher {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  overflow: hidden;
  margin-top: 6px;
  border: 1px solid rgba(251, 247, 238, 0.28);
  border-radius: 999px;
  background: rgba(251, 247, 238, 0.06);
}

.site-nav .language-switcher a {
  display: inline-flex;
  min-width: 48px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: rgba(251, 247, 238, 0.74);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav .language-switcher a + a {
  border-left: 1px solid rgba(251, 247, 238, 0.2);
}

.site-nav .language-switcher a[aria-current="true"] {
  background: var(--ivory);
  color: var(--forest);
}

.site-nav .language-switcher a::after {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 84svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero.subhero {
  min-height: 60svh;
}

.hero-image,
.hero picture {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero picture {
  overflow: hidden;
}

.hero-image {
  object-fit: cover;
  transform: scale(1.02);
  animation: heroImageScale 1200ms var(--ease) both;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 24, 20, 0.78), rgba(13, 24, 20, 0.3) 58%, rgba(13, 24, 20, 0.12)),
    linear-gradient(0deg, rgba(13, 24, 20, 0.64), rgba(13, 24, 20, 0.04) 54%);
  content: "";
}

.hero-content {
  display: grid;
  align-content: end;
  gap: 20px;
  max-width: 780px;
  padding: 92px 0 58px;
  animation: contentRise 720ms var(--ease) 80ms both;
}

.hero .eyebrow {
  color: var(--brass-light);
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 253, 247, 0.9);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.58;
}

.hero-note {
  display: grid;
  gap: 7px;
  max-width: 620px;
  padding-top: 4px;
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.hero-note span:not(:last-child)::after {
  display: none;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brass-light);
  content: "";
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 260ms var(--ease), border-color 260ms var(--ease), color 260ms var(--ease), transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ivory);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(17, 24, 20, 0.16);
}

.btn-primary:hover {
  background: var(--brass-light);
  color: var(--ink);
}

.btn-dark {
  background: var(--forest);
  color: var(--ivory);
  box-shadow: 0 18px 40px rgba(17, 24, 20, 0.14);
}

.btn-dark:hover {
  background: var(--clay);
  color: var(--white);
}

.btn-outline {
  border-color: rgba(255, 253, 247, 0.64);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--brass-light);
  background: rgba(255, 253, 247, 0.1);
  color: var(--white);
}

.btn-muted {
  border-color: rgba(17, 24, 20, 0.2);
  color: var(--ink);
}

.btn-muted:hover {
  border-color: var(--clay);
  color: var(--clay);
}

.trust-strip {
  background: var(--forest-deep);
  color: var(--ivory);
  border-top: 1px solid rgba(251, 247, 238, 0.12);
}

.trust-strip-inner {
  display: grid;
  gap: 1px;
  background: rgba(251, 247, 238, 0.13);
}

.trust-item {
  display: grid;
  gap: 7px;
  padding: 22px 0;
  background: var(--forest-deep);
}

.trust-item strong {
  color: var(--brass-light);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.1;
}

.trust-item span {
  color: rgba(251, 247, 238, 0.7);
  font-size: 0.82rem;
}

.intro-grid,
.feature-grid,
.contact-grid,
.about-grid,
.experience-layout {
  display: grid;
  gap: 34px;
}

.intro-media,
.about-media,
.contact-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.intro-media::after,
.about-media::after,
.contact-media::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 253, 247, 0.26);
  content: "";
  pointer-events: none;
}

.intro-media img,
.about-media img,
.contact-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.intro-copy {
  display: grid;
  align-content: center;
  gap: 24px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 8px;
  background: rgba(17, 24, 20, 0.14);
}

.stat {
  padding: 18px 12px;
  background: var(--ivory);
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.room-card,
.experience-card,
.journal-card,
.gallery-card {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 20, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 16px 44px rgba(17, 24, 20, 0.06);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms var(--ease);
}

.room-card img,
.experience-card img,
.journal-card img,
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.room-card-content,
.experience-card-content,
.journal-card-content {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.room-meta,
.fine-print {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.room-card .room-meta,
.experience-card .kicker,
.journal-card .kicker {
  margin-bottom: 0;
}

.link-arrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.link-arrow::after {
  margin-left: 8px;
  content: "->";
  transition: transform 240ms var(--ease);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.experience-strip {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(251, 247, 238, 0.18);
  border-radius: var(--radius);
  background: rgba(251, 247, 238, 0.16);
}

.experience-tile {
  display: grid;
  gap: 12px;
  min-height: 178px;
  padding: 26px;
  background: rgba(251, 247, 238, 0.06);
  transition: background 260ms var(--ease);
}

.experience-tile h3 {
  font-size: 1.38rem;
}

.gallery-preview {
  display: grid;
  gap: 12px;
}

.gallery-preview img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 56px rgba(17, 24, 20, 0.1);
}

.gallery-grid {
  display: grid;
  gap: 12px;
}

.quote-band {
  padding: 78px 0;
  background:
    linear-gradient(135deg, rgba(184, 138, 75, 0.16), transparent 44%),
    var(--fig);
  color: var(--ivory);
}

.quote-band blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 1.08;
}

.quote-band cite {
  display: block;
  margin-top: 22px;
  color: rgba(251, 247, 238, 0.72);
  font-style: normal;
}

.amenity-list,
.two-col-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.amenity-list li,
.two-col-list li {
  position: relative;
  padding: 16px 0 16px 26px;
  border-top: 1px solid rgba(17, 24, 20, 0.12);
}

.amenity-list li::before,
.two-col-list li::before {
  position: absolute;
  top: 1.52em;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  content: "";
}

.section-band .amenity-list li,
.section-band .two-col-list li {
  border-top-color: rgba(251, 247, 238, 0.2);
}

.room-detail {
  display: grid;
  gap: 26px;
  padding: 34px 0;
  border-top: 1px solid rgba(17, 24, 20, 0.13);
}

.room-detail:first-child {
  border-top: 0;
  padding-top: 0;
}

.room-detail img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.room-detail-copy {
  display: grid;
  align-content: center;
  gap: 17px;
}

.room-best {
  color: var(--clay);
  font-size: 0.95rem;
  line-height: 1.55;
}

.room-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-facts span {
  padding: 8px 12px;
  border: 1px solid rgba(17, 24, 20, 0.15);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.5);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.room-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.experience-feature {
  display: grid;
  gap: 18px;
}

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

.about-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(17, 24, 20, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 16px 46px rgba(17, 24, 20, 0.05);
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline-item {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-top: 1px solid rgba(17, 24, 20, 0.13);
}

.timeline-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.timeline-item span {
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-panel {
  display: grid;
  gap: 24px;
  padding: 26px;
  border: 1px solid rgba(17, 24, 20, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.76);
  box-shadow: var(--shadow-soft);
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list div {
  display: grid;
  gap: 3px;
}

.contact-list dt {
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
}

.inquiry-form {
  display: grid;
  gap: 15px;
}

.field-grid {
  display: grid;
  gap: 15px;
}

.contact-promises {
  display: grid;
  gap: 8px;
  padding: 14px 0 2px;
}

.contact-promises span {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.contact-promises span::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  content: "";
}

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

.form-field label {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.field-hint {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(17, 24, 20, 0.14);
  border-radius: var(--radius);
  background: rgba(251, 247, 238, 0.78);
  color: var(--ink);
  padding: 13px 14px;
  transition: border-color 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: rgba(184, 138, 75, 0.68);
  background: var(--oyster);
  box-shadow: 0 0 0 4px rgba(184, 138, 75, 0.12);
  outline: 0;
}

.reservation-assurance {
  display: grid;
  gap: 10px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(17, 24, 20, 0.12);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.reservation-assurance strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
}

.map-placeholder {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border-radius: var(--radius);
  background: var(--forest);
  box-shadow: var(--shadow-soft);
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  opacity: 0.82;
}

.map-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  max-width: 430px;
  padding: 20px;
  border: 1px solid rgba(251, 247, 238, 0.18);
  border-radius: var(--radius);
  background: rgba(13, 24, 20, 0.86);
  color: var(--ivory);
  backdrop-filter: blur(16px);
}

.map-label strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  background:
    linear-gradient(115deg, rgba(136, 71, 57, 0.34), transparent 45%),
    linear-gradient(260deg, rgba(184, 138, 75, 0.18), transparent 48%),
    var(--forest-deep);
  color: var(--ivory);
}

.cta-band::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(251, 247, 238, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 247, 238, 0.035) 1px, transparent 1px);
  background-size: 82px 82px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}

.cta-inner {
  position: relative;
  display: grid;
  gap: 22px;
}

.cta-inner p {
  max-width: 650px;
  color: rgba(251, 247, 238, 0.76);
}

.not-found {
  display: grid;
  min-height: 100svh;
  align-items: center;
}

.site-footer {
  padding: 58px 0 30px;
  background: var(--forest-deep);
  color: var(--ivory);
}

.mobile-booking-bar {
  position: fixed;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 12px;
  z-index: 75;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(251, 247, 238, 0.18);
  border-radius: 999px;
  background: rgba(13, 24, 20, 0.92);
  box-shadow: 0 18px 46px rgba(13, 24, 20, 0.28);
  backdrop-filter: blur(18px);
}

.mobile-booking-bar a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-booking-bar a:first-child {
  background: var(--ivory);
  color: var(--ink);
}

@media (max-width: 939px) {
  body.has-mobile-booking {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }
}

.footer-grid {
  display: grid;
  gap: 36px;
}

.footer-brand {
  display: grid;
  gap: 16px;
  max-width: 430px;
}

.footer-brand .brand-mark {
  border-color: rgba(251, 247, 238, 0.38);
  color: var(--ivory);
}

.footer-brand p,
.footer-bottom {
  color: rgba(251, 247, 238, 0.66);
}

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

.footer-links h2 {
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(251, 247, 238, 0.78);
}

.footer-links a:hover {
  color: var(--brass-light);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
  padding-top: 28px;
  margin-top: 42px;
  border-top: 1px solid rgba(251, 247, 238, 0.15);
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroImageScale {
  from {
    transform: scale(1.045);
  }

  to {
    transform: scale(1.015);
  }
}

@keyframes contentRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: hover) {
  .room-card:hover,
  .experience-card:hover,
  .journal-card:hover,
  .gallery-card:hover {
    border-color: rgba(184, 138, 75, 0.32);
    box-shadow: 0 26px 68px rgba(17, 24, 20, 0.14);
    transform: translateY(-5px);
  }

  .room-card:hover img,
  .experience-card:hover img,
  .journal-card:hover img,
  .gallery-card:hover img {
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.04);
  }

  .experience-tile:hover {
    background: rgba(251, 247, 238, 0.1);
  }
}

@media (min-width: 680px) {
  .container,
  .narrow {
    width: min(100% - 48px, 1180px);
  }

  h1 {
    font-size: 4.85rem;
  }

  h2 {
    font-size: 3.05rem;
  }

  h3 {
    font-size: 1.62rem;
  }

  .section {
    padding: 100px 0;
  }

  .section.compact {
    padding: 72px 0;
  }

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

  .trust-item {
    padding: 24px 22px;
  }

  .hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 14px;
  }

  .hero-note span {
    gap: 14px;
  }

  .hero-note span:not(:last-child)::after {
    display: block;
  }

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

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

  .gallery-preview {
    grid-template-columns: 1.12fr 0.88fr;
  }

  .gallery-preview img:first-child {
    grid-row: span 2;
  }

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

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

  .room-detail {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .room-detail:nth-child(even) img {
    order: 2;
  }

  .two-col-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 38px;
  }
}

@media (min-width: 940px) {
  body {
    font-size: 17px;
  }

  .mobile-booking-bar {
    display: none;
  }

  h1 {
    font-size: 6.25rem;
  }

  h2 {
    font-size: 3.95rem;
  }

  .header-inner {
    min-height: 82px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    padding: 0;
    background: transparent;
    color: var(--ink);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    position: relative;
    font-family: var(--sans);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
  }

  .site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.65);
    transition: opacity 220ms var(--ease), transform 220ms var(--ease);
    content: "";
  }

  .site-nav a:hover::after,
  .site-nav a[aria-current="page"]::after {
    opacity: 0.42;
    transform: scaleX(1);
  }

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

  .site-nav .nav-cta {
    margin-top: 0;
    border-color: rgba(17, 24, 20, 0.18);
    color: var(--ink);
  }

  .site-nav .nav-cta:hover {
    border-color: var(--clay);
    color: var(--clay);
  }

  .language-switcher {
    margin-top: 0;
    border-color: rgba(17, 24, 20, 0.16);
    background: rgba(255, 253, 247, 0.46);
  }

  .site-nav .language-switcher a {
    min-width: 40px;
    min-height: 34px;
    padding: 0 11px;
    color: var(--ink-soft);
    font-size: 0.68rem;
  }

  .site-nav .language-switcher a + a {
    border-left-color: rgba(17, 24, 20, 0.13);
  }

  .site-nav .language-switcher a[aria-current="true"] {
    background: var(--forest);
    color: var(--ivory);
  }

  .hero {
    min-height: 86svh;
  }

  .hero.subhero {
    min-height: 66svh;
  }

  .hero-content {
    padding-bottom: 82px;
  }

  .section-head.split {
    grid-template-columns: 0.92fr 1fr;
  }

  .intro-grid,
  .contact-grid,
  .about-grid,
  .experience-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .intro-grid,
  .about-grid {
    gap: 64px;
  }

  .feature-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: 60px;
  }

  .card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 250px;
  }

  .gallery-grid img {
    min-height: 0;
  }

  .gallery-grid img:nth-child(3n + 1) {
    grid-column: span 2;
  }

  .gallery-grid img:nth-child(4n + 2) {
    grid-row: span 2;
  }

  .room-detail {
    gap: 54px;
    padding: 54px 0;
  }

  .room-detail-copy {
    position: relative;
    padding-left: 30px;
  }

  .room-detail-copy::before {
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 0;
    width: 1px;
    background: linear-gradient(var(--brass), rgba(184, 138, 75, 0.08));
    content: "";
  }

  .contact-panel {
    padding: 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  h1 {
    font-size: 6.85rem;
  }

  .hero.subhero h1 {
    font-size: 5.9rem;
  }

  .section {
    padding: 124px 0;
  }

  .room-card img,
  .experience-card img,
  .journal-card img,
  .gallery-card img {
    aspect-ratio: 1 / 1.08;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 3.05rem;
  }

  .btn {
    width: 100%;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
