:root{
  --max: 1160px;
  --pad: 20px;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --border: 1px solid rgba(0,0,0,.08);
  --text: #111;
  --muted: rgba(0,0,0,.65);
  --bg: #ffffff;
  --bg-alt: #faf7f2; /* warm, villa-ish */
}

/* Base */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display:block; }

/* Accessibility */
:focus-visible{
  outline: 3px solid rgba(0,0,0,.35);
  outline-offset: 3px;
  border-radius: 12px;
}

/* Layout */
.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Utilities */
.muted{ color: var(--muted); }
.tiny{ font-size: 13px; line-height: 1.4; }
.card{
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
}
.card--soft{ background: #f8f8f8; }
.link{
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.link:hover{ text-decoration-thickness: 2px; }
.text-center{ text-align: center; }
.eyebrow{
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}
.btn-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-row--center{ justify-content: center; }
.full-bleed{ margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.booking-summary{
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 12px;
  overflow: hidden;
}
.booking-summary td{
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.booking-summary tr:last-child td{ border-bottom: none; }
.booking-summary td + td{
  text-align: right;
  white-space: nowrap;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor:pointer;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--primary{
  background: #111;
  color: #fff;
  border-color: #111;
}
.btn--ghost{
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.section .btn--ghost{
  background: #fff;
  color: #111;
  border-color: rgba(0,0,0,.14);
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.header__inner{
  height: 72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
}
.brand__name{ letter-spacing: .01em; }
.nav{
  display:flex;
  gap: 16px;
  font-weight: 700;
  font-size: 14px;
  color: rgba(0,0,0,.7);
}
.nav a:hover{ color: rgba(0,0,0,.95); }
.nav-mobile-cta{ display: none; } /* shown only inside mobile menu */

/* Hamburger button — hidden on desktop */
.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
}
.nav-toggle span{
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
/* Animate to X when open */
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px){
  .nav-toggle{ display: flex; }
  .nav-cta{ display: none; } /* hide CTA button — it's in the mobile menu */
  .nav{
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 8px 0 16px;
    z-index: 49;
  }
  .nav.is-open{ display: flex; }
  .nav a{
    padding: 14px 24px;
    font-size: 16px;
  }
  .nav .nav-mobile-cta{
    margin: 8px 24px 0;
    display: inline-block;
    text-align: center;
    padding: 12px 24px;
    background: var(--text);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
  }
}

/* Hero */
.hero{
  position: relative;
  min-height: calc(100vh - 72px);
  overflow:hidden;
}
.hero__slides{
  position:absolute;
  inset:0;
}
.hero__slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform: scale(1.03);
  transition: opacity 900ms ease, transform 1600ms ease;
  z-index:1;
  pointer-events:none;
}
.hero__slide.is-active{
  opacity:1;
  transform: scale(1.01);
  z-index:2;
  pointer-events:auto;
}
.hero__slide img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  z-index:1;
}
.hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.28) 55%, rgba(0,0,0,.12));
  z-index:2;
}
.hero__content{
  position: relative;
  z-index:3;
  color: #fff;
  padding-top: clamp(80px, 12vh, 160px);
}
.hero__kicker{
  margin:0 0 10px;
  letter-spacing:.12em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  opacity: .92;
}
.hero__title{
  margin:0 0 10px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
}
.hero__subtitle{
  margin:0;
  max-width: 64ch;
  font-size: 16px;
  line-height: 1.55;
  opacity: .95;
  color: inherit;
  text-shadow: 0 2px 10px rgba(0,0,0,.65);
}
.hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Hero controls */
.hero__controls{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-top: 20px;
}
.hero__btn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.20);
  color:#fff;
  font-size: 24px;
  line-height: 1;
  cursor:pointer;
}
.hero__btn:hover{ background: rgba(0,0,0,.35); }
.hero__dots{
  display:flex;
  gap: 8px;
}
.hero__dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.7);
  background: transparent;
  opacity: .85;
  cursor: pointer;
}
.hero__dot.is-active{ background: #fff; }

/* Sections */
.section{ padding: 64px 0; }
.section--alt{ background: var(--bg-alt); }
/* Subtle separation when switching from alt (beige) back to white */
.section--alt + .section{ border-top: 1px solid rgba(0,0,0,.06); }
.section__header{ margin: 28px 0 22px; }
.section__header h2{
  margin:0 0 8px;
  font-size: 28px;
}
.section__header p{
  margin:0;
  max-width: 70ch;
  line-height: 1.6;
}

/* Strips - Facts */
.strip.strip--facts{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  margin-top: -34px; /* tuck into hero area a bit */
  position: relative;
  z-index: 2;
}
.strip.strip--facts .strip__item{
  padding: 8px 10px;
  border-right: 1px solid rgba(0,0,0,.06);
}
.strip.strip--facts .strip__item:last-child{ border-right:none; }
.strip.strip--facts .strip__label{
  font-size: 12px;
  font-weight: 800;
  letter-spacing:.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  margin-bottom: 6px;
}
.strip.strip--facts .strip__value{
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 960px){
  .strip.strip--facts{ grid-template-columns: 1fr 1fr; margin-top: 18px; }
  .strip.strip--facts .strip__item{ border-right: none; border-bottom: 1px solid rgba(0,0,0,.06); }
  .strip.strip--facts .strip__item:nth-last-child(-n+2){ border-bottom:none; }
}

/* Feature blocks */
.feature{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items:center;
  margin-top: 22px;
}
.feature--reverse{ grid-template-columns: 1fr 1.2fr; }
.feature--reverse .feature__media{ order: 2; }
.feature__media img{
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
}
.feature__content h3{
  margin: 0 0 8px;
  font-size: 22px;
}
.feature__content p{
  margin: 0 0 12px;
  line-height: 1.65;
}
.bullets{
  margin: 0;
  padding-left: 18px;
  color: rgba(0,0,0,.75);
  line-height: 1.8;
  font-weight: 600;
}
.section--alt .bullets{ color: rgba(0,0,0,.72); }

@media (max-width: 960px){
  .feature, .feature--reverse{ grid-template-columns: 1fr; }
  .feature--reverse .feature__media{ order: 0; }
}

/* Reviews */
.reviews{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review{
  background:#fff;
  border: var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.review__stars{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 900;
  margin-bottom: 10px;
}

.review__stars .star{
  display:inline-block;
  font-size: 16px;
  line-height: 1;
}
.review__stars .star--full{
  color: #111;
}
.review__stars .star--empty{
  color: #111;
  opacity: .25;
}
.review__stars .star--half{
  color: transparent;
  background: linear-gradient(90deg, #111 50%, rgba(17,17,17,.25) 50%);
  -webkit-background-clip: text;
  background-clip: text;
}
.review__text{
  margin: 0 0 10px;
  line-height: 1.6;
  color: rgba(0,0,0,.78);
  font-weight: 600;
}
.review__meta{
  margin: 0;
  color: rgba(0,0,0,.55);
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 960px){
  .reviews{ grid-template-columns: 1fr; }
}

/* Reviews carousel (data-driven) */
.reviews-carousel{
  max-width: 820px;
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.reviews-carousel__slide{
  width: 100%;
}
.reviews-carousel__controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
}
.reviews-carousel__btn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.85);
  color: #111;
  font-size: 24px;
  line-height: 1;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.reviews-carousel__btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); background: #fff; }
.reviews-carousel__dots{
  display:flex;
  gap: 8px;
}
.reviews-carousel__dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.35);
  background: transparent;
  opacity: .85;
  cursor: pointer;
}
.reviews-carousel__dot.is-active{
  background: #111;
  border-color: #111;
}
.reviews-carousel.is-loading .review{
  opacity: .85;
}
.reviews-carousel.is-fading .review{
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 220ms ease, transform 220ms ease;
}
.reviews-carousel .review{
  transition: opacity 220ms ease, transform 220ms ease;
}

/* CTA */
.cta{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: stretch;
}
.cta__content h2{
  margin:0 0 8px;
  font-size: 28px;
}
.cta__content p{
  margin: 0 0 14px;
  line-height: 1.65;
  max-width: 70ch;
}
.cta__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0 10px;
}
.cta__card{
  background:#fff;
  border: var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.cta__card h3{
  margin: 0 0 8px;
  font-size: 16px;
}
.divider{
  height: 1px;
  background: rgba(0,0,0,.08);
  margin: 14px 0;
}

@media (max-width: 960px){
  .cta{ grid-template-columns: 1fr; }
}

/* Footer */
.footer{
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 24px 0;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.footer a{ text-decoration: underline; }

/* Strips - Trust */
.strip.strip--trust{
  background: var(--bg-alt);
  border-bottom: var(--border);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.strip.strip--trust .strip__inner{
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 8px 0;
  font-weight: 600;
  color: var(--muted);
}
.strip.strip--trust .strip__dot{ opacity: 0.4; }

/* Booking */
.booking__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.booking input{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  font: inherit;
}
/* On wider screens, all 4 inputs in one row with narrow guest fields */
@media (min-width: 1100px){
  .booking__grid{ grid-template-columns: 1fr 1fr 110px 110px; }
}
