:root {
  --forest: #102a24;
  --forest-2: #173930;
  --forest-3: #21483d;
  --gold: #d4b06b;
  --gold-dark: #a47b38;
  --ivory: #f6f1e7;
  --sand: #e9dfcf;
  --ink: #18221f;
  --muted: #66716d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(13, 32, 28, .14);
  --radius: 2px;
  --header-h: 90px;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--ivory); font-family: "Segoe UI", Arial, sans-serif; line-height: 1.7; overflow-x: hidden; }
body.modal-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding: 110px 0; }
.skip-link { position: fixed; left: 14px; top: -80px; z-index: 10000; background: #fff; color: #000; padding: 10px 16px; }
.skip-link:focus { top: 14px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--header-h); padding: 0 max(24px, calc((100vw - 1320px)/2)); display: flex; align-items: center; justify-content: space-between; transition: .35s ease; border-bottom: 1px solid rgba(255,255,255,.13); }
.site-header.scrolled { height: 76px; background: rgba(10, 31, 27, .96); backdrop-filter: blur(14px); box-shadow: 0 8px 35px rgba(0,0,0,.15); }
.brand { width: 235px; flex: 0 0 auto; }
.brand img { height: 70px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 27px; color: #fff; }
.main-nav > a { font-size: 12px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; position: relative; }
.main-nav > a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: var(--gold); transition: .25s; }
.main-nav > a:hover::after, .main-nav > a.active::after { width: 100%; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-toggle span { display: block; height: 1px; background: #fff; margin: 7px 0; transition: .25s; }

.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; padding: 13px 24px; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; transition: .25s ease; }
.btn-gold { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.btn-gold:hover { background: #e4c47e; transform: translateY(-2px); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.04); }
.btn-ghost:hover { background: #fff; color: var(--forest); }
.btn-dark { background: var(--forest); color: #fff; border-color: var(--forest); }
.btn-dark:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.btn.full { width: 100%; }
.nav-book { min-height: 42px; padding: 11px 18px; }

.hero { min-height: 100vh; background: var(--forest); }
.slider { position: relative; min-height: 100vh; overflow: hidden; }
.slide { position: absolute; inset: 0; min-height: 100vh; display: grid; align-items: center; opacity: 0; visibility: hidden; transition: opacity .9s ease, visibility .9s ease; isolation: isolate; }
.slide::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(4,18,16,.76) 0%, rgba(4,18,16,.42) 52%, rgba(4,18,16,.18) 100%), var(--slide-image); background-size: cover; background-position: center; z-index: -2; transform: scale(1.04); transition: transform 6s ease; }
.slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,24,21,.58), transparent 38%); z-index: -1; }
.slide.is-active { opacity: 1; visibility: visible; }
.slide.is-active::before { transform: scale(1); }
.hero-content { padding-top: 105px; color: #fff; }
.hero-content > * { max-width: 720px; }
.eyebrow { margin: 0 0 18px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; }
.eyebrow.dark { color: var(--gold-dark); }
.hero h1, .hero h2 { margin: 0 0 26px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(62px, 7.2vw, 112px); line-height: .86; font-weight: 500; letter-spacing: -.035em; }
.hero h1 em, .hero h2 em, .display-title em, .spa h2 em, .contact h2 em { color: var(--gold); font-weight: 500; }
.hero-content > p:not(.eyebrow) { max-width: 600px; margin: 0 0 32px; color: rgba(255,255,255,.82); font-size: 16px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.slider-arrow { position: absolute; z-index: 4; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.45); color: #fff; background: rgba(4,18,16,.15); font-family: Georgia, serif; font-size: 35px; line-height: 1; }
.slider-prev { left: 24px; }.slider-next { right: 24px; }
.slider-arrow:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.slider-dots { position: absolute; z-index: 4; left: 50%; bottom: 30px; transform: translateX(-50%); display: flex; gap: 10px; }
.slider-dot { width: 34px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.4); transition: .25s; }
.slider-dot.is-active { background: var(--gold); width: 60px; }
.hero-scroll { position: absolute; z-index: 4; right: 34px; bottom: 32px; color: rgba(255,255,255,.65); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; writing-mode: vertical-rl; display: flex; align-items: center; gap: 10px; }
.hero-scroll span { width: 1px; height: 58px; background: var(--gold); }

.intro { background: #f7f2e9; }
.intro-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 90px; align-items: center; }
.display-title { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(45px, 5.2vw, 72px); line-height: .98; font-weight: 600; letter-spacing: -.025em; color: var(--forest); }
.display-title em { color: var(--gold-dark); }
.intro-copy > p { margin-top: 4px; color: var(--muted); }
.mini-stats { border-top: 1px solid #d7ccbb; margin-top: 34px; padding-top: 28px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.mini-stats strong { display: block; color: var(--forest); font-family: "Cormorant Garamond", Georgia, serif; font-size: 38px; line-height: 1; }
.mini-stats span { color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.villas { background: #e9dfcf; }
.section-heading { max-width: 790px; margin-bottom: 54px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading > p:last-child { color: var(--muted); margin: 20px auto 0; max-width: 680px; }
.villa-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 34px; }
.villa-card { display: grid; grid-template-columns: 48% 52%; background: #fff; min-height: 370px; box-shadow: 0 16px 55px rgba(25,41,36,.08); overflow: hidden; }
.villa-image { position: relative; min-height: 370px; overflow: hidden; }
.villa-image img { height: 100%; object-fit: cover; transition: transform .65s ease; }
.villa-card:hover .villa-image img { transform: scale(1.045); }
.villa-image > span { position: absolute; top: 18px; left: 18px; padding: 7px 11px; background: rgba(15,39,33,.9); color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.villa-body { padding: 28px; display: flex; flex-direction: column; }
.villa-number { margin: 0 0 4px; color: var(--gold-dark); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.villa-body h3 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 31px; line-height: 1; color: var(--forest); }
.villa-body > p { margin: 18px 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.villa-body ul { margin: auto 0 20px; padding: 15px 0 0; list-style: none; border-top: 1px solid #eee7dc; display: flex; gap: 12px; flex-wrap: wrap; }
.villa-body li { font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: #69736f; }
.villa-body li:not(:last-child)::after { content: "•"; margin-left: 12px; color: var(--gold); }

.experiences { background: #f7f2e9; }
.feature-pair { display: grid; gap: 38px; }
.feature-card { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 540px; background: var(--forest); color: #fff; box-shadow: var(--shadow); }
.feature-card.reverse { grid-template-columns: .85fr 1.15fr; }
.feature-card.reverse img { order: 2; }
.feature-card img { height: 100%; object-fit: cover; min-height: 540px; }
.feature-copy { padding: clamp(42px,6vw,78px); display: flex; flex-direction: column; justify-content: center; }
.feature-copy h3 { margin: 0 0 18px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(42px,5vw,64px); line-height: .95; font-weight: 600; }
.feature-copy p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.text-link { display: inline-flex; gap: 12px; align-items: center; width: fit-content; margin-top: 12px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.text-link span { transition: transform .2s; }.text-link:hover span { transform: translateX(5px); }

.spa { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 720px; background: #112d27; color: #fff; }
.spa-image { background: linear-gradient(90deg, transparent 70%, rgba(17,45,39,.75)), url('assets/images/spa.jpg') center/cover no-repeat; min-height: 720px; }
.spa-copy { padding: 90px clamp(34px,7vw,110px); display: flex; flex-direction: column; justify-content: center; }
.spa h2, .contact h2 { margin: 0 0 24px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(48px,5.5vw,76px); line-height: .95; font-weight: 600; }
.spa-copy > p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.spa-list { display: grid; grid-template-columns: repeat(2,1fr); margin: 24px 0 34px; border-top: 1px solid rgba(255,255,255,.15); }
.spa-list span { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

.weddings { background: #e9dfcf; }
.occasion-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 34px; }
.occasion-card { background: #fff; padding-bottom: 35px; }
.occasion-image { height: 430px; position: relative; overflow: hidden; }
.occasion-image img { height: 100%; object-fit: cover; transition: transform .6s; }
.occasion-card:hover img { transform: scale(1.04); }
.occasion-image span { position: absolute; left: 0; bottom: 0; background: var(--gold); color: var(--forest); padding: 11px 20px; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.occasion-card > div:last-child { padding: 30px 34px 0; }
.occasion-card h3 { margin: 0 0 14px; font-family: "Cormorant Garamond", Georgia, serif; color: var(--forest); font-size: 39px; line-height: 1; }
.occasion-card p { color: var(--muted); }

.gallery { background: #f7f2e9; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 230px; gap: 14px; }
.gallery-item { padding: 0; border: 0; overflow: hidden; position: relative; background: #ddd; }
.gallery-item::after { content: "+"; position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%) scale(.65); width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.7); color: #fff; font-size: 27px; opacity: 0; transition: .25s; background: rgba(10,35,29,.35); }
.gallery-item:hover::after { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.contact { background: var(--forest); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.contact-intro > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.contact-details { display: grid; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.14); }
.contact-details a, .contact-details p { margin: 0; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.85); }
.contact-details span { display: inline-block; width: 86px; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-form { background: #f7f2e9; color: var(--ink); padding: clamp(30px,5vw,58px); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
label { display: grid; gap: 8px; margin-bottom: 17px; color: #4a5551; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
input, select, textarea { width: 100%; border: 1px solid #d8d0c3; border-radius: 0; background: #fff; color: var(--ink); padding: 14px 15px; outline: none; font-size: 14px; letter-spacing: 0; text-transform: none; }
input:focus, select:focus, textarea:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 3px rgba(164,123,56,.12); }
textarea { resize: vertical; }
.form-status { min-height: 24px; margin: 12px 0 0; color: #27644f; font-size: 12px; }

.site-footer { background: #091e1a; color: rgba(255,255,255,.7); padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3,1fr); gap: 55px; }
.footer-grid img { max-width: 235px; margin-bottom: 17px; }
.footer-grid h3 { margin: 0 0 16px; color: var(--gold); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.footer-grid a, .footer-grid button { display: block; width: fit-content; margin: 9px 0; padding: 0; border: 0; color: rgba(255,255,255,.68); background: none; font-size: 13px; }
.footer-grid a:hover, .footer-grid button:hover { color: var(--gold); }
.footer-bottom { margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; font-size: 11px; }

.floating-book { position: fixed; z-index: 900; right: 0; top: 48%; transform: translateY(-50%); border: 0; padding: 19px 12px; background: var(--gold); color: var(--forest); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; writing-mode: vertical-rl; }
.mobile-book-bar { display: none; }

.booking-modal { width: min(660px, calc(100% - 32px)); border: 0; padding: 0; background: #f7f2e9; color: var(--ink); box-shadow: 0 35px 100px rgba(0,0,0,.35); }
.booking-modal::backdrop, .lightbox::backdrop { background: rgba(4,18,16,.83); backdrop-filter: blur(5px); }
.booking-modal > *:not(.modal-close) { padding-inline: clamp(28px,6vw,62px); }
.modal-head { padding-top: 46px; }
.modal-head h2 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 50px; color: var(--forest); line-height: 1; }
.modal-head p:last-child { color: var(--muted); }
.booking-modal form { padding-bottom: 48px; }
.modal-close, .lightbox-close { position: absolute; z-index: 2; top: 12px; right: 16px; width: 42px; height: 42px; border: 0; background: transparent; color: var(--forest); font-size: 32px; line-height: 1; }
.lightbox { width: min(1100px, calc(100% - 30px)); max-height: 90vh; padding: 0; border: 0; background: transparent; overflow: visible; }
.lightbox img { max-height: 86vh; object-fit: contain; }
.lightbox-close { color: #fff; top: -42px; right: 0; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .main-nav { gap: 16px; }
  .main-nav > a { font-size: 10px; }
  .villa-card { grid-template-columns: 1fr; }
  .villa-image { min-height: 300px; }
  .hero-scroll { display: none; }
}

@media (max-width: 900px) {
  :root { --header-h: 76px; }
  .site-header { padding: 0 18px; background: rgba(10,31,27,.78); backdrop-filter: blur(12px); }
  .brand { width: 190px; }
  .menu-toggle { display: block; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .main-nav { position: fixed; inset: var(--header-h) 0 auto; display: grid; gap: 0; padding: 16px 22px 26px; background: rgba(10,31,27,.98); transform: translateY(-120%); opacity: 0; pointer-events: none; transition: .3s ease; }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav > a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 12px; }
  .nav-book { margin-top: 15px; }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .spa { grid-template-columns: 1fr; }
  .spa-image { min-height: 520px; background: linear-gradient(0deg, rgba(17,45,39,.45), transparent 65%), url('assets/images/spa.jpg') center/cover no-repeat; }
  .feature-card, .feature-card.reverse { grid-template-columns: 1fr; }
  .feature-card.reverse img { order: 0; }
  .feature-card img { min-height: 420px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 30px, 1180px); }
  .section-pad { padding: 76px 0; }
  body { padding-bottom: 62px; }
  .hero, .slider, .slide { min-height: 92svh; }
  .slide::before { background-image: linear-gradient(90deg, rgba(4,18,16,.78), rgba(4,18,16,.38)), var(--slide-image); background-position: center; }
  .hero-content { padding-top: 92px; }
  .hero h1, .hero h2 { font-size: clamp(52px,17vw,76px); }
  .slider-arrow { top: auto; bottom: 26px; width: 43px; height: 43px; font-size: 27px; }
  .slider-prev { left: 15px; }.slider-next { right: 15px; }
  .slider-dots { bottom: 45px; }
  .mini-stats { gap: 8px; }
  .mini-stats strong { font-size: 31px; }
  .villa-grid { grid-template-columns: 1fr; gap: 24px; }
  .villa-card { grid-template-columns: 1fr; min-height: 0; }
  .villa-image { min-height: 270px; }
  .villa-body { padding: 25px 23px; }
  .feature-card img { min-height: 320px; }
  .feature-copy { padding: 38px 27px 45px; }
  .occasion-grid { grid-template-columns: 1fr; }
  .occasion-image { height: 330px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .gallery-grid { grid-auto-rows: 175px; gap: 8px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .floating-book { display: none; }
  .mobile-book-bar { position: fixed; z-index: 990; inset: auto 0 0; height: 62px; display: grid; grid-template-columns: .75fr 1.25fr; box-shadow: 0 -8px 30px rgba(0,0,0,.18); }
  .mobile-book-bar a, .mobile-book-bar button { display: grid; place-items: center; border: 0; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
  .mobile-book-bar a { background: #fff; color: var(--forest); }
  .mobile-book-bar button { background: var(--gold); color: var(--forest); }
}

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

.villa-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.villa-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.villa-slide.is-active {
  opacity: 1;
  position: relative;
}

/* ARROWS */
.villa-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
}

.villa-prev { left: 10px; }
.villa-next { right: 10px; }

/* DOTS */
.villa-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.villa-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
}

.villa-dot.is-active {
  background: #fff;
  width: 18px;
  border-radius: 10px;
}
.villa-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.villa-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}