/* ==========================================================================
   ISLAX CARS — Design System
   Deep navy & charcoal, warm Seychelles sand, muted tropical palm, brass accent.
   Display: Fraunces (editorial serif) · Body: Inter · Signature: passport "stamp" motif
   ========================================================================== */

:root{
  /* ---- Color tokens ---- */
  --navy-900: #0B1720;
  --navy-800: #0F1F2B;
  --navy-700: #16293A;
  --navy-600: #203449;
  --ink:       #1B2430;
  --ink-soft:  #4B5563;
  --sand-050: #FBF8F1;
  --sand-100: #F4EDDD;
  --sand-200: #EADFC2;
  --palm-700: #2E4E3F;
  --palm-500: #3F6B52;
  --palm-300: #8AAE96;
  --gold-500: #C6994F;
  --gold-300: #E4C583;
  --white:    #FFFFFF;

  /* ---- Surfaces ---- */
  --bg-body:   var(--sand-050);
  --bg-dark:   var(--navy-900);

  /* ---- Type ---- */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ---- Spacing scale ---- */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs:  0.75rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* ---- Radius / shadow ---- */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-soft: 0 20px 60px -25px rgba(11, 23, 32, 0.45);
  --shadow-card: 0 12px 30px -18px rgba(11, 23, 32, 0.35);

  /* ---- Motion ---- */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur-fast: .25s;
  --dur-med: .55s;

  --container: 1240px;
}

/* ---------------------------------------------------------------------- */
/* Reset                                                                   */
/* ---------------------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }
input, select, textarea{ font-family: inherit; font-size: 1rem; }
h1,h2,h3,h4,h5{ font-family: var(--font-display); margin: 0; font-weight: 600; color: var(--navy-900); }
p{ margin: 0; }

:focus-visible{
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

@media (min-width: 768px){
  .container{ padding-inline: var(--space-xl); }
}

.visually-hidden{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link{
  position: absolute;
  left: -999px; top: 0;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: .75rem 1.25rem;
  z-index: 999;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

/* ---------------------------------------------------------------------- */
/* Type scale                                                              */
/* ---------------------------------------------------------------------- */
.eyebrow{
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--palm-500);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before{
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.on-dark{ color: var(--gold-300); }

.h-display-xl{ font-size: clamp(2.6rem, 5.4vw, 4.6rem); line-height: 1.04; letter-spacing: -0.01em; }
.h-display-lg{ font-size: clamp(2.1rem, 3.6vw, 3.2rem); line-height: 1.08; letter-spacing: -0.01em; }
.h-display-md{ font-size: clamp(1.6rem, 2.4vw, 2.2rem); line-height: 1.15; }
.h-display-sm{ font-size: 1.35rem; line-height: 1.25; }

.section-head{ max-width: 640px; margin-bottom: var(--space-xl); }
.section-head.center{ margin-inline: auto; text-align: center; }
.section-head p{ color: var(--ink-soft); margin-top: var(--space-sm); font-size: 1.05rem; }

.lede{ font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: .95rem 1.9rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }

.btn-gold{
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-900);
  box-shadow: 0 14px 30px -12px rgba(198,153,79,.55);
}
.btn-gold:hover{ box-shadow: 0 18px 36px -12px rgba(198,153,79,.7); }

.btn-outline-light{
  border-color: rgba(255,255,255,.55);
  color: var(--white);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover{ background: rgba(255,255,255,.14); border-color: #fff; }

.btn-navy{
  background: var(--navy-900);
  color: var(--sand-050);
}
.btn-navy:hover{ background: var(--navy-700); }

.btn-outline-dark{
  border-color: rgba(15,31,43,.25);
  color: var(--navy-900);
  background: transparent;
}
.btn-outline-dark:hover{ background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }

.btn-block{ width: 100%; }
.btn[disabled]{ opacity: .55; pointer-events: none; }

.btn-icon{ width: 1em; height: 1em; flex-shrink: 0; }

/* ---------------------------------------------------------------------- */
/* Header                                                                  */
/* ---------------------------------------------------------------------- */
.topbar{
  background: var(--navy-900);
  color: rgba(244,237,221,.85);
  font-size: .8rem;
}
.topbar .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .5rem;
  gap: var(--space-md);
}
.topbar-info{ display: flex; align-items: center; gap: var(--space-lg); flex-wrap: wrap; }
.topbar-info a{ display: inline-flex; align-items: center; gap: .4em; transition: color var(--dur-fast); }
.topbar-info a:hover{ color: var(--gold-300); }
.hide-on-narrow{ display: none; }
@media (min-width: 900px){ .hide-on-narrow{ display: inline; } }
.topbar-social{ display: flex; align-items: center; gap: .9rem; }
.topbar-social a{ opacity: .8; transition: opacity var(--dur-fast), transform var(--dur-fast); }
.topbar-social a:hover{ opacity: 1; transform: translateY(-1px); }
.topbar-social svg{ width: 15px; height: 15px; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  transition: background var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), padding var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
  background: rgba(11,23,32,.92);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-header.is-solid{
  background: rgba(11,23,32,.97);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 12px 30px -18px rgba(0,0,0,.5);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.page-header .site-header{ background: rgba(11,23,32,.92); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,.06); }

.nav-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
}

.brand{ display: flex; align-items: center; gap: .65rem; color: var(--white); }
.brand-mark{
  height: 52px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.brand-sub-standalone{
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-left: -.1rem;
  padding-bottom: .1rem;
  align-self: flex-end;
}
.brand-name{
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
}
.brand-sub{
  display: block;
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-top: .28rem;
}

.primary-nav{ display: none; }
.primary-nav ul{ display: flex; align-items: center; gap: var(--space-lg); }
.primary-nav a{
  color: rgba(255,255,255,.86);
  font-size: .92rem;
  font-weight: 500;
  position: relative;
  padding-block: .3rem;
  transition: color var(--dur-fast);
}
.primary-nav a::after{
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width var(--dur-fast) var(--ease);
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"]{ color: var(--white); }
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after{ width: 100%; }

.header-cta{ display: flex; align-items: center; gap: var(--space-md); }
.header-cta .btn{ display: none; }

.nav-toggle{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  padding: 0;
}
.nav-toggle span{
  width: 18px; height: 2px;
  background: var(--white);
  margin-inline: auto;
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.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); }

.mobile-nav{
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy-900);
  padding: 6.5rem var(--space-md) var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--dur-med) var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open{ transform: translateX(0); }
.mobile-nav ul{ display: flex; flex-direction: column; gap: 0; }
.mobile-nav a{
  display: block;
  color: var(--sand-050);
  font-family: var(--font-display);
  font-size: 1.7rem;
  padding-block: .85rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav .btn{ margin-top: var(--space-lg); }
.mobile-nav-contact{ margin-top: var(--space-lg); color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.9; }
.mobile-nav-contact a{ color: var(--gold-300); }

@media (min-width: 1080px){
  .primary-nav{ display: block; }
  .header-cta .btn{ display: inline-flex; }
  .nav-toggle{ display: none; }
  .mobile-nav{ display: none; }
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy-900);
  padding-top: 4rem;
  overflow: hidden;
}
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-media img{ width: 100%; height: 100%; object-fit: cover; opacity: .92; }
.hero-media::after{
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,23,32,.35) 0%, rgba(11,23,32,.3) 35%, rgba(11,23,32,.88) 100%),
    linear-gradient(90deg, rgba(11,23,32,.7) 0%, rgba(11,23,32,.1) 60%);
}
.hero-content{
  position: relative;
  z-index: 2;
  padding-block: var(--space-2xl) var(--space-xl);
  width: 100%;
}
.hero-content .eyebrow{ color: var(--gold-300); margin-bottom: var(--space-md); }
.hero-content h1{ color: var(--white); max-width: 20ch; }
.hero-content .lede{ color: rgba(244,237,221,.85); margin-top: var(--space-md); }
.hero-actions{ display: flex; flex-wrap: wrap; gap: var(--space-md); margin-top: var(--space-lg); }
.hero-stats{
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat b{ display: block; font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-300); }
.hero-stat span{ font-size: .82rem; color: rgba(255,255,255,.7); }

/* Booking widget (glass) */
.booking-widget{
  position: relative;
  z-index: 3;
  margin-top: var(--space-2xl);
  background: rgba(15,31,43,.6);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(18px) saturate(160%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
}
.booking-widget h2{ color: var(--white); font-size: 1.2rem; margin-bottom: var(--space-md); }
.bw-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.bw-field{ display: flex; flex-direction: column; gap: .4rem; }
.bw-field label{
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244,237,221,.7);
  font-weight: 600;
}
.bw-field input, .bw-field select{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: .75rem .9rem;
  color-scheme: dark;
}
.bw-field input::placeholder{ color: rgba(255,255,255,.45); }
.bw-field input:focus, .bw-field select:focus{ border-color: var(--gold-500); }
.bw-submit{ display: flex; align-items: flex-end; }

@media (min-width: 860px){
  .bw-grid{ grid-template-columns: repeat(5, 1fr); align-items: end; }
}

/* ---------------------------------------------------------------------- */
/* Sections / general layout                                               */
/* ---------------------------------------------------------------------- */
.section{ padding-block: var(--space-2xl); position: relative; }
.section-tight{ padding-block: var(--space-xl); }
.section-dark{ background: var(--navy-900); color: rgba(244,237,221,.9); }
.section-dark h2, .section-dark h3{ color: var(--white); }
.section-sand{ background: var(--sand-100); }
.section-palm{ background: var(--palm-700); color: var(--sand-050); }
.section-palm h2, .section-palm h3{ color: var(--white); }

.wave-divider{ display: block; width: 100%; line-height: 0; }
.wave-divider svg{ width: 100%; height: auto; display: block; }

/* Page hero (interior pages) */
.page-hero{
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  padding-block: 9rem var(--space-2xl);
  overflow: hidden;
}
.page-hero-media{ position: absolute; inset: 0; }
.page-hero-media img{ width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.page-hero-media::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,23,32,.8), rgba(11,23,32,.96));
}
.page-hero-content{ position: relative; z-index: 2; max-width: 760px; }
.page-hero .eyebrow{ color: var(--gold-300); margin-bottom: var(--space-sm); }
.page-hero h1{ color: var(--white); }
.page-hero p{ color: rgba(244,237,221,.82); margin-top: var(--space-sm); font-size: 1.05rem; max-width: 60ch; }
.breadcrumb{ display: flex; gap: .5rem; align-items: center; font-size: .82rem; color: rgba(244,237,221,.6); margin-bottom: var(--space-md); }
.breadcrumb a:hover{ color: var(--gold-300); }

/* ---------------------------------------------------------------------- */
/* Signature: Stamp badge                                                  */
/* ---------------------------------------------------------------------- */
.stamp{
  width: 108px; height: 108px;
  border-radius: 50%;
  border: 1.5px dashed currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  transform: rotate(-8deg);
  color: var(--gold-500);
}
.stamp::before{
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .55;
}
.stamp-text{
  font-family: var(--font-display);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--navy-900);
  font-weight: 600;
}
.stamp-text small{ display: block; font-size: .52rem; color: var(--gold-500); letter-spacing: .18em; margin-top: 2px; }

/* ---------------------------------------------------------------------- */
/* Cards: value props / why choose us                                      */
/* ---------------------------------------------------------------------- */
.value-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 700px){ .value-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px){ .value-grid{ grid-template-columns: repeat(3, 1fr); } }

.value-card{
  background: var(--white);
  border: 1px solid rgba(15,31,43,.08);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast);
}
.value-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: rgba(198,153,79,.4); }
.value-icon{
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--palm-700);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-md);
}
.value-icon svg{ width: 24px; height: 24px; }
.value-card h3{ font-size: 1.15rem; margin-bottom: .5rem; }
.value-card p{ color: var(--ink-soft); font-size: .96rem; }

/* ---------------------------------------------------------------------- */
/* Fleet / Car cards                                                       */
/* ---------------------------------------------------------------------- */
.fleet-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 720px){ .fleet-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px){ .fleet-grid{ grid-template-columns: repeat(3, 1fr); } }

.car-card{
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
  position: relative;
}
.car-card:hover{ transform: translateY(-8px); box-shadow: 0 30px 55px -25px rgba(11,23,32,.45); }
.car-media{
  position: relative;
  background: linear-gradient(160deg, var(--sand-200), var(--sand-100));
  padding: var(--space-lg) var(--space-md) 0;
}
.car-media img{ width: 100%; height: 190px; object-fit: contain; }
.car-price-tag{
  position: absolute;
  top: var(--space-md); right: var(--space-md);
  background: var(--navy-900);
  color: var(--white);
  padding: .5rem .9rem;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
}
.car-price-tag b{ color: var(--gold-300); font-family: var(--font-display); font-size: .95rem; margin-right: .2rem; }
.car-body{ padding: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-sm); flex: 1; }
.car-body h3{ font-size: 1.35rem; }
.car-rating{ display: flex; align-items: center; gap: .4rem; font-size: .85rem; color: var(--ink-soft); }
.car-rating svg{ width: 14px; height: 14px; color: var(--gold-500); }
.car-specs{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
  margin-block: .3rem .6rem;
}
.car-spec{
  display: flex; align-items: center; gap: .5rem;
  font-size: .84rem; color: var(--ink-soft);
}
.car-spec svg{ width: 17px; height: 17px; color: var(--palm-500); flex-shrink: 0; }
.car-body .btn{ margin-top: auto; }

/* ---------------------------------------------------------------------- */
/* Experience / editorial section                                          */
/* ---------------------------------------------------------------------- */
.editorial{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}
@media (min-width: 900px){ .editorial{ grid-template-columns: 1fr 1fr; gap: var(--space-2xl); } }
.editorial-media{ position: relative; }
.editorial-media img{ border-radius: var(--radius-lg); width: 100%; height: 480px; object-fit: cover; box-shadow: var(--shadow-soft); }
.editorial-media .stamp{ position: absolute; bottom: -30px; left: -20px; background: var(--sand-050); box-shadow: var(--shadow-card); }
.editorial.reverse{ direction: rtl; }
.editorial.reverse > *{ direction: ltr; }

.pill-list{ display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-md); }
.pill-list li{ display: flex; gap: .8rem; align-items: flex-start; font-size: .98rem; color: var(--ink-soft); }
.pill-list svg{ width: 20px; height: 20px; color: var(--palm-500); flex-shrink: 0; margin-top: .1rem; }
.pill-list strong{ color: var(--navy-900); }

/* ---------------------------------------------------------------------- */
/* Testimonials                                                            */
/* ---------------------------------------------------------------------- */
.review-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 720px){ .review-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px){ .review-grid{ grid-template-columns: repeat(3, 1fr); } }

.review-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid rgba(15,31,43,.08);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  height: 100%;
}
.section-dark .review-card{ background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.section-dark .review-card p{ color: rgba(244,237,221,.85); }
.section-dark .review-card .review-name{ color: var(--white); }
.review-stars{ display: flex; gap: .2rem; color: var(--gold-500); font-size: 1rem; letter-spacing: .18em; }
.review-stars svg{ width: 16px; height: 16px; }
.review-card p{ color: var(--ink-soft); font-size: .95rem; flex: 1; }
.review-foot{ display: flex; align-items: center; justify-content: space-between; margin-top: var(--space-xs); padding-top: var(--space-xs); border-top: 1px solid rgba(15,31,43,.08); }
.section-dark .review-foot{ border-color: rgba(255,255,255,.12); }
.review-name{ font-weight: 600; color: var(--navy-900); font-size: .92rem; }
.review-date{ font-size: .78rem; color: var(--ink-soft); }
.section-dark .review-date{ color: rgba(244,237,221,.55); }

.reviews-toolbar{ display:flex; align-items:center; justify-content:space-between; flex-wrap: wrap; gap: var(--space-md); margin-bottom: var(--space-lg); }
.rating-summary{ display:flex; align-items:center; gap: var(--space-md); }
.rating-summary .score{ font-family: var(--font-display); font-size: 3rem; color: var(--navy-900); line-height: 1; }
.rating-summary .score-meta{ font-size: .85rem; color: var(--ink-soft); }

.load-more-wrap{ display: flex; justify-content: center; margin-top: var(--space-lg); }
.review-hidden{ display: none; }

/* ---------------------------------------------------------------------- */
/* FAQ accordion                                                           */
/* ---------------------------------------------------------------------- */
.faq-list{ display: flex; flex-direction: column; gap: var(--space-sm); max-width: 820px; }
.faq-item{
  background: var(--white);
  border: 1px solid rgba(15,31,43,.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-fast);
}
.faq-item[open], .faq-item.is-open{ border-color: var(--gold-500); }
.faq-q{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-display);
  font-size: 1.06rem;
  color: var(--navy-900);
  font-weight: 600;
}
.faq-q .plus{
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--sand-100);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: background var(--dur-fast), transform var(--dur-med) var(--ease);
}
.faq-q .plus::before, .faq-q .plus::after{
  content: "";
  position: absolute;
  background: var(--navy-900);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast);
}
.faq-q .plus::before{ width: 12px; height: 2px; }
.faq-q .plus::after{ width: 2px; height: 12px; }
.faq-item.is-open .plus{ background: var(--gold-500); transform: rotate(180deg); }
.faq-item.is-open .plus::after{ opacity: 0; }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-med) var(--ease);
}
.faq-a-inner{ padding: 0 var(--space-lg) var(--space-lg); color: var(--ink-soft); font-size: .96rem; line-height: 1.7; }
.faq-a-inner p + p{ margin-top: .6rem; }

/* ---------------------------------------------------------------------- */
/* Booking form (full page)                                                */
/* ---------------------------------------------------------------------- */
.booking-layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (min-width: 980px){ .booking-layout{ grid-template-columns: 1.5fr 1fr; gap: var(--space-2xl); } }

.form-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15,31,43,.06);
}
@media (min-width: 640px){ .form-card{ padding: var(--space-xl); } }

.form-grid{ display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
@media (min-width: 640px){ .form-grid.cols-2{ grid-template-columns: 1fr 1fr; } }
@media (min-width: 640px){ .form-grid.cols-4{ grid-template-columns: repeat(4, 1fr); } }

.field{ display: flex; flex-direction: column; gap: .4rem; }
.field label{ font-size: .82rem; font-weight: 600; color: var(--navy-900); }
.field .req{ color: var(--gold-500); }
.field input, .field select, .field textarea{
  border: 1.5px solid rgba(15,31,43,.14);
  border-radius: var(--radius-sm);
  padding: .8rem .95rem;
  background: var(--sand-050);
  color: var(--ink);
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--palm-500); background: var(--white); }
.field textarea{ resize: vertical; min-height: 110px; }
.field small.hint{ font-size: .76rem; color: var(--ink-soft); }
.field.invalid input, .field.invalid select{ border-color: #C24545; }
.field-error{ font-size: .78rem; color: #C24545; display: none; }
.field.invalid .field-error{ display: block; }

.form-section-title{ font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--palm-500); font-weight: 700; margin-block: var(--space-md) .3rem; }
.form-section-title:first-child{ margin-top: 0; }

.checkline{ display: flex; align-items: flex-start; gap: .7rem; font-size: .88rem; color: var(--ink-soft); }
.checkline input{ margin-top: .25rem; width: 17px; height: 17px; accent-color: var(--palm-500); flex-shrink: 0; }
.checkline a{ color: var(--palm-500); text-decoration: underline; }

.form-note{ display: flex; gap: .6rem; align-items: flex-start; background: var(--sand-100); border-radius: var(--radius-sm); padding: var(--space-sm) var(--space-md); font-size: .85rem; color: var(--ink-soft); margin-top: var(--space-sm); }
.form-note svg{ width: 18px; height: 18px; color: var(--palm-500); flex-shrink: 0; margin-top: .1rem; }

.form-success{ display: none; text-align: center; padding: var(--space-2xl) var(--space-md); }
.form-success.is-visible{ display: block; }
.form-success .stamp{ margin-inline: auto; margin-bottom: var(--space-md); color: var(--palm-500); }
.form-success h3{ font-size: 1.5rem; margin-bottom: .6rem; }
.form-success p{ color: var(--ink-soft); max-width: 46ch; margin-inline: auto; }

/* Booking sidebar */
.sidebar-card{
  background: var(--navy-900);
  color: var(--sand-050);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.sidebar-card h3{ color: var(--white); font-size: 1.15rem; margin-bottom: var(--space-sm); }
.sidebar-list{ display: flex; flex-direction: column; gap: var(--space-sm); }
.sidebar-list li{ display: flex; gap: .7rem; font-size: .9rem; color: rgba(244,237,221,.82); align-items: flex-start; }
.sidebar-list svg{ width: 18px; height: 18px; color: var(--gold-300); flex-shrink: 0; margin-top: .15rem; }
.sidebar-divider{ height: 1px; background: rgba(255,255,255,.12); margin-block: var(--space-md); }
.sidebar-contact a{ display: flex; align-items: center; gap: .6rem; font-size: .92rem; padding-block: .35rem; color: rgba(244,237,221,.9); transition: color var(--dur-fast); }
.sidebar-contact a:hover{ color: var(--gold-300); }
.sidebar-contact svg{ width: 17px; height: 17px; color: var(--gold-300); }

/* ---------------------------------------------------------------------- */
/* Contact page                                                            */
/* ---------------------------------------------------------------------- */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 720px){ .contact-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px){ .contact-grid{ grid-template-columns: repeat(4, 1fr); } }

.contact-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid rgba(15,31,43,.08);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.contact-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-card); }
.contact-card .value-icon{ margin-bottom: var(--space-sm); }
.contact-card h3{ font-size: 1.05rem; margin-bottom: .35rem; }
.contact-card p, .contact-card a{ color: var(--ink-soft); font-size: .92rem; display: block; }
.contact-card a:hover{ color: var(--palm-500); }

.map-wrap{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-top: var(--space-xl);
  border: 1px solid rgba(15,31,43,.08);
}
.map-wrap iframe{ width: 100%; height: 420px; border: 0; display: block; }

/* ---------------------------------------------------------------------- */
/* CTA banner                                                              */
/* ---------------------------------------------------------------------- */
.cta-banner{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  isolation: isolate;
}
.cta-banner::before{
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 100% at 50% 0%, rgba(198,153,79,.25), transparent 60%),
              radial-gradient(50% 80% at 80% 100%, rgba(63,107,82,.35), transparent 60%);
}
.cta-banner h2{ color: var(--white); max-width: 20ch; margin-inline: auto; }
.cta-banner p{ color: rgba(244,237,221,.8); margin-top: var(--space-sm); max-width: 55ch; margin-inline: auto; }
.cta-banner .hero-actions{ justify-content: center; margin-top: var(--space-lg); }

/* ---------------------------------------------------------------------- */
/* Footer                                                                   */
/* ---------------------------------------------------------------------- */
.site-footer{ background: var(--navy-900); color: rgba(244,237,221,.75); padding-top: var(--space-2xl); }
.footer-top{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 780px){ .footer-top{ grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-lg); } }

.footer-brand .brand{ margin-bottom: var(--space-sm); }
.footer-brand p{ font-size: .92rem; line-height: 1.7; max-width: 34ch; }
.footer-social{ display: flex; gap: .7rem; margin-top: var(--space-md); }
.footer-social a{
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.footer-social a:hover{ background: var(--gold-500); border-color: var(--gold-500); }
.footer-social svg{ width: 16px; height: 16px; }

.footer-col h4{ color: var(--white); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: var(--space-sm); font-family: var(--font-body); font-weight: 700; }
.footer-col ul{ display: flex; flex-direction: column; gap: .65rem; }
.footer-col a{ font-size: .92rem; transition: color var(--dur-fast); }
.footer-col a:hover{ color: var(--gold-300); }
.footer-contact li{ display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; margin-bottom: .7rem; }
.footer-contact svg{ width: 17px; height: 17px; color: var(--gold-300); flex-shrink: 0; margin-top: .15rem; }

.footer-bottom{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-block: var(--space-md);
  font-size: .8rem;
  color: rgba(244,237,221,.5);
}
.footer-legal{ display: flex; gap: var(--space-md); }
.footer-legal a:hover{ color: var(--gold-300); }

/* ---------------------------------------------------------------------- */
/* Scroll reveal                                                           */
/* ---------------------------------------------------------------------- */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
.reveal-stagger > *{ transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------------------------------------------------------------------- */
/* Sticky mobile booking CTA                                               */
/* ---------------------------------------------------------------------- */
.sticky-cta{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(11,23,32,.95);
  backdrop-filter: blur(10px);
  padding: .8rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  box-shadow: 0 -10px 30px -14px rgba(0,0,0,.5);
  transform: translateY(100%);
  transition: transform var(--dur-med) var(--ease);
}
.sticky-cta.is-visible{ transform: translateY(0); }
.sticky-cta span{ color: var(--white); font-size: .85rem; }
.sticky-cta span b{ display: block; color: var(--gold-300); font-family: var(--font-display); font-size: 1.05rem; }
@media (min-width: 1080px){ .sticky-cta{ display: none; } }

/* ---------------------------------------------------------------------- */
/* Misc utilities                                                          */
/* ---------------------------------------------------------------------- */
.mt-0{ margin-top: 0 !important; }
.text-center{ text-align: center; }
.two-col{ display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 900px){ .two-col{ grid-template-columns: repeat(2, 1fr); } }

.badge-row{ display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-md); }
.badge{
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--sand-050);
  padding: .5rem .9rem;
  border-radius: var(--radius-pill);
  font-size: .78rem;
}
.badge svg{ width: 15px; height: 15px; color: var(--gold-300); }

.terms-body{ max-width: 780px; }
.terms-body h2{ margin-top: var(--space-xl); font-size: 1.4rem; }
.terms-body h2:first-child{ margin-top: 0; }
.terms-body ul{ margin-top: var(--space-sm); display: flex; flex-direction: column; gap: .6rem; }
.terms-body ul li{ display: flex; gap: .7rem; color: var(--ink-soft); }
.terms-body ul li::before{ content: "—"; color: var(--gold-500); flex-shrink: 0; }
.terms-body p{ color: var(--ink-soft); margin-top: var(--space-sm); }
.terms-note{ background: var(--sand-100); border-left: 3px solid var(--gold-500); padding: var(--space-md) var(--space-lg); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-top: var(--space-lg); font-size: .92rem; color: var(--ink-soft); }
