:root {
  --forest: #062e26;
  --forest-2: #0a3a30;
  --forest-3: #0f493c;
  --gold: #d2a252;
  --gold-bright: #e3b664;
  --ink: #18211e;
  --muted: #66706c;
  --line: #dfe4e1;
  --white: #fff;
  --max: 1400px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.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;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--white);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 20;
  height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 0 clamp(24px, 5vw, 80px);
  color: var(--forest);
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(6,46,38,.09);
}
.brand, .footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand-logo {
  width: 178px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}
.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font: 31px/1 var(--serif);
}
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong, .footer-brand strong {
  font: 30px/1 var(--serif);
  letter-spacing: .02em;
}
.brand-copy small, .footer-brand small {
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 46px);
  font-size: 15px;
}
.main-nav a { padding: 12px 0; border-bottom: 1px solid transparent; }
.main-nav a:hover, .main-nav a:focus-visible { border-color: var(--gold); }
.header-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
}
.header-book svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: min(650px, 78vh);
  color: var(--forest);
  overflow: hidden;
  background: var(--forest);
}
.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.78) 30%, rgba(255,255,255,.12) 58%, rgba(255,255,255,0) 78%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(92%, var(--max));
  margin: 0 auto;
  padding: clamp(105px, 15vh, 145px) 0 155px;
}
.hero h1, .section h2, .events h2, .amenities h2, .location h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.025em;
}
.hero h1 {
  max-width: 690px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.05;
}
.hero-content > p {
  max-width: 535px;
  margin: 28px 0 0;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 16px; margin-top: 38px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  transition: background .2s ease, color .2s ease, border .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: #17221e; }
.button-gold:hover { background: var(--gold-bright); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.8); }
.hero .button-ghost { color: var(--forest); border-color: rgba(6,46,38,.45); background: rgba(255,255,255,.55); }
.button-ghost:hover { background: var(--white); color: var(--forest); }
.button-dark { background: var(--forest); color: var(--white); }
.button-dark:hover { background: var(--forest-3); }
.button-light { border-color: #83908a; background: var(--white); }
.button-outline-gold { border-color: var(--gold); color: var(--gold-bright); }

.booking-wrap {
  position: relative;
  z-index: 5;
  width: min(94%, 1460px);
  margin: -69px auto 0;
}
.booking-form {
  position: relative;
  min-height: 138px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.18fr;
  align-items: end;
  gap: 0;
  padding: 27px 28px 29px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid rgba(210,162,82,.34);
  box-shadow: 0 20px 50px rgba(0,25,20,.22);
}
.booking-form label {
  display: grid;
  gap: 10px;
  padding: 0 30px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.booking-form label:first-of-type { padding-left: 0; }
.booking-form label span { color: #d9e2de; font-size: 13px; }
.booking-form input, .booking-form select {
  width: 100%;
  height: 47px;
  padding: 0;
  color: var(--white);
  color-scheme: dark;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 17px;
}
.booking-form select option { color: var(--ink); background: var(--white); }
.booking-form button {
  height: 57px;
  margin-left: 28px;
  color: #18211e;
  background: var(--gold);
  border: 0;
  font-weight: 700;
  cursor: pointer;
}
.booking-form button:hover { background: var(--gold-bright); }
.form-error {
  position: absolute;
  left: 28px;
  bottom: 6px;
  margin: 0;
  color: #ffd7d0;
  font-size: 12px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 24px 78px;
}
.trust-strip div {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong { min-width: 64px; color: var(--gold); font: 25px/1.1 var(--serif); }
.trust-strip p { margin: 0; color: #4c5853; font-size: 14px; line-height: 1.5; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 36px;
}
.rooms {
  display: block;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.section-heading h2 { max-width: 780px; }
.text-link { padding-bottom: 8px; color: #9b6f29; font-weight: 600; white-space: nowrap; }
.text-link span { margin-left: 8px; }
.room-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.room-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.room-card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(0,30,24,.11); }
.room-card img { height: 240px; object-fit: cover; }
.room-card > div { padding: 22px 20px 24px; }
.room-card h3 { margin: 0; color: var(--forest); font: 28px/1.1 var(--serif); }
.room-card p { min-height: 42px; margin: 10px 0 18px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.room-card a { color: #a9792e; font-size: 13px; font-weight: 650; }
.ornament { margin: 0 0 24px; color: var(--gold); font-size: 24px; }
.section-copy h2, .events h2, .amenities h2, .location h2 {
  color: var(--forest);
  font-size: clamp(45px, 4.4vw, 68px);
  line-height: 1.08;
}
.section-copy > p:not(.ornament) {
  max-width: 420px;
  margin: 25px 0 34px;
  color: var(--muted);
  line-height: 1.75;
}
.room-gallery {
  display: grid;
  grid-template-columns: 2.3fr .78fr;
  grid-template-rows: 216px 216px auto;
  gap: 12px;
}
.room-gallery figure { margin: 0; overflow: hidden; }
.room-gallery figure img { height: 100%; object-fit: cover; }
.room-main { grid-row: 1 / 3; }
.room-tabs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.room-tabs span { padding: 19px 12px; text-align: center; border-right: 1px solid var(--line); }
.room-tabs span:first-child { color: var(--white); background: var(--forest); }
.room-tabs span:last-child { border-right: 0; }

.events {
  display: grid;
  grid-template-columns: 1.45fr .95fr;
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  padding: 78px max(5vw, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--forest);
}
.event-image { height: 500px; display: grid; grid-template-columns: 1.35fr .65fr; gap: 10px; overflow: hidden; }
.event-image img { height: 100%; object-fit: cover; }
.event-copy { max-width: 520px; }
.events h2 { color: var(--white); }
.event-copy > p:not(.ornament) { margin: 26px 0 36px; color: #d2ddd8; line-height: 1.75; }

.amenities {
  max-width: none;
  margin: 0;
  display: block;
  padding: 92px max(5vw, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: linear-gradient(135deg, #06372d, #02251f);
}
.services-heading { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.services-heading h2 { color: var(--white); font-size: clamp(38px, 3.8vw, 58px); }
.services-heading > p:last-child { margin: 18px 0 0; color: #b9ccc4; }
.service-list { display: grid; grid-template-columns: repeat(5, 1fr); }
.service-list article { min-width: 0; padding: 4px 28px 10px; text-align: center; border-right: 1px solid rgba(210,162,82,.35); }
.service-list article:first-child { padding-left: 0; }
.service-list article:last-child { padding-right: 0; border-right: 0; }
.service-list svg { width: 52px; height: 52px; margin: 0 auto 22px; fill: none; stroke: var(--gold-bright); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-list h3 { min-height: 48px; margin: 0 0 10px; color: var(--white); font: 21px/1.15 var(--serif); }
.service-list p { margin: 0; color: #b9ccc4; font-size: 13px; line-height: 1.6; }

.location {
  display: grid;
  grid-template-columns: 1fr .82fr 1fr;
  min-height: 570px;
  background: #f4f5f3;
}
.location-photo img { height: 100%; object-fit: cover; }
.location-copy {
  align-self: center;
  padding: 60px clamp(35px, 4vw, 75px);
}
.location-copy h2 { font-size: clamp(42px, 4vw, 63px); }
.location-copy > p:not(.ornament) { color: var(--muted); line-height: 1.7; }
.location-copy address { display: grid; gap: 12px; margin: 25px 0 32px; font-style: normal; font-weight: 600; }
.location-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.map-frame { min-height: 420px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: saturate(.65) contrast(.92); }

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 62px max(5vw, calc((100vw - var(--max)) / 2)) 38px;
  color: var(--white);
  background: #031f1a;
}
.site-footer .brand-logo { width: 154px; height: 58px; padding: 4px; background: var(--white); }
.footer-brand small { display: block; margin-top: 4px; }
.site-footer nav { justify-self: center; display: flex; gap: 40px; color: #d6dfdb; }
.copyright { grid-column: 1 / -1; margin: 28px 0 0; padding-top: 24px; color: #8ba098; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }
.mobile-book { display: none; }

@media (max-width: 1100px) {
  .main-nav { gap: 18px; }
  .booking-form { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .booking-form label { padding: 0; border: 0; }
  .booking-form button { margin: 0; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip div { margin-bottom: 24px; }
  .room-cards { grid-template-columns: repeat(2, 1fr); }
  .service-list { grid-template-columns: repeat(3, 1fr); gap: 38px 0; }
  .service-list article:nth-child(3) { border-right: 0; }
  .location { grid-template-columns: 1fr 1fr; }
  .map-frame { grid-column: 1 / -1; height: 400px; }
}

@media (max-width: 780px) {
  .site-header {
    position: relative;
    height: 82px;
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }
  .brand-logo { width: 148px; height: 58px; }
  .header-book { display: none; }
  .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 9px;
    color: var(--forest);
    background: transparent;
    border: 1px solid rgba(6,46,38,.32);
  }
  .menu-button span:not(.sr-only) { height: 1px; background: currentColor; }
  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    background: var(--forest);
  }
  .main-nav.is-open { display: grid; }
  .main-nav.is-open { color: var(--white); }
  .main-nav a, .main-nav a:nth-child(4) { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .hero { min-height: 680px; color: var(--white); }
  .hero-image { object-position: 61% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(2,22,18,.88), rgba(2,22,18,.24)); }
  .hero-content { width: auto; margin: 0; padding: 152px 22px 160px; }
  .hero h1 { font-size: clamp(42px, 11vw, 55px); }
  .hero .button-ghost { color: var(--white); border-color: rgba(255,255,255,.72); background: transparent; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 310px; }
  .booking-wrap { width: calc(100% - 28px); margin-top: -80px; }
  .booking-form { grid-template-columns: 1fr; padding: 24px 20px 32px; }
  .booking-form label { gap: 5px; }
  .booking-form input, .booking-form select { height: 42px; }
  .form-error { left: 20px; }
  .trust-strip { grid-template-columns: 1fr; padding: 38px 22px 62px; }
  .trust-strip div { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .section, .amenities { padding: 78px 22px; }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 30px; }
  .room-cards { grid-template-columns: 1fr; }
  .room-card img { height: 255px; }
  .room-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 170px auto; }
  .room-main { grid-column: 1 / -1; grid-row: auto; }
  .room-tabs { grid-template-columns: repeat(2, 1fr); }
  .room-tabs span { border-bottom: 1px solid var(--line); }
  .events { grid-template-columns: 1fr; padding: 60px 22px 74px; }
  .event-image { height: 430px; grid-template-columns: 1fr; grid-template-rows: 1.2fr .8fr; }
  .event-copy { padding: 0 4px; }
  .services-heading { margin-bottom: 44px; text-align: left; }
  .service-list { grid-template-columns: 1fr 1fr; gap: 0; }
  .service-list article,
  .service-list article:first-child,
  .service-list article:last-child {
    padding: 28px 16px;
    text-align: left;
    border-right: 1px solid rgba(210,162,82,.28);
    border-bottom: 1px solid rgba(210,162,82,.28);
  }
  .service-list article:nth-child(even) { border-right: 0; }
  .service-list article:last-child { grid-column: 1 / -1; border-right: 0; }
  .service-list svg { margin: 0 0 18px; }
  .service-list h3 { min-height: 0; }
  .location { grid-template-columns: 1fr; }
  .location-photo { height: 330px; }
  .location-copy { padding: 65px 22px; }
  .map-frame { grid-column: auto; height: 360px; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; padding: 58px 22px 30px; }
  .site-footer nav { justify-self: start; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 35px; }
  .copyright { grid-column: auto; width: 100%; }
  .mobile-book {
    position: fixed;
    z-index: 30;
    left: 14px;
    right: 14px;
    bottom: 12px;
    min-height: 52px;
    display: grid;
    place-items: center;
    color: #17221e;
    background: var(--gold);
    box-shadow: 0 12px 28px rgba(0,20,16,.28);
    font-weight: 700;
  }
  body { padding-bottom: 74px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
