/* ===================================================================
   CANUCKS VIP TRAVEL  —  main.css  v2.0
   Clean, dark, professional corporate travel aesthetic
=================================================================== */

/* --- TOKENS ---------------------------------------------------- */
:root {
  --bg:         #070e1c;
  --bg-alt:     #0c1526;
  --bg-card:    #0f1c32;
  --navy:       #0a1628;
  --white:      #ffffff;
  --off-white:  #dce4ef;
  --muted:      #6b7a91;
  --gold:       #b89a30;
  --gold-light: #d4b84a;
  --green:      #1a5c35;
  --green-light:#22784a;
  --border:     rgba(255,255,255,0.08);
  --border-gold:rgba(184,154,48,0.35);

  --font-head: 'Libre Baskerville', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Sans', sans-serif;

  --max-w: 1240px;
  --radius: 2px;
}

/* --- RESET ---------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{background:var(--bg);color:var(--off-white);font-family:var(--font-body);font-weight:400;line-height:1.6;overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button,input,select,textarea{font:inherit}

/* --- TYPOGRAPHY SCALE ----------------------------------------- */
h1,h2,h3,h4{font-family:var(--font-head);font-weight:400;line-height:1.15;color:var(--white)}
h1{font-size:clamp(2.4rem,5vw,4rem)}
h2{font-size:clamp(1.9rem,3.5vw,2.8rem)}
h3{font-size:clamp(1.2rem,2vw,1.5rem)}
h4{font-size:1rem}
p{color:var(--off-white);opacity:.82}

.label{
  font-family:var(--font-body);
  font-size:.7rem;font-weight:600;
  letter-spacing:.18em;text-transform:uppercase;
  color:var(--gold);
}
.label--before{
  display:flex;align-items:center;gap:.75rem;
  margin-bottom:1rem;
}
.label--before::before{
  content:'';display:block;
  width:28px;height:1px;background:var(--gold);
}

/* --- BUTTONS -------------------------------------------------- */
.btn{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:var(--font-body);font-weight:600;
  font-size:.8rem;letter-spacing:.12em;text-transform:uppercase;
  padding:.85rem 2rem;
  transition:all .2s ease;
  cursor:pointer;border:none;
}
.btn--gold{background:var(--gold);color:#000}
.btn--gold:hover{background:var(--gold-light)}
.btn--outline{
  background:transparent;
  border:1px solid rgba(255,255,255,.3);
  color:var(--white);
}
.btn--outline:hover{border-color:var(--white);background:rgba(255,255,255,.06)}
.btn--outline-gold{
  background:transparent;
  border:1px solid var(--border-gold);
  color:var(--gold);
}
.btn--outline-gold:hover{background:var(--gold);color:#000}

/* --- LAYOUT --------------------------------------------------- */
.wrap{max-width:var(--max-w);margin:0 auto;padding:0 2rem}
.section{padding:6rem 0}
.section--dark{background:var(--bg)}
.section--alt{background:var(--bg-alt)}
.section--navy{background:var(--navy)}

/* --- NAV ------------------------------------------------------ */
.site-nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 3rem;height:72px;
  transition:background .35s,border-color .35s;
  border-bottom:1px solid transparent;
}
.site-nav.is-scrolled{
  background:rgba(7,14,28,.96);
  border-color:var(--border);
  backdrop-filter:blur(10px);
}
.nav-logo{display:flex;align-items:center;gap:.8rem}
.nav-logo svg{width:38px;height:38px;flex-shrink:0}
.nav-logo__text{
  font-family:var(--font-head);
  font-size:1rem;color:var(--white);letter-spacing:.02em;
  line-height:1.2;
}
.nav-logo__text span{
  display:block;font-family:var(--font-body);
  font-size:.6rem;font-weight:500;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold);margin-top:.1rem;
}
.nav-links{
  display:flex;align-items:center;gap:.25rem;
}
.nav-links a{
  font-size:.78rem;font-weight:500;
  letter-spacing:.06em;text-transform:uppercase;
  color:rgba(255,255,255,.65);
  padding:.5rem .9rem;
  transition:color .2s;
}
.nav-links a:hover{color:var(--white)}
.nav-actions{display:flex;align-items:center;gap:1rem}
.nav-actions .btn{padding:.55rem 1.35rem;font-size:.72rem}

/* --- HERO ----------------------------------------------------- */
#hero{
  min-height:100vh;
  position:relative;
  display:flex;align-items:center;
  overflow:hidden;
}
.hero__bg{
  position:absolute;inset:0;
  background:
    linear-gradient(to right, rgba(7,14,28,.92) 45%, rgba(7,14,28,.5) 100%),
    linear-gradient(160deg, #0a1e4a 0%, #070e1c 60%, #071a10 100%);
}
/* Simulated arena photo texture */
.hero__bg::after{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 50%, rgba(26,92,53,.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(10,30,74,.4) 0%, transparent 60%);
}
.hero__inner{
  position:relative;z-index:1;
  max-width:var(--max-w);margin:0 auto;padding:0 2rem;
  padding-top:72px;
  width:100%;
}
.hero__content{max-width:640px}
.hero__eyebrow{margin-bottom:1.5rem}
.hero__h1{
  color:var(--white);
  margin-bottom:1.5rem;
}
.hero__h1 em{
  font-style:italic;color:var(--gold);
}
.hero__body{
  font-size:1.05rem;line-height:1.75;
  color:rgba(255,255,255,.65);
  max-width:480px;margin-bottom:2.5rem;
}
.hero__actions{display:flex;gap:1rem;flex-wrap:wrap}

.hero__aside{
  position:absolute;right:3rem;top:50%;transform:translateY(-50%);
  z-index:1;
}
.hero__stat-card{
  background:rgba(10,22,40,.8);
  border:1px solid var(--border-gold);
  backdrop-filter:blur(8px);
  padding:2rem 2.5rem;
  min-width:220px;
}
.hero__stat-card + .hero__stat-card{
  margin-top:1px;
  border-top:none;
}

/* --- TICKER BAR ---------------------------------------------- */
.ticker{
  background:var(--gold);
  padding:.7rem 0;overflow:hidden;
}
.ticker__inner{
  display:flex;align-items:center;gap:3rem;
  white-space:nowrap;
  animation:tickerScroll 30s linear infinite;
}
.ticker__item{
  font-size:.72rem;font-weight:700;
  letter-spacing:.15em;text-transform:uppercase;
  color:#000;white-space:nowrap;
}
.ticker__sep{color:rgba(0,0,0,.35);margin:0 .5rem}
@keyframes tickerScroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* --- STATS --------------------------------------------------- */
.stats-row{
  background:var(--bg-alt);
  border-bottom:1px solid var(--border);
  display:grid;grid-template-columns:repeat(4,1fr);
}
.stat{
  padding:3rem 2rem;
  text-align:center;
  border-right:1px solid var(--border);
}
.stat:last-child{border-right:none}
.stat__num{
  font-family:var(--font-head);font-size:3rem;
  font-weight:400;color:var(--white);line-height:1;
  margin-bottom:.5rem;
}
.stat__num sup{font-size:1.2rem;color:var(--gold)}
.stat__label{
  font-size:.72rem;font-weight:500;
  letter-spacing:.14em;text-transform:uppercase;
  color:var(--muted);
}

/* --- INTRO SECTION ------------------------------------------ */
.intro__grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:6rem;align-items:center;
}
.intro__text h2{margin-bottom:1.25rem}
.intro__text p{margin-bottom:1.5rem;line-height:1.8}
.intro__visual{position:relative}
.photo-block{
  position:relative;
  background:var(--bg-card);
  border:1px solid var(--border);
  overflow:hidden;
}
.photo-block--tall{
  height:480px;
}
.photo-block__img{
  width:100%;height:100%;object-fit:cover;
  display:block;
}
/* CSS placeholder when no real image */
.photo-block--arena{
  background:
    linear-gradient(145deg, #0a1e4a 0%, #071808 100%);
}
.photo-block--arena::after{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 80% 80% at 50% 80%, rgba(26,92,53,.35) 0%, transparent 65%);
}
.photo-block__label{
  position:absolute;bottom:0;left:0;right:0;
  padding:1.5rem;
  background:linear-gradient(to top, rgba(7,14,28,.95) 0%, transparent 100%);
  font-size:.7rem;font-weight:500;letter-spacing:.14em;text-transform:uppercase;
  color:var(--gold);
}
.photo-block__offset{
  position:absolute;
  bottom:-1.5rem;right:-1.5rem;
  width:65%;height:65%;
  border:1px solid var(--border-gold);
  z-index:-1;
}

/* --- FEATURES ------------------------------------------------ */
.features__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--border);
  margin-top:4rem;
}
.feature{
  background:var(--bg-alt);
  padding:2.5rem;
  transition:background .2s;
}
.feature:hover{background:var(--bg-card)}
.feature__icon{
  width:48px;height:48px;
  border:1px solid var(--border-gold);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.5rem;
  font-size:1.2rem;
}
.feature__title{
  font-family:var(--font-head);font-size:1.15rem;
  color:var(--white);margin-bottom:.6rem;
}
.feature__body{
  font-size:.875rem;line-height:1.7;
  color:var(--muted);
}

/* --- PACKAGES ------------------------------------------------ */
.packages__grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;margin-top:4rem;
}
.pkg{
  background:var(--bg-card);
  border:1px solid var(--border);
  display:flex;flex-direction:column;
  transition:border-color .2s,transform .2s;
}
.pkg:hover{border-color:var(--border-gold);transform:translateY(-4px)}
.pkg--featured{
  border-color:var(--border-gold);
  position:relative;
}
.pkg__badge{
  background:var(--gold);color:#000;
  font-size:.6rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;
  padding:.3rem 1rem;
  display:inline-block;align-self:flex-start;
  margin-bottom:1.5rem;
}
.pkg__head{padding:2rem 2rem 0}
.pkg__tier{
  font-size:.65rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold);margin-bottom:.5rem;
}
.pkg__name{
  font-family:var(--font-head);font-size:1.6rem;
  color:var(--white);margin-bottom:.25rem;
}
.pkg__tag{font-size:.85rem;color:var(--muted);margin-bottom:1.5rem}
.pkg__price{
  display:flex;align-items:baseline;gap:.4rem;
  padding:1.5rem 2rem;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  margin-bottom:1.5rem;
}
.pkg__from{font-size:.65rem;letter-spacing:.15em;text-transform:uppercase;color:var(--muted)}
.pkg__amount{
  font-family:var(--font-head);font-size:2.2rem;color:var(--white);
}
.pkg__per{font-size:.75rem;color:var(--muted)}
.pkg__list{padding:0 2rem;flex:1;display:flex;flex-direction:column;gap:.7rem;margin-bottom:2rem}
.pkg__item{
  display:flex;align-items:flex-start;gap:.75rem;
  font-size:.875rem;color:var(--off-white);line-height:1.5;
}
.pkg__item::before{
  content:'→';color:var(--gold);
  flex-shrink:0;margin-top:.05rem;font-size:.85rem;
}
.pkg__foot{padding:0 2rem 2rem}
.pkg__btn{
  display:block;text-align:center;
  font-size:.75rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  padding:.9rem;
  border:1px solid var(--border-gold);color:var(--gold);
  transition:all .2s;
}
.pkg__btn:hover,.pkg--featured .pkg__btn{background:var(--gold);color:#000;border-color:var(--gold)}

/* --- HOW IT WORKS ------------------------------------------ */
.steps{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:0;margin-top:4rem;
  position:relative;
}
.steps::before{
  content:'';
  position:absolute;top:1.5rem;left:2rem;right:2rem;height:1px;
  background:linear-gradient(to right,transparent,var(--border-gold),transparent);
}
.step{padding:0 2rem 0 0}
.step__num{
  width:48px;height:48px;
  border:1px solid var(--border-gold);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-head);font-size:1rem;color:var(--gold);
  margin-bottom:2rem;
  background:var(--bg-alt);
  position:relative;z-index:1;
}
.step__title{
  font-family:var(--font-head);font-size:1.15rem;
  color:var(--white);margin-bottom:.6rem;
}
.step__body{font-size:.875rem;line-height:1.75;color:var(--muted)}

/* --- SPLIT SECTION ----------------------------------------- */
.split{
  display:grid;grid-template-columns:1fr 1fr;
  gap:0;
}
.split--reverse .split__visual{order:-1}
.split__visual{
  position:relative;min-height:520px;
  background:var(--bg-card);overflow:hidden;
}
.split__visual--canucks{
  background:linear-gradient(135deg, #071a10 0%, #0a1e4a 100%);
}
.split__visual--canucks::after{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 70% 60% at 50% 80%, rgba(26,92,53,.3) 0%, transparent 60%),
             radial-gradient(ellipse 50% 50% at 70% 20%, rgba(10,30,74,.4) 0%, transparent 60%);
}
.split__visual--hotel{
  background:linear-gradient(135deg, #1a1208 0%, #0a1628 100%);
}
.split__visual--hotel::after{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 80% 60% at 50% 100%, rgba(184,154,48,.12) 0%, transparent 60%);
}
.split__img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.split__text{
  padding:5rem 5rem;
  display:flex;flex-direction:column;justify-content:center;
  background:var(--bg-alt);
}
.split__text h2{margin-bottom:1rem}
.split__text p{margin-bottom:1.5rem;line-height:1.8}
.split__list{display:flex;flex-direction:column;gap:.6rem;margin-bottom:2rem}
.split__list li{
  display:flex;align-items:center;gap:.75rem;
  font-size:.9rem;color:var(--off-white);
}
.split__list li::before{
  content:'';width:6px;height:6px;border-radius:50%;
  background:var(--gold);flex-shrink:0;
}

/* --- TESTIMONIALS ------------------------------------------ */
.testi-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;margin-top:4rem;
}
.testi{
  background:var(--bg-card);
  border:1px solid var(--border);
  padding:2.5rem;
  display:flex;flex-direction:column;
}
.testi__stars{color:var(--gold);font-size:.8rem;letter-spacing:.1em;margin-bottom:1.25rem}
.testi__body{
  font-family:var(--font-head);font-style:italic;
  font-size:1rem;line-height:1.8;color:var(--off-white);
  flex:1;margin-bottom:1.5rem;
}
.testi__author{
  display:flex;align-items:center;gap:1rem;
  padding-top:1.5rem;
  border-top:1px solid var(--border);
}
.testi__avatar{
  width:40px;height:40px;border-radius:50%;
  background:linear-gradient(135deg,var(--navy),var(--green));
  display:flex;align-items:center;justify-content:center;
  font-size:.8rem;font-weight:700;color:var(--gold);
  flex-shrink:0;
}
.testi__name{
  font-size:.8rem;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;
  color:var(--white);margin-bottom:.1rem;
}
.testi__location{font-size:.75rem;color:var(--muted)}

/* --- PROMISE BANNER ----------------------------------------- */
.promise{
  background:var(--gold);
  padding:4rem 0;
}
.promise__inner{
  max-width:var(--max-w);margin:0 auto;padding:0 2rem;
  display:flex;align-items:center;justify-content:space-between;
  gap:3rem;
}
.promise__text h2{color:#000;margin-bottom:.5rem}
.promise__text p{color:rgba(0,0,0,.65);max-width:560px}
.promise .btn--outline{border-color:#000;color:#000}
.promise .btn--outline:hover{background:#000;color:var(--gold)}

/* --- BLOG -------------------------------------------------- */
.news-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;margin-top:4rem;
}
.news-card{
  background:var(--bg-card);border:1px solid var(--border);
  overflow:hidden;
  transition:border-color .2s;
}
.news-card:hover{border-color:var(--border-gold)}
.news-card__thumb{
  height:200px;overflow:hidden;
  background:linear-gradient(135deg,#0a1628,#071808);
}
.news-card__thumb img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.news-card:hover .news-card__thumb img{transform:scale(1.04)}
.news-card__body{padding:1.75rem}
.news-card__date{
  font-size:.68rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase;
  color:var(--gold);margin-bottom:.75rem;
}
.news-card__title{
  font-family:var(--font-head);font-size:1.2rem;
  color:var(--white);line-height:1.3;margin-bottom:.75rem;
}
.news-card__title a:hover{color:var(--gold)}
.news-card__excerpt{
  font-size:.875rem;color:var(--muted);
  line-height:1.7;margin-bottom:1.25rem;
}
.news-card__more{
  font-size:.72rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  color:var(--gold);transition:letter-spacing .2s;
}
.news-card:hover .news-card__more{letter-spacing:.2em}

/* --- CONTACT ----------------------------------------------- */
.contact-grid{
  display:grid;grid-template-columns:1fr 1.1fr;
  gap:5rem;align-items:start;
}
.contact-info h2{margin-bottom:1rem}
.contact-info p{margin-bottom:2rem;line-height:1.8}
.contact-details{display:flex;flex-direction:column;gap:.9rem;margin-bottom:2.5rem}
.contact-detail{
  display:flex;align-items:flex-start;gap:1rem;
  font-size:.875rem;color:var(--off-white);
}
.contact-detail__icon{
  width:32px;height:32px;flex-shrink:0;
  border:1px solid var(--border-gold);
  display:flex;align-items:center;justify-content:center;
  font-size:.9rem;color:var(--gold);margin-top:-.1rem;
}
.contact-detail__label{
  font-size:.65rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase;
  color:var(--muted);margin-bottom:.2rem;
}
.contact-detail__val{color:var(--off-white)}

/* FORM */
.enquiry-form{display:flex;flex-direction:column;gap:1.1rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.1rem}
.form-field{display:flex;flex-direction:column;gap:.45rem}
.form-label{
  font-size:.65rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase;
  color:var(--muted);
}
.form-input,.form-select,.form-textarea{
  background:var(--bg-card);
  border:1px solid var(--border);
  color:var(--white);
  padding:.85rem 1rem;
  font-size:.9rem;
  transition:border-color .2s,background .2s;
  outline:none;
  appearance:none;-webkit-appearance:none;
  border-radius:0;width:100%;
}
.form-input:focus,.form-select:focus,.form-textarea:focus{
  border-color:var(--border-gold);
  background:rgba(184,154,48,.05);
}
.form-input::placeholder,.form-textarea::placeholder{color:var(--muted)}
.form-select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%236b7a91' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center}
.form-select option{background:#0c1526;color:#fff}
.form-textarea{resize:vertical;min-height:120px}
.form-submit{
  background:var(--gold);color:#000;
  font-weight:700;font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;
  padding:1rem;border:none;cursor:pointer;
  transition:background .2s,transform .2s;
}
.form-submit:hover{background:var(--gold-light);transform:translateY(-2px)}
.form-submit:disabled{opacity:.6;transform:none;cursor:default}
.form-note{font-size:.72rem;color:var(--muted);line-height:1.5;margin-top:.25rem}
.form-msg{
  padding:.9rem 1.1rem;
  font-size:.85rem;
  border-left:3px solid;
  display:none;
}
.form-msg.success{background:rgba(26,92,53,.2);border-color:var(--green-light);color:var(--white)}
.form-msg.error{background:rgba(180,30,30,.15);border-color:#c0392b;color:var(--white)}

/* --- FOOTER ----------------------------------------------- */
.site-footer{
  background:var(--navy);
  border-top:1px solid var(--border);
}
.footer__main{
  max-width:var(--max-w);margin:0 auto;padding:5rem 2rem 4rem;
  display:grid;grid-template-columns:2.2fr 1fr 1fr 1fr;gap:4rem;
}
.footer__brand-logo{
  display:flex;align-items:center;gap:.75rem;
  margin-bottom:1.25rem;
}
.footer__brand-logo svg{width:34px;height:34px}
.footer__brand-name{
  font-family:var(--font-head);font-size:1rem;color:var(--white);
}
.footer__tagline{font-size:.875rem;color:var(--muted);line-height:1.7;max-width:260px;margin-bottom:2rem}
.footer__socials{display:flex;gap:.75rem}
.footer__social{
  width:36px;height:36px;border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  font-size:.8rem;color:var(--muted);
  transition:border-color .2s,color .2s;
}
.footer__social:hover{border-color:var(--gold);color:var(--gold)}
.footer__col-head{
  font-size:.65rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1.25rem;
}
.footer__links{display:flex;flex-direction:column;gap:.55rem}
.footer__links a{
  font-size:.875rem;color:var(--muted);
  transition:color .2s;
}
.footer__links a:hover{color:var(--white)}
.footer__bottom{
  border-top:1px solid var(--border);
  padding:1.5rem 2rem;
  max-width:var(--max-w);margin:0 auto;
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:1rem;
}
.footer__copy,.footer__disclaimer{font-size:.72rem;color:var(--muted)}
.footer__disclaimer{max-width:480px;text-align:right}

/* --- INNER PAGES ------------------------------------------ */
.page-hero{
  padding:160px 0 80px;
  background:linear-gradient(160deg,#0a1e4a 0%,#070e1c 60%);
  border-bottom:1px solid var(--border);
}
.page-hero .wrap h1{margin-bottom:.75rem}
.page-hero .wrap p{max-width:560px}
.inner-body{
  max-width:820px;
  font-size:1rem;line-height:1.9;color:var(--off-white);
}
.inner-body p{margin-bottom:1.25rem;opacity:.8}
.inner-body h2{font-size:1.6rem;margin:2.5rem 0 .75rem}
.inner-body h3{font-size:1.1rem;color:var(--gold);letter-spacing:.08em;margin:1.75rem 0 .5rem}
.blog-thumb{
  width:100%;max-height:460px;object-fit:cover;
  margin:2rem 0;border:1px solid var(--border);
}
.blog-meta{
  font-size:.72rem;font-weight:500;letter-spacing:.15em;text-transform:uppercase;
  color:var(--muted);margin-bottom:1rem;
}
.blog-meta a{color:var(--gold);transition:color .2s}
.blog-meta a:hover{color:var(--white)}
.back-link{
  font-size:.75rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  color:var(--gold);margin-top:3rem;display:inline-flex;align-items:center;gap:.4rem;
  transition:gap .2s;
}
.back-link:hover{gap:.7rem}
.pagination{margin-top:3rem;display:flex;gap:.5rem;justify-content:center}
.pagination .page-numbers{
  width:40px;height:40px;display:flex;align-items:center;justify-content:center;
  border:1px solid var(--border);font-size:.8rem;color:var(--muted);
  transition:all .2s;
}
.pagination .page-numbers.current,.pagination .page-numbers:hover{
  background:var(--gold);color:#000;border-color:var(--gold);
}
.no-results{color:var(--muted);font-size:1rem;padding:3rem 0}

/* --- REVEAL ANIMATION ------------------------------------- */
.reveal{
  opacity:0;transform:translateY(20px);
  transition:opacity .6s ease,transform .6s ease;
}
.reveal.is-visible{opacity:1;transform:none}

/* --- RESPONSIVE ------------------------------------------- */
@media(max-width:1100px){
  .site-nav{padding:0 2rem}
  .nav-links{display:none}
  .hero__aside{display:none}
  .intro__grid{grid-template-columns:1fr;gap:3rem}
  .features__grid{grid-template-columns:repeat(2,1fr)}
  .packages__grid{grid-template-columns:1fr;max-width:520px;margin-left:auto;margin-right:auto}
  .steps{grid-template-columns:1fr 1fr;gap:3rem}
  .steps::before{display:none}
  .split{grid-template-columns:1fr}
  .split__visual{min-height:300px}
  .split--reverse .split__visual{order:0}
  .split__text{padding:3rem 2rem}
  .testi-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr;gap:3rem}
  .footer__main{grid-template-columns:1fr 1fr;gap:2.5rem}
  .stats-row{grid-template-columns:repeat(2,1fr)}
  .news-grid{grid-template-columns:repeat(2,1fr)}
  .promise__inner{flex-direction:column;text-align:center}
}
@media(max-width:680px){
  .section{padding:4rem 0}
  .hero__h1{font-size:2.2rem}
  .form-row{grid-template-columns:1fr}
  .features__grid{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .news-grid{grid-template-columns:1fr}
  .footer__main{grid-template-columns:1fr;gap:2rem}
  .footer__bottom{flex-direction:column;align-items:flex-start}
  .footer__disclaimer{text-align:left;max-width:none}
  .wrap{padding:0 1.25rem}
}
