:root{
  --ink:#142621;
  --emerald:#0E6B5C;
  --emerald-dark:#0A4F45;
  --emerald-deep:#0A302A;
  --gold:#F2A93B;
  --gold-light:#FFD98A;
  --coral:#FF6F59;
  --ivory:#FBF7EE;
  --cream:#FBF7EE;
  --card:#F1ECDD;
  --line: rgba(20,38,33,0.12);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:'Inter', sans-serif;
  font-size:16px;
  line-height:1.6;
}
h1,h2,h3,h4{
  font-family:'Sora', sans-serif;
  font-weight:700;
  margin:0;
  color:var(--ink);
  letter-spacing:-0.01em;
}
a{color:inherit; text-decoration:none;}
img,svg{display:block; max-width:100%;}
button{font-family:inherit; cursor:pointer;}
.eyebrow{
  font-size:0.74rem;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--emerald);
  font-weight:700;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.eyebrow::before{
  content:"";
  width:7px; height:7px; border-radius:50%;
  background:var(--gold);
  display:inline-block;
}
.eyebrow.on-dark{ color:var(--gold-light); }
.eyebrow.on-dark::before{ background:var(--gold-light); }
.wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
}
section{ padding:88px 0; }
:focus-visible{ outline:2px solid var(--emerald); outline-offset:3px; }

/* ---------- Header ---------- */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(251,247,238,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 32px;
  max-width:1180px; margin:0 auto;
}
.logo{
  display:flex; align-items:center; gap:11px;
}
.logo-mark{ width:36px; height:36px; flex-shrink:0; }
.logo-text{
  font-family:'Sora', sans-serif;
  font-size:1.28rem; font-weight:700; letter-spacing:-0.01em;
  line-height:1;
}
.logo-text span{ display:block; font-family:'Inter',sans-serif; font-size:0.56rem; letter-spacing:0.24em; color:var(--emerald); font-weight:600; margin-top:4px; text-transform:uppercase; }
nav.links{ display:flex; gap:30px; align-items:center; }
nav.links a{
  font-size:0.86rem; font-weight:600; letter-spacing:0.01em;
  position:relative; padding:6px 0;
  color:#3E5750;
}
nav.links a::after{
  content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--gold);
  border-radius:2px;
  transition:width 0.25s ease;
}
nav.links a:hover{ color:var(--emerald); }
nav.links a:hover::after, nav.links a.active::after{ width:100%; }
nav.links a.active{ color:var(--emerald); }
.header-cta{ display:flex; align-items:center; gap:16px; }
.phone{ font-size:0.84rem; font-weight:600; display:flex; align-items:center; gap:6px; color:#3E5750; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 24px;
  border-radius:999px;
  font-size:0.82rem; font-weight:700; letter-spacing:0.01em;
  border:1px solid transparent;
  transition:transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn-maroon{ background:var(--emerald); color:var(--ivory); box-shadow:0 8px 20px rgba(14,107,92,0.28); }
.btn-maroon:hover{ background:var(--emerald-dark); transform:translateY(-2px); }
.btn-outline{ border-color:var(--ink); color:var(--ink); }
.btn-outline:hover{ background:var(--ink); color:var(--ivory); transform:translateY(-2px); }
.btn-gold{ background:var(--gold); color:var(--ink); box-shadow:0 8px 20px rgba(242,169,59,0.35); }
.btn-gold:hover{ background:var(--gold-light); transform:translateY(-2px); }
.hamburger{ display:none; background:none; border:none; }

/* ---------- Mobile nav drawer ---------- */
.mobile-nav{
  display:none;
  position:fixed; inset:0; z-index:100;
  background:var(--emerald-deep);
  color:var(--ivory);
  padding:26px 32px;
  transform:translateX(100%);
  transition:transform 0.3s ease;
}
.mobile-nav.open{ transform:translateX(0); display:block; }
.mobile-nav .mnav-top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:40px; }
.mobile-nav .mnav-close{ background:none; border:none; }
.mobile-nav .mnav-close svg{ width:26px; height:26px; stroke:var(--ivory); }
.mobile-nav a{ display:block; font-family:'Sora', sans-serif; font-size:1.5rem; font-weight:600; padding:14px 0; border-bottom:1px solid rgba(251,247,238,0.14); }
.mobile-nav .phone{ margin-top:26px; color:var(--gold-light); }

/* ---------- Hero ---------- */
.hero{
  padding:56px 0 0;
  position:relative;
  overflow:hidden;
}
.hero-grid{
  display:grid; grid-template-columns:1.05fr 0.95fr;
  gap:56px; align-items:center;
}
.hero-copy h1{
  font-size:clamp(2.7rem, 4.6vw, 4.1rem);
  line-height:1.02;
  margin:16px 0 22px;
}
.hero-copy h1 em{ font-style:normal; color:var(--emerald); }
.hero-copy p{
  max-width:460px; color:#3E5750; font-size:1.03rem;
}
.gold-rule{
  width:56px; height:4px; background:var(--gold);
  border-radius:4px;
  margin:22px 0 0;
  position:relative; overflow:hidden;
}
.gold-rule::after{
  content:""; position:absolute; inset:0; background:var(--emerald);
  animation:draw 1.4s ease forwards 0.3s;
  transform:translateX(-100%);
}
@keyframes draw{ to{ transform:translateX(0); } }
.hero-actions{ display:flex; gap:16px; margin-top:34px; flex-wrap:wrap; }

.hero-art{
  position:relative;
  aspect-ratio:4/5;
  border-radius:28px;
  overflow:hidden;
  background:linear-gradient(160deg,#0A4F45 0%, #0E6B5C 45%, #F2A93B 130%);
}
.hero-art svg{ width:100%; height:100%; position:absolute; inset:0; }
.hero-art::after{
  content:"12,480 pts · Explorer";
  position:absolute; left:18px; bottom:18px;
  background:rgba(20,38,33,0.82);
  color:var(--ivory);
  font-family:'Sora',sans-serif; font-weight:700; font-size:0.82rem;
  padding:10px 16px; border-radius:999px;
  border:1px solid rgba(242,169,59,0.5);
  backdrop-filter:blur(6px);
}

/* booking widget */
.booking{
  margin-top:-40px; position:relative; z-index:5;
  background:var(--ink); color:var(--ivory);
  border-radius:20px;
  padding:26px 28px;
  display:grid; grid-template-columns:repeat(5,1fr) auto;
  gap:18px; align-items:end;
  box-shadow:0 24px 48px rgba(10,48,42,0.25);
}
.booking .field{ display:flex; flex-direction:column; gap:6px; }
.booking label{ font-size:0.68rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold-light); }
.booking select, .booking input{
  background:transparent; border:none; border-bottom:1px solid rgba(251,247,238,0.3);
  color:var(--ivory); font-family:'Inter',sans-serif; font-size:0.92rem; padding:6px 2px;
}
.booking select option{ color:var(--ink); }
.booking .find-btn{
  background:var(--gold); color:var(--ink); border:none; padding:14px 26px; border-radius:999px;
  font-size:0.82rem; font-weight:700; letter-spacing:0.02em; white-space:nowrap;
  transition:background 0.2s ease, transform 0.2s ease;
}
.booking .find-btn:hover{ background:var(--gold-light); transform:translateY(-2px); }

/* ---------- Interior page banner ---------- */
.page-banner{
  padding:72px 0 54px;
  background:linear-gradient(160deg, var(--emerald-deep) 0%, var(--emerald) 100%);
  color:var(--ivory);
  position:relative;
  overflow:hidden;
}
.page-banner::before{
  content:""; position:absolute; right:-70px; top:-70px; width:240px; height:240px;
  border:2px dashed rgba(242,169,59,0.3); border-radius:50%;
}
.page-banner .crumbs{ font-size:0.8rem; color:#BFE0D6; margin-bottom:14px; }
.page-banner .crumbs a:hover{ color:var(--gold-light); }
.page-banner h1{ color:var(--ivory); font-size:clamp(2.2rem,4vw,3.2rem); margin-top:10px; max-width:640px; }
.page-banner p{ color:#D7ECE5; max-width:520px; margin-top:16px; font-size:0.98rem; }

/* ---------- Category strip ---------- */
.categories{ padding:56px 0 16px; }
.cat-row{
  display:grid; grid-template-columns:repeat(6,1fr); gap:14px;
}
.cat-item{
  background:var(--card); border:1px solid var(--line); border-radius:18px;
  padding:24px 12px; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  transition:background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.cat-item:hover{ background:var(--ivory); transform:translateY(-4px); border-color:var(--gold); }
.cat-item svg{ width:28px; height:28px; stroke:var(--emerald); }
.cat-item span{ font-size:0.78rem; font-weight:700; letter-spacing:0.01em; }

/* ---------- Experience detail cards (experiences page) ---------- */
.exp-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.exp-card{
  display:flex; gap:22px; align-items:flex-start;
  background:var(--card); border:1px solid var(--line); border-radius:22px; padding:28px;
  transition:transform 0.2s ease, border-color 0.2s ease;
}
.exp-card:hover{ transform:translateY(-4px); border-color:var(--gold); }
.exp-icon{
  width:54px; height:54px; flex-shrink:0; border-radius:50%;
  background:var(--emerald);
  display:flex; align-items:center; justify-content:center;
}
.exp-icon svg{ width:24px; height:24px; stroke:var(--ivory); }
.exp-card h3{ font-size:1.3rem; }
.exp-card p{ font-size:0.9rem; color:#4A605A; margin-top:8px; }

/* ---------- Section headers ---------- */
.section-head{ display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:40px; gap:24px; flex-wrap:wrap;}
.section-head h2{ font-size:2.3rem; margin-top:8px; }
.section-head p{ max-width:420px; color:#4A605A; font-size:0.94rem; }

/* ---------- Destinations ---------- */
.dest-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:28px 24px;
}
.dest-card{ text-align:left; }
.dest-frame{
  aspect-ratio:3/4;
  border-radius:22px;
  position:relative; overflow:hidden;
  transition:transform 0.35s ease, box-shadow 0.35s ease;
}
.dest-card:hover .dest-frame{ transform:translateY(-6px); box-shadow:0 20px 34px rgba(10,48,42,0.18); }
.dest-frame .art{ position:absolute; inset:0; }
.dest-name{ font-size:1.28rem; margin-top:14px; }
.dest-meta{ font-size:0.8rem; color:var(--emerald); font-weight:700; margin-top:4px; }
.dest-desc{ font-size:0.86rem; color:#4A605A; margin-top:6px; }
.dest-card .btn{ margin-top:14px; padding:9px 18px; font-size:0.74rem; }

/* ---------- Membership / Rewards banner ---------- */
.membership{
  background:linear-gradient(135deg, var(--emerald-deep) 0%, var(--emerald) 100%);
  color:var(--ivory);
  border-radius:28px;
  padding:52px 56px;
  display:grid; grid-template-columns:1.3fr auto; align-items:center; gap:30px;
  position:relative; overflow:hidden;
}
.membership::before{
  content:""; position:absolute; right:-50px; top:-60px; width:200px; height:200px;
  border:2px dashed rgba(242,169,59,0.35); border-radius:50%;
}
.membership::after{
  content:""; position:absolute; right:20px; bottom:-40px; width:120px; height:120px;
  background:rgba(242,169,59,0.18); border-radius:50%;
}
.membership h3{ color:var(--ivory); font-size:1.9rem; max-width:520px; }
.membership p{ color:#CDE9E0; margin-top:10px; max-width:460px; font-size:0.95rem;}
.tier-pills{ display:flex; gap:10px; margin-top:18px; flex-wrap:wrap; }
.tier-pill{
  font-size:0.72rem; font-weight:700; letter-spacing:0.04em;
  padding:7px 16px; border-radius:999px;
  background:rgba(251,247,238,0.14); color:#CDE9E0;
  border:1px solid rgba(251,247,238,0.25);
}
.tier-pill.is-next{ background:var(--gold); color:var(--ink); border-color:var(--gold); }

/* ---------- Offers ---------- */
.offer-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.offer-card{
  background:var(--card); border:1px solid var(--line); border-radius:22px;
  padding:0 0 26px; overflow:hidden;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.offer-card:hover{ transform:translateY(-4px); box-shadow:0 18px 30px rgba(10,48,42,0.14); }
.offer-top{
  height:8px; background:linear-gradient(90deg, var(--emerald), var(--gold));
}
.offer-body{ padding:26px 26px 0; }
.offer-body h4{ font-size:1.42rem; margin-top:8px; }
.offer-body p{ font-size:0.88rem; color:#4A605A; margin-top:8px; }
.offer-body .btn{ margin-top:18px; }

/* ---------- Brand tiers ---------- */
.brand-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.brand-card{
  border:1px solid var(--line); border-radius:22px; padding:30px 22px; text-align:center;
  background:var(--card);
  transition:border-color 0.2s ease, transform 0.2s ease;
}
.brand-card:hover{ border-color:var(--gold); transform:translateY(-4px); }
.brand-badge{
  width:56px; height:56px; margin:0 auto 16px;
  border-radius:50%;
  background:linear-gradient(160deg, var(--emerald), var(--emerald-deep));
  border:2px solid var(--gold);
}
.brand-card h4{ font-size:1.16rem; }
.brand-card p{ font-size:0.8rem; color:#4A605A; margin-top:6px; }

/* ---------- Brand detail rows (brands page) ---------- */
.brand-row{
  display:grid; grid-template-columns:0.9fr 1.1fr; gap:50px; align-items:center;
  padding:52px 0; border-bottom:1px solid var(--line);
}
.brand-row:last-child{ border-bottom:none; }
.brand-row .art{ aspect-ratio:5/4; border-radius:24px; }
.brand-row h3{ font-size:1.95rem; }
.brand-row .tag{ font-size:0.76rem; color:var(--emerald); font-weight:700; letter-spacing:0.08em; text-transform:uppercase; margin-top:6px; display:inline-block; background:rgba(14,107,92,0.1); padding:5px 14px; border-radius:999px; }
.brand-row p{ margin-top:16px; color:#4A605A; font-size:0.95rem; max-width:480px; }
.brand-row ul{ margin:18px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:8px; }
.brand-row ul li{ font-size:0.86rem; color:#37493F; display:flex; gap:8px; align-items:baseline; }
.brand-row ul li::before{ content:"●"; color:var(--gold); font-size:0.5rem; }

/* ---------- About page ---------- */
.about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.about-grid .art{ aspect-ratio:4/5; border-radius:28px; background:linear-gradient(160deg,#0A4F45 0%, #0E6B5C 45%, #F2A93B 130%); }
.about-copy p{ color:#37493F; margin-top:14px; font-size:0.98rem; }
.stat-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:24px;}
.stat-item{ background:var(--card); border:1px solid var(--line); border-radius:18px; padding:22px 14px; text-align:center; }
.stat-item strong{ font-family:'Sora',sans-serif; font-size:1.9rem; color:var(--emerald); display:block; }
.stat-item span{ font-size:0.74rem; color:#4A605A; letter-spacing:0.03em; }
.values-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:20px; }
.value-card{ padding:26px; border:1px solid var(--line); border-radius:20px; background:var(--card); }
.value-card h4{ font-size:1.16rem; }
.value-card p{ font-size:0.86rem; color:#4A605A; margin-top:8px; }

/* ---------- Contact page ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:flex-start; }
.contact-form{ display:flex; flex-direction:column; gap:16px; background:var(--card); border:1px solid var(--line); border-radius:22px; padding:30px; }
.contact-form label{ font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--emerald); font-weight:700; display:block; margin-bottom:6px; }
.contact-form input, .contact-form select, .contact-form textarea{
  width:100%; background:var(--ivory); border:1px solid var(--line); padding:11px 14px;
  font-family:'Inter',sans-serif; font-size:0.92rem; color:var(--ink); border-radius:12px;
}
.contact-form textarea{ resize:vertical; min-height:110px; }
.contact-form .row2{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.contact-info{ display:flex; flex-direction:column; gap:26px; }
.info-block{ display:flex; gap:16px; align-items:flex-start; }
.info-block .ic{ width:44px; height:44px; border-radius:50%; background:var(--emerald); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.info-block .ic svg{ width:20px; height:20px; stroke:var(--ivory); }
.info-block h4{ font-size:1.05rem; }
.info-block p{ font-size:0.88rem; color:#4A605A; margin-top:4px; }
.property-list{ margin-top:8px; }
.property-list table{ width:100%; border-collapse:collapse; font-size:0.86rem; }
.property-list th, .property-list td{ text-align:left; padding:10px 8px; border-bottom:1px solid var(--line); }
.property-list th{ font-size:0.7rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--emerald); }

/* ---------- Footer ---------- */
footer{ background:var(--emerald-deep); color:#BFD9D0; padding:72px 0 0; margin-top:40px; }
.footer-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px;
  padding-bottom:50px; border-bottom:1px solid rgba(251,247,238,0.12);
}
.footer-brand h3{ color:var(--ivory); font-size:1.5rem; }
.footer-brand p{ font-size:0.86rem; margin-top:14px; max-width:280px; color:#9BC1B6; }
.footer-col h5{
  color:var(--gold-light); font-size:0.74rem; letter-spacing:0.14em; text-transform:uppercase; margin-bottom:16px; font-weight:700; font-family:'Inter',sans-serif;
}
.footer-col ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:0.88rem; color:#BFD9D0; }
.footer-col a:hover{ color:var(--gold-light); }
.socials{ display:flex; gap:14px; margin-top:18px; }
.socials a{ width:36px; height:36px; border:1px solid rgba(251,247,238,0.25); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.socials svg{ width:15px; height:15px; stroke:var(--ivory); }
.socials a:hover{ border-color:var(--gold); background:rgba(242,169,59,0.15); }
.bottom-bar{
  display:flex; justify-content:space-between; align-items:center; padding:22px 0; font-size:0.78rem; color:#7FA79B; flex-wrap:wrap; gap:10px;
}

/* ---------- Reveal ---------- */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity 0.6s ease, transform 0.6s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ transition:none; opacity:1; transform:none; }
  .gold-rule::after{ animation:none; transform:translateX(0); }
}

/* ---------- Responsive ---------- */
@media (max-width:1024px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-art{ order:-1; aspect-ratio:16/10; }
  .booking{ grid-template-columns:repeat(3,1fr); }
  .dest-grid{ grid-template-columns:repeat(2,1fr); }
  .offer-grid{ grid-template-columns:1fr; }
  .brand-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; row-gap:36px; }
  .membership{ grid-template-columns:1fr; text-align:left; }
  .exp-grid{ grid-template-columns:1fr; }
  .about-grid{ grid-template-columns:1fr; }
  .about-grid .art{ order:-1; aspect-ratio:16/9; }
  .values-grid{ grid-template-columns:1fr 1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .brand-row{ grid-template-columns:1fr; }
  .brand-row .art{ order:-1; aspect-ratio:16/9; }
  .stat-row{ grid-template-columns:1fr 1fr; }
}
@media (max-width:720px){
  nav.links, .header-cta .phone{ display:none; }
  .hamburger{ display:block; }
  .hamburger svg{ width:26px; height:26px; }
  .cat-row{ grid-template-columns:repeat(3,1fr); }
  .booking{ grid-template-columns:1fr 1fr; }
  section{ padding:56px 0; }
  .membership{ padding:40px 26px; }
  .footer-grid{ grid-template-columns:1fr; }
  .contact-form .row2{ grid-template-columns:1fr; }
  .values-grid{ grid-template-columns:1fr; }
  .hero-art::after{ font-size:0.72rem; padding:8px 12px; }
}
