:root {
  --ink: #17312b;
  --ink-soft: #53645f;
  --forest: #173c35;
  --forest-2: #24584d;
  --cream: #f7f3eb;
  --sand: #e9dfcf;
  --paper: #fffdf9;
  --gold: #d8954f;
  --gold-button: #a75f21;
  --white: #fff;
  --line: rgba(23, 49, 43, .14);
  --shadow: 0 24px 70px rgba(19, 49, 42, .13);
  --radius: 1.5rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "DM Sans", sans-serif; line-height: 1.6; }
body.is-modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: min(1180px, calc(100% - 2.5rem)); margin-inline: auto; }
.section { padding: clamp(5rem, 9vw, 8.5rem) 0; }
h1, h2, h3 { margin: 0; font-family: "Playfair Display", serif; line-height: 1.08; }
h1 { max-width: 860px; font-size: clamp(3rem, 7vw, 6.3rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.35rem, 4.7vw, 4.25rem); letter-spacing: -.035em; }
h3 { font-size: 1.55rem; }
p { margin: 0; }
.eyebrow { margin-bottom: 1rem; color: var(--gold); font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-light { color: #f5c990; }
.section-heading { max-width: 790px; margin-bottom: 3rem; }
.section-heading > p:last-child { max-width: 650px; margin-top: 1rem; color: var(--ink-soft); font-size: 1.08rem; }
.heading-center { margin-inline: auto; text-align: center; }
.heading-center > p:last-child { margin-inline: auto; }

.site-header { position: fixed; z-index: 50; top: 0; left: 0; width: 100%; transition: .25s ease; }
.site-header.is-scrolled { background: rgba(255, 253, 249, .94); box-shadow: 0 8px 30px rgba(20, 45, 39, .09); backdrop-filter: blur(14px); }
.header-inner { display: flex; align-items: center; min-height: 88px; gap: 2rem; }
.brand img { width: 175px; filter: brightness(0) invert(1); transition: .25s ease; }
.is-scrolled .brand img { filter: none; }
.header-nav { display: flex; gap: 1.7rem; margin-left: auto; color: white; font-size: .88rem; font-weight: 600; }
.is-scrolled .header-nav { color: var(--ink); }
.header-nav a:hover { color: var(--gold); }
.header-cta, .footer-link { padding: .8rem 1.15rem; border-radius: 999px; background: var(--gold-button); color: var(--white); font-weight: 700; white-space: nowrap; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: white; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 4px 0; border-radius: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.is-scrolled .menu-toggle { color: var(--ink); }

.hero { position: relative; min-height: 900px; display: flex; align-items: center; padding: 9rem 0 15rem; color: white; }
.hero-media, .hero-media img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; }
.hero-shade { background: linear-gradient(90deg, rgba(9, 31, 27, .86) 0%, rgba(9, 31, 27, .5) 48%, rgba(9, 31, 27, .15) 100%), linear-gradient(0deg, rgba(9,31,27,.55), transparent 50%); }
.hero-content { position: relative; z-index: 2; padding-top: 2rem; }
.hero-lead { max-width: 660px; margin-top: 1.5rem; color: rgba(255,255,255,.88); font-size: clamp(1.08rem, 2vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 54px; padding: .8rem 1.4rem; border-radius: 999px; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold-button); color: var(--white); }
.button-ghost { border: 1px solid rgba(255,255,255,.55); color: white; }
.button-light { background: white; color: var(--forest); }

.booking-wrap { position: absolute; z-index: 4; bottom: -58px; left: 50%; transform: translateX(-50%); scroll-margin-top: 110px; }
.booking-card { display: grid; grid-template-columns: 1fr 1fr .78fr 1.05fr 1.15fr 1.05fr; align-items: end; gap: .85rem; width: 100%; min-width: 0; padding: 1.35rem 1.4rem 1.5rem; border-radius: 1.2rem; background: var(--paper); color: var(--ink); box-shadow: var(--shadow); }
.booking-card > *, .field { width: 100%; max-width: 100%; min-width: 0; }
.booking-heading { grid-column: 1 / 5; padding-bottom: .75rem; border-bottom: 1px solid var(--line); }
.booking-heading span, .field span { display: block; margin-bottom: .35rem; color: var(--ink-soft); font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.booking-heading strong { display: block; font-family: "Playfair Display", serif; font-size: 1.55rem; line-height: 1.15; }
.field input, .field select { display: block; width: 100%; max-width: 100%; min-width: 0; min-inline-size: 0; height: 50px; padding: 0 .75rem; border: 1px solid var(--line); border-radius: .65rem; background: white; color: var(--ink); }
.field input:focus, .field select:focus { outline: 3px solid rgba(216,149,79,.2); border-color: var(--gold); }
.booking-submit { height: 50px; border: 0; border-radius: .65rem; background: var(--forest); color: white; font-weight: 700; cursor: pointer; }
.booking-note { grid-column: 5 / -1; grid-row: 1; align-self: center; color: var(--ink-soft); font-size: .75rem; text-align: right; }

.quick-proof { padding: 7.5rem 0 2.5rem; background: var(--cream); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid div { padding: .8rem 1.5rem; border-right: 1px solid var(--line); }
.proof-grid div:last-child { border: 0; }
.proof-grid strong, .proof-grid span { display: block; }
.proof-grid strong { font-family: "Playfair Display", serif; font-size: 1.4rem; }
.proof-grid span { margin-top: .25rem; color: var(--ink-soft); font-size: .84rem; }

.split-layout { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(4rem, 8vw, 8rem); }
.image-stack { position: relative; padding: 0 4rem 5rem 0; }
.image-main { width: 100%; min-height: 530px; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.image-float { position: absolute; right: 0; bottom: 0; width: 42%; aspect-ratio: 1; border: 9px solid var(--paper); border-radius: 1.2rem; object-fit: cover; }
.image-label { position: absolute; left: 1.2rem; bottom: 6.5rem; padding: .7rem 1rem; border-radius: 999px; background: var(--forest); color: white; font-size: .8rem; font-weight: 700; }
.content-block > p:not(.eyebrow) { margin-top: 1.4rem; color: var(--ink-soft); font-size: 1.08rem; }
.check-list { display: grid; gap: .7rem; margin: 1.7rem 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.7rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.text-link { color: var(--forest-2); font-weight: 700; border-bottom: 1px solid var(--gold); }

.experiences { background: var(--cream); }
.experience-grid { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, 250px); gap: 1rem; }
.experience-card { position: relative; overflow: hidden; border-radius: var(--radius); color: white; }
.experience-large { grid-row: span 2; }
.experience-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.experience-card:hover img { transform: scale(1.04); }
.experience-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(8,31,26,.82)); }
.experience-card > div { position: absolute; z-index: 2; left: 1.5rem; right: 1.5rem; bottom: 1.4rem; }
.experience-card span { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.experience-card p { margin-top: .5rem; color: rgba(255,255,255,.78); }

.dining { background: var(--forest); color: white; }
.dining-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.dining-copy > p:not(.eyebrow) { margin-top: 1.4rem; color: rgba(255,255,255,.72); }
.meal-options { display: grid; gap: .75rem; margin: 2rem 0; }
.meal-options div { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .75rem; border-bottom: 1px solid rgba(255,255,255,.15); }
.meal-options span { color: rgba(255,255,255,.65); font-size: .9rem; }
.dining-images { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1rem; align-items: end; }
.dining-images img { width: 100%; height: 520px; border-radius: var(--radius); object-fit: cover; }
.dining-images img:last-child { height: 360px; }

.plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.plan-card { display: flex; flex-direction: column; min-height: 310px; padding: 1.6rem; border: 1px solid var(--line); border-radius: 1.2rem; background: white; }
.plan-card > span { color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.plan-card h3 { margin-top: .8rem; }
.plan-card p { margin-top: 1rem; color: var(--ink-soft); }
.plan-card > strong { margin-top: auto; padding-top: 1.2rem; }
.plan-featured { background: var(--forest); color: white; transform: translateY(-12px); box-shadow: var(--shadow); }
.plan-featured p { color: rgba(255,255,255,.7); }
.plans-note { max-width: 780px; margin: 2rem auto 0; color: var(--ink-soft); font-size: .85rem; text-align: center; }

.gallery { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1rem; }
.gallery__item { margin: 0; overflow: hidden; border-radius: 1rem; }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery__button { width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: pointer; }
.gallery__button img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery__button:hover img { transform: scale(1.04); }

.location { background: #102e28; color: white; }
.location-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.location-layout > div:first-child > p:not(.eyebrow) { margin-top: 1.4rem; color: rgba(255,255,255,.72); }
.location-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.location-facts div { padding: 1rem; border: 1px solid rgba(255,255,255,.14); border-radius: .8rem; }
.location-facts strong, .location-facts span { display: block; }
.location-facts span { margin-top: .25rem; color: rgba(255,255,255,.62); font-size: .8rem; }
.location-photo { position: relative; }
.location-photo img { width: 100%; height: 530px; border-radius: var(--radius); object-fit: cover; }
.location-photo span { position: absolute; left: 1rem; bottom: 1rem; padding: .6rem .8rem; border-radius: 999px; background: rgba(9,31,26,.82); font-size: .75rem; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.testimonial-grid blockquote { margin: 0; padding: 2rem; border: 1px solid var(--line); border-radius: 1.2rem; background: white; }
.testimonial-grid blockquote::before { content: "“"; color: var(--gold); font-family: "Playfair Display", serif; font-size: 4rem; line-height: .5; }
.testimonial-grid p { margin-top: .7rem; }
.testimonial-grid footer { margin-top: 1.3rem; color: var(--ink-soft); font-size: .82rem; }

.faq { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 7vw, 7rem); }
.accordion { margin: 0; padding: 0; list-style: none; }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__trigger { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 1.25rem 0; border: 0; background: none; color: var(--ink); text-align: left; cursor: pointer; }
.accordion__trigger span { font-weight: 700; }
.accordion__trigger i { color: var(--gold); font-size: 1.4rem; font-style: normal; }
.accordion__panel { padding: 0 2rem 1.2rem 0; color: var(--ink-soft); }

.closing { padding: 5rem 0; background: linear-gradient(120deg, var(--forest) 0%, var(--forest-2) 100%); color: var(--white); border-top: 4px solid var(--gold); }
.closing-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.closing h2 { max-width: 760px; }
.closing p:last-child { margin-top: .7rem; color: rgba(255,255,255,.76); }
.footer { padding: 3.5rem 0 1.5rem; background: #09211c; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr .8fr auto; align-items: center; gap: 2rem; }
.footer img { width: 160px; filter: brightness(0) invert(1); }
.footer p { margin-top: .6rem; color: rgba(255,255,255,.62); font-size: .82rem; }
.footer-credit { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); }
.footer-credit p { margin: 0; text-align: center; }
.footer-credit a { justify-self: end; }
.footer-credit img { width: min(180px, 100%); }
.float-whatsapp { position: fixed; z-index: 40; right: 1.2rem; bottom: 1.2rem; padding: .85rem 1rem; border-radius: 999px; background: #087c40; color: var(--white); font-size: .78rem; font-weight: 800; box-shadow: 0 10px 30px rgba(0,0,0,.2); }

.gallery-modal { position: fixed; z-index: 100; inset: 0; display: flex; align-items: center; justify-content: center; padding: 2rem; background: rgba(4,18,15,.93); opacity: 0; visibility: hidden; transition: .2s ease; }
.gallery-modal[aria-hidden="false"] { opacity: 1; visibility: visible; }
.gallery-modal__dialog { position: relative; display: flex; flex-direction: column; align-items: center; max-width: min(1100px, 90vw); max-height: 90vh; }
.gallery-modal__image { max-width: 100%; max-height: 78vh; border-radius: 1rem; object-fit: contain; }
.gallery-modal__caption { color: white; }
.gallery-modal__close, .gallery-modal__nav { position: absolute; z-index: 2; width: 44px; height: 44px; border: 0; border-radius: 50%; background: white; cursor: pointer; font-size: 1.5rem; }
.gallery-modal__close { top: -18px; right: -18px; }
.gallery-modal__nav { top: 50%; transform: translateY(-50%); }
.gallery-modal__nav--prev { left: 1rem; }
.gallery-modal__nav--next { right: 1rem; }
.gallery-modal__nav:disabled { opacity: .25; }

@media (max-width: 1020px) {
  .header-nav { position: fixed; inset: 76px 1rem auto; display: none; flex-direction: column; padding: 1.5rem; border-radius: 1rem; background: var(--paper); color: var(--ink); box-shadow: var(--shadow); }
  .header-nav.is-open { display: flex; }
  .header-cta { margin-left: auto; }
  .menu-toggle { display: block; }
  .booking-card { grid-template-columns: repeat(2, 1fr); }
  .booking-heading { grid-column: 1 / -1; }
  .field-meal, .booking-submit { grid-column: 1 / -1; }
  .booking-note { grid-column: 1 / -1; grid-row: auto; text-align: left; }
  .hero { min-height: 1060px; padding-bottom: 28rem; }
  .booking-wrap { bottom: -45px; }
  .quick-proof { padding-top: 7rem; }
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-featured { transform: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 1.5rem, 1180px); }
  .header-inner { min-height: 72px; }
  .brand img { width: 135px; }
  .header-cta { display: none; }
  .menu-toggle { margin-left: auto; flex: 0 0 auto; }
  .hero { min-height: 100svh; display: block; padding: 5.25rem 0 0; background: var(--cream); }
  .hero-media, .hero-shade { top: 0; bottom: auto; height: 100svh; min-height: 100svh; }
  .hero-media img { object-position: 58% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(9,31,27,.9), rgba(9,31,27,.15)); }
  .hero-content { min-height: calc(100svh - 5.25rem); display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 2rem; }
  h1 { font-size: clamp(2.45rem, 11vw, 3.4rem); }
  .hero-lead { margin-top: 1rem; font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; margin-top: 1.35rem; }
  .hero-actions .button { min-height: 48px; padding: .65rem .65rem; font-size: .82rem; line-height: 1.2; text-align: center; }
  .booking-wrap { position: relative; bottom: auto; left: auto; width: min(100% - 1.5rem, 1180px); transform: none; margin-top: 0; padding-bottom: 1rem; }
  .booking-card { grid-template-columns: minmax(0, 1fr); width: 100%; max-width: 100%; overflow: hidden; }
  .booking-card > *, .booking-heading, .field-meal, .booking-submit, .booking-note { grid-column: 1; }
  .field input, .field select { font-size: 16px; }
  .field input[type="date"] {
    display: block;
    inline-size: -webkit-fill-available;
    width: -webkit-fill-available;
    max-inline-size: 100%;
    min-inline-size: 0;
    block-size: 50px;
    overflow: hidden;
    -webkit-appearance: none;
    appearance: none;
  }
  .field input[type="date"]::-webkit-date-and-time-value { min-width: 0; margin: 0; text-align: left; }
  .field input[type="date"]::-webkit-datetime-edit { min-width: 0; padding: 0; }
  .quick-proof { padding-top: 2rem; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid div:nth-child(2) { border-right: 0; }
  .proof-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split-layout, .dining-layout, .location-layout, .faq-layout { grid-template-columns: 1fr; }
  .image-stack { padding-right: 2rem; }
  .image-main { min-height: 430px; }
  .experience-grid { grid-template-columns: 1fr; grid-template-rows: 380px 250px 250px; }
  .experience-large { grid-row: auto; }
  .dining-images img { height: 380px; }
  .dining-images img:last-child { height: 270px; }
  .plan-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-tall { grid-row: span 2; }
  .location-photo img { height: 390px; }
  .closing-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-credit { grid-template-columns: 1fr; justify-items: center; }
  .footer-credit a { justify-self: center; }
}

@media (max-width: 460px) {
  .booking-card { grid-template-columns: 1fr; }
  .booking-heading, .field-meal, .booking-submit, .booking-note { grid-column: auto; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .image-stack { padding: 0 0 3rem; }
  .image-float { width: 46%; border-width: 6px; }
  .image-label { bottom: 4rem; }
  .dining-images { grid-template-columns: 1fr; }
  .dining-images img, .dining-images img:last-child { height: 300px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-tall, .gallery-wide { grid-row: auto; grid-column: auto; }
  .location-facts { grid-template-columns: 1fr; }
}
