@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/playfair-display-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --forest: #1e2a22;
  --forest-deep: #111a14;
  --forest-soft: #2d3c31;
  --cream: #f4f0ea;
  --paper: #fbfaf7;
  --white: #fff;
  --gold: #c28b38;
  --gold-bright: #d8a554;
  --ink: #182019;
  --muted: #68716a;
  --line: rgba(30, 42, 34, .15);
  --line-light: rgba(255, 255, 255, .16);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Plus Jakarta Sans", Arial, sans-serif;
  --container: min(1240px, calc(100vw - 64px));
  --shadow: 0 22px 70px rgba(24, 32, 25, .14);
  --radius: 2px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

button, input, select { font: inherit; }

button, select { cursor: pointer; }

button { color: inherit; }

address { font-style: normal; }

::selection { color: var(--white); background: var(--gold); }

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

.container { width: var(--container); margin-inline: auto; }

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 12px 18px;
  color: var(--forest);
  background: var(--white);
  border-radius: 4px;
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: max(32px, calc((100vw - 1440px) / 2));
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
  transition: height .35s ease, color .35s ease, background .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
  height: 76px;
  color: var(--forest);
  background: rgba(251, 250, 247, .94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 35px rgba(15, 25, 17, .08);
  backdrop-filter: blur(14px);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.brand__mark {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__word { display: grid; gap: 2px; }

.brand__word strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .02em;
}

.brand__word small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .38em;
  text-transform: uppercase;
  opacity: .72;
}

.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); }

.desktop-nav a {
  position: relative;
  padding-block: 12px;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta { justify-self: end; }

.button {
  min-height: 54px;
  width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 24px;
  color: var(--forest-deep);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.button:hover {
  color: var(--forest-deep);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(194, 139, 56, .24);
}

.button--compact { min-height: 44px; padding: 11px 18px; font-size: 12px; }

.button--light { color: var(--forest); background: var(--white); border-color: var(--white); }

.button--light:hover { background: var(--cream); border-color: var(--cream); }

.menu-toggle, .mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.hero__media, .hero__veil, .hero__grain { position: absolute; inset: 0; }

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.02);
  animation: hero-in 1.4s cubic-bezier(.2,.75,.3,1) both;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(12, 21, 15, .96) 0%, rgba(14, 24, 17, .88) 34%, rgba(14, 24, 17, .45) 62%, rgba(10, 18, 13, .2) 100%),
    linear-gradient(0deg, rgba(12, 20, 14, .55) 0%, transparent 45%);
}

.hero__grain {
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 76px;
}

.eyebrow, .kicker {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }

.eyebrow--light { color: var(--gold-bright); }

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 6.2vw, 96px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.hero__lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.7;
}

.hero__actions { display: flex; align-items: center; gap: 30px; margin-top: 36px; }

.text-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 7px;
  color: var(--forest);
  border-bottom: 1px solid rgba(30, 42, 34, .35);
  font-size: 13px;
  font-weight: 700;
  transition: gap .25s ease, color .25s ease, border-color .25s ease;
}

.text-link:hover { gap: 18px; color: var(--gold); border-color: var(--gold); }

.text-link--light { color: var(--white); border-color: rgba(255, 255, 255, .35); }

.direct-badge {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 40px;
  padding: 10px 15px 10px 10px;
  color: rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  font-size: 11px;
}

.direct-badge strong { color: var(--white); }

.direct-badge__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 800;
}

.scroll-cue {
  position: absolute;
  right: max(32px, calc((100vw - 1440px) / 2));
  bottom: 44px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i { width: 1px; height: 55px; display: block; overflow: hidden; background: rgba(255,255,255,.25); }

.scroll-cue i::after {
  content: "";
  width: 1px;
  height: 24px;
  display: block;
  background: var(--gold);
  animation: scroll-line 2s ease-in-out infinite;
}

.booking-band { position: relative; z-index: 5; margin-top: -24px; }

.booking-card {
  min-height: 182px;
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 48px;
  padding: 36px 40px;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.booking-card__intro { display: flex; align-items: flex-start; gap: 22px; }

.section-index { color: var(--gold); font-family: var(--serif); font-size: 15px; }

.booking-card h2 { margin: 0; font-family: var(--serif); font-size: 31px; font-weight: 600; line-height: 1.1; }

.booking-card .kicker { margin-bottom: 8px; }

.booking-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr .9fr auto;
  align-items: end;
  gap: 12px;
}

.booking-form label, .lead-form label, .corporate-form label { display: grid; gap: 8px; }

.booking-form label > span, .lead-form label > span, .corporate-form label > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.booking-form input, .booking-form select,
.lead-form input, .lead-form select,
.corporate-form input, .corporate-form select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.booking-form input:hover, .booking-form select:hover,
.lead-form input:hover, .lead-form select:hover,
.corporate-form input:hover, .corporate-form select:hover { border-color: rgba(30, 42, 34, .35); }

.booking-form input:focus, .booking-form select:focus,
.lead-form input:focus, .lead-form select:focus,
.corporate-form input:focus, .corporate-form select:focus {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(194, 139, 56, .14);
}

.booking-form__submit { min-width: 196px; }

.form-message {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 0;
  color: #a1392f;
  font-size: 12px;
  font-weight: 600;
}

.form-message:empty { display: none; }

.trust-strip { padding: 56px 0 78px; }

.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }

.trust-item {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 27px 28px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child { border-right: 0; }

.trust-item > span { position: absolute; top: 12px; right: 14px; color: rgba(30,42,34,.25); font-family: var(--serif); font-size: 11px; }

.trust-item strong { color: var(--forest); font-size: 14px; }

.trust-item small { color: var(--muted); font-size: 11px; }

.section-pad { padding: 120px 0; }

.positioning { overflow: hidden; background: var(--cream); }

.positioning__grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: clamp(70px, 8vw, 128px); }

.section-copy h2, .section-heading h2, .events__copy h2, .location h2, .final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.section-copy > p:not(.kicker) { max-width: 570px; margin: 28px 0; color: var(--muted); font-size: 16px; line-height: 1.85; }

.check-list { display: grid; gap: 0; margin: 30px 0; padding: 0; list-style: none; }

.check-list li {
  position: relative;
  padding: 14px 10px 14px 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

.check-list li:last-child { border-bottom: 1px solid var(--line); }

.check-list li::before { content: "✓"; position: absolute; left: 4px; color: var(--gold); }

.editorial-collage { position: relative; min-height: 650px; }

.image-frame {
  position: absolute;
  overflow: hidden;
  padding: 0;
  background: var(--forest);
  border: 0;
  box-shadow: var(--shadow);
}

.image-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.65,.3,1); }

.image-frame:hover img { transform: scale(1.04); }

.image-frame span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  color: var(--forest);
  background: rgba(255, 255, 255, .92);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.image-frame--tall { inset: 0 19% 14% 0; }

.image-frame--small { right: 0; bottom: 0; width: 48%; height: 45%; border: 12px solid var(--cream); }

.collage-note {
  position: absolute;
  top: 8%;
  right: 0;
  width: 190px;
  display: grid;
  padding: 24px;
  color: var(--white);
  background: var(--forest);
}

.collage-note strong { color: var(--gold); font-family: var(--serif); font-size: 42px; line-height: 1; }

.collage-note span { margin-top: 10px; color: rgba(255,255,255,.68); font-size: 11px; line-height: 1.5; }

.rooms { overflow: hidden; background: var(--paper); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 64px;
}

.section-heading h2 { max-width: 760px; }

.section-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 14px; line-height: 1.8; }

.rooms-track {
  display: grid;
  grid-auto-columns: minmax(0, 76%);
  grid-auto-flow: column;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.rooms-track::-webkit-scrollbar { display: none; }

.room-card {
  min-height: 530px;
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  background: var(--white);
  border: 1px solid var(--line);
  scroll-snap-align: start;
}

.room-card__image { position: relative; min-height: 530px; overflow: hidden; padding: 0; border: 0; background: var(--cream); }

.room-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }

.room-card__image:hover img { transform: scale(1.035); }

.room-card__tag {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 9px 13px;
  color: var(--forest);
  background: rgba(255,255,255,.92);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.room-card__body { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(34px, 4vw, 64px); }

.room-card__number { margin: 0 0 10px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.room-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(34px, 3.6vw, 50px); font-weight: 500; line-height: 1.08; }

.room-card__body > p { margin: 24px 0; color: var(--muted); font-size: 13px; line-height: 1.8; }

.amenities { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 28px; padding: 0; list-style: none; }

.amenities li { padding: 6px 9px; color: var(--forest-soft); background: var(--cream); font-size: 9px; font-weight: 700; letter-spacing: .04em; }

.carousel-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 26px; }

.carousel-status { color: var(--muted); font-family: var(--serif); font-size: 13px; }

.carousel-status strong { color: var(--forest); font-size: 20px; }

.carousel-controls > div { display: flex; }

.carousel-controls button {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  font-size: 19px;
  transition: color .2s ease, background .2s ease;
}

.carousel-controls button + button { border-left: 0; }

.carousel-controls button:hover { color: var(--white); background: var(--forest); }

.events { color: var(--white); background: var(--forest-deep); overflow: hidden; }

.events__grid { display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: clamp(68px, 8vw, 126px); }

.events__visual { position: relative; min-height: 650px; }

.events__main-image { position: absolute; inset: 0 18% 13% 0; overflow: hidden; padding: 0; border: 0; background: var(--forest); }

.events__main-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }

.events__main-image:hover img { transform: scale(1.035); }

.events__detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 47%;
  display: grid;
  border: 12px solid var(--forest-deep);
  background: var(--forest);
}

.events__detail img { width: 100%; aspect-ratio: 1.25; object-fit: cover; }

.events__detail span { padding: 14px; color: rgba(255,255,255,.68); font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

.kicker--gold { color: var(--gold-bright); }

.events__copy h2 { font-size: clamp(42px, 4.5vw, 70px); }

.events__copy > p:not(.kicker) { margin: 28px 0 30px; color: rgba(255,255,255,.66); font-size: 15px; line-height: 1.85; }

.event-specs { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 0 34px; border-block: 1px solid var(--line-light); }

.event-specs div { display: grid; gap: 8px; padding: 18px 14px 18px 0; }

.event-specs span { color: rgba(255,255,255,.45); font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }

.event-specs strong { font-size: 11px; }

.events__copy > small { display: block; max-width: 470px; margin-top: 18px; color: rgba(255,255,255,.43); font-size: 9px; line-height: 1.65; }

.event-request { padding: 110px 0; background: var(--cream); }

.event-request__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(70px, 9vw, 150px); align-items: start; }

.event-request .section-copy h2 { font-size: clamp(40px, 4vw, 61px); }

.lead-form, .corporate-form { display: grid; gap: 18px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.lead-form .button, .corporate-form .button { margin-top: 4px; }

.privacy-note { margin: -2px 0 0; color: var(--muted); font-size: 9px; line-height: 1.6; }

.corporate { color: var(--white); background: var(--forest); }

.corporate__grid { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: clamp(76px, 10vw, 160px); }

.section-index--light { display: block; margin-bottom: 28px; color: rgba(255,255,255,.4); }

.corporate__copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 5vw, 72px); font-weight: 500; line-height: 1.05; letter-spacing: -.035em; }

.corporate__copy > p:not(.kicker) { margin: 28px 0; color: rgba(255,255,255,.64); font-size: 15px; line-height: 1.8; }

.corporate-benefits { margin: 36px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }

.corporate-benefits li { display: grid; grid-template-columns: 42px 1fr; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line-light); font-size: 12px; font-weight: 600; }

.corporate-benefits span { color: var(--gold-bright); font-family: var(--serif); }

.corporate-form { padding: 44px; color: var(--ink); background: var(--paper); box-shadow: 0 30px 80px rgba(0,0,0,.2); }

.corporate-form label > span em { font-style: normal; font-weight: 500; letter-spacing: 0; text-transform: none; }

.amenity-section { background: var(--paper); }

.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 470px; }

.amenity-card { position: relative; min-height: 470px; display: flex; align-items: flex-end; overflow: hidden; padding: 28px; color: var(--white); }

.amenity-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }

.amenity-card--image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,19,14,.86), rgba(12,19,14,.08) 72%); }

.amenity-card:hover img { transform: scale(1.04); }

.amenity-card > div { position: relative; z-index: 2; }

.amenity-card > div > span { color: var(--gold-bright); font-family: var(--serif); font-size: 12px; }

.amenity-card h3 { margin: 8px 0 10px; font-family: var(--serif); font-size: 27px; font-weight: 500; }

.amenity-card p { margin: 0; color: rgba(255,255,255,.67); font-size: 11px; line-height: 1.7; }

.amenity-card--dark { background: var(--forest-deep); }

.amenity-card--gold { color: var(--forest-deep); background: var(--gold); }

.amenity-card--gold > div > span, .amenity-card--gold p { color: rgba(17,26,20,.65); }

.amenity-card__icon { position: absolute; top: 35px; right: 35px; color: rgba(255,255,255,.2); font-family: var(--serif); font-size: 80px; line-height: 1; }

.amenity-card--gold .amenity-card__icon { color: rgba(17,26,20,.16); }

.amenity-disclaimer { max-width: 760px; margin: 25px 0 0; color: var(--muted); font-size: 10px; }

.location { padding: 120px 0; color: var(--white); background: var(--forest-deep); }

.location__grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(70px, 9vw, 150px); }

.location h2 { font-size: clamp(42px, 4.6vw, 68px); }

.location address { margin: 34px 0; color: rgba(255,255,255,.64); font-size: 14px; line-height: 1.9; }

.location address span { display: block; margin-bottom: 5px; color: var(--white); font-weight: 700; }

.location__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }

.map-shell { min-height: 520px; background: #243128; border: 1px solid var(--line-light); }

.map-placeholder { min-height: 520px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 44px; text-align: center; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 36px 36px; }

.map-placeholder strong { margin-top: 22px; font-family: var(--serif); font-size: 28px; font-weight: 500; }

.map-placeholder p { max-width: 370px; margin: 10px 0 22px; color: rgba(255,255,255,.6); font-size: 12px; }

.map-placeholder small { max-width: 350px; margin-top: 15px; color: rgba(255,255,255,.4); font-size: 9px; }

.map-pin { position: relative; width: 48px; height: 48px; display: block; border: 1px solid var(--gold); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }

.map-pin::after { content: ""; position: absolute; inset: 15px; background: var(--gold); border-radius: 50%; }

.map-shell iframe { width: 100%; height: 520px; display: block; border: 0; filter: grayscale(.25) contrast(1.08); }

.final-cta { padding: 105px 0; color: var(--forest); background: var(--gold); }

.final-cta__inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 80px; }

.final-cta h2 { max-width: 820px; font-size: clamp(43px, 5.2vw, 78px); }

.final-cta .kicker { color: rgba(17,26,20,.68); }

.final-cta p:not(.kicker) { margin: 22px 0 30px; color: rgba(17,26,20,.66); }

.final-cta .button { color: var(--white); background: var(--forest); border-color: var(--forest); }

.final-cta .button:hover { background: var(--forest-deep); border-color: var(--forest-deep); box-shadow: 0 12px 30px rgba(17,26,20,.2); }

.qr-card { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 20px; padding: 16px 24px 16px 16px; background: rgba(255,255,255,.75); }

.qr-card img { width: 150px; height: 150px; }

.qr-card span { min-width: 130px; font-size: 11px; font-weight: 700; line-height: 1.6; }

.site-footer { padding: 86px 0 28px; color: var(--white); background: #0b120d; }

.footer__top { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; padding-bottom: 70px; }

.brand--footer { align-self: start; }

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

.footer__nav > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }

.footer__nav strong { margin-bottom: 12px; color: var(--gold-bright); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }

.footer__nav a, .footer__nav span { color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.8; transition: color .2s ease; }

.footer__nav a:hover { color: var(--white); }

.footer__bottom { display: flex; justify-content: space-between; gap: 40px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); font-size: 9px; }

.footer__bottom > div { display: flex; gap: 24px; }

.footer__bottom button { padding: 0; color: inherit; background: none; border: 0; }

.footer__bottom a:hover, .footer__bottom button:hover { color: var(--white); }

.mobile-booking { display: none; }

dialog {
  width: min(600px, calc(100% - 32px));
  color: var(--ink);
  background: var(--paper);
  border: 0;
  box-shadow: 0 30px 120px rgba(0,0,0,.45);
}

dialog::backdrop { background: rgba(8,14,10,.82); backdrop-filter: blur(6px); }

.gallery-dialog { width: min(1050px, calc(100% - 40px)); max-width: none; padding: 0; background: transparent; box-shadow: none; overflow: visible; }

.gallery-dialog img { width: 100%; max-height: 82vh; object-fit: contain; }

.gallery-dialog p { margin: 12px 0 0; color: var(--white); font-size: 12px; text-align: center; }

.dialog-close {
  position: absolute;
  top: -46px;
  right: 0;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  font-size: 24px;
}

.credits-dialog { padding: 50px; }

.credits-dialog .dialog-close { top: 12px; right: 12px; color: var(--forest); border-color: var(--line); background: transparent; }

.credits-dialog h2 { margin: 0 0 20px; font-family: var(--serif); font-size: 43px; font-weight: 500; line-height: 1.1; }

.credits-dialog > p:not(.kicker) { color: var(--muted); font-size: 13px; line-height: 1.8; }

.noscript { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 999; padding: 14px; color: var(--white); background: #8a2d24; text-align: center; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes hero-in { from { opacity: .45; transform: scale(1.1); } to { opacity: 1; transform: scale(1.02); } }
@keyframes scroll-line { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(230%); } }

@media (max-width: 1120px) {
  :root { --container: min(100% - 48px, 1080px); }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 24px; }
  .desktop-nav { display: none; }
  .header-cta { margin-right: 64px; }
  .menu-toggle {
    position: absolute;
    right: 24px;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
  }
  .menu-toggle span:not(.sr-only) { width: 18px; height: 1px; display: block; background: currentColor; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 76px 0 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 40px 24px;
    color: var(--forest);
    background: var(--paper);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu > a:not(.button) { width: 100%; padding: 17px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 30px; }
  .mobile-menu .button { margin-top: 30px; }
  .booking-card { grid-template-columns: 1fr; gap: 26px; }
  .booking-form { grid-template-columns: repeat(3, 1fr); }
  .booking-form__submit { grid-column: 1 / -1; width: 100%; }
  .positioning__grid, .events__grid { gap: 60px; }
  .editorial-collage, .events__visual { min-height: 560px; }
  .room-card { grid-auto-columns: 88%; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .amenity-card { min-height: 400px; }
  .final-cta__inner { grid-template-columns: 1fr; }
  .qr-card { width: max-content; }
}

@media (max-width: 860px) {
  .hero { min-height: 760px; }
  .hero__media img { object-position: 68% center; }
  .hero__veil { background: linear-gradient(90deg, rgba(12,21,15,.94), rgba(12,21,15,.62)), linear-gradient(0deg, rgba(12,20,14,.72), transparent 60%); }
  .hero h1 { max-width: 670px; }
  .scroll-cue { display: none; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .positioning__grid, .events__grid, .event-request__grid, .corporate__grid, .location__grid { grid-template-columns: 1fr; }
  .positioning__grid, .events__grid, .event-request__grid, .corporate__grid, .location__grid { gap: 64px; }
  .section-copy { max-width: 680px; }
  .editorial-collage, .events__visual { width: min(100%, 680px); }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading > p { max-width: 600px; }
  .rooms-track { grid-auto-columns: 94%; }
  .room-card { grid-template-columns: 1fr; }
  .room-card__image { min-height: 420px; }
  .room-card__body { min-height: 390px; }
  .corporate-form { max-width: 680px; }
  .location__copy { max-width: 680px; }
  .footer__top { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 32px); }
  html { scroll-padding-top: 74px; }
  body { padding-bottom: 68px; }
  .site-header, .site-header.is-scrolled { height: 72px; padding-inline: 16px; background: rgba(17,26,20,.95); color: var(--white); border-bottom-color: rgba(255,255,255,.12); }
  .site-header.is-scrolled { backdrop-filter: blur(12px); }
  .brand__mark { width: 31px; height: 31px; }
  .brand__word strong { font-size: 21px; }
  .brand__word small { font-size: 7px; }
  .header-cta { display: none; }
  .menu-toggle { right: 16px; width: 40px; height: 40px; }
  .mobile-menu { inset: 72px 0 68px; overflow-y: auto; }
  .hero { min-height: 720px; height: 100svh; }
  .hero__content { padding-top: 54px; }
  .hero h1 { font-size: clamp(45px, 13vw, 65px); }
  .hero__lead { max-width: 94%; margin-top: 22px; font-size: 15px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 14px; margin-top: 28px; }
  .hero__actions .button { width: 100%; }
  .direct-badge { max-width: 100%; align-items: flex-start; border-radius: 4px; line-height: 1.5; }
  .direct-badge__icon { flex: 0 0 28px; }
  .booking-band { margin-top: 0; }
  .booking-band .container { width: 100%; }
  .booking-card { padding: 34px 18px; border-top-width: 4px; box-shadow: none; }
  .booking-form { grid-template-columns: 1fr 1fr; }
  .booking-form label:nth-child(3) { grid-column: 1 / -1; }
  .booking-form__submit { min-width: 0; }
  .trust-strip { padding: 36px 0 52px; }
  .trust-item { min-height: 112px; padding: 24px 15px; }
  .trust-item strong { font-size: 12px; }
  .trust-item small { font-size: 9px; line-height: 1.5; }
  .section-pad { padding: 82px 0; }
  .section-copy h2, .section-heading h2, .events__copy h2, .location h2, .final-cta h2, .corporate__copy h2 { font-size: 42px; }
  .positioning__grid, .events__grid, .event-request__grid, .corporate__grid, .location__grid { gap: 48px; }
  .editorial-collage, .events__visual { min-height: 470px; }
  .image-frame--tall, .events__main-image { right: 10%; bottom: 15%; }
  .image-frame--small, .events__detail { width: 55%; border-width: 7px; }
  .collage-note { top: 4%; width: 145px; padding: 17px; }
  .collage-note strong { font-size: 33px; }
  .section-heading { margin-bottom: 42px; }
  .rooms-track { grid-auto-columns: 96%; gap: 14px; }
  .room-card__image { min-height: 360px; }
  .room-card__body { min-height: 390px; padding: 32px 24px; }
  .room-card h3 { font-size: 38px; }
  .event-specs { grid-template-columns: 1fr; }
  .event-specs div { border-bottom: 1px solid var(--line-light); }
  .event-request { padding: 82px 0; }
  .field-row { grid-template-columns: 1fr; }
  .lead-form .button, .corporate-form .button { width: 100%; }
  .corporate-form { padding: 28px 20px; }
  .amenity-grid { grid-template-columns: 1fr; }
  .amenity-card { min-height: 360px; }
  .location { padding: 82px 0; }
  .map-shell, .map-placeholder, .map-shell iframe { min-height: 420px; height: 420px; }
  .map-placeholder { padding: 28px; }
  .location__actions .button { width: 100%; }
  .final-cta { padding: 78px 0; }
  .final-cta__inner { gap: 50px; }
  .final-cta .button { width: 100%; }
  .qr-card { width: 100%; grid-template-columns: 120px 1fr; padding: 12px; }
  .qr-card img { width: 120px; height: 120px; }
  .site-footer { padding-top: 68px; }
  .footer__nav { grid-template-columns: 1fr 1fr; row-gap: 42px; }
  .footer__nav > div:last-child { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 14px; }
  .mobile-booking {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    color: var(--forest-deep);
    background: var(--gold);
    box-shadow: 0 -12px 35px rgba(0,0,0,.18);
    font-size: 10px;
  }
  .mobile-booking strong { font-size: 12px; }
  .credits-dialog { padding: 44px 24px 30px; }
  .credits-dialog h2 { font-size: 35px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 41px; }
  .booking-form { grid-template-columns: 1fr; }
  .booking-form label:nth-child(3) { grid-column: auto; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer__nav { grid-template-columns: 1fr; }
  .footer__nav > div:last-child { grid-column: auto; }
  .qr-card { grid-template-columns: 100px 1fr; }
  .qr-card img { width: 100px; height: 100px; }
}

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

@media print {
  .site-header, .mobile-booking, .booking-card, .map-shell, dialog { display: none !important; }
  .hero { min-height: auto; padding: 80px 0; }
  .reveal { opacity: 1; transform: none; }
}

.legal-page { background: var(--paper); }

.legal-header {
  padding: 24px 0;
  color: var(--white);
  background: var(--forest-deep);
  border-bottom: 1px solid var(--line-light);
}

.legal-header .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }

.legal-content { padding: 100px 0 120px; }

.legal-grid { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: clamp(70px, 10vw, 160px); }

.legal-grid aside { position: sticky; top: 40px; }

.legal-grid h1 { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(48px, 6vw, 78px); font-weight: 500; line-height: 1.02; letter-spacing: -.04em; }

.legal-grid aside > span { color: var(--muted); font-size: 10px; }

.legal-grid article { display: grid; gap: 44px; }

.legal-grid article section { padding-bottom: 36px; border-bottom: 1px solid var(--line); }

.legal-grid article h2 { margin: 0 0 16px; font-family: var(--serif); font-size: 27px; font-weight: 600; }

.legal-grid article p { margin: 0 0 14px; color: var(--muted); font-size: 13px; line-height: 1.9; }

.legal-notice { padding: 24px; color: var(--forest); background: var(--cream); border-left: 3px solid var(--gold); font-size: 11px; line-height: 1.7; }

.legal-footer { padding: 25px 0; color: rgba(255,255,255,.45); background: var(--forest-deep); font-size: 10px; }

.error-page { min-height: 100svh; display: grid; place-items: center; padding: 24px; color: var(--white); background: var(--forest-deep); }

.error-page main { width: min(700px, 100%); }

.error-page__card { padding: clamp(40px, 8vw, 90px); border: 1px solid var(--line-light); text-align: center; }

.error-page__card .brand__mark { width: 55px; height: 55px; margin: 0 auto 30px; }

.error-page h1 { margin: 0; font-family: var(--serif); font-size: clamp(48px, 8vw, 84px); font-weight: 500; line-height: 1; }

.error-page p:not(.kicker) { max-width: 440px; margin: 26px auto; color: rgba(255,255,255,.6); font-size: 13px; }

@media (max-width: 760px) {
  .legal-content { padding: 72px 0 90px; }
  .legal-grid { grid-template-columns: 1fr; gap: 60px; }
  .legal-grid aside { position: static; }
  .legal-header .brand__word { display: none; }
}
