:root {
  --forest: #18201d;
  --forest-2: #212b27;
  --cream: #f4efe5;
  --paper: #fbf8f1;
  --ink: #1b211f;
  --muted: #6b716d;
  --line: rgba(27, 33, 31, 0.14);
  --gold: #a88b61;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  min-height: 82px;
  padding: 16px clamp(22px, 4vw, 68px);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.96);
}
.brand { display: inline-flex; align-items: center; gap: 12px; justify-self: start; }
.brand img { width: 38px; height: 38px; object-fit: contain; }
.brand span { display: grid; line-height: 1.1; }
.brand strong { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 500; }
.brand small { margin-top: 4px; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.site-header nav { display: flex; align-items: center; gap: 26px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.site-header nav a { position: relative; }
.site-header nav a[aria-current='page']::after { content: ''; position: absolute; left: 0; right: 0; bottom: -8px; height: 1px; background: currentColor; }
.header-book { justify-self: end; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--ink); padding: 11px 18px; }

.hero-static {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  background: var(--cream);
}
.hero-copy { padding: clamp(56px, 8vw, 120px) clamp(24px, 6vw, 96px); align-self: center; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 44px; font-size: 11px; color: var(--muted); }
.breadcrumbs a:hover { color: var(--ink); }
.eyebrow, .kicker, .card-label { margin: 0 0 20px; font-size: 10px; line-height: 1.4; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 0.98; margin: 0; }
h1 { max-width: 760px; font-size: clamp(52px, 6.4vw, 100px); letter-spacing: -0.035em; }
h2 { font-size: clamp(40px, 4.2vw, 66px); letter-spacing: -0.025em; }
h3 { font-size: 32px; line-height: 1.05; }
.lead { max-width: 680px; margin: 30px 0 0; font-size: clamp(16px, 1.4vw, 20px); color: #454d49; }
.hero-image { margin: 0; min-height: 620px; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 22px; background: var(--forest); color: #fff; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.button:hover { background: var(--forest-2); }
.button--light { background: var(--cream); color: var(--forest); white-space: nowrap; }
.button--light:hover { background: #fff; }
.text-link { border-bottom: 1px solid currentColor; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }

.section { max-width: 1440px; margin: 0 auto; padding: clamp(72px, 9vw, 136px) clamp(24px, 6vw, 88px); }
.section--compact { padding-top: 70px; padding-bottom: 70px; }
.section--soft { max-width: none; background: var(--cream); }
.section--soft > * { max-width: 1264px; margin-left: auto; margin-right: auto; }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head > p:not(.kicker) { color: var(--muted); max-width: 650px; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr); gap: clamp(44px, 8vw, 120px); align-items: center; }
.split p { max-width: 700px; color: var(--muted); }
.split address { margin: 30px 0 0; max-width: 520px; font-style: normal; font-size: 18px; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card { background: #fff; border: 1px solid var(--line); overflow: hidden; }
.card--room img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { padding: 30px; }
.card-body p { color: var(--muted); }
.card--text { min-height: 300px; display: flex; }
.card--text .card-body { display: flex; flex-direction: column; align-items: flex-start; }
.card--text .text-link { margin-top: auto; }

.feature-list { padding: 0; margin: 24px 0 0; list-style: none; display: grid; gap: 10px; color: #4b534f; font-size: 13px; }
.feature-list li { padding-top: 10px; border-top: 1px solid var(--line); }
.feature-list--large { font-size: 15px; }
.mini-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.mini-grid > div { min-height: 150px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; align-content: start; gap: 8px; }
.mini-grid strong { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; }
.mini-grid span { color: var(--muted); font-size: 13px; }

.media-card { margin: 0; }
.media-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.media-card figcaption { margin-top: 12px; font-size: 11px; color: var(--muted); }
.info-panel { padding: clamp(30px, 5vw, 60px); background: var(--cream); }
.info-panel h3 { margin-bottom: 24px; }
.route-list { list-style: none; margin: 0; padding: 0; }
.route-list li { border-top: 1px solid var(--line); }
.route-list li:last-child { border-bottom: 1px solid var(--line); }
.route-list a { padding: 18px 0; display: flex; justify-content: space-between; gap: 20px; }
.route-list a span:last-child { color: var(--muted); font-size: 12px; }
.link-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.link-grid a { min-height: 190px; padding: 28px; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.link-grid strong { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; }
.link-grid span { color: var(--muted); font-size: 13px; }

.callout { margin: 0; padding: clamp(58px, 7vw, 100px) clamp(24px, 7vw, 104px); background: var(--forest); color: #fff; display: flex; justify-content: space-between; align-items: end; gap: 50px; }
.callout > div { max-width: 820px; }
.callout .kicker { color: #cdbb9c; }
.callout h2 { color: #fff; }
.callout p:not(.kicker) { max-width: 680px; color: rgba(255,255,255,.68); }

.seo-footer { padding: 50px clamp(24px, 6vw, 88px); background: #101613; color: rgba(255,255,255,.8); display: grid; grid-template-columns: 1.2fr 1fr .6fr; gap: 40px; font-size: 12px; }
.seo-footer strong { color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; }
.seo-footer p { max-width: 500px; color: rgba(255,255,255,.5); }
.footer-links { display: grid; align-content: start; gap: 9px; }
.seo-footer a:hover { color: #fff; }

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero-static { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { order: 2; }
  .hero-image { min-height: 52vw; max-height: 560px; }
  .split { grid-template-columns: 1fr; }
  .card-grid, .mini-grid, .link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .callout { align-items: flex-start; flex-direction: column; }
  .seo-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .site-header { min-height: 70px; padding: 13px 18px; gap: 12px; }
  .brand img { width: 32px; height: 32px; }
  .brand strong { font-size: 18px; }
  .brand small { font-size: 8px; }
  .header-book { padding: 9px 11px; font-size: 9px; }
  .hero-copy { padding: 50px 22px 64px; }
  .hero-image { min-height: 72vw; }
  .breadcrumbs { margin-bottom: 30px; }
  h1 { font-size: clamp(46px, 15vw, 68px); }
  .section { padding-left: 22px; padding-right: 22px; }
  .card-grid, .mini-grid, .link-grid { grid-template-columns: 1fr; }
  .callout { padding-left: 22px; padding-right: 22px; }
  .seo-footer { grid-template-columns: 1fr; padding: 42px 22px; }
}
