:root {
  --navy: #101b24;
  --navy-2: #172a36;
  --gold: #c6a15b;
  --gold-light: #e6d4ad;
  --cream: #f7f3ec;
  --white: #ffffff;
  --ink: #1f2930;
  --muted: #66747d;
  --line: rgba(19, 35, 46, 0.12);
  --shadow: 0 24px 70px rgba(18, 31, 40, 0.14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "DM Sans", sans-serif; color: var(--ink); background: var(--cream); overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 110px 0; }

.preloader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; background: var(--navy); transition: opacity .5s ease, visibility .5s ease; }
.preloader.hidden { opacity: 0; visibility: hidden; }
.loader-mark { width: 72px; height: 72px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; display: grid; place-items: center; color: var(--gold-light); font-family: "Playfair Display", serif; font-size: 24px; animation: pulse 1.2s infinite ease-in-out; }
@keyframes pulse { 50% { transform: scale(1.08); box-shadow: 0 0 0 18px rgba(198,161,91,.08); } }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: linear-gradient(
    180deg,
    rgba(5, 18, 31, 0.72) 0%,
    rgba(5, 18, 31, 0.42) 65%,
    rgba(5, 18, 31, 0) 100%
  );
  transition: .3s ease;
}
.site-header.scrolled { background: rgba(16,27,36,.94); backdrop-filter: blur(16px); box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.navbar { height: 88px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: white; }
.brand-mark { width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid rgba(230,212,173,.6); border-radius: 50%; color: var(--gold-light); font-family: "Playfair Display", serif; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-family: "Playfair Display", serif; font-size: 19px; }
.brand-copy small { margin-top: 5px; color: rgba(255,255,255,.62); letter-spacing: .16em; text-transform: uppercase; font-size: 9px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,.96);
  font-size: 14px;
}
.nav-links a { position: relative; }
.nav-links > a:not(.nav-cta) { text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.nav-links a:not(.nav-cta)::after { content:""; position:absolute; left:0; right:100%; bottom:-8px; height:1px; background:var(--gold); transition:.25s; }
.nav-links a:hover::after { right:0; }
.nav-cta {
  padding: 13px 20px;
  border: 1px solid rgba(230,212,173,.7);
  border-radius: 999px;
  color: #f2ddb0;
  background: rgba(8,20,33,.22);
  backdrop-filter: blur(5px);
}
.menu-toggle { display:none; background:none; border:0; padding:8px; }
.menu-toggle span { display:block; width:25px; height:2px; background:white; margin:5px; transition:.3s; }

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;

  /* NEW HOME BANNER */
  background-image: url("./Img/banners/b1.jpg.jpeg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  opacity: 1;
  filter: none;
  background-blend-mode: normal;
}

/* Soft premium overlay only for text readability.
   It keeps the right side of your banner clearly visible. */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(4,14,26,.25) 0%,
      rgba(4,14,26,.05) 28%,
      rgba(4,14,26,0) 50%
    ),
    linear-gradient(
      90deg,
      rgba(3,14,27,.30) 0%,
      rgba(3,14,27,.18) 32%,
      rgba(3,14,27,.04) 52%,
      rgba(3,14,27,0) 72%
    );
}

.hero-orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(2px);
  border: 1px solid rgba(230,212,173,.18);
  pointer-events: none;
}

.hero-orb-one { width:430px; height:430px; right:-130px; top:12%; }
.hero-orb-two { width:240px; height:240px; right:18%; bottom:-110px; }

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 560px;
  padding-top: 90px;
  margin-left: max(28px, calc((100vw - 1180px) / 2));
  margin-right: auto;
  text-align: left;
}

.hero-text {
  max-width: 570px;
}

.hero-actions {
  justify-content: flex-start;
}

.hero-proof {
  justify-content: flex-start;
}



@media (max-width: 980px) {

  .hero-content {
    max-width: 520px;
    margin-left: 32px;
    margin-right: auto;
  }

  .hero h1 {
    max-width: 500px;
    font-size: clamp(54px, 7vw, 72px);
  }

  .hero .hero-text {
    max-width: 480px;
  }
  .hero-content {
    max-width: 560px;
    margin-left: 28px;
    margin-right: auto;
  }
}

@media (max-width: 680px) {
  .hero-content {
    width: calc(100% - 32px);
    max-width: 500px;

    margin-left: 16px;
    margin-right: 16px;

    padding-top: 85px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-proof {
    justify-content: flex-start;
  }
}

.eyebrow { margin:0 0 18px; text-transform:uppercase; letter-spacing:.24em; color:var(--gold-light); font-size:12px; font-weight:700; }
.eyebrow.dark { color:#9a7740; }
h1,h2,h3 { font-family:"Playfair Display",serif; margin-top:0; }
h1 { font-size:clamp(58px,8vw,110px); line-height:.92; letter-spacing:-.04em; margin-bottom:28px; }

.hero h1 {
  max-width: 540px;
  font-size: clamp(58px, 5.3vw, 82px);
  line-height: .94;
  letter-spacing: -.035em;
  margin-bottom: 26px;
}

.hero h1 span {
  display: inline-block;
}

.hero .hero-text {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.65;
}

.hero .hero-actions {
  justify-content: flex-start;
}

.hero .hero-proof {
  justify-content: flex-start;
  gap: 42px;
}

h1 span { color:var(--gold-light); font-style:italic; font-weight:600; }
.hero-text { max-width:640px; font-size:19px; line-height:1.7; color:rgba(255,255,255,.78); }
.hero-actions { display:flex; gap:14px; margin:35px 0 42px; flex-wrap:wrap; }
.btn { border:0; border-radius:999px; padding:16px 25px; display:inline-flex; justify-content:center; align-items:center; font-weight:700; transition:.25s ease; }
.btn-primary { background:var(--gold); color:#15212a; box-shadow:0 12px 28px rgba(198,161,91,.24); }
.btn-primary:hover { transform:translateY(-2px); background:#d3b06c; }
.btn-glass { color:white; border:1px solid rgba(255,255,255,.28); backdrop-filter:blur(12px); background:rgba(255,255,255,.07); }
.btn-glass:hover { background:rgba(255,255,255,.14); }
.hero-proof { display:flex; gap:48px; }
.hero-proof div { display:grid; gap:3px; }
.hero-proof strong { font-family:"Playfair Display",serif; font-size:25px; color:var(--gold-light); }
.hero-proof span { font-size:12px; color:rgba(255,255,255,.6); }
.scroll-cue { position:absolute; right:35px; bottom:38px; z-index:2; color:rgba(255,255,255,.65); font-size:11px; letter-spacing:.18em; text-transform:uppercase; writing-mode:vertical-rl; display:flex; align-items:center; gap:12px; }
.scroll-cue span { width:1px; height:55px; background:linear-gradient(var(--gold),transparent); }

.booking-strip { position:relative; z-index:5; margin-top:-42px; }
.booking-panel { background:white; border-radius:var(--radius); padding:28px; box-shadow:var(--shadow); }
.booking-heading { display:flex; align-items:end; justify-content:space-between; margin-bottom:20px; }
.booking-heading .eyebrow { margin-bottom:5px; }
.booking-heading h2 { margin:0; font-size:36px; }
.booking-form { display:grid; grid-template-columns:repeat(4,1fr) auto; gap:13px; align-items:end; }
label { display:grid; gap:8px; }
label span { font-size:12px; font-weight:700; color:#52616a; }
input,select,textarea { width:100%; border:1px solid #dfe4e6; background:#fbfcfc; border-radius:13px; padding:14px; outline:none; color:var(--ink); transition:.2s; }
input:focus,select:focus,textarea:focus { border-color:var(--gold); box-shadow:0 0 0 4px rgba(198,161,91,.1); background:white; }
.booking-button { min-height:49px; white-space:nowrap; }
.form-note { margin:13px 0 0; font-size:12px; color:#849097; }

.two-column { display:grid; grid-template-columns:1.05fr .95fr; gap:90px; align-items:center; }
.image-stack { position:relative; min-height:620px; }
.image-main { width:82%; height:560px; object-fit:cover; border-radius:140px 20px 20px 20px; box-shadow:var(--shadow); }
.image-float { width:46%; height:260px; object-fit:cover; position:absolute; right:0; bottom:0; border:10px solid var(--cream); border-radius:20px 20px 100px 20px; }
.experience-card { position:absolute; right:8%; top:11%; width:150px; height:150px; display:grid; place-content:center; text-align:center; border-radius:50%; background:var(--navy); color:white; border:8px solid var(--cream); }
.experience-card strong { font-family:"Playfair Display",serif; color:var(--gold-light); font-size:27px; }
.experience-card span { font-size:11px; margin-top:4px; }
.section-copy h2,.section-header h2 { font-size:clamp(42px,5vw,64px); line-height:1.05; letter-spacing:-.03em; }
.section-copy > p:not(.eyebrow),.section-header > p:not(.eyebrow) { color:var(--muted); line-height:1.8; font-size:16px; }
.feature-list { display:grid; gap:16px; margin:30px 0; }
.feature-list div { display:flex; gap:14px; align-items:center; }
.feature-list div > span { width:34px; height:34px; border-radius:50%; display:grid; place-items:center; background:#ede5d5; color:#8b6934; font-weight:700; }
.feature-list p { display:grid; margin:0; }
.feature-list small { color:var(--muted); margin-top:4px; }
.text-link { display:inline-flex; gap:10px; font-weight:700; color:#8b6934; border-bottom:1px solid rgba(139,105,52,.25); padding-bottom:5px; }

.rooms { background:white; }
.section-header { max-width:720px; margin-bottom:48px; }
.section-header.centered { text-align:center; margin-inline:auto; }
.room-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.room-card { border:1px solid var(--line); border-radius:22px; overflow:hidden; background:#fff; transition:.3s ease; }
.room-card:hover { transform:translateY(-8px); box-shadow:var(--shadow); }
.room-card.featured { transform:translateY(-18px); box-shadow:var(--shadow); }
.room-card.featured:hover { transform:translateY(-25px); }
.room-image { height:300px; position:relative; overflow:hidden; }
.room-image img { height:100%; object-fit:cover; transition:.5s; }
.room-card:hover .room-image img { transform:scale(1.05); }
.room-image span { position:absolute; top:18px; left:18px; background:rgba(16,27,36,.86); color:var(--gold-light); border-radius:999px; padding:8px 12px; font-size:11px; backdrop-filter:blur(9px); }
.room-body { padding:26px; }
.room-kicker { text-transform:uppercase; letter-spacing:.16em; font-size:10px; color:#9a7740; font-weight:700; }
.room-body h3 { font-size:29px; margin-bottom:12px; }
.room-body > p:not(.room-kicker) { color:var(--muted); line-height:1.65; }
.room-meta { display:flex; flex-wrap:wrap; gap:8px; margin:18px 0 22px; }
.room-meta span { font-size:11px; padding:7px 10px; background:#f3f0ea; border-radius:999px; color:#627079; }
.room-body a { color:#8b6934; font-weight:700; font-size:14px; }

.amenities { color:white; background:var(--navy); position:relative; overflow:hidden; }
.amenities::before { content:""; position:absolute; width:500px; height:500px; border-radius:50%; border:1px solid rgba(198,161,91,.1); right:-190px; top:-210px; }
.amenities .section-header h2 { max-width:650px; }
.amenity-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.08); }
.amenity-card { background:var(--navy); padding:38px; min-height:220px; transition:.3s; }
.amenity-card:hover { background:var(--navy-2); }
.amenity-card > span { font-size:27px; color:var(--gold-light); }
.amenity-card h3 { font-size:22px; margin:24px 0 10px; }
.amenity-card p { color:rgba(255,255,255,.58); line-height:1.7; margin:0; }

.gallery { background:#f4efe7; }
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:260px; gap:16px; }
.gallery-item { border:0; padding:0; overflow:hidden; border-radius:18px; position:relative; }
.gallery-item::after { content:"View"; position:absolute; inset:0; display:grid; place-items:center; color:white; background:rgba(16,27,36,.45); opacity:0; transition:.3s; font-weight:700; }
.gallery-item:hover::after { opacity:1; }
.gallery-item img { height:100%; object-fit:cover; transition:.5s; }
.gallery-item:hover img { transform:scale(1.06); }
.gallery-item.tall { grid-row:span 2; }
.gallery-item.wide { grid-column:span 2; }

.testimonial-section { padding:100px 0; background:linear-gradient(rgba(16,27,36,.83),rgba(16,27,36,.9)),url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1800&q=85") center/cover fixed; color:white; }
.testimonial { max-width:850px; text-align:center; }
.quote-mark { font-family:"Playfair Display",serif; font-size:110px; line-height:.5; color:var(--gold-light); }
.testimonial p { font-family:"Playfair Display",serif; font-size:clamp(34px,5vw,58px); line-height:1.22; margin:20px 0; }
.stars { letter-spacing:7px; color:var(--gold-light); }
.testimonial small { display:block; margin-top:14px; color:rgba(255,255,255,.65); }

.contact { background:white; }
.contact-layout { display:grid; grid-template-columns:1fr .9fr; gap:70px; align-items:start; }
.contact-info h2 { font-size:clamp(42px,5vw,62px); }
.contact-info > p:not(.eyebrow) { color:var(--muted); line-height:1.7; }
.contact-list { display:grid; gap:14px; margin:30px 0; }
.contact-list a { display:flex; gap:16px; align-items:flex-start; padding:18px; border:1px solid var(--line); border-radius:15px; }
.contact-list a > span { width:38px; height:38px; flex:0 0 auto; border-radius:50%; display:grid; place-items:center; background:#f2eadc; color:#8b6934; }
.contact-list div { display:grid; gap:4px; }
.contact-list small { color:var(--muted); }
.contact-list strong { font-size:14px; line-height:1.5; }
.map-card { border-radius:20px; overflow:hidden; height:280px; box-shadow:var(--shadow); }
.map-card iframe { width:100%; height:100%; border:0; }
.contact-card { background:var(--cream); border-radius:24px; padding:35px; box-shadow:var(--shadow); }
.contact-card h3 { font-size:34px; }
.contact-card form { display:grid; gap:17px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:13px; }
.full-width { width:100%; }
.status-message { min-height:20px; font-size:13px; color:#8b6934; }

footer { background:#0b151c; color:white; padding:70px 0 25px; }
.footer-grid { display:grid; grid-template-columns:1.5fr .6fr .9fr 1fr; gap:50px; }
.footer-brand { margin-bottom:18px; }
.footer-grid h4 { color:var(--gold-light); font-family:"Playfair Display",serif; font-size:18px; }
.footer-grid > div { display:flex; flex-direction:column; gap:12px; }
.footer-grid p,.footer-grid a:not(.brand):not(.footer-button) { color:rgba(255,255,255,.55); font-size:13px; line-height:1.7; }
.footer-button { margin-top:8px; display:inline-flex; align-self:flex-start; border:1px solid rgba(230,212,173,.4); color:var(--gold-light); padding:12px 15px; border-radius:999px; font-size:13px; }
.footer-bottom { margin-top:50px; padding-top:22px; border-top:1px solid rgba(255,255,255,.08); display:flex; justify-content:space-between; color:rgba(255,255,255,.42); font-size:12px; }

.floating-call,.floating-whatsapp { position:fixed; right:22px; width:48px; height:48px; display:grid; place-items:center; border-radius:50%; color:white; z-index:900; box-shadow:0 12px 26px rgba(0,0,0,.25); font-weight:800; }
.floating-call { bottom:82px; background:var(--gold); color:#17212a; }
.floating-whatsapp { bottom:22px; background:#25d366; font-size:12px; }
.lightbox { position:fixed; inset:0; z-index:2000; display:grid; place-items:center; background:rgba(5,10,14,.9); padding:40px; opacity:0; visibility:hidden; transition:.25s; }
.lightbox.active { opacity:1; visibility:visible; }
.lightbox img { max-width:1100px; max-height:82vh; object-fit:contain; border-radius:16px; }
.lightbox button { position:absolute; right:28px; top:20px; border:0; background:none; color:white; font-size:42px; }
.reveal { opacity:0; transform:translateY(28px); transition:opacity .7s ease,transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 980px) {
  .nav-links { position:fixed; inset:0; background:rgba(11,21,28,.98); flex-direction:column; justify-content:center; gap:25px; transform:translateX(100%); transition:.35s; font-size:18px; }
  .nav-links.open { transform:none; }
  .menu-toggle { display:block; z-index:2; }
  .menu-toggle.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity:0; }
  .menu-toggle.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  .booking-form { grid-template-columns:1fr 1fr; }
  .booking-button { grid-column:span 2; }
  .two-column,.contact-layout { grid-template-columns:1fr; gap:55px; }
  .room-grid { grid-template-columns:1fr 1fr; }
  .room-card.featured { transform:none; }
  .amenity-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 680px) {

  .hero-content {
    width: calc(100% - 32px);
    max-width: 480px;
    margin-left: 16px;
    margin-right: 16px;
    padding-top: 95px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(48px, 13vw, 62px);
    line-height: .96;
  }

  .hero .hero-text {
    max-width: 100%;
    font-size: 15px;
  }

  .hero .hero-actions {
    justify-content: flex-start;
  }

  .hero .hero-proof {
    justify-content: flex-start;
    gap: 24px;
  }

  .container { width:min(100% - 26px,1180px); }
  .section { padding:78px 0; }
  .navbar { height:74px; }
  .brand-copy strong { font-size:16px; }
  .brand-mark { width:39px; height:39px; }
  .hero {
    min-height: 92vh;
    background-size: cover;
    background-position: 68% center;
    background-repeat: no-repeat;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(4,15,28,.60) 0%,
      rgba(4,15,28,.42) 48%,
      rgba(4,15,28,.12) 100%
    );
  }
  .hero-content { margin:0 13px; padding-top:70px; }
  h1 { font-size:55px; }
  .hero-text { font-size:16px; }
  .hero-proof { gap:22px; flex-wrap:wrap; }
  .scroll-cue { display:none; }
  .booking-strip { margin-top:-28px; }
  .booking-panel { padding:20px; }
  .booking-heading h2 { font-size:29px; }
  .booking-form { grid-template-columns:1fr; }
  .booking-button { grid-column:auto; }
  .image-stack { min-height:480px; }
  .image-main { height:430px; width:88%; border-radius:90px 18px 18px 18px; }
  .image-float { height:190px; width:52%; }
  .experience-card { width:110px; height:110px; right:2%; top:9%; }
  .experience-card strong { font-size:21px; }
  .room-grid,.amenity-grid { grid-template-columns:1fr; }
  .room-card.featured { transform:none; }
  .gallery-grid { display:grid; grid-template-columns:1fr 1fr; grid-auto-rows:190px; }
  .gallery-item.tall { grid-row:span 2; }
  .gallery-item.wide { grid-column:span 2; }
  .form-row { grid-template-columns:1fr; }
  .contact-card { padding:24px; }
  .footer-grid { grid-template-columns:1fr; gap:30px; }
  .footer-bottom { flex-direction:column; gap:12px; }
}

.hotel-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.hotel-logo img {
  width: 200px;
  height: 100px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .hotel-logo img {
    width: 135px;
    height: 52px;
  }
}




/* =========================================================
   PREMIUM HOME HERO CAROUSEL — JULY 2026 UPDATE
   Only affects the home hero/header experience.
   ========================================================= */
.site-header {
  background: linear-gradient(180deg, rgba(4,13,24,.78) 0%, rgba(4,13,24,.42) 62%, transparent 100%);
}
.site-header:not(.scrolled) .nav-links { color: rgba(255,255,255,.96); }
.site-header:not(.scrolled) .nav-links > a:not(.nav-cta) { text-shadow: 0 2px 14px rgba(0,0,0,.45); }
.site-header:not(.scrolled) .nav-cta {
  background: rgba(8,20,33,.28);
  border-color: rgba(230,212,173,.72);
  backdrop-filter: blur(8px);
}

.premium-hero {
  min-height: 100vh;
  height: min(920px, 100vh);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #061423;
  isolation: isolate;
}

.hero-slider,
.hero-slide,
.hero-slide-image,
.hero-slide-overlay,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-slider { z-index: 0; }
.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.05s cubic-bezier(.2,.7,.2,1), visibility 1.05s;
  will-change: opacity;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }

.hero-slide-image {
  background-image: var(--hero-image);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(1.035);
  transition: transform 7.5s ease-out;
  will-change: transform;
}
.hero-slide.is-active .hero-slide-image { transform: scale(1.095); }

/* Slide-specific focus keeps the important hotel area visible */
.hero-slide[data-slide="0"] .hero-slide-image { background-position: center center; }
.hero-slide[data-slide="1"] .hero-slide-image { background-position: 62% center; }
.hero-slide[data-slide="2"] .hero-slide-image { background-position: 67% center; }

.hero-slide-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2,10,19,.48) 0%, rgba(2,10,19,.08) 31%, rgba(2,10,19,.12) 76%, rgba(2,10,19,.55) 100%),
    linear-gradient(90deg, rgba(3,14,28,.95) 0%, rgba(3,14,28,.88) 23%, rgba(3,14,28,.67) 39%, rgba(3,14,28,.27) 58%, rgba(3,14,28,.05) 76%, transparent 100%);
}

/* First graphic already contains its own navy area, so use a lighter veil */
.hero-slide[data-slide="0"] .hero-slide-overlay {
  background:
    linear-gradient(180deg, rgba(2,10,19,.30) 0%, transparent 42%, rgba(2,10,19,.20) 100%),
    linear-gradient(90deg, rgba(3,14,28,.20) 0%, rgba(3,14,28,.12) 38%, rgba(3,14,28,.03) 58%, transparent 75%);
}

.hero-grain {
  z-index: 2;
  opacity: .11;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background-image: radial-gradient(rgba(255,255,255,.32) .55px, transparent .7px);
  background-size: 5px 5px;
}

.premium-hero .hero-orb { z-index: 3; opacity: .55; }
.premium-hero .hero-content {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  margin: 0 auto;
  padding: 118px 0 86px;
  text-align: left;
}

.hero-slider-content { min-height: 100%; display: flex; flex-direction: column; justify-content: center; }
.hero-copy {
  width: min(560px, 47vw);
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  position: absolute;
  transition: opacity .62s ease, transform .72s cubic-bezier(.2,.8,.2,1);
}
.hero-copy.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.premium-hero .eyebrow {
  margin-bottom: 18px;
  letter-spacing: .26em;
  text-shadow: 0 2px 18px rgba(0,0,0,.3);
}
.premium-hero h1 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(58px, 5.3vw, 84px);
  line-height: .92;
  letter-spacing: -.045em;
  text-shadow: 0 4px 30px rgba(0,0,0,.16);
}
.premium-hero h1 span { display: inline-block; }
.premium-hero .hero-text {
  max-width: 535px;
  margin: 0;
  font-size: 17px;
  line-height: 1.68;
  color: rgba(255,255,255,.86);
  text-shadow: 0 2px 15px rgba(0,0,0,.32);
}
.premium-hero .hero-actions {
  position: relative;
  z-index: 6;
  justify-content: flex-start;
  margin: 32px 0 35px;
}
.premium-hero .btn {
  min-height: 52px;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}
.premium-hero .btn:hover { transform: translateY(-3px); }
.premium-hero .btn-primary { box-shadow: 0 14px 34px rgba(198,161,91,.28); }
.premium-hero .btn-glass { background: rgba(6,18,30,.28); border-color: rgba(255,255,255,.46); backdrop-filter: blur(10px); }
.premium-hero .hero-proof { position: relative; z-index: 6; justify-content: flex-start; gap: 42px; }

.hero-controls {
  position: absolute;
  z-index: 8;
  right: max(28px, calc((100vw - 1180px)/2));
  bottom: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.30);
  color: white;
  background: rgba(4,15,27,.34);
  backdrop-filter: blur(12px);
  font-family: Georgia, serif;
  font-size: 31px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: .25s ease;
}
.hero-arrow:hover { background: var(--gold); color: #0d1a22; border-color: var(--gold); transform: translateY(-2px); }
.hero-dots { display: flex; align-items: center; gap: 7px; }
.hero-dot {
  position: relative;
  width: 48px;
  height: 34px;
  padding: 0;
  border: 0;
  color: rgba(255,255,255,.58);
  background: transparent;
  font-size: 10px;
  letter-spacing: .12em;
}
.hero-dot::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 3px;
  height: 2px;
  border-radius: 99px;
  background: rgba(255,255,255,.26);
  transition: .3s ease;
}
.hero-dot.is-active { color: var(--gold-light); }
.hero-dot.is-active::after { background: var(--gold); transform: scaleX(1.12); }

.hero-progress {
  position: absolute;
  z-index: 8;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,.08);
}
.hero-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #a87e31, #efd592);
}
.hero-progress.is-running span { animation: heroProgress 6.5s linear forwards; }
@keyframes heroProgress { from { width: 0; } to { width: 100%; } }

.premium-hero .scroll-cue { z-index: 8; right: 24px; bottom: 136px; }

@media (max-width: 1100px) {
  .premium-hero .hero-content { width: min(100% - 48px, 1180px); }
  .hero-copy { width: min(520px, 52vw); }
  .premium-hero h1 { font-size: clamp(54px, 6.6vw, 75px); }
  .hero-controls { right: 26px; }
  .hero-slide[data-slide="1"] .hero-slide-image { background-position: 66% center; }
  .hero-slide[data-slide="2"] .hero-slide-image { background-position: 72% center; }
}

@media (max-width: 980px) {
  .premium-hero { min-height: 800px; height: 100svh; }
  .premium-hero .hero-content {
    width: calc(100% - 44px);
    margin: 0 auto;
    padding-top: 110px;
    padding-bottom: 115px;
  }
  .hero-copy { width: min(500px, 62vw); }
  .premium-hero .hero-text { max-width: 470px; }
  .hero-controls { bottom: 44px; left: 22px; right: auto; }
  .premium-hero .scroll-cue { display: none; }
  .hero-slide-overlay {
    background:
      linear-gradient(180deg, rgba(2,10,19,.52), rgba(2,10,19,.08) 30%, rgba(2,10,19,.25) 100%),
      linear-gradient(90deg, rgba(3,14,28,.96), rgba(3,14,28,.83) 38%, rgba(3,14,28,.35) 67%, rgba(3,14,28,.10));
  }
}

@media (max-width: 680px) {
  .premium-hero { min-height: 740px; height: 100svh; max-height: 860px; }
  .premium-hero .hero-content {
    width: calc(100% - 32px);
    padding: 92px 0 102px;
  }
  .hero-copy { width: 100%; max-width: 490px; }
  .premium-hero h1 {
    max-width: 100%;
    font-size: clamp(47px, 13vw, 64px);
    line-height: .95;
  }
  .premium-hero .eyebrow { font-size: 10px; letter-spacing: .20em; }
  .premium-hero .hero-text { max-width: 94%; font-size: 15px; line-height: 1.6; }
  .premium-hero .hero-actions { gap: 10px; margin: 25px 0 27px; }
  .premium-hero .btn { padding: 14px 18px; font-size: 13px; min-height: 47px; }
  .premium-hero .hero-proof { gap: 22px; flex-wrap: wrap; }
  .premium-hero .hero-proof strong { font-size: 21px; }
  .hero-controls { left: 16px; bottom: 26px; gap: 7px; }
  .hero-arrow { width: 40px; height: 40px; font-size: 27px; }
  .hero-dot { width: 38px; }

  /* On phones, prioritize readable content while retaining imagery */
  .hero-slide[data-slide="0"] .hero-slide-image { background-position: 62% center; }
  .hero-slide[data-slide="1"] .hero-slide-image { background-position: 70% center; }
  .hero-slide[data-slide="2"] .hero-slide-image { background-position: 72% center; }
  .hero-slide-overlay,
  .hero-slide[data-slide="0"] .hero-slide-overlay {
    background:
      linear-gradient(180deg, rgba(2,10,19,.60), rgba(2,10,19,.15) 30%, rgba(2,10,19,.42) 100%),
      linear-gradient(90deg, rgba(3,14,28,.93), rgba(3,14,28,.80) 52%, rgba(3,14,28,.35) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide-image,
  .hero-copy,
  .hero-arrow { transition: none !important; }
  .hero-slide.is-active .hero-slide-image { transform: none; }
  .hero-progress span { animation: none !important; }
}

/* REVIEW SLIDER */
.guest-reviews{overflow:hidden;background:#f7f3ec}
.guest-reviews .section-header{max-width:700px;margin-bottom:48px}
.review-slider{position:relative;max-width:1180px;margin:0 auto;padding:0 52px 54px}
.review-slider-window{overflow:hidden;width:100%}
.review-slider-track{display:flex;gap:22px;align-items:stretch;transition:transform .65s cubic-bezier(.22,.61,.36,1);will-change:transform}
.guest-review-card{position:relative;flex:0 0 calc((100% - 44px)/3);min-width:0;min-height:370px;padding:28px;display:flex;flex-direction:column;background:#fff;border:1px solid rgba(19,35,46,.11);border-radius:22px;box-shadow:0 18px 45px rgba(18,31,40,.08);transition:.3s ease}
.guest-review-card:hover{transform:translateY(-6px);border-color:rgba(198,161,91,.36);box-shadow:0 26px 58px rgba(18,31,40,.13)}
.guest-review-card:before{content:"“";position:absolute;top:10px;right:20px;color:rgba(198,161,91,.13);font-family:"Playfair Display",serif;font-size:78px;line-height:1}
.guest-review-top{position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:22px}
.guest-stars{color:#c6a15b;font-size:16px;letter-spacing:2px;white-space:nowrap}
.google-review-label{padding:7px 10px;color:#8b6934;background:#f4ede1;border-radius:999px;font-size:9px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;white-space:nowrap}
.guest-review-text{position:relative;z-index:1;flex:1;margin:0;color:#66747d;font-size:13.5px;line-height:1.75}
.guest-review-footer{position:relative;z-index:1;display:flex;align-items:center;gap:12px;margin-top:26px;padding-top:20px;border-top:1px solid rgba(19,35,46,.1)}
.guest-avatar{width:42px;height:42px;flex:0 0 42px;display:grid;place-items:center;color:#e6d4ad;background:#101b24;border-radius:50%;font-family:"Playfair Display",serif;font-size:13px;font-weight:700}
.guest-details{display:flex;flex:1;min-width:0;flex-direction:column;gap:3px}
.guest-details a{color:#1f2930;font-family:"Playfair Display",serif;font-size:16px;font-weight:700}
.guest-details span{color:#8a959b;font-size:10px}
.review-arrow{color:#9a7740;font-size:18px;text-decoration:none}
.review-slider-button{position:absolute;top:50%;z-index:5;width:44px;height:44px;padding:0;display:grid;place-items:center;color:#e6d4ad;background:#101b24;border:1px solid rgba(198,161,91,.35);border-radius:50%;font-family:Georgia,serif;font-size:29px;transform:translateY(-75%);box-shadow:0 12px 28px rgba(16,27,36,.18)}
.review-slider-button:disabled{opacity:.4;cursor:not-allowed}
.review-prev{left:0}.review-next{right:0}
.review-dots{position:absolute;left:50%;bottom:6px;display:flex;gap:9px;transform:translateX(-50%)}
.review-dot{width:8px;height:8px;padding:0;background:rgba(16,27,36,.22);border:0;border-radius:50%}
.review-dot.active{width:25px;background:#c6a15b;border-radius:999px}
@media(max-width:980px){.review-slider{padding-inline:48px}.guest-review-card{flex-basis:calc((100% - 22px)/2)}}
@media(max-width:700px){.review-slider{padding:0 0 58px}.guest-review-card{flex-basis:100%;min-height:auto;padding:24px 20px}.review-slider-button{top:auto;bottom:0;width:40px;height:40px;transform:none}.review-prev{left:calc(50% - 82px)}.review-next{right:calc(50% - 82px)}.review-dots{bottom:16px}}
