/* ===== Azure Horizon — shared styles ===== */
:root{
  --deep:      #06304a;
  --azure:     #0a6ea8;
  --azure-2:   #12a3c7;
  --sand:      #f6f3ec;
  --sand-2:    #eee8d9;
  --ink:       #0d2534;
  --muted:     #4c6478;
  --white:     #ffffff;
  --gold:      #c99a4b;
  --shadow:    0 10px 30px rgba(6,48,74,.12);
  --radius:    16px;
  --maxw:      1160px;
  font-size:   17px;
}

*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:"Inter","Segoe UI",system-ui,-apple-system,sans-serif;
  color:var(--ink);
  background:var(--sand);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:"Playfair Display",Georgia,"Times New Roman",serif;
  margin:0 0 .5em;
  line-height:1.15;
  color:var(--deep);
  font-weight:700;
}
p{ margin:0 0 1em; color:var(--muted); }
a{ color:inherit; }
img{ max-width:100%; display:block; }
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
section{ padding:80px 0; }
.section-head{ max-width:680px; margin:0 auto 48px; text-align:center; }
.section-head .eyebrow{ display:block; margin-bottom:10px; }
.section-head h2{ font-size:clamp(28px,4vw,40px); }
.section-head p{ font-size:18px; }
.eyebrow{
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--azure-2);
  font-weight:600;
}

/* ---- buttons ---- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 28px;
  border-radius:999px;
  font-weight:600;
  font-size:15px;
  text-decoration:none;
  cursor:pointer;
  border:1.5px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:linear-gradient(135deg,var(--azure-2),var(--azure)); color:#fff; box-shadow:0 8px 20px rgba(10,110,168,.35); }
.btn-primary:hover{ box-shadow:0 12px 26px rgba(10,110,168,.45); }
.btn-ghost{ background:transparent; border-color:rgba(6,48,74,.25); color:var(--deep); }
.btn-ghost:hover{ background:rgba(6,48,74,.06); }
.btn-light{ background:#fff; color:var(--deep); }
.btn-light:hover{ background:var(--sand); }
.btn-gold{ background:linear-gradient(135deg,#e2b565,var(--gold)); color:#2a1c04; box-shadow:0 8px 20px rgba(201,154,75,.4); }

/* ---- topbar / nav ---- */
.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(6,48,74,.92);
  backdrop-filter:saturate(160%) blur(8px);
  color:#fff;
}
.topbar-inner{
  max-width:var(--maxw); margin:0 auto; padding:0 24px;
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none; color:#fff;
  font-family:"Playfair Display",serif;
  font-size:22px; font-weight:700; letter-spacing:.02em;
}
.brand .logo-mark{
  width:34px; height:34px; border-radius:50%;
  background:linear-gradient(135deg,var(--azure-2),var(--gold));
  display:flex; align-items:center; justify-content:center;
  font-size:16px;
}
.nav-links{
  display:flex; align-items:center; gap:6px; list-style:none; margin:0; padding:0;
}
.nav-links a{
  display:block; padding:10px 16px; border-radius:999px;
  text-decoration:none; color:rgba(255,255,255,.85);
  font-size:14.5px; font-weight:600; letter-spacing:.02em;
  transition:background .15s, color .15s;
}
.nav-links a:hover{ background:rgba(255,255,255,.12); color:#fff; }
.nav-links a.active{ background:rgba(255,255,255,.16); color:#fff; }
.nav-actions{ display:flex; align-items:center; gap:14px; }
.nav-phone{
  display:flex; align-items:center; gap:8px;
  color:#fff; text-decoration:none; font-weight:600; font-size:14.5px;
}
.nav-toggle{
  display:none; background:none; border:none; color:#fff; cursor:pointer;
  padding:8px;
}
.nav-toggle svg{ width:26px; height:26px; }

@media (max-width:860px){
  .nav-links{
    position:fixed; inset:76px 0 0 0; height:calc(100vh - 76px);
    flex-direction:column; align-items:stretch; gap:0;
    background:var(--deep); padding:12px;
    transform:translateX(100%); transition:transform .25s ease;
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a{ padding:16px 18px; border-radius:12px; font-size:17px; }
  .nav-phone span{ display:none; }
  .nav-toggle{ display:block; }
}

/* ---- hero ---- */
.hero{
  position:relative;
  min-height:88vh;
  display:flex; align-items:center;
  color:#fff;
  background:linear-gradient(180deg, rgba(6,32,50,.55), rgba(6,32,58,.78)), var(--hero-img) center/cover no-repeat;
}
.hero-inner{ max-width:var(--maxw); margin:0 auto; padding:80px 24px; width:100%; }
.hero .eyebrow{ color:#a9e2f4; }
.hero h1{
  color:#fff; font-size:clamp(36px,6vw,64px); max-width:820px; margin-top:.3em;
}
.hero .subtitle{ color:rgba(255,255,255,.88); font-size:19px; max-width:600px; margin-top:18px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-top:34px; }
.hero-strip{
  display:flex; gap:28px; flex-wrap:wrap; margin-top:56px;
  padding-top:28px; border-top:1px solid rgba(255,255,255,.22);
}
.hero-strip div{ font-size:14px; color:rgba(255,255,255,.85); }
.hero-strip b{ display:block; font-size:20px; color:#fff; font-family:"Playfair Display",serif; }

/* page hero (inner pages, no big image) */
.page-hero{
  background:linear-gradient(135deg,var(--deep),#0a4666 60%, var(--azure));
  color:#fff; padding:110px 0 70px;
}
.page-hero h1{ color:#fff; font-size:clamp(32px,5vw,48px); }
.page-hero p{ color:rgba(255,255,255,.85); font-size:18px; max-width:640px; }
.crumb{ color:rgba(255,255,255,.65); font-size:14px; margin-bottom:14px; }
.crumb a{ color:#fff; text-decoration:none; }

/* ---- about / intro section ---- */
.intro-grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center;
}
.intro-grid img{ border-radius:var(--radius); box-shadow:var(--shadow); width:100%; object-fit:cover; aspect-ratio:3/4; }
.intro-grid h2{ font-size:clamp(26px,4vw,36px); }
.tag-list{ display:flex; flex-wrap:wrap; gap:10px; margin:18px 0 22px; padding:0; list-style:none; }
.tag-list li{
  background:var(--sand-2); color:var(--deep); font-size:14px; font-weight:600;
  padding:8px 16px; border-radius:999px;
}
@media (max-width:860px){
  .intro-grid{ grid-template-columns:1fr; }
  .intro-grid img{ aspect-ratio:16/10; }
}

/* ---- cards / options ---- */
.card-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.card{
  background:#fff; border-radius:var(--radius); padding:32px 28px;
  box-shadow:var(--shadow); border:1px solid rgba(6,48,74,.06);
}
.card .icon{
  width:52px; height:52px; border-radius:14px;
  background:linear-gradient(135deg,var(--azure-2),var(--azure));
  display:flex; align-items:center; justify-content:center; color:#fff; margin-bottom:18px;
}
.card h3{ font-size:20px; margin-bottom:8px; }
.card p{ margin:0; font-size:15px; }
@media (max-width:900px){ .card-grid{ grid-template-columns:1fr; } }

/* ---- logistics / info blocks ---- */
.info-panel{
  background:#fff; border-radius:var(--radius); box-shadow:var(--shadow);
  padding:36px; border:1px solid rgba(6,48,74,.06);
}
.info-panel h3{ font-size:19px; margin-bottom:14px; }
.info-panel ul{ margin:0; padding-left:20px; color:var(--muted); }
.info-panel li{ margin-bottom:8px; }
.note{
  margin-top:18px; padding:14px 18px; border-radius:12px;
  background:rgba(201,154,75,.12); border:1px solid rgba(201,154,75,.35);
  font-size:14.5px; color:#7a5a1f;
}

/* ---- section alt bg ---- */
.section-alt{ background:#fff; }
.section-deep{ background:var(--deep); color:#fff; }
.section-deep h2, .section-deep h3{ color:#fff; }
.section-deep p{ color:rgba(255,255,255,.75); }

/* ---- tours page ---- */
.region-head{ display:flex; align-items:baseline; gap:16px; margin:0 0 30px; }
.region-head h2{ margin:0; }
.region-head .line{ flex:1; height:1px; background:rgba(6,48,74,.15); }

.tour-card{
  background:#fff; border-radius:var(--radius); box-shadow:var(--shadow);
  overflow:hidden; border:1px solid rgba(6,48,74,.06);
  display:grid; grid-template-columns:320px 1fr; margin-bottom:28px;
}
.tour-card .tour-media{
  position:relative; background:var(--sand-2);
}
.tour-card .tour-media img{ width:100%; height:100%; object-fit:cover; min-height:220px; }
.tour-price{
  position:absolute; top:16px; left:16px;
  background:var(--deep); color:#fff; padding:8px 16px; border-radius:999px;
  font-weight:700; font-size:14px; box-shadow:0 6px 16px rgba(0,0,0,.25);
}
.tour-body{ padding:30px 32px; }
.tour-body h3{ font-size:22px; margin-bottom:4px; }
.tour-meta{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:16px; }
.tour-meta span{
  font-size:13px; font-weight:600; color:var(--azure);
  background:rgba(10,110,168,.08); padding:6px 12px; border-radius:999px;
}
.day-list{ list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.day-list li{
  display:flex; gap:14px; font-size:15px; color:var(--ink);
  padding-bottom:10px; border-bottom:1px dashed rgba(6,48,74,.12);
}
.day-list li:last-child{ border-bottom:none; padding-bottom:0; }
.day-num{
  flex:none; width:30px; height:30px; border-radius:50%;
  background:var(--sand-2); color:var(--deep); font-weight:700; font-size:13px;
  display:flex; align-items:center; justify-content:center;
}
.day-text b{ color:var(--deep); }
.tour-foot{ margin-top:18px; font-size:14px; color:var(--muted); }
@media (max-width:760px){
  .tour-card{ grid-template-columns:1fr; }
  .tour-card .tour-media img{ min-height:180px; }
}

/* ---- contact / cta ---- */
.contact-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start;
}
.contact-card{
  background:#fff; border-radius:var(--radius); box-shadow:var(--shadow);
  padding:36px; border:1px solid rgba(6,48,74,.06);
}
.contact-method{
  display:flex; align-items:center; gap:16px;
  padding:18px 0; border-bottom:1px solid rgba(6,48,74,.08);
  text-decoration:none; color:var(--ink);
}
.contact-method:last-child{ border-bottom:none; }
.contact-method .icon{
  width:44px; height:44px; border-radius:12px; flex:none;
  background:var(--sand-2); color:var(--azure);
  display:flex; align-items:center; justify-content:center;
}
.contact-method b{ display:block; font-size:16px; color:var(--deep); }
.contact-method span{ font-size:13.5px; color:var(--muted); }
.cta-band{
  background:linear-gradient(135deg,var(--deep),var(--azure));
  border-radius:var(--radius); padding:44px; color:#fff; text-align:center;
}
.cta-band h3{ color:#fff; font-size:26px; }
.cta-band p{ color:rgba(255,255,255,.85); }
.cta-band .btn-row{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap; margin-top:20px; }

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

/* ---- footer ---- */
.site-footer{ background:var(--deep); color:rgba(255,255,255,.75); padding:52px 0 26px; }
.footer-grid{ display:flex; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.footer-brand{ color:#fff; font-family:"Playfair Display",serif; font-size:22px; }
.footer-links{ display:flex; gap:28px; flex-wrap:wrap; list-style:none; padding:0; margin:0; }
.footer-links a{ color:rgba(255,255,255,.75); text-decoration:none; font-size:14.5px; }
.footer-links a:hover{ color:#fff; }
.footer-bottom{
  margin-top:36px; padding-top:22px; border-top:1px solid rgba(255,255,255,.12);
  font-size:13px; color:rgba(255,255,255,.5);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
}

/* ---- misc page (buy) ---- */
.split{
  display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;
}
@media (max-width:860px){ .split{ grid-template-columns:1fr; } }

.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }
