:root {
  --ink: #14241f;
  --green: #173f35;
  --green-2: #0f3028;
  --gold: #c8a66a;
  --gold-light: #e5d2aa;
  --cream: #f7f3eb;
  --paper: #fdfbf7;
  --muted: #69746f;
  --line: rgba(20, 36, 31, .14);
  --white: #fff;
  --shadow: 0 24px 60px rgba(11, 28, 23, .14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--paper); line-height: 1.6; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 120px 0; }

.topbar { height: 35px; padding: 0 3.2vw; display: flex; justify-content: space-between; align-items: center; background: var(--green-2); color: rgba(255,255,255,.78); font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }
.topbar div { display: flex; align-items: center; gap: 30px; }
.topbar a:hover { color: white; }

.header { height: 82px; padding: 0 3.2vw; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; position: absolute; top: 35px; left: 0; right: 0; z-index: 50; border-bottom: 1px solid rgba(255,255,255,.22); color: white; transition: .35s ease; }
.header.scrolled { position: fixed; top: 0; height: 72px; background: rgba(16,48,40,.96); box-shadow: 0 10px 30px rgba(0,0,0,.16); backdrop-filter: blur(16px); }
.brand { display: flex; align-items: center; gap: 12px; min-width: 185px; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; font: 600 28px/1 var(--serif); color: var(--gold-light); }
.brand-mark.small { width: 34px; height: 34px; font-size: 20px; background: var(--green); color: var(--gold-light); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font: 600 23px/1 var(--serif); letter-spacing: .24em; }
.brand-copy small { margin-top: 5px; font-size: 8px; letter-spacing: .27em; }
.nav { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 2.2vw, 34px); font-size: 12px; font-weight: 600; letter-spacing: .06em; }
.nav a { position: relative; padding: 30px 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 21px; height: 1px; background: var(--gold-light); transition: .25s; }
.nav a:hover::after { right: 0; }
.header-cta { border: 1px solid rgba(255,255,255,.65); padding: 12px 18px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: .25s; }
.header-cta:hover { background: white; color: var(--green); }
.menu-button { display: none; background: none; border: 0; padding: 10px; }
.menu-button span { display: block; width: 24px; height: 1px; margin: 6px 0; background: currentColor; }

.hero { min-height: 860px; height: 100vh; position: relative; color: white; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; background-image: var(--image); background-size: cover; background-position: center; opacity: 0; transform: scale(1.06); transition: opacity 1.1s ease, transform 7s ease; }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,28,23,.82) 0%, rgba(8,28,23,.45) 48%, rgba(8,28,23,.12) 78%), linear-gradient(0deg, rgba(6,24,19,.42), transparent 50%); }
.hero-content { position: relative; z-index: 2; padding-top: 220px; }
.hero-content h1 { max-width: 820px; margin: 24px 0; font: 600 clamp(62px, 7.2vw, 108px)/.88 var(--serif); letter-spacing: -.035em; }
.hero-content p { max-width: 635px; margin: 0; font-size: 17px; color: rgba(255,255,255,.84); }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 34px; }
.eyebrow { display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.eyebrow > span { width: 38px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--gold-light); }
.centered-eyebrow { justify-content: center; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 25px; border: 1px solid transparent; font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; transition: .25s; }
.btn-gold { background: var(--gold); color: #102820; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-dark { background: var(--green); color: white; }
.btn-dark:hover { background: var(--green-2); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,.58); color: white; }
.btn-outline:hover { background: white; color: var(--green); }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.text-link span { font-size: 16px; transition: transform .2s; }
.text-link:hover span { transform: translate(3px,-3px); }
.light-link { color: white; }
.slider-controls { position: absolute; z-index: 3; right: 4vw; bottom: 140px; display: flex; align-items: center; gap: 14px; }
.slider-arrow { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.45); background: rgba(11,37,30,.18); color: white; border-radius: 50%; backdrop-filter: blur(5px); }
.slider-arrow:hover { background: white; color: var(--green); }
.slider-dots { display: flex; gap: 8px; }
.dot { width: 28px; height: 2px; padding: 0; border: 0; background: rgba(255,255,255,.38); }
.dot.active { background: var(--gold-light); }
.booking-shell { position: absolute; z-index: 4; bottom: 0; left: 50%; transform: translateX(-50%); }
.booking-bar { min-height: 104px; display: grid; grid-template-columns: repeat(4, 1fr) 1.4fr; align-items: stretch; background: white; color: var(--ink); box-shadow: var(--shadow); }
.booking-bar label { padding: 24px 22px; border-right: 1px solid var(--line); }
.booking-bar label span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.booking-bar input, .booking-bar select { width: 100%; border: 0; background: transparent; color: var(--ink); font-size: 13px; font-weight: 600; outline: none; }
.booking-bar button { border: 0; background: var(--gold); color: var(--green-2); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.booking-bar button span { margin-left: 8px; font-size: 17px; }
.booking-bar button:hover { background: var(--gold-light); }
.booking-message { position: absolute; right: 0; bottom: -32px; margin: 0; font-size: 12px; color: white; }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }
.intro-copy h2, .section-heading h2, .dining-copy h2, .location-copy h2 { margin: 22px 0 20px; font: 600 clamp(48px, 5vw, 72px)/.96 var(--serif); letter-spacing: -.025em; }
.intro-copy > p, .dining-copy > p, .location-copy > p { color: var(--muted); }
.lead { font: 500 22px/1.45 var(--serif); color: var(--ink) !important; }
.intro-copy .text-link { margin-top: 18px; }
.intro-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 50px; padding-top: 28px; border-top: 1px solid var(--line); }
.intro-stats strong { display: block; font: 600 36px/1 var(--serif); color: var(--green); }
.intro-stats span { display: block; margin-top: 8px; font-size: 10px; line-height: 1.4; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.intro-visual { min-height: 610px; position: relative; }
.main-image { height: 555px; object-fit: cover; }
.floating-image { width: 44%; position: absolute; left: -55px; bottom: 0; padding: 10px; background: var(--paper); box-shadow: var(--shadow); }
.floating-image img { height: 205px; object-fit: cover; }
.visual-badge { position: absolute; right: -25px; top: 48px; width: 145px; height: 145px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--green); color: white; font: 600 17px/1.25 var(--serif); box-shadow: var(--shadow); }
.visual-badge span { color: var(--gold-light); font-size: 25px; }

.rooms { background: var(--cream); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 60px; margin-bottom: 50px; }
.section-heading > p { width: 390px; margin-bottom: 15px; color: var(--muted); }
.section-heading.centered { justify-content: center; text-align: center; }
.room-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; }
.room-card { background: white; transition: transform .3s, box-shadow .3s; }
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.room-image { height: 290px; position: relative; overflow: hidden; }
.room-image img { height: 100%; object-fit: cover; transition: transform .7s; }
.room-card:hover .room-image img { transform: scale(1.05); }
.room-image > span { position: absolute; left: 16px; top: 16px; padding: 7px 10px; background: rgba(20,63,53,.92); color: white; font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.room-body { padding: 26px; }
.room-body > div > p { margin: 0; font-size: 9px; letter-spacing: .09em; text-transform: uppercase; color: var(--gold); }
.room-body h3 { margin: 7px 0 13px; font: 600 31px/1 var(--serif); }
.room-body > p { min-height: 50px; font-size: 13px; color: var(--muted); }
.room-body ul { display: flex; flex-wrap: wrap; gap: 8px 16px; padding: 16px 0; margin: 0; list-style: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 10px; color: var(--muted); }
.room-body a { display: flex; justify-content: space-between; margin-top: 19px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.experience { padding: 0; display: grid; grid-template-columns: 1.08fr .92fr; background: var(--green); color: white; }
.experience-media { min-height: 720px; position: relative; overflow: hidden; }
.experience-media img { height: 100%; object-fit: cover; }
.play-button { width: 78px; height: 78px; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); display: grid; place-items: center; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; background: rgba(12,47,39,.3); backdrop-filter: blur(5px); }
.experience-copy { padding: 105px clamp(40px, 6vw, 100px); }
.experience-copy h2 { margin: 22px 0; font: 600 clamp(48px, 5vw, 72px)/.95 var(--serif); }
.experience-copy > p { color: rgba(255,255,255,.7); }
.experience-list { margin-top: 38px; border-top: 1px solid rgba(255,255,255,.17); }
.experience-list a { display: grid; grid-template-columns: 40px 1fr auto; grid-template-areas: "num title arrow" "num desc arrow"; align-items: center; column-gap: 10px; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,.17); transition: padding .2s; }
.experience-list a:hover { padding-left: 8px; }
.experience-list span { grid-area: num; color: var(--gold-light); font-size: 10px; }
.experience-list strong { grid-area: title; font: 600 24px/1.2 var(--serif); }
.experience-list small { grid-area: desc; color: rgba(255,255,255,.55); }
.experience-list b { grid-area: arrow; color: var(--gold-light); }

.dining-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 100px; }
.service-times { margin: 34px 0; border-top: 1px solid var(--line); }
.service-times div { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.service-times span { color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.dining-gallery { min-height: 620px; position: relative; }
.dining-one { width: 72%; height: 505px; margin-left: auto; object-fit: cover; }
.dining-two { width: 49%; height: 270px; position: absolute; left: 0; bottom: 0; padding: 9px; background: var(--paper); object-fit: cover; box-shadow: var(--shadow); }
.chef-note { width: 245px; position: absolute; right: -28px; bottom: -15px; padding: 25px; background: var(--green); color: white; box-shadow: var(--shadow); }
.chef-note > span { font: 600 50px/1 var(--serif); color: var(--gold-light); }
.chef-note p { margin: -10px 0 10px; font: 500 21px/1.2 var(--serif); }
.chef-note small { color: rgba(255,255,255,.6); }

.wellness { min-height: 720px; position: relative; display: flex; align-items: center; color: white; overflow: hidden; }
.wellness-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,34,27,.9), rgba(9,34,27,.15)), url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=2000&q=88') center/cover; }
.wellness-content { position: relative; z-index: 2; }
.wellness-content h2 { margin: 22px 0; font: 600 clamp(60px, 7vw, 94px)/.86 var(--serif); }
.wellness-content > p { max-width: 540px; color: rgba(255,255,255,.76); }
.wellness-features { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0; }
.wellness-features span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.32); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.amenities-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.amenity { min-height: 220px; padding: 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.amenity svg { width: 30px; height: 30px; stroke-width: 1.2; color: var(--gold); }
.amenity h3 { margin: 25px 0 8px; font: 600 22px/1.15 var(--serif); }
.amenity p { margin: 0; color: var(--muted); font-size: 13px; }

.gallery { padding-bottom: 0; background: var(--cream); }
.gallery-grid { height: 570px; display: grid; grid-template-columns: 1.35fr .8fr .8fr 1.05fr; grid-template-rows: 1fr 1fr; gap: 8px; }
.gallery-grid img { height: 100%; object-fit: cover; }
.gallery-grid img:nth-child(1) { grid-row: 1 / span 2; }
.gallery-grid img:nth-child(2) { grid-row: 1; }
.gallery-grid img:nth-child(3) { grid-row: 2; }
.gallery-grid img:nth-child(4) { grid-row: 1 / span 2; }
.gallery-grid img:nth-child(5) { grid-row: 1 / span 2; }

.reviews { background: var(--green); color: white; }
.reviews-grid { display: grid; grid-template-columns: .35fr .65fr; gap: 100px; align-items: center; }
.review-score { padding-right: 60px; border-right: 1px solid rgba(255,255,255,.18); }
.review-score > strong { display: block; margin-top: 18px; font: 600 92px/.9 var(--serif); color: var(--gold-light); }
.stars { margin: 18px 0 4px; color: var(--gold-light); letter-spacing: .2em; font-size: 12px; }
.review-score p { margin: 0; font: 500 20px var(--serif); }
.review-score small { color: rgba(255,255,255,.5); }
blockquote { margin: 0; position: relative; }
.quote-mark { position: absolute; left: -30px; top: -38px; font: 600 120px/1 var(--serif); color: rgba(229,210,170,.2); }
blockquote > p { position: relative; margin: 0 0 30px; font: 500 clamp(31px,3vw,45px)/1.23 var(--serif); }
blockquote footer { display: flex; flex-direction: column; }
blockquote footer strong { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
blockquote footer span { color: rgba(255,255,255,.5); font-size: 12px; }

.location-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.distances { margin: 30px 0; border-top: 1px solid var(--line); }
.distances div { display: grid; grid-template-columns: 95px 1fr; padding: 13px 0; border-bottom: 1px solid var(--line); }
.distances span { color: var(--gold); font-size: 12px; font-weight: 800; }
.distances p { margin: 0; font-size: 12px; }
.location-copy address { margin: 30px 0; font: 500 19px/1.5 var(--serif); }
.map-wrap { height: 580px; position: relative; background: #e7e5dc; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(.65) contrast(.92); }
.map-card { position: absolute; left: 25px; bottom: 25px; display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: white; box-shadow: var(--shadow); }
.map-card div:last-child { display: flex; flex-direction: column; }
.map-card strong { font: 600 16px var(--serif); }
.map-card span { font-size: 10px; color: var(--muted); }

.final-cta { min-height: 550px; position: relative; display: grid; place-items: center; color: white; text-align: center; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; background: linear-gradient(rgba(8,31,25,.68),rgba(8,31,25,.68)), url('https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=2000&q=88') center/cover; }
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 { margin: 16px 0 10px; font: 600 clamp(70px,8vw,110px)/.9 var(--serif); }
.final-cta p { margin: 0 auto 28px; max-width: 580px; color: rgba(255,255,255,.8); }

.footer { padding: 75px 0 28px; background: #0b251f; color: white; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.35fr; gap: 55px; }
.brand.inverted { margin-bottom: 22px; }
.footer-brand p { max-width: 330px; color: rgba(255,255,255,.55); font-size: 13px; }
.socials { display: flex; gap: 18px; margin-top: 28px; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.footer-grid h3 { margin: 0 0 20px; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-light); }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; font-size: 12px; color: rgba(255,255,255,.62); }
.footer-grid a:hover { color: white; }
.footer-grid p { margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.footer-bottom div { display: flex; gap: 22px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .nav { display: none; }
  .menu-button { display: block; justify-self: end; }
  .header { grid-template-columns: auto 1fr auto auto; }
  .nav.open { display: flex; position: fixed; inset: 0; padding-top: 130px; flex-direction: column; justify-content: flex-start; background: var(--green-2); font: 600 28px var(--serif); }
  .nav.open a { padding: 8px; }
  .header-cta { margin-left: 8px; }
  .intro-grid, .dining-grid, .location-grid { gap: 55px; }
  .experience-copy { padding: 80px 45px; }
  .booking-bar { grid-template-columns: repeat(4,1fr); }
  .booking-bar button { grid-column: 1 / -1; min-height: 54px; }
  .hero { min-height: 930px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / span 2; }
}

@media (max-width: 820px) {
  .section { padding: 90px 0; }
  .container { width: min(100% - 32px, 680px); }
  .topbar { display: none; }
  .header, .header.scrolled { top: 0; height: 72px; padding: 0 18px; }
  .header-cta { display: none; }
  .hero { min-height: 950px; }
  .hero-content { padding-top: 165px; }
  .hero-content h1 { font-size: clamp(54px, 13vw, 78px); }
  .booking-shell { bottom: 20px; }
  .booking-bar { grid-template-columns: 1fr 1fr; }
  .booking-bar label:nth-child(2) { border-right: 0; }
  .booking-bar button { grid-column: 1 / -1; }
  .slider-controls { bottom: 370px; right: 20px; }
  .intro-grid, .dining-grid, .location-grid, .experience, .reviews-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 60px; }
  .intro-visual { min-height: 540px; }
  .main-image { height: 480px; }
  .floating-image { left: -5px; }
  .room-grid { grid-template-columns: 1fr; }
  .room-image { height: 380px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 0; }
  .section-heading > p { width: auto; }
  .experience-media { min-height: 480px; }
  .experience-copy { padding: 80px 30px; }
  .dining-gallery { margin-top: 30px; }
  .chef-note { right: 0; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3,240px); }
  .gallery-grid img:nth-child(n) { grid-row: auto; }
  .gallery-grid img:nth-child(1) { grid-row: 1 / span 2; }
  .gallery-grid img:nth-child(5) { grid-column: 1 / -1; }
  .review-score { padding-right: 0; padding-bottom: 35px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .reviews-grid { gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .brand-copy strong { font-size: 20px; }
  .brand { min-width: 0; }
  .hero-content p { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .booking-bar { grid-template-columns: 1fr; }
  .booking-bar label { border-right: 0; border-bottom: 1px solid var(--line); padding: 17px 20px; }
  .hero { min-height: 1100px; }
  .slider-controls { bottom: 515px; }
  .intro-stats { grid-template-columns: 1fr; }
  .intro-visual { min-height: 470px; }
  .main-image { height: 410px; }
  .floating-image { width: 48%; }
  .floating-image img { height: 145px; }
  .visual-badge { width: 112px; height: 112px; right: -5px; font-size: 14px; }
  .room-image { height: 280px; }
  .dining-gallery { min-height: 500px; }
  .dining-one { width: 84%; height: 410px; }
  .dining-two { height: 210px; }
  .chef-note { width: 200px; padding: 18px; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5,260px); }
  .gallery-grid img:nth-child(n) { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
