/* ==========================================================================
   BTH Hotels & Resorts — Premium Design System
   ========================================================================== */

:root{
  --red: #b91c2c;
  --red-dark: #8a1420;
  --red-soft: rgba(185,28,44,0.09);
  --blue: #0e3a63;
  --blue-deep: #072441;
  --blue-accent: #1f6fb2;
  --blue-soft: rgba(14,58,99,0.08);
  --cream: #faf7f2;
  --grey-light: #f3f1ec;
  --grey: #e4e1d9;
  --charcoal: #211f1d;
  --charcoal-soft: #5b5750;
  --white: #ffffff;

  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-soft: 0 30px 60px -30px rgba(10,10,10,0.28);
  --shadow-card: 0 18px 40px -18px rgba(10,10,10,0.20);
  --shadow-small: 0 8px 20px -10px rgba(10,10,10,0.25);

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans: 'Jost', 'Segoe UI', sans-serif;

  --header-h: 92px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{ margin:0; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
a{ text-decoration:none; color:inherit; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4,p{ margin:0; }

body{
  font-family: var(--ff-sans);
  color: var(--charcoal);
  background: var(--white);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4{
  font-family: var(--ff-serif);
  font-weight: 600;
  color: var(--blue-deep);
  line-height: 1.22;
}

.container{
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

section{ position: relative; }

/* ---------- Utility ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-family: var(--ff-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.eyebrow::before{
  content:'';
  width: 30px;
  height: 2px;
  background: var(--red);
  display:inline-block;
}
.eyebrow.on-dark{ color: #f3c9ce; }
.eyebrow.on-dark::before{ background:#f3c9ce; }
.eyebrow.blue{ color: var(--blue-accent); }
.eyebrow.blue::before{ background: var(--blue-accent); }

.section-head{
  max-width: 680px;
  margin-bottom: 56px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(30px, 4vw, 44px); }
.section-head p{ margin-top:16px; color: var(--charcoal-soft); font-size: 17px; }

.section-pad{ padding: 110px 0; }
.bg-cream{ background: var(--cream); }
.bg-grey{ background: var(--grey-light); }
.bg-charcoal{ background: var(--blue-deep); color: rgba(255,255,255,0.88); }
.bg-charcoal h2, .bg-charcoal h3{ color:#fff; }

.text-center{ text-align:center; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 16px 34px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.btn-primary{
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-small);
}
.btn-primary:hover{
  background: var(--blue-deep);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -12px rgba(7,36,65,0.45);
}
.btn-outline{
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn-outline:hover{
  background: rgba(255,255,255,0.14);
  border-color:#fff;
  transform: translateY(-3px);
}
.btn-outline-dark{
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-outline-dark:hover{
  background: var(--blue);
  color:#fff;
  transform: translateY(-3px);
}
.btn-red{
  background: var(--red);
  color:#fff;
  box-shadow: 0 14px 26px -12px rgba(139,20,32,0.5);
}
.btn-red:hover{
  background: var(--red-dark);
  transform: translateY(-3px);
}
.btn-block{ width:100%; }
.btn-sm{ padding: 12px 24px; font-size: 13px; }

.link-arrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  font-size:14px;
  letter-spacing:.5px;
  text-transform:uppercase;
  color: var(--blue);
  border-bottom: 1.5px solid transparent;
  padding-bottom:4px;
  transition: all .3s ease;
}
.link-arrow svg{ transition: transform .3s ease; width:16px; height:16px; }
.link-arrow:hover{ border-color: var(--blue); }
.link-arrow:hover svg{ transform: translateX(5px); }

/* ---------- Header ---------- */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 999;
  height: var(--header-h);
  display:flex;
  align-items:center;
  transition: background .4s ease, box-shadow .4s ease, height .4s ease;
  background: linear-gradient(to bottom, rgba(7,36,65,0.55), rgba(7,36,65,0));
}
.site-header.no-hero{
  background: #fff;
  box-shadow: 0 2px 20px rgba(10,10,10,0.08);
}
.site-header.is-scrolled{
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -10px rgba(10,10,10,0.18);
  height: 78px;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}
.logo img{
  height: 62px;
  width:auto;
  transition: height .4s ease;
}
.site-header.is-scrolled .logo img{ height:52px; }

.main-nav ul{
  display:flex;
  align-items:center;
  gap:38px;
}
.main-nav a{
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .3px;
  color: #fff;
  position:relative;
  padding: 8px 0;
  display:flex;
  align-items:center;
  gap:6px;
  transition: color .3s ease;
}
.site-header.no-hero .main-nav a,
.site-header.is-scrolled .main-nav a{ color: var(--charcoal); }

.main-nav a::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:0; height:2px;
  background: var(--red);
  transition: width .3s ease;
}
.main-nav a:hover::after,
.main-nav li.active > a::after{ width:100%; }
.main-nav a:hover{ color: var(--red); }
.site-header.no-hero .main-nav a:hover,
.site-header.is-scrolled .main-nav a:hover{ color: var(--red); }

.chevron{
  width:9px; height:9px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  margin-top:-4px;
  transition: transform .3s ease;
}

.has-dropdown{ position:relative; }
.dropdown{
  position:absolute;
  top: calc(100% + 18px);
  left:50%;
  transform: translateX(-50%) translateY(8px);
  background:#fff;
  min-width: 190px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 10px;
  opacity:0;
  pointer-events:none;
  transition: all .3s ease;
}
.has-dropdown:hover .dropdown{
  opacity:1;
  pointer-events:auto;
  transform: translateX(-50%) translateY(0);
}
.has-dropdown:hover .chevron{ transform: rotate(225deg); margin-top:2px; }
.dropdown a{
  color: var(--charcoal) !important;
  padding: 10px 16px;
  border-radius: 8px;
  font-size:14px;
}
.dropdown a::after{ display:none; }
.dropdown a:hover{ background: var(--grey-light); color: var(--red) !important; }

.header-cta{ display:flex; align-items:center; gap:22px; }
.header-cta .btn{
  padding: 12px 26px;
  font-size:13px;
}
.site-header:not(.no-hero):not(.is-scrolled) .header-cta .btn-primary{
  background: var(--red);
  box-shadow: 0 12px 24px -10px rgba(139,20,32,0.55);
}
.site-header:not(.no-hero):not(.is-scrolled) .header-cta .btn-primary:hover{ background: var(--red-dark); }

.menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:30px; height:24px;
  background:none;
  border:none;
  padding:0;
  z-index: 1001;
}
.menu-toggle span{
  display:block;
  height:2px;
  width:100%;
  background:#fff;
  border-radius:2px;
  transition: all .3s ease;
}
.site-header.no-hero .menu-toggle span,
.site-header.is-scrolled .menu-toggle span{ background: var(--charcoal); }
.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); }
.menu-toggle.active span{ background: var(--charcoal); }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  display:flex;
  align-items:center;
  color:#fff;
  background-size: cover;
  background-position: center;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(7,24,41,.72) 0%, rgba(7,24,41,.42) 40%, rgba(7,24,41,.82) 100%);
}
.hero-home{ height: 100vh; min-height: 670px; }
.hero-page{ height: 62vh; min-height: 420px; }
.hero-inner{ position:relative; z-index:2; width:100%; }
.hero-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  letter-spacing:3px;
  text-transform:uppercase;
  font-weight:600;
  color:#f3c9ce;
  margin-bottom:22px;
}
.hero-tag::before{ content:''; width:30px; height:2px; background:#f3c9ce; }
.hero h1{
  color:#fff;
  font-size: 53px;
  max-width: 820px;
  letter-spacing: .2px;
}
.hero p.lead{
  margin-top: 24px;
  max-width: 560px;
  font-size: 18px;
  color: rgba(255,255,255,0.86);
}
.hero-actions{
  margin-top: 42px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.hero-scroll{
  position:absolute;
  bottom: 38px; left:50%;
  transform: translateX(-50%);
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  color: rgba(255,255,255,0.75);
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
}
.hero-scroll .line{
  width:1px; height:46px;
  background: rgba(255,255,255,0.5);
  overflow:hidden;
  position:relative;
}
.hero-scroll .line::after{
  content:'';
  position:absolute; top:-100%; left:0;
  width:100%; height:100%;
  background:#fff;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine{
  0%{ top:-100%; }
  60%{ top:100%; }
  100%{ top:100%; }
}

.breadcrumb{
  margin-top:18px;
  display:flex; gap:8px;
  font-size:13px;
  color: rgba(255,255,255,0.75);
  letter-spacing:.5px;
}
.breadcrumb a{ color:#fff; }
.breadcrumb a:hover{ color:#f3c9ce; }

/* ---------- Grid helpers ---------- */
.grid{ display:grid; gap:32px; }
.grid-2{ grid-template-columns: repeat(2,1fr); }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items:center;
}
.split .media{ position:relative; }
.split .media img{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width:100%;
  height: 500px;
  object-fit: cover;
}
.split .media .float-card{
  position:absolute;
  bottom:-28px; left:-28px;
  background:#fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 22px 26px;
  display:flex;
  align-items:center;
  gap:16px;
  max-width:260px;
}
.split .media .float-card .num{
  font-family: var(--ff-serif);
  font-size: 34px;
  color: var(--red);
  font-weight:700;
  line-height:1;
}
.split .media .float-card .cap{
  font-size:12.5px;
  color: var(--charcoal-soft);
  line-height:1.3;
  text-transform:uppercase;
  letter-spacing:.5px;
}
.split .media.accent-blue::after{
  content:'';
  position:absolute;
  top:-22px; right:-22px;
  width:120px; height:120px;
  border: 8px solid var(--blue-soft);
  border-radius: var(--radius-lg);
  z-index:-1;
}

.split-content h4.kicker{
  font-family: var(--ff-sans);
  color: var(--red);
  font-size: 13px;
  letter-spacing:3px;
  text-transform:uppercase;
  font-weight:600;
  margin-bottom:14px;
}
.split-content h2{ font-size: clamp(28px,3.6vw,40px); margin-bottom:22px; }
.split-content p{ color: var(--charcoal-soft); margin-bottom:16px; font-size:16.5px; }
.split-content .checklist{ margin-top:26px; display:flex; flex-direction:column; gap:14px; }
.split-content .checklist li{
  display:flex; align-items:flex-start; gap:12px;
  font-size:15.5px; color: var(--charcoal);
}
.split-content .checklist li .tick{
  flex-shrink:0;
  width:22px; height:22px;
  border-radius:50%;
  background: var(--blue-soft);
  color: var(--blue);
  display:flex; align-items:center; justify-content:center;
  font-size:12px;
  margin-top:2px;
}

/* ---------- Stats row ---------- */
.stats-row{
  display:flex;
  gap:0;
  margin-top:60px;
  border-top: 1px solid var(--grey);
  padding-top:40px;
  flex-wrap:wrap;
}
.stats-row .stat{
  flex:1;
  min-width:140px;
  text-align:left;
  padding-right:30px;
}
.stats-row .stat .figure{
  font-family: var(--ff-serif);
  font-size: 40px;
  color: var(--blue);
  font-weight:700;
}
.stats-row .stat .label{
  font-size:13px;
  color: var(--charcoal-soft);
  text-transform:uppercase;
  letter-spacing:.6px;
  margin-top:6px;
}

/* ---------- Feature cards ---------- */
.feature-card{
  background:#fff;
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  transition: transform .4s ease, box-shadow .4s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.feature-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.feature-card .icon{
  width:60px; height:60px;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:24px;
}
.feature-card:nth-child(even) .icon{ background: var(--red-soft); color: var(--red); }
.feature-card .icon svg{ width:28px; height:28px; }
.feature-card h3{ font-size:21px; margin-bottom:12px; }
.feature-card p{ color: var(--charcoal-soft); font-size:15.5px; }

/* ---------- Room / stay cards ---------- */
.room-card{
  background:#fff;
  border-radius: var(--radius-md);
  overflow:hidden;
  box-shadow: var(--shadow-card);
  transition: transform .45s ease, box-shadow .45s ease;
}
.room-card:hover{ transform: translateY(-10px); box-shadow: var(--shadow-soft); }
.room-card .thumb{
  position:relative;
  height: 260px;
  overflow:hidden;
}
.room-card .thumb img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .6s ease;
}
.room-card:hover .thumb img{ transform: scale(1.08); }
.room-card .tag{
  position:absolute; top:18px; left:18px;
  background: rgba(255,255,255,0.92);
  color: var(--blue);
  font-size:11.5px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:7px 14px;
  border-radius:999px;
}
.room-card .body{ padding: 28px 26px 30px; }
.room-card h3{ font-size:22px; margin-bottom:10px; }
.room-card p{ color: var(--charcoal-soft); font-size:15px; margin-bottom:18px; }
.room-card .amenities-mini{
  display:flex; gap:16px; flex-wrap:wrap;
  margin-bottom:20px;
  font-size:13px;
  color: var(--charcoal-soft);
}
.room-card .amenities-mini span{ display:flex; align-items:center; gap:6px; }
.room-card .amenities-mini svg{ width:15px; height:15px; color: var(--blue); }
.room-card .card-foot{
  display:flex; align-items:center; justify-content:space-between;
  border-top:1px solid var(--grey);
  padding-top:18px;
}
.room-card .price{ font-family: var(--ff-serif); color: var(--red); font-weight:700; font-size:18px; }
.room-card .price small{ font-family: var(--ff-sans); font-size:12px; color: var(--charcoal-soft); font-weight:400; text-transform:uppercase; }

/* ---------- Amenities grid ---------- */
.amenity-item{
  display:flex;
  align-items:center;
  gap:18px;
  padding: 22px 24px;
  background:#fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  transition: transform .35s ease;
}
.amenity-item:hover{ transform: translateY(-5px); }
.amenity-item .icon{
  flex-shrink:0;
  width:48px; height:48px;
  border-radius:12px;
  background: var(--blue-soft);
  color: var(--blue);
  display:flex; align-items:center; justify-content:center;
}
.amenity-item .icon svg{ width:24px; height:24px; }
.amenity-item .txt h4{ font-family: var(--ff-sans); font-size:15.5px; font-weight:600; color: var(--charcoal); }
.amenity-item .txt p{ font-size:13.5px; color: var(--charcoal-soft); margin-top:3px; }

/* ---------- Destination / experience cards ---------- */
.dest-card{
  position:relative;
  border-radius: var(--radius-md);
  overflow:hidden;
  height: 380px;
  box-shadow: var(--shadow-card);
}
.dest-card img{ width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.dest-card:hover img{ transform: scale(1.1); }
.dest-card .overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(7,24,41,0) 30%, rgba(7,24,41,0.88) 100%);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding: 28px 26px;
  color:#fff;
}
.dest-card .overlay h3{ color:#fff; font-size:22px; margin-bottom:8px; }
.dest-card .overlay p{ font-size:14px; color: rgba(255,255,255,0.82); max-height:0; opacity:0; overflow:hidden; transition: all .4s ease; }
.dest-card:hover .overlay p{ max-height:100px; opacity:1; margin-top:8px; }
.dest-card.small{ height: 300px; }

.testi-card{
  background:#fff;
  border-radius: var(--radius-md);
  padding: 38px 34px;
  box-shadow: var(--shadow-card);
  position:relative;
}
.testi-card .quote-mark{
  font-family: var(--ff-serif);
  font-size:60px;
  color: var(--red-soft);
  line-height:1;
  position:absolute;
  top:18px; right:28px;
}
.testi-card .stars{ color: var(--red); font-size:14px; letter-spacing:2px; margin-bottom:16px; }
.testi-card p.quote{ font-size:15.5px; color: var(--charcoal); font-style:italic; margin-bottom:26px; position:relative; z-index:1; }
.testi-card .author{ display:flex; align-items:center; gap:14px; }
.testi-card .avatar{
  width:48px; height:48px; border-radius:50%;
  background: var(--blue);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--ff-serif);
  font-weight:700;
  font-size:16px;
  flex-shrink:0;
}
.testi-card .author .name{ font-weight:600; font-size:15px; color: var(--blue-deep); }
.testi-card .author .loc{ font-size:12.5px; color: var(--charcoal-soft); }

.cta-band{
  background: linear-gradient(120deg, var(--blue-deep), var(--blue) 60%, var(--blue-accent));
  color:#fff;
  padding: 80px 0;
  border-radius: var(--radius-lg);
  margin: 0 28px;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:'';
  position:absolute;
  right:-80px; top:-80px;
  width:280px; height:280px;
  border-radius:50%;
  background: rgba(255,255,255,0.06);
}
.cta-band::after{
  content:'';
  position:absolute;
  left:-60px; bottom:-100px;
  width:220px; height:220px;
  border-radius:50%;
  border: 2px solid rgba(255,255,255,0.08);
}
.cta-inner{
  position:relative; z-index:1;
  display:flex; align-items:center; justify-content:space-between;
  gap: 40px;
  flex-wrap:wrap;
  max-width: 1180px;
  margin:0 auto;
  padding: 0 28px;
}
.cta-inner h2{ color:#fff; font-size: clamp(26px,3.4vw,38px); max-width:520px; }
.cta-inner p{ color: rgba(255,255,255,0.82); margin-top:12px; max-width:460px; }
.cta-actions{ display:flex; gap:16px; flex-wrap:wrap; align-items:center; }
.cta-phone{
  display:flex; align-items:center; gap:12px;
  color:#fff; font-size:15px;
}
.cta-phone .icon-circle{
  width:44px; height:44px; border-radius:50%;
  background: rgba(255,255,255,0.16);
  display:flex; align-items:center; justify-content:center;
}
.cta-phone strong{ display:block; font-family: var(--ff-serif); font-size:18px; }

.contact-strip{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: -60px;
  position:relative;
  z-index: 3;
}
.contact-strip .info-card{
  background:#fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 34px 30px;
  display:flex;
  gap:18px;
  align-items:flex-start;
}
.contact-strip .info-card .icon{
  width:52px; height:52px; flex-shrink:0;
  border-radius:14px;
  background: var(--blue);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
}
.contact-strip .info-card .icon svg{ width:24px; height:24px; }
.contact-strip .info-card h4{ font-family: var(--ff-sans); font-size:16px; font-weight:700; color: var(--blue-deep); margin-bottom:6px;}
.contact-strip .info-card p{ font-size:14.5px; color: var(--charcoal-soft); }
.contact-strip .info-card a{ color: var(--charcoal-soft); }
.contact-strip .info-card a:hover{ color: var(--red); }

/* ---------- Forms ---------- */
.form-card{
  background:#fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 46px 44px;
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:22px; }
.field{ margin-bottom:22px; }
.field label{
  display:block;
  font-size:13px;
  font-weight:600;
  letter-spacing:.4px;
  text-transform:uppercase;
  color: var(--blue-deep);
  margin-bottom:9px;
}
.field input, .field textarea, .field select{
  width:100%;
  padding: 15px 18px;
  border-radius: 10px;
  border: 1.5px solid var(--grey);
  background: var(--cream);
  font-family: inherit;
  font-size:15px;
  color: var(--charcoal);
  transition: border-color .3s ease, background .3s ease;
}
.field input:focus, .field textarea:focus, .field select:focus{
  outline:none;
  border-color: var(--blue-accent);
  background:#fff;
}
.field textarea{ resize:vertical; min-height:130px; }
.form-note{
  font-size:12.5px;
  color: var(--charcoal-soft);
  margin-top: -6px;
  margin-bottom:22px;
}
.form-success{
  display:none;
  background: var(--blue-soft);
  color: var(--blue-deep);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size:14.5px;
  margin-top:18px;
  align-items:center;
  gap:12px;
}
.form-success.show{ display:flex; }


.map-wrap{
  border-radius: var(--radius-lg);
  overflow:hidden;
  height: 100%;
  min-height: 480px;
}
.map-wrap iframe{ width:100%; height:100%; min-height:480px; border:0; }

.site-footer{
  background: var(--blue-deep);
  color: rgba(255,255,255,0.72);
  padding-top: 90px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo img{ height:56px; opacity:0.95; }
.footer-brand p{ margin-top:20px; font-size:14.5px; line-height:1.8; max-width:300px; color: rgba(255,255,255,0.62); }
.footer-social{ display:flex; gap:12px; margin-top:24px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.25);
  display:flex; align-items:center; justify-content:center;
  transition: all .3s ease;
}
.footer-social a:hover{ background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.footer-social svg{ width:16px; height:16px; }

.footer-col h4{
  color:#fff;
  font-family: var(--ff-sans);
  font-size:14.5px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:26px;
  font-weight:600;
}
.footer-col ul{ display:flex; flex-direction:column; gap:14px; }
.footer-col a{ font-size:14.5px; transition: color .3s ease; }
.footer-col a:hover{ color:#fff; }
.footer-col .contact-line{ display:flex; gap:12px; align-items:flex-start; font-size:14.5px; }
.footer-col .contact-line svg{ width:16px; height:16px; margin-top:3px; flex-shrink:0; color:#f3c9ce; }

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 26px 0;
  font-size:13px;
  color: rgba(255,255,255,0.5);
  flex-wrap:wrap;
  gap:12px;
}
.footer-bottom a{ color: rgba(255,255,255,0.5); }
.footer-bottom a:hover{ color:#fff; }
.footer-bottom .credit-name{ color: var(--red); font-weight: 600; }

/* ---------- Scroll animation ---------- */
[data-animate]{
  opacity:0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
[data-animate].in-view{ opacity:1; transform:none; }
[data-animate="fade"]{ transform:none; }
[data-animate-delay="1"]{ transition-delay: .12s; }
[data-animate-delay="2"]{ transition-delay: .24s; }
[data-animate-delay="3"]{ transition-delay: .36s; }
[data-animate-delay="4"]{ transition-delay: .48s; }

/* ---------- Body offset for fixed header ---------- */
main{ display:block; }
.page-hero-spacer{ height: var(--header-h); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px){
  .split{ grid-template-columns: 1fr; gap:50px; }
  .split .media img{ height:420px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap:40px 30px; }
  .contact-strip{ grid-template-columns: 1fr; margin-top:-40px; }
  .grid-4{ grid-template-columns: repeat(2,1fr); }
  .grid-3{ grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px){
  .main-nav{
    position: fixed;
    top:0; right:0;
    height:100vh;
    width: min(360px, 86vw);
    background:#fff;
    padding: 120px 40px 40px;
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.4,0,.2,1);
    box-shadow: -20px 0 50px rgba(0,0,0,0.15);
    z-index:1000;
  }
  .main-nav.open{ transform: translateX(0); }
  .main-nav ul{ flex-direction:column; align-items:flex-start; gap:6px; width:100%; }
  .main-nav li{ width:100%; }
  .main-nav a{ color: var(--charcoal) !important; font-size:17px; padding:14px 0; width:100%; }
  .main-nav a::after{ display:none; }
  .has-dropdown .dropdown{
    display:none;
    position:static;
    left:auto; top:auto;
    width:100%;
    max-width:100%;
    opacity:1; pointer-events:auto; transform:none;
    box-shadow:none;
    background:transparent;
    padding:0 0 0 14px;
    margin-top:4px;
    min-width:0;
    box-sizing:border-box;
  }
  /* Neutralise the desktop hover rule's absolute positioning, which would
     otherwise win on touch devices that apply a sticky :hover on tap. */
  .has-dropdown:hover .dropdown{
    position:static;
    left:auto; top:auto;
    transform:none;
    opacity:1; pointer-events:auto;
    box-shadow:none;
  }
  .has-dropdown.open .dropdown{ display:block; }
  .has-dropdown.open:hover .dropdown{ display:block; }
  .has-dropdown:hover .chevron{ transform: rotate(45deg); margin-top:-4px; }
  .has-dropdown.open .chevron{ transform: rotate(225deg); margin-top:2px; }
  .has-dropdown.open:hover .chevron{ transform: rotate(225deg); margin-top:2px; }
  .header-cta .btn-primary{ padding:10px 18px; font-size:12px; }
  .menu-toggle{ display:flex; }
  .nav-scrim{
    position:fixed; inset:0;
    background: rgba(7,24,41,0.5);
    opacity:0; pointer-events:none;
    transition: opacity .4s ease;
    z-index:998;
  }
  .nav-scrim.show{ opacity:1; pointer-events:auto; }
}

@media (max-width: 720px){
  .section-pad{ padding: 76px 0; }
  .section-head{ margin-bottom:40px; }
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
  .cta-inner{ flex-direction:column; align-items:flex-start; text-align:left; }
  .cta-band{ margin:0 16px; padding:56px 0; }
  .container{ padding:0 20px; }
  .form-card{ padding:32px 24px; }
  .form-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .split .media .float-card{ left:14px; bottom:-22px; padding:16px 18px; max-width:200px; }
  .hero h1{ font-size: 25px; }
  .stats-row .stat{ min-width:45%; padding-right:0; margin-bottom:20px; }
}

@media (max-width: 480px){
  .logo img{ height:48px; }
  .hero-actions{ flex-direction:column; align-items:flex-start; }
  .hero-actions .btn{ width:100%; }
  .dest-card{ height:300px; }
}

/* ==========================================================================
   Gallery page
   ========================================================================== */
.gallery-filters{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:48px;
}
.gallery-filters button{
  padding: 12px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--grey);
  background: #fff;
  color: var(--charcoal-soft);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  transition: all .3s ease;
}
.gallery-filters button:hover{
  border-color: var(--blue);
  color: var(--blue);
}
.gallery-filters button.active{
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-small);
}

.gallery-grid{
  column-count: 4;
  column-gap: 22px;
}
.gallery-item{
  display: block;
  break-inside: avoid;
  margin-bottom: 22px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: zoom-in;
  background: var(--grey-light);
  transition: opacity .4s ease, transform .3s ease;
}
.gallery-item.is-hidden{ display:none; }
.gallery-item img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s ease;
}
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-item:hover{ box-shadow: var(--shadow-soft); }
.gallery-item .gallery-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,24,41,0) 55%, rgba(7,24,41,.78) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
}
.gallery-item:hover .gallery-overlay{ opacity: 1; }
.gallery-item .gallery-overlay span{
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gallery-item .gallery-overlay svg{ width: 16px; height: 16px; }

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(7,10,14,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.lightbox.open{ opacity: 1; pointer-events: auto; }
.lightbox figure{
  margin: 0;
  max-width: 90vw;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox img{
  max-width: 90vw;
  max-height: 78vh;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
  transform: scale(.96);
  transition: transform .35s ease;
}
.lightbox.open img{ transform: scale(1); }
.lightbox figcaption{
  margin-top: 16px;
  color: rgba(255,255,255,.75);
  font-size: 13.5px;
  letter-spacing: .4px;
  text-align: center;
}
.lightbox-close, .lightbox-nav{
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.lightbox-close:hover, .lightbox-nav:hover{ background: var(--red); border-color: var(--red); }
.lightbox-close{ top: 24px; right: 24px; }
.lightbox-nav svg, .lightbox-close svg{ width: 20px; height: 20px; }
.lightbox-prev{ left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next{ right: 24px; top: 50%; transform: translateY(-50%); }

@media (max-width: 1080px){
  .gallery-grid{ column-count: 3; }
}
@media (max-width: 720px){
  .gallery-grid{ column-count: 2; column-gap: 14px; }
  .gallery-item{ margin-bottom: 14px; }
  .lightbox-prev{ left: 10px; }
  .lightbox-next{ right: 10px; }
  .lightbox-close{ top: 14px; right: 14px; }
  .lightbox-nav, .lightbox-close{ width: 42px; height: 42px; }
}
@media (max-width: 480px){
  .gallery-grid{ column-count: 1; }
}

/* ---------- Guest videos ---------- */
.video-item{
  display: block;
  break-inside: avoid;
  margin-bottom: 22px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #000;
  transition: box-shadow .3s ease, transform .3s ease;
}
.video-item:hover{
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}
.video-item video{
  width: 100%;
  height: auto;
  max-height: 520px;
  display: block;
  background: #000;
}
.video-item .video-caption{
  padding: 14px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--charcoal-soft);
  background: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   Contact page — premium presentation refinement
   Scoped to body.page-contact only, so Home/About/Destination/Gallery
   (which share .hero and other components) are left untouched.
   ========================================================================== */
.page-contact .map-wrap{ min-height: 420px; }

@media (max-width: 900px){
  .page-contact .hero-page{ height: 46vh; min-height: 320px; }
}

@media (max-width: 720px){
  .page-contact .hero-page{ height: 40vh; min-height: 280px; }
  .page-contact .hero h1{
    font-size: clamp(26px, 8vw, 36px);
    line-height: 1.28;
    max-width: 100%;
  }
  .page-contact .hero-tag{ margin-bottom: 16px; }
  .page-contact .breadcrumb{ margin-top: 14px; }
  .page-contact .map-wrap,
  .page-contact .map-wrap iframe{ min-height: 340px; }
}

@media (max-width: 480px){
  .page-contact .hero-page{ height: 36vh; min-height: 260px; }
  .page-contact .hero h1{ font-size: clamp(23px, 8.5vw, 28px); }
  .page-contact .hero-tag{ font-size: 11.5px; letter-spacing: 2px; }
  .page-contact .map-wrap,
  .page-contact .map-wrap iframe{ min-height: 300px; }
}

/* ---------- Contact info + form (two-column) ---------- */
.contact-columns{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-intro-col h2{ font-size: clamp(28px, 3.4vw, 38px); margin: 16px 0 18px; }
.contact-intro-col > p{
  color: var(--charcoal-soft);
  font-size: 16.5px;
  max-width: 460px;
}

.contact-rows{
  margin-top: 34px;
  display: flex;
  flex-direction: column;
}
.contact-row{
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
}
.contact-row + .contact-row{ border-top: 1px solid var(--grey); }
.contact-row .row-icon{
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.contact-row .row-icon svg{ width: 18px; height: 18px; }
.contact-row .row-label{
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 5px;
}
.contact-row .row-value{
  display: block;
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--blue-deep);
  line-height: 1.5;
  max-width: 360px;
  overflow-wrap: anywhere;
}
.contact-row a.row-value:hover{ color: var(--red); }

.form-card h3{ font-size: 26px; margin-bottom: 26px; }

@media (max-width: 900px){
  .contact-columns{ grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 720px){
  .contact-intro-col > p{ max-width: 100%; }
  .contact-row{ padding: 18px 0; gap: 14px; }
  .contact-row .row-icon{ width: 36px; height: 36px; border-radius: 9px; }
  .contact-row .row-icon svg{ width: 16px; height: 16px; }
  .contact-row .row-value{ font-size: 15.5px; max-width: 100%; }
  .form-card h3{ font-size: 22px; margin-bottom: 20px; }
}
.video-item .video-caption svg{ width: 15px; height: 15px; color: var(--red); flex-shrink: 0; }
