:root {
  --ink: #18201b;
  --muted: #5f6a63;
  --line: #d8ded9;
  --surface: #ffffff;
  --surface-soft: #f3f6f4;
  --forest: #173629;
  --forest-light: #315b3f;
  --gold: #b9873f;
  --brick: #934b42;
  --sky: #dce9ec;
  --focus: #1769aa;
  --max: 1240px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 10px max(24px, calc((100% - var(--max)) / 2));
  border-bottom: 1px solid rgba(24, 32, 27, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  text-decoration: none;
}

.wordmark-main {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.15;
}

.wordmark-sub {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.site-nav a {
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:not(.nav-book):hover {
  color: var(--forest-light);
}

.nav-book {
  padding: 10px 15px;
  color: #fff;
  background: var(--forest);
}

.nav-toggle {
  display: none;
  justify-self: end;
  padding: 8px 0;
  border: 0;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 560px;
  height: 72svh;
  max-height: 780px;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 52%;
}

.hero-shade {
  background: rgba(8, 18, 13, 0.46);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(100% - 48px, var(--max));
  height: 100%;
  margin: 0 auto;
  padding-bottom: 74px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--forest-light);
}

.hero h1 {
  max-width: 770px;
  margin: 0;
  font-family: var(--serif);
  font-size: 4.6rem;
  font-weight: 600;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-lead {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 580px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-caption {
  position: absolute;
  right: 24px;
  bottom: 18px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: var(--ink);
  background: #fff;
}

.button-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.button-dark {
  color: #fff;
  background: var(--forest);
}

.button-accent {
  color: #fff;
  background: var(--brick);
}

.button:hover {
  filter: brightness(0.94);
}

.availability-band {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.availability-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 18px;
  align-items: end;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 22px 0;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #aeb9b1;
  border-radius: 2px;
  background: #fff;
}

input,
select {
  min-height: 46px;
  padding: 10px 12px;
}

textarea {
  min-height: 130px;
  padding: 12px;
  resize: vertical;
}

.facts-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 34px 0;
}

.fact {
  display: flex;
  min-height: 58px;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.fact:last-child {
  border-right: 1px solid var(--line);
}

.fact strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.2;
}

.fact span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
}

.section {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 104px 0;
}

.section-kicker {
  margin-bottom: 28px;
  color: var(--forest-light);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-section {
  border-top: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.heritage-copy h2,
.inquiry-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

.intro-grid p {
  margin-top: 0;
  color: var(--muted);
}

.intro-grid .large-copy {
  color: var(--ink);
  font-size: 1.2rem;
}

.rooms-section {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
}

.room-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 56px;
  align-items: start;
}

.room-figure {
  position: sticky;
  top: 100px;
  margin: 0;
}

.room-gallery {
  display: grid;
  grid-template-rows: 408px 170px;
  gap: 12px;
}

.room-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.room-gallery-main {
  object-position: center;
}

.room-gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-width: 0;
}

.room-figure figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.74rem;
}

.room-list {
  border-top: 1px solid var(--ink);
}

.room-row {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.room-row h3 {
  margin: 3px 0 12px;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
}

.room-row > p {
  color: var(--muted);
}

.room-count,
.experience-meta,
.plan-number {
  margin: 0;
  color: var(--forest-light);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.text-button,
.text-link {
  display: inline-flex;
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.amenity-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 50px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.amenity-line span {
  font-size: 0.82rem;
  font-weight: 700;
}

.image-break {
  position: relative;
  height: 620px;
  overflow: hidden;
  color: #fff;
}

.image-break::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(13, 23, 18, 0.36);
}

.image-break > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.image-break-copy {
  position: absolute;
  z-index: 2;
  bottom: 56px;
  left: max(24px, calc((100% - var(--max)) / 2));
  max-width: 720px;
}

.image-break h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 3.3rem;
  font-weight: 500;
  line-height: 1.08;
}

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

.experience-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.experience-card img {
  height: 350px;
  object-fit: cover;
}

.experience-copy {
  min-height: 240px;
  padding: 28px;
}

.experience-copy h3 {
  margin: 8px 0 12px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.experience-copy p:last-child {
  color: var(--muted);
}

.heritage-section {
  color: #fff;
  background: var(--forest);
}

.heritage-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 104px 0;
}

.heritage-copy {
  align-self: center;
}

.heritage-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.heritage-copy .text-link {
  margin-top: 14px;
}

.heritage-images {
  display: grid;
  grid-template-rows: 230px 390px;
  gap: 14px;
}

.heritage-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.heritage-wide {
  object-position: center 35%;
}

.guest-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 650px;
  background: var(--sky);
}

.guest-photo img {
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: center 62%;
}

.guest-section blockquote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  margin: 0;
  padding: 80px;
}

.guest-section blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1.18;
}

.guest-section blockquote footer {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.plan-section {
  padding-bottom: 80px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.plan-block {
  padding: 34px 30px 34px 0;
}

.plan-block + .plan-block {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.plan-block h3 {
  margin: 10px 0 14px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.plan-block p:not(.plan-number) {
  color: var(--muted);
}

.faq-list {
  margin-top: 50px;
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 22px 42px 22px 0;
  font-weight: 750;
  cursor: pointer;
}

.faq-list details p {
  max-width: 780px;
  margin: -4px 0 24px;
  color: var(--muted);
}

.inquiry-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  padding: 96px max(24px, calc((100% - var(--max)) / 2));
  color: #fff;
  background: var(--forest-light);
}

.inquiry-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.direct-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 30px;
}

.direct-contact a {
  width: max-content;
  max-width: 100%;
  font-weight: 750;
  text-decoration: none;
}

.inquiry-form {
  padding: 34px;
  color: var(--ink);
  border-radius: 4px;
  background: #fff;
}

.form-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.78rem;
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--forest-light);
  font-size: 0.82rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  padding: 58px max(24px, calc((100% - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer-brand {
  margin: 0 0 8px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.4rem;
}

.site-footer p {
  margin-top: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: flex-end;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.74rem;
}

.policy-page {
  width: min(100% - 48px, 840px);
  margin: 0 auto;
  padding: 72px 0 110px;
}

.policy-page h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1.1;
}

.policy-page h2 {
  margin-top: 42px;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.policy-page p,
.policy-page li {
  color: var(--muted);
}

.policy-meta {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 1000px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .intro-grid,
  .section-heading,
  .heritage-inner,
  .inquiry-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading > p {
    max-width: 680px;
  }

  .room-feature {
    grid-template-columns: 1fr;
  }

  .room-figure {
    position: static;
  }

  .room-gallery {
    grid-template-rows: 430px 190px;
  }

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

  .experience-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .experience-card:last-child img {
    height: 100%;
    min-height: 350px;
  }

  .heritage-images {
    grid-template-columns: 0.8fr 1.2fr;
    grid-template-rows: 400px;
  }

  .inquiry-intro {
    max-width: 680px;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100svh - 76px);
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

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

  .site-nav a {
    padding: 18px 24px;
    border-top: 1px solid var(--line);
  }

  .nav-book {
    color: #fff;
  }

  .availability-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .availability-form .button {
    grid-column: 1 / -1;
  }

  .facts-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .fact:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .intro-grid {
    gap: 34px;
  }

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

  .plan-block,
  .plan-block + .plan-block {
    padding: 30px 0;
    border-left: 0;
  }

  .plan-block + .plan-block {
    border-top: 1px solid var(--line);
  }

  .guest-section {
    grid-template-columns: 1fr;
  }

  .guest-photo img {
    min-height: 480px;
    max-height: 620px;
  }

  .guest-section blockquote {
    max-width: none;
    padding: 62px 40px;
  }

  .guest-section blockquote p {
    font-size: 2.1rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 70px;
    padding-inline: 18px;
  }

  .site-nav {
    inset-block-start: 70px;
    max-height: calc(100svh - 70px);
  }

  .wordmark-main {
    font-size: 1rem;
  }

  .wordmark-sub {
    font-size: 0.62rem;
  }

  .hero {
    min-height: 540px;
    height: 68svh;
  }

  .hero-image {
    object-position: center 50%;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding-bottom: 52px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 2.5rem;
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 1.35rem;
  }

  .hero-copy {
    max-width: 360px;
    font-size: 0.9rem;
  }

  .hero-caption {
    display: none;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1;
    padding-inline: 12px;
  }

  .availability-form {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
  }

  .availability-form .button {
    grid-column: auto;
  }

  .facts-band {
    width: calc(100% - 36px);
  }

  .fact {
    padding: 18px;
  }

  .fact strong {
    font-size: 1.1rem;
  }

  .section,
  .heritage-inner {
    width: calc(100% - 36px);
    padding: 76px 0;
  }

  .section-heading,
  .intro-grid,
  .heritage-inner,
  .inquiry-section {
    gap: 30px;
  }

  .intro-grid h2,
  .section-heading h2,
  .heritage-copy h2,
  .inquiry-intro h2 {
    font-size: 2.25rem;
  }

  .room-gallery {
    grid-template-rows: 330px 130px;
  }

  .image-break {
    height: 520px;
  }

  .image-break-copy {
    right: 18px;
    bottom: 36px;
    left: 18px;
  }

  .image-break h2 {
    font-size: 2.3rem;
  }

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

  .experience-card:last-child {
    grid-column: auto;
    display: block;
  }

  .experience-card img,
  .experience-card:last-child img {
    height: 310px;
    min-height: 0;
  }

  .experience-copy {
    min-height: 0;
  }

  .heritage-images {
    grid-template-columns: 1fr;
    grid-template-rows: 190px 330px;
  }

  .guest-photo img {
    min-height: 430px;
  }

  .guest-section blockquote {
    padding: 52px 24px;
  }

  .guest-section blockquote p {
    font-size: 1.8rem;
  }

  .inquiry-section {
    padding: 74px 18px;
  }

  .inquiry-form {
    padding: 22px;
  }

  .form-grid-two {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 48px 18px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .policy-page {
    width: calc(100% - 36px);
    padding-top: 52px;
  }

  .policy-page h1 {
    font-size: 2.35rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
