/* ==========================================================================
   ESSEN WORLDWIDE — design tokens & base
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --navy: #0B2340;
  --navy-deep: #071527;
  --gold: #C9962C;
  --gold-light: #E4BE6B;
  --slate: #3D6690;
  --ivory: #F7F4EC;
  --ivory-dim: #EFEADD;
  --charcoal: #20262E;
  --line: rgba(11,35,64,0.12);
  --white: #FFFFFF;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --radius: 2px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--charcoal);
  background:var(--ivory);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family:var(--serif);
  font-weight:600;
  line-height:1.12;
  margin:0 0 .5em;
  color:var(--navy);
  letter-spacing:-0.01em;
}
p{ margin:0 0 1em; }
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
}
@media (max-width:640px){
  .container{ padding:0 20px; }
}

::selection{ background:var(--gold-light); color:var(--navy-deep); }

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

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

/* Eyebrow label */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--sans);
  font-size:12.5px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:16px;
}
.eyebrow::before{
  content:'';
  width:26px;
  height:1px;
  background:var(--gold);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--sans);
  font-weight:600;
  font-size:14.5px;
  letter-spacing:.02em;
  padding:15px 30px;
  border-radius:var(--radius);
  border:1px solid transparent;
  cursor:pointer;
  transition:all .25s ease;
  white-space:nowrap;
}
.btn-gold{
  background:var(--gold);
  color:var(--navy-deep);
}
.btn-gold:hover{ background:var(--gold-light); transform:translateY(-1px); }
.btn-outline{
  background:transparent;
  color:var(--ivory);
  border-color:rgba(247,244,236,.4);
}
.btn-outline:hover{ border-color:var(--gold); color:var(--gold-light); }
.btn-navy{
  background:var(--navy);
  color:var(--ivory);
}
.btn-navy:hover{ background:var(--navy-deep); }
.btn-arrow{ transition:transform .25s ease; }
.btn:hover .btn-arrow{ transform:translateX(4px); }

/* ==========================================================================
   Header
   ========================================================================== */
.topbar{
  background:var(--navy-deep);
  color:rgba(247,244,236,.75);
  font-size:12.5px;
}
.topbar .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:8px;
  padding-bottom:8px;
  flex-wrap:wrap;
  gap:8px;
}
.topbar a{ color:rgba(247,244,236,.85); }
.topbar a:hover{ color:var(--gold-light); }
.topbar-contact{ display:flex; gap:22px; }
.topbar-social{ display:flex; gap:14px; }
.topbar-social a{ opacity:.85; }
.topbar-social a:hover{ opacity:1; }

header.site-header{
  background:var(--navy);
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 2px 24px rgba(0,0,0,.12);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{ height:56px; width:auto; }
.brand-text{ font-family:var(--serif); }
.brand-text .name{
  display:block;
  color:var(--ivory);
  font-size:19px;
  font-weight:700;
  letter-spacing:.03em;
  line-height:1;
}
.brand-text .sub{
  display:block;
  color:var(--gold);
  font-size:10px;
  font-weight:500;
  letter-spacing:.28em;
  text-transform:uppercase;
  margin-top:4px;
}

nav.main-nav ul{ display:flex; align-items:center; gap:34px; }
nav.main-nav a{
  color:rgba(247,244,236,.82);
  font-size:14px;
  font-weight:500;
  letter-spacing:.02em;
  position:relative;
  padding:6px 0;
  transition:color .2s ease;
}
nav.main-nav a::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:0; height:1px;
  background:var(--gold);
  transition:width .25s ease;
}
nav.main-nav a:hover,
nav.main-nav a.active{ color:var(--white); }
nav.main-nav a:hover::after,
nav.main-nav a.active::after{ width:100%; }

.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:4px;
  color:var(--ivory);
}
.nav-toggle svg{ width:26px; height:26px; }

@media (max-width:960px){
  .topbar{ display:none; }
  nav.main-nav{
    position:fixed;
    inset:0 0 0 auto;
    width:min(320px,84vw);
    background:var(--navy-deep);
    height:100vh;
    padding:90px 32px 32px;
    transform:translateX(100%);
    transition:transform .35s ease;
    box-shadow:-10px 0 40px rgba(0,0,0,.3);
  }
  nav.main-nav.open{ transform:translateX(0); }
  nav.main-nav ul{ flex-direction:column; align-items:flex-start; gap:22px; }
  .nav-toggle{ display:block; z-index:200; }
  .nav-cta .btn-outline{ display:none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;
  background:
    radial-gradient(ellipse at 15% 15%, rgba(201,150,44,.22), transparent 55%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color:var(--ivory);
  overflow:hidden;
  padding:110px 0 130px;
}
.hero .flight-path{
  position:absolute;
  top:0; left:0; width:100%; height:100%;
  opacity:.5;
  pointer-events:none;
}
.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:center;
}
.hero h1{
  color:var(--white);
  font-size:clamp(38px,5vw,64px);
  font-weight:600;
}
.hero h1 em{
  font-style:italic;
  color:var(--gold-light);
  font-weight:500;
}
.hero-sub{
  font-size:17px;
  color:rgba(247,244,236,.78);
  max-width:480px;
  margin-bottom:34px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-stats{
  display:flex;
  gap:40px;
  margin-top:56px;
  padding-top:32px;
  border-top:1px solid rgba(247,244,236,.15);
}
.hero-stats .stat b{
  display:block;
  font-family:var(--serif);
  font-size:30px;
  color:var(--gold-light);
  font-weight:600;
}
.hero-stats .stat span{
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(247,244,236,.6);
}

.hero-visual{
  position:relative;
}
.hero-card{
  background:rgba(247,244,236,.06);
  border:1px solid rgba(247,244,236,.14);
  border-radius:4px;
  padding:10px;
  backdrop-filter:blur(6px);
}
.hero-card img{ border-radius:2px; width:100%; height:400px; object-fit:cover; }
.hero-float{
  position:absolute;
  bottom:-26px; left:-26px;
  background:var(--gold);
  color:var(--navy-deep);
  padding:18px 22px;
  border-radius:2px;
  box-shadow:0 20px 40px rgba(0,0,0,.25);
  max-width:220px;
}
.hero-float b{ display:block; font-family:var(--serif); font-size:22px; }
.hero-float span{ font-size:12px; opacity:.85; }

@media (max-width:900px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; }
  .hero-stats{ flex-wrap:wrap; gap:28px; }
}

/* Page header (non-home hero) */
.page-hero{
  position:relative;
  background:linear-gradient(180deg, var(--navy-deep), var(--navy));
  color:var(--ivory);
  padding:78px 0 64px;
  overflow:hidden;
}
.page-hero .eyebrow{ color:var(--gold-light); }
.page-hero h1{ color:var(--white); font-size:clamp(32px,4vw,48px); }
.page-hero p{ max-width:560px; color:rgba(247,244,236,.75); font-size:16px; }
.breadcrumb{
  display:flex; gap:8px; align-items:center;
  font-size:12.5px; letter-spacing:.04em; text-transform:uppercase;
  color:rgba(247,244,236,.55);
  margin-top:22px;
}
.breadcrumb a:hover{ color:var(--gold-light); }

/* ==========================================================================
   Sections
   ========================================================================== */
section{ padding:96px 0; }
.section-tight{ padding:72px 0; }
.section-navy{ background:var(--navy); color:var(--ivory); }
.section-navy h2{ color:var(--white); }
.section-dim{ background:var(--ivory-dim); }

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
  margin-bottom:52px;
  flex-wrap:wrap;
}
.section-head h2{ font-size:clamp(28px,3.4vw,40px); max-width:560px; }
.section-head p{ max-width:420px; color:#5a6472; margin:0; }
.section-navy .section-head p{ color:rgba(247,244,236,.68); }

/* Cards: destinations */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
@media (max-width:960px){
  .grid-3, .grid-4{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:640px){
  .grid-3, .grid-4, .grid-2{ grid-template-columns:1fr; }
}

.dest-card{
  position:relative;
  border-radius:3px;
  overflow:hidden;
  aspect-ratio:3/4;
  cursor:pointer;
}
.dest-card img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.dest-card:hover img{ transform:scale(1.08); }
.dest-card::after{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 40%, rgba(7,21,39,.92) 100%);
}
.dest-card .dest-info{
  position:absolute; left:0; right:0; bottom:0;
  padding:22px;
  z-index:2;
  color:var(--white);
}
.dest-card .dest-info .tag{
  font-size:11px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--gold-light); margin-bottom:6px; display:block;
}
.dest-card .dest-info h3{ color:var(--white); font-size:22px; margin-bottom:0; }

/* Package cards */
.pkg-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:3px;
  overflow:hidden;
  transition:box-shadow .3s ease, transform .3s ease;
}
.pkg-card:hover{ box-shadow:0 24px 48px rgba(11,35,64,.12); transform:translateY(-4px); }
.pkg-card .pkg-img{ position:relative; aspect-ratio:4/3; overflow:hidden; }
.pkg-card .pkg-img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.pkg-card:hover .pkg-img img{ transform:scale(1.06); }
.pkg-badge{
  position:absolute; top:14px; left:14px;
  background:var(--gold); color:var(--navy-deep);
  font-size:11px; font-weight:700; letter-spacing:.04em;
  padding:6px 12px; border-radius:2px;
}
.pkg-body{ padding:24px 24px 26px; }
.pkg-meta{
  display:flex; gap:14px; font-size:12px; color:#6b7280;
  text-transform:uppercase; letter-spacing:.04em; margin-bottom:10px;
}
.pkg-body h3{ font-size:20px; margin-bottom:10px; }
.pkg-desc{ font-size:14px; color:#5a6472; margin-bottom:18px; }
.pkg-foot{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:18px; border-top:1px solid var(--line);
}
.pkg-price{ font-family:var(--serif); font-size:22px; color:var(--navy); font-weight:600; }
.pkg-price span{ font-family:var(--sans); font-size:12px; color:#8b93a1; font-weight:400; }
.pkg-link{
  font-size:13px; font-weight:600; color:var(--slate);
  display:inline-flex; align-items:center; gap:6px;
}
.pkg-link:hover{ color:var(--navy); }

/* Services */
.svc-card{
  padding:36px 30px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:3px;
  transition:border-color .25s ease, transform .25s ease;
}
.svc-card:hover{ border-color:var(--gold); transform:translateY(-3px); }
.svc-num{
  font-family:var(--serif);
  font-size:14px;
  color:var(--gold);
  letter-spacing:.06em;
  margin-bottom:18px;
  display:block;
}
.svc-card h3{ font-size:19px; margin-bottom:12px; }
.svc-card p{ font-size:14.5px; color:#5a6472; margin-bottom:0; }
.svc-icon{
  width:46px; height:46px;
  display:flex; align-items:center; justify-content:center;
  background:var(--ivory-dim);
  border-radius:50%;
  margin-bottom:20px;
  color:var(--navy);
}
.svc-icon svg{ width:22px; height:22px; }

/* Testimonial / about split */
.split{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
}
@media (max-width:900px){ .split{ grid-template-columns:1fr; gap:40px; } }
.split.reverse{ grid-template-columns:1.1fr .9fr; }
.split.reverse .split-media{ order:2; }
@media (max-width:900px){ .split.reverse .split-media{ order:-1; } }

.split-media{ position:relative; }
.split-media img{ border-radius:3px; width:100%; height:460px; object-fit:cover; }
.split-media .float-tag{
  position:absolute; bottom:-24px; right:-24px;
  background:var(--navy); color:var(--white);
  padding:20px 24px; border-radius:3px;
  max-width:200px;
  box-shadow:0 20px 40px rgba(0,0,0,.18);
}
.split-media .float-tag b{ display:block; font-family:var(--serif); color:var(--gold-light); font-size:26px; }
.split-media .float-tag span{ font-size:12px; opacity:.8; }
@media (max-width:640px){ .split-media img{ height:320px; } .split-media .float-tag{ position:static; margin-top:16px; max-width:none; } }

.check-list{ margin:24px 0; }
.check-list li{
  display:flex; align-items:flex-start; gap:12px;
  padding:10px 0;
  font-size:15px;
  color:var(--charcoal);
}
.check-list li svg{ flex-shrink:0; width:19px; height:19px; color:var(--gold); margin-top:2px; }

/* Stats strip */
.stats-strip{
  background:var(--navy-deep);
  color:var(--ivory);
  padding:56px 0;
}
.stats-strip .grid-4{ text-align:center; }
.stats-strip .stat b{
  display:block; font-family:var(--serif); font-size:38px; color:var(--gold-light); font-weight:600;
}
.stats-strip .stat span{ font-size:13px; letter-spacing:.05em; text-transform:uppercase; color:rgba(247,244,236,.6); }

/* Team */
.team-card{ text-align:center; }
.team-card img{ border-radius:3px; aspect-ratio:1; object-fit:cover; margin-bottom:18px; }
.team-card h3{ font-size:17px; margin-bottom:4px; }
.team-card span{ font-size:13px; color:var(--gold); letter-spacing:.03em; }

/* Blog */
.blog-card{ background:var(--white); border:1px solid var(--line); border-radius:3px; overflow:hidden; transition:box-shadow .3s ease, transform .3s ease; }
.blog-card:hover{ box-shadow:0 24px 48px rgba(11,35,64,.12); transform:translateY(-4px); }
.blog-img{ aspect-ratio:16/10; overflow:hidden; }
.blog-img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.blog-card:hover .blog-img img{ transform:scale(1.06); }
.blog-body{ padding:24px 24px 28px; }
.blog-meta{ font-size:12px; color:var(--gold); letter-spacing:.06em; text-transform:uppercase; margin-bottom:10px; }
.blog-body h3{ font-size:19px; margin-bottom:12px; }
.blog-body p{ font-size:14.5px; color:#5a6472; }
.read-more{ font-size:13px; font-weight:600; color:var(--slate); display:inline-flex; align-items:center; gap:6px; }
.read-more:hover{ color:var(--navy); }

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.gallery-grid a{ display:block; border-radius:3px; overflow:hidden; aspect-ratio:1; }
.gallery-grid img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gallery-grid a:hover img{ transform:scale(1.08); }
.g-tall{ grid-row:span 2; aspect-ratio:auto; height:100%; }
@media (max-width:900px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); } .g-tall{ grid-row:span 1; aspect-ratio:1; } }

.filter-bar{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:40px; }
.filter-bar button{
  font-family:var(--sans); font-size:13px; font-weight:600;
  padding:10px 20px; border-radius:30px;
  border:1px solid var(--line); background:transparent; color:var(--navy);
  cursor:pointer; transition:all .2s ease;
}
.filter-bar button.active, .filter-bar button:hover{ background:var(--navy); color:var(--white); border-color:var(--navy); }

/* Forms */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
@media (max-width:640px){ .form-grid{ grid-template-columns:1fr; } }
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column:1/-1; }
.field label{ font-size:12.5px; font-weight:600; letter-spacing:.04em; text-transform:uppercase; color:var(--navy); }
.field input, .field select, .field textarea{
  font-family:var(--sans); font-size:15px;
  padding:13px 16px;
  border:1px solid var(--line);
  border-radius:2px;
  background:var(--white);
  color:var(--charcoal);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--gold);
}
.field textarea{ resize:vertical; min-height:120px; }

.contact-info-card{
  background:var(--navy);
  color:var(--ivory);
  padding:44px 36px;
  border-radius:3px;
}
.contact-info-card h3{ color:var(--white); font-size:22px; }
.contact-item{ display:flex; gap:16px; padding:18px 0; border-top:1px solid rgba(247,244,236,.12); }
.contact-item:first-of-type{ border-top:none; }
.contact-item .ci-icon{
  width:38px; height:38px; flex-shrink:0;
  border:1px solid rgba(201,150,44,.5);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-light);
}
.contact-item .ci-icon svg{ width:17px; height:17px; }
.contact-item b{ display:block; font-size:13px; letter-spacing:.03em; color:var(--gold-light); margin-bottom:4px; }
.contact-item span, .contact-item a{ font-size:14.5px; color:rgba(247,244,236,.85); }

.map-frame{ border-radius:3px; overflow:hidden; border:1px solid var(--line); }
.map-frame iframe{ width:100%; height:380px; border:0; display:block; }

/* CTA band */
.cta-band{
  position:relative;
  background:linear-gradient(120deg, var(--navy-deep), var(--navy) 60%, var(--slate));
  color:var(--ivory);
  padding:72px 0;
  border-radius:0;
  overflow:hidden;
}
.cta-band .container{ display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.cta-band h2{ color:var(--white); font-size:clamp(24px,3vw,34px); margin-bottom:8px; max-width:520px; }
.cta-band p{ color:rgba(247,244,236,.72); margin:0; max-width:420px; }

/* Accordion (FAQ) */
.accordion-item{ border-bottom:1px solid var(--line); }
.accordion-q{
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
  padding:22px 0; font-family:var(--serif); font-size:18px; color:var(--navy);
}
.accordion-q .plus{ font-size:22px; color:var(--gold); transition:transform .25s ease; flex-shrink:0; margin-left:16px; }
.accordion-item.open .plus{ transform:rotate(45deg); }
.accordion-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.accordion-item.open .accordion-a{ max-height:300px; }
.accordion-a p{ padding-bottom:22px; color:#5a6472; font-size:14.5px; margin:0; }

/* Footer */
footer.site-footer{
  background:var(--navy-deep);
  color:rgba(247,244,236,.7);
  padding-top:80px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:48px;
  padding-bottom:56px;
  border-bottom:1px solid rgba(247,244,236,.1);
}
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand .brand{ margin-bottom:18px; }
.footer-brand .brand-text .name{ color:var(--white); }
.footer-brand p{ font-size:14px; max-width:300px; color:rgba(247,244,236,.6); }
.footer-social{ display:flex; gap:12px; margin-top:20px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%;
  border:1px solid rgba(247,244,236,.2);
  display:flex; align-items:center; justify-content:center;
  transition:all .2s ease;
}
.footer-social a:hover{ border-color:var(--gold); background:var(--gold); color:var(--navy-deep); }
.footer-social svg{ width:16px; height:16px; }
.footer-col h4{
  color:var(--white); font-size:14px; letter-spacing:.05em; text-transform:uppercase;
  font-family:var(--sans); font-weight:700; margin-bottom:20px;
}
.footer-col ul li{ margin-bottom:12px; }
.footer-col a{ font-size:14.5px; color:rgba(247,244,236,.65); transition:color .2s ease; }
.footer-col a:hover{ color:var(--gold-light); }
.footer-col .contact-item{ border:none; padding:0 0 16px; }
.footer-col .contact-item .ci-icon{ border-color:rgba(201,150,44,.4); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding:26px 0; font-size:13px; color:rgba(247,244,236,.5);
  flex-wrap:wrap; gap:10px;
}
.footer-bottom a{ color:rgba(247,244,236,.6); }
.footer-bottom a:hover{ color:var(--gold-light); }

/* Utility */
.text-center{ text-align:center; }
.mx-auto{ margin-left:auto; margin-right:auto; }
.mt-0{ margin-top:0; }
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

/* Pagination */
.pagination{ display:flex; justify-content:center; gap:8px; margin-top:56px; }
.pagination a{
  width:40px; height:40px; display:flex; align-items:center; justify-content:center;
  border:1px solid var(--line); border-radius:2px; font-size:14px; font-weight:600; color:var(--navy);
}
.pagination a.active, .pagination a:hover{ background:var(--navy); color:var(--white); border-color:var(--navy); }

/* Breadcrumb sep icon replacement */
.sep{ opacity:.5; }

/* ==========================================================================
   PROMO HERO — full-bleed booking-style hero (Thrillophilia-inspired)
   ========================================================================== */
.promo-hero{
  position:relative;
  min-height:640px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(180deg, rgba(7,21,39,.35) 0%, rgba(7,21,39,.55) 55%, rgba(7,21,39,.85) 100%),
    url('https://loremflickr.com/1600/900/phuket,thailand,beach?lock=91') center/cover no-repeat;
  padding:120px 0 60px;
  overflow:hidden;
}
.promo-hero-inner{ position:relative; z-index:2; text-align:center; }
.promo-badge{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(247,244,236,.12);
  border:1px solid rgba(247,244,236,.35);
  color:var(--ivory);
  font-size:12.5px; letter-spacing:.08em; text-transform:uppercase;
  padding:7px 16px; border-radius:999px; margin-bottom:22px;
}
.promo-badge b{ color:var(--gold-light); }
.promo-hero h1{
  color:var(--white);
  font-size:clamp(34px,5.5vw,60px);
  max-width:820px;
  margin:0 auto 16px;
}
.promo-hero h1 em{ color:var(--gold-light); font-style:italic; }
.promo-hero-sub{
  color:rgba(247,244,236,.85);
  font-size:17px;
  max-width:560px;
  margin:0 auto 36px;
}
.promo-price-strip{
  display:inline-flex; align-items:baseline; gap:8px;
  background:var(--gold);
  color:var(--navy-deep);
  padding:10px 22px;
  border-radius:999px;
  font-weight:600;
  margin-bottom:34px;
}
.promo-price-strip b{ font-family:var(--serif); font-size:22px; }
.promo-price-strip span{ font-size:13px; opacity:.85; }

/* Quote / search widget card */
.quote-card{
  background:var(--white);
  border-radius:10px;
  box-shadow:0 24px 60px rgba(7,21,39,.35);
  padding:22px;
  max-width:960px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr auto;
  gap:14px;
  align-items:end;
  text-align:left;
}
.quote-field{ display:flex; flex-direction:column; gap:6px; }
.quote-field label{
  font-size:11.5px; text-transform:uppercase; letter-spacing:.06em;
  color:var(--slate); font-weight:600;
}
.quote-field select,
.quote-field input{
  border:1px solid var(--line);
  border-radius:6px;
  padding:11px 12px;
  font-family:var(--sans);
  font-size:14.5px;
  color:var(--charcoal);
  background:var(--ivory);
}
.quote-card .btn-gold{
  width:100%;
  justify-content:center;
  padding:13px 20px;
  border-radius:6px;
  white-space:nowrap;
}
@media (max-width:900px){
  .quote-card{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .quote-card{ grid-template-columns:1fr; padding:18px; }
  .promo-hero{ padding:100px 0 44px; min-height:auto; }
}

.promo-trust-row{
  display:flex; justify-content:center; flex-wrap:wrap;
  gap:34px; margin-top:38px;
}
.promo-trust-row .stat{ text-align:center; }
.promo-trust-row .stat b{
  display:block; font-family:var(--serif); font-size:24px; color:var(--white);
}
.promo-trust-row .stat span{
  font-size:12px; color:rgba(247,244,236,.7); text-transform:uppercase; letter-spacing:.05em;
}
