/* ============================================================
   Adventure Theme — teal & orange travel-agency layout
   Inspired by the Nicdark Travel-Agency WordPress theme
   ============================================================ */
*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  font-family:'Open Sans',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  background:var(--ad-bg,#f8f9fa);
  color:var(--ad-ink,#2c3e50);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;}

.ad-container{max-width:1200px;margin:0 auto;padding:0 1.25rem;}

/* ── Top utility bar ──────────────────────────── */
.ad-utility{background:var(--ad-ink,#2c3e50);color:#fff;font-size:.82rem;}
.ad-utility a{color:#fff;}
.ad-utility-row{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.55rem 1.25rem;flex-wrap:wrap;}
.ad-utility-social{display:inline-flex;align-items:center;gap:.35rem;}
.ad-utility-social a{display:inline-flex !important;align-items:center;justify-content:center;width:26px !important;height:26px !important;margin:0 !important;background:rgba(255,255,255,.16) !important;border-radius:50%;}
.ad-utility-social a:hover{background:var(--ad-primary) !important;}
.ad-utility-social a svg{width:13px !important;height:13px !important;}
@media (max-width:720px){.ad-utility-row .b2c-contact--address{display:none;}}

/* ── Header ───────────────────────────────────── */
.ad-header{
  position:sticky;top:0;z-index:50;background:#fff;
  border-bottom:1px solid var(--ad-line);
  transition:box-shadow .2s ease;
}
.ad-header.scrolled{box-shadow:0 6px 24px -16px rgba(44,62,80,.18);}
.ad-header-row{display:flex;align-items:center;justify-content:space-between;gap:1.25rem;height:78px;}
.ad-brand{display:inline-flex;align-items:center;gap:.5rem;font-weight:800;color:var(--ad-ink);font-size:1.15rem;flex-shrink:0;}
.ad-brand .brand-text{font-size:1.3rem;font-weight:800;color:var(--ad-ink);}
.ad-brand .brand-img{max-height:46px;}
.ad-nav{display:flex;align-items:center;gap:1.6rem;flex:1;justify-content:center;}
.ad-nav a{font-size:.92rem;font-weight:600;color:var(--ad-ink);position:relative;text-transform:uppercase;letter-spacing:.04em;}
.ad-nav a::after{content:"";position:absolute;left:0;bottom:-6px;width:0;height:2px;background:var(--ad-primary);transition:width .2s ease;}
.ad-nav a:hover{color:var(--ad-primary);}
.ad-nav a:hover::after{width:100%;}
.ad-header-actions{display:flex;align-items:center;gap:.75rem;flex-shrink:0;}
.ad-locale form select{font-size:.85rem;color:var(--ad-ink-soft);}
.ad-cta-btn{
  display:inline-flex;align-items:center;gap:.5rem;
  background:linear-gradient(135deg,var(--ad-primary),var(--ad-primary-dk));color:#fff;
  padding:.65rem 1.3rem;border-radius:9999px;
  font-size:.85rem;font-weight:600;text-transform:uppercase;letter-spacing:.04em;
  box-shadow:0 12px 24px -10px rgba(15,23,42,.30);
  transition:transform .15s ease;
}
.ad-cta-btn:hover{transform:translateY(-1px);}
.ad-cta-btn svg{width:16px;height:16px;}
/* Sign In / Register pair — same role Classic uses in its product bar.
   Ghost variant is a bordered text button; solid variant is the brand
   gradient pill. Sized to sit comfortably next to the locale pickers. */
.ad-auth-btn{
  display:inline-flex;align-items:center;justify-content:center;
  font-size:.78rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  padding:.55rem 1rem;border-radius:9999px;
  transition:all .15s ease;
}
.ad-auth-btn--ghost{background:transparent;color:var(--ad-ink);border:1.5px solid var(--ad-line);}
.ad-auth-btn--ghost:hover{border-color:var(--ad-primary);color:var(--ad-primary);}
.ad-auth-btn--solid{
  background:linear-gradient(135deg,var(--ad-primary),var(--ad-primary-dk));color:#fff;
  box-shadow:0 10px 20px -8px rgba(15,23,42,.30);
}
.ad-auth-btn--solid:hover{transform:translateY(-1px);}
/* Tighter nav with 8 links — drop the underline-grow on hover for the
   icons-only compressed nav and shrink type a notch so they fit. */
.ad-nav{gap:1.1rem !important;}
.ad-nav a{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:.84rem !important;text-transform:none !important;letter-spacing:0 !important;
}
.ad-nav a svg{width:16px;height:16px;flex-shrink:0;color:var(--ad-primary);}
.ad-nav a:hover svg{color:var(--ad-primary-dk);}

/* ── Buttons ─────────────────────────────────── */
.ad-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.4rem;
  font-size:.85rem;font-weight:700;border-radius:6px;
  padding:.85rem 1.6rem;letter-spacing:.05em;text-transform:uppercase;
  transition:all .2s ease;cursor:pointer;border:0;
}
.ad-btn--primary{background:linear-gradient(135deg,var(--ad-primary),var(--ad-primary-dk));color:#fff;box-shadow:0 12px 24px -10px rgba(15,23,42,.30);}
.ad-btn--primary:hover{transform:translateY(-1px);box-shadow:0 18px 30px -12px rgba(15,23,42,.35);}
.ad-btn--ghost{background:transparent;color:var(--ad-ink);border:2px solid var(--ad-ink);}
.ad-btn--ghost:hover{background:var(--ad-ink);color:#fff;}
/* Accent variant — solid orange/secondary brand colour, used on dark
   panels (e.g. the support CTA) where --primary would lose contrast
   against a primary-coloured background. */
.ad-btn--accent{background:var(--ad-accent);color:#fff;box-shadow:0 14px 28px -12px rgba(0,0,0,.35);}
.ad-btn--accent:hover{background:var(--ad-accent-dk);transform:translateY(-1px);}
.ad-btn--lg{padding:1.05rem 2rem;font-size:.95rem;}
.ad-btn--block{width:100%;}

/* ── Hero ─────────────────────────────────────── */
.ad-hero{
  position:relative;color:#fff;
  background:var(--ad-hero-img,linear-gradient(135deg,var(--ad-primary-dk),var(--ad-primary))) center/cover no-repeat;
  background-attachment:fixed;
  padding:7rem 0 12rem;text-align:center;
}
/* Gradient-only hero (no photo). Stops are JUST the brand colour and
   its dark variant so the strip stays monochrome — no orange/accent
   stop bleeding into the right edge. A soft white highlight at top-
   left adds depth. */
.ad-hero.ad-hero--gradient{
  background:
    radial-gradient(circle at 18% 18%,rgba(255,255,255,.15),transparent 55%),
    linear-gradient(135deg,var(--ad-primary) 0%,var(--ad-primary-dk) 100%);
  background-attachment:scroll;
}
/* Overlay derived from --ad-primary-dk so the dim layer over the
   hero photo matches the tenant's brand instead of a fixed navy. */
.ad-hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,
    color-mix(in srgb, var(--ad-primary-dk) 55%, transparent) 0%,
    color-mix(in srgb, var(--ad-primary-dk) 70%, transparent) 100%);
}
.ad-hero-inner{position:relative;}
.ad-hero-eyebrow{display:inline-block;font-size:.95rem;letter-spacing:.18em;text-transform:uppercase;color:#fff;margin-bottom:1.25rem;font-weight:600;}
.ad-hero-title{
  font-family:'Lora',serif;
  font-size:clamp(2.5rem,6vw,5rem);
  font-weight:700;line-height:1.1;margin:0 0 1.5rem;
  text-shadow:0 4px 16px rgba(0,0,0,.3);
}
.ad-hero-title em{font-style:italic;color:#fff;text-shadow:0 4px 16px rgba(0,0,0,.35);}
.ad-hero-sub{font-size:1.1rem;opacity:.92;margin:0 auto 2rem;max-width:620px;}
.ad-hero-search{
  position:absolute;left:0;right:0;bottom:-3rem;z-index:3;
}
.ad-hero-search .abe-shortcode-wrap{
  background:#fff;border-radius:10px;padding:1.5rem;
  box-shadow:0 30px 60px -20px rgba(44,62,80,.35);
  max-width:1100px;margin:0 auto;
}
.ad-hero-search .btn,
.ad-hero-search button[type=submit]{
  background:linear-gradient(135deg,var(--ad-accent),var(--ad-accent-dk)) !important;
  border:0 !important;color:#fff !important;font-weight:700;
}

/* ── Sections ─────────────────────────────────── */
.ad-section{padding:5rem 0;}
.ad-section-head{margin-bottom:3rem;}
.ad-section-head--center{text-align:center;max-width:680px;margin-left:auto;margin-right:auto;}
.ad-section-title{
  font-family:'Lora',serif;
  font-size:clamp(1.8rem,3.6vw,2.8rem);
  font-weight:700;color:var(--ad-ink);margin:.5rem 0 .75rem;line-height:1.2;
}
.ad-section-title em{font-style:italic;color:var(--ad-primary);}
.ad-section-title--white{color:#fff;}
.ad-section-title--white em{color:var(--ad-accent);}
.ad-section-sub{color:var(--ad-ink-soft);font-size:.98rem;margin:0;line-height:1.7;}
.ad-eyebrow{
  display:inline-block;font-size:.78rem;letter-spacing:.2em;text-transform:uppercase;
  color:var(--ad-accent);font-weight:700;margin-bottom:.25rem;
}
.ad-eyebrow--white{color:var(--ad-accent);}

/* ── Features (3 icon cards) ──────────────────── */
.ad-features{padding-top:7rem;background:#fff;}
.ad-features-row{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;}
.ad-feature{text-align:center;padding:1.5rem;}
.ad-feature-ico{
  width:80px;height:80px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  margin-bottom:1.5rem;color:#fff;
  box-shadow:0 14px 28px -14px rgba(44,62,80,.35);
}
.ad-feature-ico svg{width:36px;height:36px;}
.ad-feature-ico--teal{background:linear-gradient(135deg,var(--ad-primary),var(--ad-primary-dk));}
.ad-feature-ico--orange{background:linear-gradient(135deg,var(--ad-accent),var(--ad-accent-dk));}
.ad-feature h3{font-family:'Lora',serif;font-size:1.4rem;font-weight:700;margin:0 0 .65rem;color:var(--ad-ink);}
.ad-feature p{margin:0;font-size:.92rem;color:var(--ad-ink-soft);line-height:1.7;}

/* ── Featured packages ────────────────────────── */
.ad-packages{background:var(--ad-bg);}
.ad-pkg-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;}
.ad-pkg-card{background:#fff;border-radius:10px;overflow:hidden;box-shadow:0 18px 36px -28px rgba(44,62,80,.3);transition:transform .25s ease,box-shadow .25s ease;}
.ad-pkg-card:hover{transform:translateY(-6px);box-shadow:0 30px 50px -20px rgba(44,62,80,.4);}
.ad-pkg-img{height:230px;background-size:cover;background-position:center;position:relative;}
.ad-pkg-img::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 60%,rgba(0,0,0,.25) 100%);}
.ad-pkg-badge{
  position:absolute;top:1rem;left:1rem;z-index:2;
  background:var(--ad-accent);color:#fff;
  padding:.3rem .8rem;border-radius:4px;
  font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  box-shadow:0 6px 14px -6px rgba(15,23,42,.30);
}
.ad-pkg-duration{
  position:absolute;bottom:1rem;right:1rem;z-index:2;
  background:rgba(255,255,255,.95);color:var(--ad-ink);
  padding:.35rem .85rem;border-radius:4px;
  font-size:.78rem;font-weight:700;
}
.ad-pkg-body{padding:1.5rem;}
.ad-pkg-loc{display:inline-block;font-size:.78rem;color:var(--ad-primary);font-weight:600;margin-bottom:.5rem;text-transform:uppercase;letter-spacing:.06em;}
.ad-pkg-title{font-family:'Lora',serif;font-size:1.5rem;margin:0 0 .65rem;font-weight:700;color:var(--ad-ink);}
.ad-pkg-desc{font-size:.88rem;color:var(--ad-ink-soft);margin:0 0 1.25rem;line-height:1.65;}
.ad-pkg-foot{display:flex;align-items:center;justify-content:space-between;gap:.75rem;padding-top:1rem;border-top:1px solid var(--ad-line);}
.ad-pkg-price{display:flex;align-items:baseline;gap:.35rem;flex-wrap:wrap;}
.ad-pkg-price small{font-size:.7rem;color:var(--ad-ink-soft);text-transform:uppercase;letter-spacing:.08em;}
.ad-pkg-price del{font-size:.85rem;color:var(--ad-ink-soft);}
.ad-pkg-price strong{font-size:1.4rem;font-weight:800;color:var(--ad-accent);}
.ad-pkg-btn{
  background:var(--ad-ink);color:#fff;
  padding:.55rem 1.2rem;border-radius:4px;
  font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;
  transition:background .2s ease;
}
.ad-pkg-btn:hover{background:var(--ad-primary);}

/* ── Destinations ─────────────────────────────── */
/* New card layout: rounded photo with corner-arrow overlay on top,
   then a body block with title+price on row 1 and date+location+
   Book-now pill on row 2. Title/price/icons/CTA all use --ad-primary
   so the brand colour drives the whole card. */
.ad-destinations{background:#fff;}
.ad-dest-row{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;
}
.ad-dest-card{
  display:flex;flex-direction:column;
  background:#fff;border-radius:18px;overflow:hidden;
  border:1px solid var(--ad-line);
  box-shadow:0 18px 40px -28px rgba(15,23,42,.30);
  transition:transform .25s ease,box-shadow .25s ease;
}
.ad-dest-card:hover{transform:translateY(-4px);box-shadow:0 30px 50px -28px rgba(15,23,42,.40);}
.ad-dest-img{
  position:relative;display:block;height:240px;
  background-size:cover;background-position:center;
  text-decoration:none;
}
.ad-dest-arrow{
  position:absolute;top:1rem;right:1rem;
  width:46px;height:46px;border-radius:14px;
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--ad-primary);color:#fff;
  box-shadow:0 10px 22px -10px rgba(15,23,42,.45);
  transition:transform .2s ease,background .2s ease;
}
.ad-dest-card:hover .ad-dest-arrow{transform:translate(-2px,-2px) rotate(8deg);background:var(--ad-primary-dk);}
.ad-dest-arrow svg{width:18px;height:18px;}
.ad-dest-body{
  display:flex;flex-direction:column;gap:.85rem;
  padding:1.25rem 1.4rem 1.4rem;
}
.ad-dest-row1{
  display:flex;justify-content:space-between;align-items:flex-start;
  gap:.75rem;
}
.ad-dest-title{
  font-family:'Lora',serif;font-size:1.25rem;font-weight:700;
  letter-spacing:-.005em;color:var(--ad-ink);
  margin:0;line-height:1.25;
}
.ad-dest-price{
  flex-shrink:0;font-family:'Lora',serif;
  font-size:1.4rem;font-weight:800;color:var(--ad-primary);
  white-space:nowrap;
}
.ad-dest-row2{
  display:flex;align-items:center;gap:1rem;
  flex-wrap:wrap;
  border-top:1px solid var(--ad-line);padding-top:1rem;
}
.ad-dest-date,.ad-dest-loc{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:.85rem;color:var(--ad-ink-soft);font-weight:500;
}
.ad-dest-date svg,.ad-dest-loc svg{
  width:14px;height:14px;color:var(--ad-primary);flex-shrink:0;
}
.ad-dest-book{
  margin-left:auto;
  display:inline-flex;align-items:center;gap:.4rem;
  background:var(--ad-primary);color:#fff;
  padding:.55rem 1rem;border-radius:9999px;
  font-size:.82rem;font-weight:600;
  box-shadow:0 10px 20px -10px rgba(15,23,42,.40);
  transition:transform .15s ease,background .15s ease;
}
.ad-dest-book:hover{background:var(--ad-primary-dk);transform:translateY(-1px);}

/* ── Thrill / Adventure travel ────────────────── */
.ad-thrill{background:var(--ad-bg);}
.ad-thrill-row{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;}
.ad-thrill-img{position:relative;height:480px;border-radius:10px;background-size:cover;background-position:center;box-shadow:0 30px 60px -28px rgba(44,62,80,.4);}
.ad-thrill-decor{position:absolute;left:-30px;bottom:-30px;width:140px;height:140px;border-radius:10px;background:linear-gradient(135deg,var(--ad-accent),var(--ad-accent-dk));z-index:-1;}
.ad-thrill-list{list-style:none;padding:0;margin:1.75rem 0;}
.ad-thrill-list li{display:flex;align-items:flex-start;gap:.75rem;font-size:1rem;color:var(--ad-ink);margin-bottom:.85rem;line-height:1.6;}
.ad-thrill-tick{
  flex-shrink:0;width:24px;height:24px;border-radius:50%;
  background:var(--ad-primary);color:#fff;font-weight:700;font-size:.85rem;
  display:inline-flex;align-items:center;justify-content:center;
  margin-top:.1rem;
}

/* ── Testimonials ─────────────────────────────── */
.ad-testimonials{
  position:relative;color:#fff;
  background:var(--ad-test-bg) center/cover no-repeat;
  background-attachment:fixed;padding:6rem 0;
}
.ad-test-overlay{position:absolute;inset:0;background:linear-gradient(135deg,color-mix(in srgb,var(--ad-primary-dk) 85%,transparent) 0%,rgba(44,62,80,.85) 100%);}
.ad-test-inner{position:relative;z-index:2;text-align:center;}
.ad-test-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3rem;text-align:left;}
.ad-test-card{
  background:rgba(255,255,255,.1);backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.15);border-radius:10px;
  padding:2rem;color:#fff;
}
.ad-test-quote{font-style:italic;font-size:.95rem;line-height:1.7;margin:0 0 1.5rem;opacity:.95;}
.ad-test-author{display:flex;align-items:center;gap:.85rem;}
.ad-test-avatar{width:50px;height:50px;border-radius:50%;background-size:cover;background-position:center;flex-shrink:0;border:2px solid var(--ad-accent);}
.ad-test-author strong{display:block;font-size:.95rem;}
.ad-test-author span{font-size:.78rem;opacity:.8;}

/* ── Wandering souls ─────────────────────────── */
.ad-souls{background:var(--ad-bg);}
.ad-souls-row{display:grid;grid-template-columns:1fr 1fr;gap:2rem;}
.ad-soul-card{
  position:relative;display:block;border-radius:10px;overflow:hidden;
  height:380px;color:#fff;
  box-shadow:0 24px 48px -28px rgba(44,62,80,.4);
}
.ad-soul-img{position:absolute;inset:0;background-size:cover;background-position:center;transition:transform .4s ease;}
.ad-soul-card:hover .ad-soul-img{transform:scale(1.08);}
.ad-soul-card::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 30%,rgba(44,62,80,.9) 100%);}
.ad-soul-meta{position:absolute;bottom:2rem;left:2rem;right:2rem;z-index:2;}
.ad-soul-meta h3{font-family:'Lora',serif;font-size:1.8rem;margin:0 0 .5rem;font-weight:700;}
.ad-soul-meta p{margin:0 0 1rem;font-size:.92rem;opacity:.92;line-height:1.6;}
.ad-soul-btn{display:inline-block;color:var(--ad-primary);font-weight:700;font-size:.82rem;text-transform:uppercase;letter-spacing:.08em;}

/* ── Blog ─────────────────────────────────────── */
.ad-blog{background:#fff;}
.ad-blog-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;}
.ad-blog-card{background:#fff;border:1px solid var(--ad-line);border-radius:10px;overflow:hidden;transition:transform .25s ease,box-shadow .25s ease;}
.ad-blog-card:hover{transform:translateY(-4px);box-shadow:0 24px 40px -24px rgba(44,62,80,.3);}
.ad-blog-img{height:180px;background-size:cover;background-position:center;position:relative;}
.ad-blog-date{
  position:absolute;top:1rem;left:1rem;z-index:2;
  background:var(--ad-primary);color:#fff;
  padding:.45rem .85rem;border-radius:4px;
  font-size:.78rem;font-weight:700;
}
.ad-blog-body{padding:1.5rem;}
.ad-blog-body h3{font-family:'Lora',serif;font-size:1.1rem;margin:0 0 .65rem;font-weight:700;line-height:1.35;color:var(--ad-ink);}
.ad-blog-body p{font-size:.85rem;color:var(--ad-ink-soft);margin:0 0 1rem;line-height:1.65;}
.ad-blog-more{color:var(--ad-accent);font-weight:700;font-size:.82rem;text-transform:uppercase;letter-spacing:.06em;}

/* ── CTA banner ───────────────────────────────── */
/* Support CTA strip — replaces the old newsletter band. Solid brand
   gradient (no photo, no parallax) so it inherits the tenant's
   --primary / --primary-dark from {{brand_styles}} automatically. */
.ad-cta{
  position:relative;padding:5rem 1.25rem;color:#fff;text-align:center;overflow:hidden;
  background:linear-gradient(135deg,var(--ad-primary) 0%,var(--ad-primary-dk) 100%);
}
.ad-cta::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(circle at 18% 20%,rgba(255,255,255,.16),transparent 55%),
    radial-gradient(circle at 82% 80%,rgba(0,0,0,.12),transparent 55%);
}
.ad-cta-inner{position:relative;z-index:2;max-width:680px;margin:0 auto;}
.ad-cta h2{font-family:'Lora',serif;font-size:clamp(1.8rem,3.4vw,2.6rem);margin:.5rem 0 .9rem;font-weight:700;line-height:1.15;}
.ad-cta h2 em{font-style:italic;color:var(--ad-accent);}
.ad-cta p{margin:0 0 2rem;font-size:1.05rem;opacity:.95;line-height:1.6;}

/* ── Page hero (contact, account) ─────────────── */
.ad-page-hero{
  position:relative;color:#fff;text-align:center;
  background:var(--ad-hero-img,linear-gradient(135deg,var(--ad-primary-dk),var(--ad-primary))) center/cover no-repeat;
  padding:5rem 0 4rem;
}
.ad-page-hero .ad-hero-overlay{background:linear-gradient(135deg,color-mix(in srgb,var(--ad-primary-dk) 85%,transparent) 0%,rgba(44,62,80,.8) 100%);}
.ad-page-hero-inner{position:relative;z-index:2;max-width:760px;margin:0 auto;}
.ad-page-title{font-family:'Lora',serif;font-size:clamp(2.4rem,4.5vw,3.5rem);font-weight:700;margin:.5rem 0 .75rem;line-height:1.1;}
.ad-page-title em{font-style:italic;color:var(--ad-accent);}
.ad-page-sub{font-size:1.05rem;opacity:.95;margin:0;line-height:1.65;}

/* ── Contact page ─────────────────────────────── */
.ad-contact-section{background:var(--ad-bg);}
.ad-contact-grid{display:grid;grid-template-columns:1.4fr 1fr;gap:2rem;align-items:flex-start;}
.ad-contact-form{background:#fff;border-radius:10px;padding:2.5rem;box-shadow:0 18px 36px -24px rgba(44,62,80,.25);}
.ad-form-title{font-family:'Lora',serif;font-size:1.6rem;margin:0 0 .5rem;font-weight:700;color:var(--ad-ink);}
.ad-form-sub{color:var(--ad-ink-soft);font-size:.92rem;margin:0 0 1.75rem;}
.ad-pills{display:flex;flex-wrap:wrap;gap:.5rem;margin:0 0 1.5rem;padding:0;border:0;}
.ad-pills legend{font-size:.78rem;font-weight:700;color:var(--ad-ink-soft);text-transform:uppercase;letter-spacing:.08em;margin-bottom:.6rem;width:100%;padding:0;}
.ad-pill{display:inline-flex;align-items:center;gap:.4rem;padding:.55rem 1.1rem;border:1.5px solid var(--ad-line);border-radius:9999px;font-size:.85rem;font-weight:600;color:var(--ad-ink-soft);cursor:pointer;transition:all .15s ease;background:#fff;}
.ad-pill input{display:none;}
.ad-pill:hover{border-color:var(--ad-primary);color:var(--ad-primary);}
.ad-pill:has(input:checked){background:var(--ad-primary);border-color:var(--ad-primary);color:#fff;}
.ad-form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem;}
.ad-contact-form label,.ad-auth-form label{display:block;font-size:.85rem;font-weight:600;color:var(--ad-ink);margin-bottom:1rem;}
.ad-contact-form input,.ad-contact-form textarea,
.ad-auth-form input{
  width:100%;margin-top:.4rem;padding:.85rem 1rem;font:inherit;color:var(--ad-ink);
  border:1.5px solid var(--ad-line);border-radius:6px;background:#fff;
  transition:border-color .15s ease;
}
.ad-contact-form input:focus,.ad-contact-form textarea:focus,
.ad-auth-form input:focus{outline:none;border-color:var(--ad-primary);}
.ad-contact-form textarea{resize:vertical;min-height:120px;}

.ad-contact-side{background:#fff;border-radius:10px;padding:2.5rem;box-shadow:0 18px 36px -24px rgba(44,62,80,.25);}
.ad-side-title{font-family:'Lora',serif;font-size:1.4rem;margin:0 0 .5rem;font-weight:700;color:var(--ad-ink);}
.ad-side-sub{color:var(--ad-ink-soft);font-size:.92rem;margin:0 0 1.5rem;}
.ad-contact-list{list-style:none;padding:0;margin:0 0 1.5rem;}
.ad-contact-list li{display:flex;align-items:flex-start;gap:1rem;margin-bottom:1.5rem;}
.ad-contact-list .ad-feature-ico{width:50px;height:50px;flex-shrink:0;}
.ad-contact-list .ad-feature-ico svg{width:22px;height:22px;}
.ad-contact-list strong{display:block;font-size:.92rem;color:var(--ad-ink);margin-bottom:.25rem;}
.ad-contact-list a{color:var(--ad-primary);}
.ad-side-social{display:flex;gap:.5rem;}
.ad-side-social a{margin:0 !important;width:38px !important;height:38px !important;background:var(--ad-primary) !important;}
.ad-side-social a svg{width:16px !important;height:16px !important;}

/* ── Auth (login / register) ──────────────────── */
.ad-auth{padding:4rem 0;background:var(--ad-bg);min-height:calc(100vh - 200px);}
.ad-auth-grid{display:grid;grid-template-columns:1fr 1fr;gap:0;background:#fff;border-radius:14px;overflow:hidden;box-shadow:0 30px 60px -24px rgba(44,62,80,.3);max-width:1080px;margin:0 auto;}
.ad-auth-side{position:relative;color:#fff;min-height:540px;background:var(--ad-side-img,linear-gradient(135deg,var(--ad-primary-dk),var(--ad-primary))) center/cover no-repeat;}
.ad-auth-side-overlay{position:absolute;inset:0;background:linear-gradient(135deg,color-mix(in srgb,var(--ad-primary-dk) 85%,transparent) 0%,rgba(44,62,80,.85) 100%);}
.ad-auth-side-inner{position:relative;z-index:2;padding:3rem;display:flex;flex-direction:column;justify-content:center;height:100%;}
.ad-auth-side-title{font-family:'Lora',serif;font-size:clamp(1.8rem,3vw,2.5rem);font-weight:700;margin:.5rem 0 1rem;line-height:1.15;}
.ad-auth-side-title em{font-style:italic;color:var(--ad-accent);}
.ad-auth-side-sub{font-size:.95rem;opacity:.95;margin:0 0 1.75rem;line-height:1.65;}
.ad-auth-perks{list-style:none;padding:0;margin:0;}
.ad-auth-perks li{font-size:.92rem;margin-bottom:.65rem;opacity:.95;}
.ad-auth-card{padding:3rem;display:flex;flex-direction:column;justify-content:center;}
.ad-auth-title{font-family:'Lora',serif;font-size:2.2rem;margin:0 0 .5rem;font-weight:700;color:var(--ad-ink);}
.ad-auth-title em{font-style:italic;color:var(--ad-primary);}
.ad-auth-sub{color:var(--ad-ink-soft);font-size:.92rem;margin:0 0 1.75rem;}
.ad-auth-row{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin:.5rem 0 1.5rem;font-size:.85rem;}
.ad-auth-check{display:inline-flex;align-items:center;gap:.5rem;color:var(--ad-ink-soft);font-weight:500;}
.ad-auth-check input{width:auto;margin-top:0;}
.ad-auth-link{color:var(--ad-primary);font-weight:600;}
.ad-auth-alt{text-align:center;color:var(--ad-ink-soft);margin:1.5rem 0 0;font-size:.92rem;}
.ad-auth-alt a{color:var(--ad-primary);font-weight:700;}

/* ── Account ──────────────────────────────────── */
.ad-account-section{background:var(--ad-bg);}
.ad-account-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;}
.ad-account-card{
  background:#fff;border-radius:10px;padding:2rem;
  box-shadow:0 14px 28px -20px rgba(44,62,80,.25);
  transition:transform .2s ease,box-shadow .2s ease;
  display:flex;flex-direction:column;align-items:flex-start;
}
.ad-account-card:hover{transform:translateY(-4px);box-shadow:0 24px 40px -20px rgba(15,23,42,.30);}
.ad-account-card .ad-feature-ico{width:60px;height:60px;margin-bottom:1.25rem;}
.ad-account-card .ad-feature-ico svg{width:26px;height:26px;}
.ad-account-card h3{font-family:'Lora',serif;font-size:1.25rem;margin:0 0 .5rem;font-weight:700;color:var(--ad-ink);}
.ad-account-card p{font-size:.88rem;color:var(--ad-ink-soft);margin:0 0 1rem;line-height:1.6;flex:1;}
.ad-account-arrow{color:var(--ad-primary);font-weight:700;font-size:.82rem;text-transform:uppercase;letter-spacing:.06em;}
.ad-account-card--danger .ad-account-arrow{color:var(--ad-accent);}

/* ── Search page ──────────────────────────────── */
.ad-search-page{padding:2rem 0 4rem;background:var(--ad-bg);min-height:60vh;}
.ad-search-page .abe-results-search-wrap .abe-search-bar{margin:0 auto;max-width:1200px;}

/* ── Footer ───────────────────────────────────── */
.ad-footer{background:#1a252f;color:#bdc3c7;padding:4rem 0 0;}
.ad-footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:2.5rem;padding-bottom:3rem;}
.ad-footer-heading{
  font-family:'Lora',serif;font-size:1.2rem;font-weight:700;
  margin:0 0 1.25rem;color:#fff;position:relative;padding-bottom:.85rem;
}
.ad-footer-heading::after{content:"";position:absolute;left:0;bottom:0;width:40px;height:2px;background:var(--ad-primary);}
.ad-footer-brand{font-size:1.5rem;font-weight:800;color:#fff;margin-bottom:1rem;}
.ad-footer-brand .brand-text{color:#fff;font-size:1.5rem;}
.ad-footer-brand .brand-img{max-height:50px;}
.ad-footer-tag{font-size:.92rem;line-height:1.7;margin:0 0 1.25rem;color:#95a5a6;}
.ad-footer-social{display:flex;gap:.5rem;}
.ad-footer-social a{margin:0 !important;width:36px !important;height:36px !important;background:rgba(255,255,255,.1) !important;border-radius:50%;}
.ad-footer-social a:hover{background:var(--ad-primary) !important;}
.ad-footer-social a svg{width:14px !important;height:14px !important;}
.ad-footer-links{list-style:none;padding:0;margin:0;}
.ad-footer-links li{margin-bottom:.85rem;font-size:.9rem;color:#95a5a6;display:flex;align-items:flex-start;gap:.6rem;line-height:1.55;}
.ad-footer-links--plain li{display:block;}
.ad-footer-ico{flex-shrink:0;color:var(--ad-primary);}
.ad-footer-links a{color:#95a5a6;transition:color .15s ease;}
.ad-footer-links a:hover{color:#fff;}
.ad-footer-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:.4rem;}
.ad-footer-gallery span{
  display:block;height:65px;background-size:cover;background-position:center;
  border-radius:4px;cursor:pointer;transition:transform .2s ease,opacity .2s ease;
  opacity:.85;
}
.ad-footer-gallery span:hover{opacity:1;transform:scale(1.05);}
.ad-footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:1.5rem 0;}
.ad-footer-bottom-row{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;font-size:.85rem;color:#95a5a6;}
.ad-footer-legal{display:flex;gap:1.5rem;flex-wrap:wrap;}
.ad-footer-legal a{color:#95a5a6;}
.ad-footer-legal a:hover{color:var(--ad-accent);}

/* ── 404 ──────────────────────────────────────── */
.ad-404{padding:5rem 0;text-align:center;background:var(--ad-bg);}
.ad-404-inner{max-width:640px;margin:0 auto;}
.ad-404-art{position:relative;display:inline-block;margin-bottom:1.5rem;}
.ad-404-circle{position:absolute;width:160px;height:160px;border-radius:50%;background:linear-gradient(135deg,var(--ad-primary),var(--ad-primary-dk));opacity:.15;left:50%;top:50%;transform:translate(-50%,-50%);}
.ad-404-num{position:relative;font-family:'Lora',serif;font-size:clamp(7rem,15vw,11rem);font-weight:800;line-height:1;margin:0;color:var(--ad-ink);}
.ad-404-num em{font-style:italic;color:var(--ad-accent);}
.ad-404-plane{position:absolute;color:var(--ad-accent);width:60px;right:-30px;top:20px;transform:rotate(-25deg);}
.ad-404-plane svg{width:100%;height:auto;}
.ad-404-title{font-family:'Lora',serif;font-size:1.6rem;margin:1rem 0 .5rem;color:var(--ad-ink);}
.ad-404-sub{color:var(--ad-ink-soft);margin:0 auto 2rem;max-width:480px;}
.ad-404-actions{display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap;}

/* ── Flash ────────────────────────────────────── */
.flash{padding:.9rem 1.25rem;border-radius:6px;margin:1rem auto;max-width:1200px;font-size:.9rem;}
.flash-success{background:#e8f8f5;color:#0e6b5c;border:1px solid #a3e4d7;}
.flash-error{background:#fdedec;color:#922b21;border:1px solid #f5b7b1;}
.flash-info{background:#ebf5fb;color:#1b4f72;border:1px solid #aed6f1;}

/* ── Responsive (final pass) ───────────────────
   Page-wide overflow safety + box-sizing was already set. Three
   breakpoints cover tablet/phone with progressively tighter padding
   and grids collapsed to single column at the smallest. */
html,body{overflow-x:hidden;}

@media (max-width:1080px){
  .ad-nav{gap:1rem;}
  .ad-nav a{font-size:.82rem;}
  .ad-pkg-grid,.ad-features-row,.ad-test-grid{grid-template-columns:repeat(2,1fr);}
  .ad-dest-row,.ad-blog-grid{grid-template-columns:repeat(2,1fr);}
  .ad-footer-grid{grid-template-columns:1fr 1fr;}
  .ad-account-grid{grid-template-columns:repeat(2,1fr);}
  .ad-thrill-row,.ad-souls-row,.ad-contact-grid,.ad-auth-grid{grid-template-columns:1fr;}
  .ad-thrill-img{height:340px;}
  .ad-auth-side{min-height:280px;}
}
@media (max-width:880px){
  .ad-nav{display:none;}
  .ad-hero{padding:5rem 0 10rem;background-attachment:scroll;}
  .ad-hero-title{font-size:clamp(2rem,5vw,3rem);}
  .ad-hero-search{position:static;margin-top:2.5rem;padding:0 1.25rem;}
  .ad-features{padding-top:5rem;}
  .ad-pkg-grid,.ad-features-row,.ad-test-grid,
  .ad-dest-row,.ad-blog-grid{grid-template-columns:1fr;}
  .ad-section-head{text-align:center;}
  .ad-form-row{grid-template-columns:1fr;}
  .ad-account-grid{grid-template-columns:1fr;}
  .ad-contact-form,.ad-contact-side,.ad-auth-card,.ad-auth-side-inner{padding:2rem;}
  .ad-testimonials{background-attachment:scroll;}
  .ad-soul-img{height:240px;}
  .ad-dest-row1,.ad-dest-row2{flex-wrap:wrap;}
  /* Section heading bleeds the right side on tablet — let it break. */
  .ad-section-title{word-break:break-word;}
}
@media (max-width:560px){
  .ad-container{padding:0 1rem;}
  .ad-section{padding:3rem 0;}
  .ad-footer-grid{grid-template-columns:1fr;gap:2rem;}
  .ad-footer-brand img,.ad-footer-brand{max-width:200px;}
  .ad-header-row{height:64px;padding:0 1rem;}
  .ad-cta-btn span,.ad-utility-row .b2c-contact--address{display:none;}
  .ad-auth-btn--ghost{display:none;}
  .ad-page-hero{padding:3.5rem 0 3rem;}
  /* Support CTA — tighten vertical padding on phones so the strip
     doesn't dominate the scroll, and let the button breathe full width. */
  .ad-cta{padding:3.5rem 1.25rem;}
  .ad-cta h2{font-size:clamp(1.5rem,5.5vw,2rem);}
  .ad-btn--lg{padding:.9rem 1.5rem;font-size:.9rem;}
  /* Hero on phone — pad less + smaller title so it fits in one screen. */
  .ad-hero{padding:3.5rem 0 8rem;}
  .ad-hero-title{font-size:clamp(1.6rem,7vw,2.4rem);}
  .ad-hero-eyebrow{font-size:.78rem;letter-spacing:.12em;}
  .ad-hero-sub{font-size:.92rem;}
  /* Section heads stack and centre. */
  .ad-section-title{font-size:clamp(1.5rem,6vw,2rem);}
  .ad-section-eyebrow{font-size:.75rem;}
  /* Cards — tighter inside padding so content doesn't crash the edges. */
  .ad-pkg-body,.ad-soul-meta,.ad-dest-body{padding:1rem;}
  .ad-soul-img{height:200px;}
  /* Footer brand block — stack and centre on phones. */
  .ad-footer-col{text-align:center;}
  .ad-footer-heading::after{left:50%;transform:translateX(-50%);}
  .ad-footer-links li{justify-content:center;}
  .ad-footer-social{justify-content:center;}
}
@media (max-width:380px){
  .ad-container{padding:0 .85rem;}
  .ad-pkg-card,.ad-dest-card,.ad-soul-card{min-width:0;}
  .ad-hero-title{font-size:1.5rem;}
}