:root {
  --ink: #17231d;
  --forest: #183d30;
  --forest-deep: #0d2d23;
  --cream: #f5f1e8;
  --paper: #fbfaf6;
  --gold: #c99952;
  --line: rgba(23, 35, 29, .16);
  --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(--paper); font-family: var(--sans); line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.skip-link { position: fixed; z-index: 100; left: 1rem; top: -5rem; background: white; padding: .8rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute; z-index: 20; top: 0; left: 0; right: 0; height: 126px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(1.25rem, 5vw, 5rem);
  color: #fff; background: var(--forest-deep); border-bottom: 1px solid rgba(255,255,255,.18);
}
.brand { display: grid; justify-items: center; gap: .2rem; padding: .35rem 0; background: transparent; }
.brand img { width: clamp(220px, 18vw, 290px); height: auto; object-fit: contain; }
.brand span { display: block; line-height: 1; }
.brand small { text-transform: uppercase; letter-spacing: .24em; font-size: .58rem; opacity: .92; }
.site-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.8rem); font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; }
.site-nav a { position: relative; padding: .4rem 0; }
.site-nav a:not(.lang-toggle)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: currentColor; transition: right .25s; }
.site-nav a:not(.lang-toggle):hover::after, .site-nav a:not(.lang-toggle):focus-visible::after { right: 0; }
.lang-toggle { display: inline-grid; place-items: center; border: 1px solid rgba(255,255,255,.55); background: transparent; border-radius: 999px; color: white; padding: .55rem .75rem; cursor: pointer; letter-spacing: .1em; text-decoration: none; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: none; }
.menu-toggle > span:not(.sr-only) { display: block; height: 1px; margin: 6px 0; background: white; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: white; overflow: hidden; }
.hero-media { position: absolute; inset: 0; background: url("images/instagram/instagram-1.webp") center 48%/cover no-repeat; animation: reveal 1.2s ease both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,27,20,.76) 0%, rgba(6,27,20,.3) 55%, rgba(6,27,20,.05)), linear-gradient(0deg, rgba(4,20,15,.55), transparent 50%); }
.hero-copy { position: relative; z-index: 2; width: min(820px, 88%); margin: 0 clamp(1.25rem, 8vw, 8rem) clamp(4.5rem, 9vh, 7rem); }
.eyebrow { margin: 0 0 1.2rem; color: #f4d8ad; font-size: .7rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow.dark { color: #866839; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: .98; margin: 0; }
h1 { font-size: clamp(3.8rem, 8vw, 8rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.7rem, 5.3vw, 5.5rem); letter-spacing: -.035em; }
h3 { font-size: 2.25rem; }
.hero-copy > p:not(.eyebrow) { max-width: 610px; font-size: clamp(1rem, 1.5vw, 1.22rem); color: rgba(255,255,255,.82); }
.hero-actions { display: flex; gap: .8rem; margin-top: 2rem; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 1.4rem; border: 1px solid transparent; cursor: pointer; text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; font-weight: 700; transition: background .2s, color .2s, transform .2s; }
.button:hover { transform: translateY(-2px); }
.button-light { background: #fff; color: var(--ink); }
.button-ghost { border-color: rgba(255,255,255,.65); color: #fff; }
.button-ghost:hover { background: #fff; color: var(--ink); }
.button-dark { background: var(--forest); color: white; }
.scroll-cue { position: absolute; z-index: 3; right: 4vw; bottom: 2.5rem; width: 34px; height: 52px; border: 1px solid rgba(255,255,255,.5); border-radius: 99px; }
.scroll-cue span { position: absolute; top: 10px; left: 15px; width: 2px; height: 9px; background: white; border-radius: 9px; animation: scroll 1.7s infinite; }

.section { padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 7vw, 7rem); }
.intro { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(3rem, 8vw, 9rem); align-items: center; }
.intro-copy .lead { margin: 2rem 0 1.25rem; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.45; }
.intro-copy > p:not(.eyebrow):not(.lead) { color: #35463d; font-size: 1.02rem; font-weight: 500; }
.intro-image { margin: 0; position: relative; }
.intro-image img {
  width: 100%;
  aspect-ratio: 1.17 / 1;
  object-fit: cover;
  object-position: center top;
}
.intro-image figcaption { position: absolute; right: -1px; bottom: -1px; background: var(--paper); padding: 1.2rem 1.6rem; font-family: var(--serif); font-style: italic; }
.fact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; border-top: 1px solid var(--line); margin-top: 2.5rem; padding-top: 1.5rem; }
.fact-row div { display: grid; }
.fact-row strong { font-family: var(--serif); color: var(--forest); font-size: 2.2rem; font-weight: 400; }
.fact-row span { font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; color: #6a756f; }

.award-section { display: grid; grid-template-columns: .62fr 1.38fr; background: var(--forest-deep); color: white; }
.award-score { min-height: 520px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 3rem; text-align: center; border-right: 1px solid rgba(255,255,255,.16); }
.award-score > span { font-size: .72rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.award-score > div { display: flex; align-items: baseline; margin: 1rem 0 .3rem; }
.award-score strong { font-family: var(--serif); font-size: clamp(6rem, 11vw, 11rem); font-weight: 400; line-height: .8; color: #f4d8ad; letter-spacing: -.07em; }
.award-score small { margin-left: .65rem; font-family: var(--serif); font-size: 1.4rem; color: rgba(255,255,255,.7); }
.award-score p { margin: .8rem 0 0; font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.award-copy { align-self: center; max-width: 880px; padding: clamp(4rem, 8vw, 8rem); }
.award-copy h2 { max-width: 800px; }
.award-copy > p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.86); font-size: 1.02rem; }
.award-copy > p:nth-of-type(2) { margin-top: 2rem; }
.award-copy .button { margin-top: 1.5rem; }

.rooms { background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.section-heading > p { max-width: 480px; margin: 0 0 .5rem; color: #35463d; font-size: 1.05rem; font-weight: 500; line-height: 1.65; }
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 2rem); }
.room-card { background: var(--paper); }
.room-image { display: block; position: relative; overflow: hidden; }
.room-image img { width: 100%; aspect-ratio: 1 / 1.1; object-fit: cover; transition: transform .55s ease; }
.room-image:hover img { transform: scale(1.035); }
.room-copy { padding: 1.7rem; }
.room-title { display: flex; align-items: baseline; justify-content: space-between; gap: .8rem; border-bottom: 1px solid var(--line); padding-bottom: 1rem; }
.room-title p { margin: 0; color: #647068; font-size: .75rem; }
.room-title strong { font-family: var(--serif); font-size: 1.35rem; color: var(--forest); }
.room-copy > p { color: #35463d; font-size: .98rem; font-weight: 500; }
.room-copy ul { list-style: none; padding: 0; margin: 1.5rem 0; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.room-copy li { padding: .45rem 0; border-bottom: 1px solid var(--line); }
.room-copy li::before { content: "·"; color: var(--gold); margin-right: .7rem; }
.text-link { border: 0; background: none; padding: 0; cursor: pointer; color: var(--forest); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.rate-note {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  text-align: center;
  color: #35463d;
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.7;
}

.amenities { min-height: 760px; display: grid; grid-template-columns: 1.1fr .9fr; background: var(--forest-deep); color: white; }
.amenities-image { background: url("images/instagram/instagram-4.jpg") center/cover no-repeat; min-height: 620px; }
.amenities-copy { padding: clamp(4rem, 8vw, 8rem); align-self: center; }
.amenities-copy h2 { margin-bottom: 3rem; }
.amenity-list p { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1rem 0; margin: 0; border-top: 1px solid rgba(255,255,255,.2); }
.amenity-list span { color: var(--gold); font-size: .7rem; }
.amenity-list b { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; }

.gallery { text-align: center; }
.gallery .section-heading { text-align: left; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; grid-auto-flow: dense; gap: .75rem; margin-bottom: 2.5rem; }
.gallery-grid a { overflow: hidden; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s, filter .45s; }
.gallery-grid a:hover img { transform: scale(1.04); filter: brightness(.86); }
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }

.reservation { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 8vw, 9rem); background: #e8e2d5; }
.reservation-intro > p:not(.eyebrow) { max-width: 430px; margin: 1.6rem 0; color: #35463d; font-size: 1.02rem; font-weight: 500; }
address { margin: 2.5rem 0 1.5rem; font-style: normal; font-size: .9rem; }
address p { margin: .25rem 0; }
.whatsapp-link { text-transform: uppercase; letter-spacing: .13em; font-size: .7rem; font-weight: 700; color: var(--forest); }
.reservation-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1rem; align-content: start; }
.field { display: grid; gap: .4rem; }
.span-2 { grid-column: span 2; }
.field label, .captcha-answer > span { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }
.field input, .field select, .field textarea, .human-check input {
  width: 100%; border: 0; border-bottom: 1px solid #949a91; border-radius: 0; background: rgba(255,255,255,.38); padding: .85rem; color: var(--ink); outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus, .human-check input:focus { border-color: var(--forest); box-shadow: 0 2px 0 var(--forest); }
.human-check { display: grid; grid-template-columns: minmax(220px, 1fr) 130px auto; gap: 1rem; align-items: end; padding-top: .35rem; }
.captcha-question { align-self: center; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }
.captcha-question strong { margin-left: .35rem; font-size: 1.05rem; color: var(--forest); }
.captcha-answer { display: grid; gap: .4rem; }
.captcha-answer input {
  min-height: 54px;
  border: 2px solid var(--forest);
  background: #fff;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
}
.captcha-answer input::placeholder { color: #718078; opacity: 1; }
.form-status { min-height: 1.5rem; margin: 0; font-size: .9rem; }
.form-status.success { color: #1d653f; }
.form-status.error { color: #9b302d; }

footer { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; position: relative; padding: 4rem clamp(1.25rem, 7vw, 7rem) 5.5rem; background: #0b261d; color: rgba(255,255,255,.76); }
.footer-brand { display: grid; width: fit-content; justify-items: center; align-content: start; }
.footer-logo { display: inline-grid; justify-items: center; gap: .2rem; }
.footer-logo img { width: clamp(220px, 18vw, 290px); height: auto; object-fit: contain; }
.footer-logo span { color: #fff; font-size: .58rem; line-height: 1; text-transform: uppercase; letter-spacing: .24em; }
.footer-brand p { width: 100%; font-family: var(--serif); font-style: italic; text-align: center; }
.footer-links, .footer-social { display: grid; align-content: start; gap: .7rem; font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; }
.copyright { position: absolute; left: clamp(1.25rem, 7vw, 7rem); bottom: 1.4rem; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; opacity: .55; }

.lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; margin: 0; padding: 4rem; border: 0; background: rgba(4, 17, 13, .96); color: white; }
.lightbox::backdrop { background: rgba(4, 17, 13, .96); }
.lightbox[open] { display: grid; grid-template-columns: 60px 1fr 60px; align-items: center; }
.lightbox figure { margin: 0; display: grid; place-items: center; }
.lightbox figure img { max-height: calc(100vh - 9rem); max-width: calc(100vw - 12rem); object-fit: contain; }
.lightbox figcaption { margin-top: .8rem; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.lightbox button { border: 0; background: none; color: white; font-size: 2rem; cursor: pointer; }
.lightbox-close { position: absolute; right: 2rem; top: 1rem; }

@keyframes reveal { from { opacity: 0; transform: scale(1.03); } to { opacity: 1; transform: scale(1); } }
@keyframes scroll { 0% { transform: translateY(0); opacity: 1; } 80%,100% { transform: translateY(18px); opacity: 0; } }

@media (max-width: 960px) {
  .site-header { height: 104px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 0; z-index: -1; display: none; flex-direction: column; justify-content: center; background: var(--forest-deep); font-family: var(--serif); font-size: 1.7rem; text-transform: none; letter-spacing: 0; }
  .site-nav.open { display: flex; }
  .menu-toggle { z-index: 2; }
  .intro, .section-heading, .reservation { grid-template-columns: 1fr; }
  .award-section { grid-template-columns: 1fr; }
  .award-score { min-height: 360px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .room-grid { grid-template-columns: 1fr; max-width: 700px; margin: auto; }
  .room-card { display: grid; grid-template-columns: .9fr 1.1fr; }
  .amenities { grid-template-columns: 1fr; }
  .amenities-image { min-height: 70vw; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .site-header { position: relative; }
  .brand { justify-items: center; padding: .55rem .7rem; }
  .brand span { width: 100%; text-align: center; }
  .brand small { font-size: .48rem; letter-spacing: .16em; }
  .brand img { width: min(54vw, 190px); }
  .hero { min-height: calc(100svh - 104px); align-items: flex-start; }
  .hero-copy { width: calc(100% - 2.5rem); margin: clamp(2.5rem, 7vh, 4rem) 1.25rem 4rem; }
  h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .scroll-cue { display: none; }
  .intro { gap: 3rem; }
  .intro-image img {
    aspect-ratio: 1 / 1;
    object-position: 55% top;
  }
  .fact-row { gap: .4rem; }
  .room-card { display: block; }
  .room-image img { aspect-ratio: 4 / 3; }
  .gallery-grid { grid-auto-rows: 150px; }
  .gallery-tall { grid-row: auto; }
  .reservation-form { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .human-check { grid-template-columns: 1fr 110px; }
  .human-check .button { grid-column: span 2; }
  footer { grid-template-columns: 1fr; padding-bottom: 6rem; }
  .lightbox { padding: 3rem .5rem; }
  .lightbox[open] { grid-template-columns: 42px 1fr 42px; }
  .lightbox figure img { max-width: calc(100vw - 6rem); }
}

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