/*
Theme Name: TripGozy
Theme URI: https://tripgozy.com
Author: TripGozy
Author URI: https://tripgozy.com
Description: Custom theme for TripGozy — honest, hand-built trip planning by a solo founder.
Version: 1.0.0
Text Domain: tripgozy
*/

  :root{
    --navy:#0A1B33;          /* headings / primary dark */
    --navy-deep:#011026;     /* logo navy — deepest panels */
    --ink:#2A3B54;           /* body text */
    --muted:#6E7E93;         /* captions */
    --orange:#FD9902;        /* brand orange */
    --orange-deep:#E27F00;
    --orange-soft:rgba(253,153,2,.10);
    --bg:#FFFFFF;
    --line:#E7EBF1;
    --line-2:#D7DDE7;
    --tint:#F6F8FC;
    --radius:16px;
    --shadow:0 22px 50px -28px rgba(1,16,38,.5);
    --shadow-sm:0 12px 28px -20px rgba(1,16,38,.55);
  }
  *{box-sizing:border-box;margin:0;padding:0}
  html,body{position:static!important;height:auto!important;min-height:100%;overflow-y:auto!important;touch-action:auto!important;overscroll-behavior:auto}
  h1,h2,h3,h4,p,span,div{overflow-wrap:break-word;word-wrap:break-word}
  img,video{max-width:100%;height:auto;display:block}
  html{position:relative}
  html::after{content:"";position:fixed;inset:0;pointer-events:none;z-index:9999;opacity:.035;mix-blend-mode:multiply;background-image:url('data:image/svg+xml,%3Csvg xmlns="http%3A//www.w3.org/2000/svg" width="120" height="120"%3E%3Cfilter id="n"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23n)"/%3E%3C/svg%3E')}
  html{scroll-behavior:smooth}
  body{font-family:"Plus Jakarta Sans",system-ui,sans-serif;background:var(--bg);color:var(--ink);line-height:1.6;font-size:17px;-webkit-font-smoothing:antialiased;overflow-x:hidden}
  .wrap{max-width:1180px;margin:0 auto;padding:0 24px}
  h1,h2,h3{font-family:"Sora",sans-serif;font-weight:700;line-height:1.12;letter-spacing:-.02em;color:var(--navy)}
  .eyebrow{font-size:.76rem;letter-spacing:.14em;text-transform:uppercase;font-weight:700;color:var(--orange-deep);display:inline-flex;align-items:center;gap:.55rem}
  .eyebrow::before{content:"";width:22px;height:2px;background:var(--orange);border-radius:2px}
  a{color:inherit}

  .btn{display:inline-flex;align-items:center;gap:.5rem;font-weight:700;font-size:.97rem;padding:.9rem 1.6rem;border-radius:999px;text-decoration:none;cursor:pointer;border:2px solid transparent;transition:transform .18s ease,box-shadow .18s ease,background .18s,color .18s;white-space:nowrap;flex-shrink:0}
  .btn-orange{background:var(--orange);color:#231400;box-shadow:0 10px 24px -12px rgba(253,153,2,.7)}
  .btn-orange:hover{background:var(--orange-deep);color:#fff;transform:translateY(-2px)}
  .btn-navy{background:var(--navy);color:#fff}
  .btn-navy:hover{transform:translateY(-2px);box-shadow:var(--shadow-sm)}
  .btn-ghost{border-color:var(--line-2);color:var(--navy)}
  .btn-ghost:hover{border-color:var(--navy);background:var(--navy);color:#fff}
  .btn-ghost-light{border-color:rgba(255,255,255,.35);color:#fff}
  .btn-ghost-light:hover{background:#fff;color:var(--navy);border-color:#fff}

  /* wordmark */
  .logo{display:inline-flex;align-items:center;text-decoration:none}
  .logo img{height:30px;width:auto;display:block;flex-shrink:0}

  .img{position:relative;overflow:hidden;background:linear-gradient(150deg,#12294a,var(--navy-deep))}
  .img img{width:100%;height:100%;object-fit:cover;display:block}

  /* ============ NAV ============ */
  header.nav{position:sticky;top:0;z-index:50;background:rgba(0,10,28,.97);backdrop-filter:blur(10px);border-bottom:1px solid rgba(255,255,255,.08)}
  .nav-inner{display:flex;align-items:center;justify-content:space-between;min-height:60px;padding:8px 24px;max-width:1180px;margin:0 auto}
  .nav-links{display:flex;gap:1.7rem;align-items:center}
  .nav-links a{text-decoration:none;font-size:.94rem;font-weight:600;color:#E7ECF4;white-space:nowrap}
  .nav-links a:hover{color:var(--orange)}
  .nav-cta{display:flex;gap:.7rem;align-items:center}
  .nav-cta .btn-ghost{border-color:rgba(255,255,255,.35);color:#fff}
  .nav-cta .btn-ghost:hover{background:#fff;color:var(--navy);border-color:#fff}

  /* hamburger toggle (hidden on desktop) */
  .nav-burger{display:none;width:42px;height:42px;border-radius:10px;border:1px solid var(--line-2);background:#fff;align-items:center;justify-content:center;cursor:pointer;flex-shrink:0}
  .nav-burger span{display:block;width:20px;height:2px;background:var(--navy);position:relative;transition:background .2s}
  .nav-burger span::before,.nav-burger span::after{content:"";position:absolute;left:0;width:20px;height:2px;background:var(--navy);transition:transform .2s}
  .nav-burger span::before{top:-6px}
  .nav-burger span::after{top:6px}
  .nav-burger.open span{background:transparent}
  .nav-burger.open span::before{transform:translateY(6px) rotate(45deg)}
  .nav-burger.open span::after{transform:translateY(-6px) rotate(-45deg)}

  @media(max-width:960px){
    .nav-links{
      display:flex;flex-direction:column;gap:0;position:absolute;top:100%;left:0;right:0;
      background:#fff;border-bottom:1px solid var(--line);box-shadow:var(--shadow-sm);
      padding:8px 24px;max-height:0;overflow:hidden;opacity:0;pointer-events:none;
      transition:max-height .25s ease,opacity .2s ease;
    }
    .nav-links.open{max-height:400px;opacity:1;pointer-events:auto;padding:14px 24px 18px}
    .nav-links a{padding:.7rem 0;border-bottom:1px solid var(--line);color:var(--ink)}
    .nav-links a:hover{color:var(--orange-deep)}
    .nav-links a:last-child{border-bottom:none}
    .nav-cta .btn-ghost{display:none}
    .nav-burger{display:flex}
  }

  @media(max-width:480px){
    .logo img{height:21px}
    .nav-cta{gap:.5rem}
    .nav-cta .btn-orange{padding:.7rem .95rem;font-size:0}
    .nav-cta .btn-orange::before{content:"Free plan";font-size:.8rem;font-weight:700}
    .nav-inner{padding:8px 16px}
  }

  /* ============ HERO ============ */
  .hero{position:relative;overflow:hidden;padding:60px 0 50px;background:linear-gradient(180deg,#FFFBF4 0%,#FFFFFF 82%)}
  .hero-route{position:absolute;inset:0;width:100%;height:100%;z-index:0;pointer-events:none}
  .hero .wrap{position:relative;z-index:1}
  .hero-grid{display:grid;grid-template-columns:1.02fr .98fr;gap:52px;align-items:center}
  .hero-grid > div{min-width:0}
  .pill{display:inline-flex;align-items:center;gap:.5rem;font-size:.85rem;font-weight:700;color:var(--orange-deep);background:var(--orange-soft);padding:.42rem .9rem;border-radius:999px;margin-bottom:1.3rem}
  .pill .live{width:8px;height:8px;border-radius:50%;background:var(--orange);box-shadow:0 0 0 4px rgba(253,153,2,.2)}
  .hero h1{font-size:clamp(3rem,6.4vw,4.9rem);margin:.3rem 0 1.2rem;font-weight:800}
  .hero h1 em{font-style:normal;color:var(--orange)}
  .hero .lede{font-size:1.28rem;color:var(--ink);max-width:40ch;margin-bottom:1.9rem}
  .hero-actions{display:flex;gap:.8rem;flex-wrap:wrap;margin-bottom:2rem}
  .hero-proof{display:flex;gap:2rem;flex-wrap:wrap;align-items:center}
  .proof .num{font-family:"Sora";font-size:1.85rem;font-weight:800;line-height:1;color:var(--navy)}
  .proof .num span{color:var(--orange)}
  .proof .lbl{font-size:.86rem;color:var(--muted);font-weight:500}
  .proof-div{width:1px;height:36px;background:var(--line-2)}

  .hero-visual{position:relative}
  .hero-photo{border-radius:22px;overflow:hidden;box-shadow:var(--shadow);height:520px}
  .hero-photo .img{height:100%}
  .float-card{position:absolute;left:-18px;bottom:26px;background:#fff;border-radius:14px;box-shadow:var(--shadow);padding:14px 16px;display:flex;align-items:center;gap:12px;max-width:270px}
  .float-card .fc-img{width:56px;height:56px;border-radius:10px;overflow:hidden;flex-shrink:0}
  .float-card .fc-img img{width:100%;height:100%;object-fit:cover}
  .float-card h4{font-family:"Sora";font-size:.98rem;color:var(--navy);margin-bottom:.15rem}
  .float-card .fm{font-size:.76rem;color:var(--muted)}
  .float-card .fp{font-family:"Sora";font-weight:700;color:var(--orange-deep);font-size:.92rem;margin-top:.15rem}
  .rating-badge{position:absolute;top:18px;right:18px;background:#fff;border-radius:12px;box-shadow:var(--shadow-sm);padding:.6rem .85rem;text-align:center}
  .rating-badge .r{font-family:"Sora";font-weight:800;font-size:1.15rem;color:var(--navy);line-height:1}
  .rating-badge .s{color:var(--orange);font-size:.72rem;letter-spacing:1px}
  .rating-badge .c{font-size:.64rem;color:var(--muted);margin-top:2px}
  @media(max-width:880px){.hero-grid{grid-template-columns:1fr;gap:40px}.hero-photo{height:400px}.hero-visual{max-width:460px;margin:0 auto;width:100%}}

  /* ============ ASSURANCE ============ */
  .assurance{border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
  .assurance-inner{display:flex;justify-content:center;gap:2.4rem;flex-wrap:wrap;padding:16px 24px;font-size:.9rem;color:var(--ink);font-weight:500}
  .assurance-inner span{margin-right:.3rem}
  .assurance-inner span:last-child{margin-right:0}
  .assurance-inner span{display:inline-flex;align-items:center;gap:.5rem}
  .assurance-inner b{color:var(--navy);font-weight:700}
  .dotm{width:6px;height:6px;border-radius:50%;background:var(--orange)}

  section.blk{padding:80px 0;border-top:1px solid var(--line)}
  section.blk.tint{background:var(--tint)}
  section.blk#trips{border-top:none}
  .sec-head{max-width:60ch;margin-bottom:2.4rem}
  .sec-head.center{margin:0 auto 2.6rem;text-align:center}
  .sec-head h2{font-size:clamp(2.3rem,4.6vw,3.3rem);margin:.7rem 0 .8rem;font-weight:800}
  .sec-head h2 em{font-style:normal;color:var(--orange)}
  .sec-head p{color:var(--ink);font-size:1.18rem}
  .sec-flex{display:flex;justify-content:space-between;align-items:flex-end;gap:20px;flex-wrap:wrap;margin-bottom:2.2rem}
  .sec-flex .sec-head{margin-bottom:0}

  /* ============ POPULAR TRIPS ============ */
  .trip-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}

  /* Dedicated to single-destination.php's Trips/Plans sections — NOT
     shared with .trip-grid (homepage/package use that, 4 fixed columns).
     flex+wrap with a fixed card width handles any item count (1, 2, or
     3) gracefully: cards never stretch to fill unused space, and never
     leave a huge empty gap next to a single card. */
  .dsg-trip-grid{display:flex;flex-wrap:wrap;gap:22px}
  .dsg-trip-grid > *{flex:0 1 340px}
  .trip{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;text-decoration:none;color:var(--navy);box-shadow:var(--shadow-sm);transition:transform .2s ease,box-shadow .2s ease;display:flex;flex-direction:column}
  .trip:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
  .trip .img{height:225px}
  .trip .tag{position:absolute;top:10px;left:10px;z-index:2;background:var(--orange);color:#231400;font-size:.68rem;font-weight:700;padding:.26rem .6rem;border-radius:999px}
  .trip-body{padding:15px 16px 17px;display:flex;flex-direction:column;flex:1}
  .trip-body .loc{font-size:.74rem;color:var(--orange-deep);font-weight:700;letter-spacing:.04em;text-transform:uppercase;margin-bottom:.35rem}
  .trip-body h3{font-size:1.32rem;line-height:1.22;margin-bottom:.5rem}
  .trip-body .dur{font-size:.92rem;color:var(--muted);margin-bottom:.95rem}
  .trip-price{margin-top:auto;display:flex;align-items:baseline;gap:.5rem}
  .trip-price .old{color:var(--muted);text-decoration:line-through;font-size:.85rem}
  .trip-price .new{font-family:"Sora";font-weight:700;font-size:1.38rem;color:var(--navy)}
  .trip-price .per{font-size:.74rem;color:var(--muted)}
  @media(max-width:980px){.trip-grid{grid-template-columns:repeat(2,1fr)}}
  @media(max-width:520px){.trip-grid{grid-template-columns:1fr}}
  @media(max-width:640px){.dsg-trip-grid > *{flex-basis:100%}}

  /* ============ DESTINATIONS ============ */
  .dest-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
  .dest{position:relative;border-radius:var(--radius);overflow:hidden;text-decoration:none;color:#fff;box-shadow:var(--shadow-sm);transition:transform .22s ease,box-shadow .22s ease;min-height:440px;display:flex}
  .dest:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
  .dest .img{position:absolute;inset:0;height:100%}
  .dest .img::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(1,16,38,.9) 6%,rgba(1,16,38,.25) 52%,rgba(1,16,38,.05))}
  .dest-body{position:relative;z-index:2;margin-top:auto;padding:24px}
  .dest-body .place{font-size:.72rem;text-transform:uppercase;letter-spacing:.1em;font-weight:700;color:var(--orange);margin-bottom:.4rem}
  .dest-body h3{font-size:2.1rem;color:#fff;margin-bottom:.45rem}
  .dest-body p{font-size:1rem;color:rgba(255,255,255,.86);margin-bottom:1.1rem}
  .dest-body .go{font-weight:700;font-size:.9rem;display:inline-flex;gap:.4rem;align-items:center;color:#fff}
  .dest:hover .go{gap:.7rem}
  @media(max-width:820px){.dest-grid{grid-template-columns:1fr;max-width:420px;margin:0 auto}}

  /* ============ PLANNER ============ */
  .planner{background:var(--navy-deep);color:#E6ECF5;border-top:1px solid rgba(255,255,255,.08)}
  .planner .wrap{padding:84px 24px}
  .planner .eyebrow{color:var(--orange)}
  .planner-grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:52px;align-items:center}
  .planner-photo{aspect-ratio:4/5;border-radius:var(--radius);position:relative;box-shadow:var(--shadow);overflow:hidden;border:5px solid rgba(255,255,255,.9)}
  .planner-photo .img{position:absolute;inset:0;height:100%}
  .planner h2{font-size:clamp(2.3rem,4vw,2.9rem);color:#fff;margin:.7rem 0 1.2rem;font-weight:800}
  .planner blockquote{border:none;margin:0 0 1.5rem;font-size:1.26rem;line-height:1.68;color:#D5DDEB}
  .planner blockquote p{margin-bottom:1rem}
  .planner blockquote em{color:#fff;font-style:normal;font-weight:600}
  .sig{font-family:"Sora";font-weight:800;font-style:italic;font-size:1.3rem;color:#fff}
  .sig-role{color:var(--muted);font-size:.92rem;margin-top:.15rem}
  .planner-mini{display:flex;gap:2rem;margin-top:1.8rem;flex-wrap:wrap}
  .planner-mini b{display:block;font-family:"Sora";font-size:1.55rem;color:var(--orange);font-weight:800;line-height:1}
  .planner-mini div{font-size:.84rem;color:#B9C4D6;margin-top:.2rem}
  @media(max-width:820px){.planner-grid{grid-template-columns:1fr;gap:36px}.planner-photo{max-width:300px}}

  /* ============ HOW ============ */
  .steps{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
  .step{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:30px 26px 28px;position:relative;box-shadow:var(--shadow-sm)}
  .step .snum{font-family:"Caveat",cursive;font-weight:700;font-size:2.5rem;line-height:1;color:var(--orange-deep);display:inline-block;margin-bottom:.6rem;transform:rotate(-4deg)}
  .step:nth-child(2) .snum{transform:rotate(3deg)}
  .step:nth-child(3) .snum{transform:rotate(-2deg)}
  .step h3{font-size:1.4rem;margin-bottom:.55rem}
  .step p{color:var(--ink);font-size:1.05rem}
  @media(max-width:820px){.steps{grid-template-columns:1fr;gap:18px}}

  /* ============ REVIEWS ============ */
  .rev-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
  .rev{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm);display:flex;flex-direction:column}
  .rev .img{height:230px}
  .rev-body{padding:18px 20px 20px;display:flex;flex-direction:column;flex:1}
  .rev .stars{color:var(--orange);letter-spacing:2px;font-size:.94rem;margin-bottom:.7rem}
  .rev q{font-size:1.14rem;line-height:1.58;color:var(--navy);quotes:none;flex:1;font-weight:500}
  .rev q::before,.rev q::after{content:""}
  .reviewer{display:flex;align-items:center;gap:.75rem;margin-top:1.3rem;padding-top:1.1rem;border-top:1px solid var(--line)}
  .reviewer .face{width:46px;height:46px;border-radius:50%;overflow:hidden;flex-shrink:0;background:var(--navy)}
  .reviewer .face img{width:100%;height:100%;object-fit:cover}
  .reviewer .rn{font-weight:700;font-size:.95rem;color:var(--navy)}
  .reviewer .rt{color:var(--muted);font-size:.82rem}
  .rev-more{text-align:center;margin-top:2.4rem}
  @media(max-width:820px){.rev-grid{grid-template-columns:1fr;max-width:420px;margin:0 auto}}

  /* ============ BLOGS ============ */
  /* Scoped to a.blog (not bare .blog) — WordPress adds class="blog" to
     <body> on the blog index page itself; a bare .blog selector here
     was accidentally styling the whole page body with this card's
     border+shadow+radius, which is exactly what looked like "1px
     white gaps on all four edges". This card is always an <a>, so
     scoping to the tag makes the collision structurally impossible. */
  .blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
  a.blog{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;text-decoration:none;color:var(--navy);box-shadow:var(--shadow-sm);transition:transform .2s ease,box-shadow .2s ease;display:flex;flex-direction:column}
  a.blog:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
  a.blog .img{height:240px}
  a.blog .cat{position:absolute;top:12px;left:12px;z-index:2;background:#fff;color:var(--orange-deep);font-size:.68rem;font-weight:700;padding:.28rem .7rem;border-radius:999px;text-transform:uppercase;letter-spacing:.04em}
  .blog-body{padding:18px 20px 22px;display:flex;flex-direction:column;flex:1}
  .blog-body .date{font-size:.78rem;color:var(--muted);margin-bottom:.6rem}
  .blog-body h3{font-size:1.4rem;line-height:1.28;margin-bottom:.6rem}
  .blog-body p{font-size:1.02rem;color:var(--ink);margin-bottom:1rem;flex:1}
  .blog-body .go{font-weight:700;font-size:.88rem;color:var(--orange-deep);display:inline-flex;gap:.4rem;align-items:center}
  a.blog:hover .go{gap:.7rem}
  .blog-byline{display:flex;align-items:center;gap:10px;margin-top:auto;padding-top:14px;border-top:1px solid var(--line)}
  .blog-byline img{width:34px;height:34px;border-radius:50%;flex-shrink:0}
  .blog-byline .name{font-size:.86rem;font-weight:700;color:var(--navy)}
  .blog-byline .meta{font-size:.76rem;color:var(--muted)}
  @media(max-width:820px){.blog-grid{grid-template-columns:1fr;max-width:420px;margin:0 auto}}

  /* ============ FAQ ============ */
  .faq{max-width:820px;margin:0 auto}
  .faq details{border:1px solid var(--line);border-radius:12px;margin-bottom:12px;padding:2px 20px;transition:border-color .2s}
  .faq details[open]{border-color:var(--line-2)}
  .faq summary{list-style:none;cursor:pointer;padding:20px 0;font-family:"Sora";font-size:1.2rem;font-weight:600;color:var(--navy);display:flex;justify-content:space-between;align-items:center;gap:16px}
  .faq summary::-webkit-details-marker{display:none}
  .faq summary .ic{width:26px;height:26px;flex-shrink:0;border-radius:50%;background:var(--orange-soft);color:var(--orange-deep);display:flex;align-items:center;justify-content:center;transition:transform .2s,background .2s,color .2s;font-size:1.1rem;font-weight:700}
  .faq details[open] summary .ic{transform:rotate(45deg);background:var(--orange);color:#fff}
  .faq details p{padding:0 0 22px;color:var(--ink);font-size:1.08rem;line-height:1.7;max-width:66ch}

  /* ============ FINAL ============ */
  .final{background:radial-gradient(ellipse 900px 500px at 50% -8%,rgba(253,153,2,.16),rgba(253,153,2,0) 65%),linear-gradient(165deg,#15335C 0%,#0A1B33 55%,#011026 100%);color:#E6ECF5;text-align:center;border-bottom:1px solid rgba(253,153,2,.2)}
  .final .wrap{padding:90px 24px}
  .final .eyebrow{color:var(--orange);justify-content:center}
  .final h2{font-size:clamp(2.5rem,5vw,3.6rem);color:#fff;margin:1rem 0 1rem;font-weight:800}
  .final h2 em{font-style:normal;color:var(--orange)}
  .final p{color:#CBD4E2;max-width:46ch;margin:0 auto 2rem;font-size:1.18rem}
  .final .row{display:flex;gap:.9rem;justify-content:center;flex-wrap:wrap;align-items:center}
  .final .wa{color:var(--orange);text-decoration:underline;font-weight:600;font-size:.95rem}

  /* ============ FOOTER ============ */
  footer{background:#000A1C;color:#B9C4D6;padding:56px 0 28px;border-top:1px solid rgba(255,255,255,.1);box-shadow:0 1px 0 rgba(255,255,255,.04) inset}
  .foot-grid{display:grid;grid-template-columns:1.7fr 1fr 1fr 1fr;gap:36px}
  .foot-brand img.flogo{width:94px;max-width:32%;margin:-4px 0 8px -3px;display:block}
  .foot-brand p{color:#9FAABF;font-size:.92rem;max-width:34ch;margin-bottom:1rem}
  .foot-contact{font-size:.9rem;color:#B9C4D6;line-height:1.9}
  .foot-contact b{color:#fff}
  .foot-col h4{font-size:.76rem;text-transform:uppercase;letter-spacing:.12em;color:var(--orange);margin-bottom:1rem;font-weight:700}
  .foot-col a{display:block;text-decoration:none;color:#9FAABF;font-size:.92rem;padding:.28rem 0}
  .foot-col a:hover{color:#fff}
  .foot-bottom{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;margin-top:40px;padding-top:20px;border-top:1px solid rgba(255,255,255,.1);font-size:.84rem;color:#8592A8}
  .foot-bottom a{color:#8592A8;text-decoration:none;margin-left:1.1rem}
  @media(max-width:820px){.foot-grid{grid-template-columns:1fr 1fr}.foot-brand{grid-column:1/-1}}

  .wa-fab{position:fixed;bottom:24px;right:24px;z-index:60;width:56px;height:56px;border-radius:50%;background:#25D366;color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow);text-decoration:none;transition:transform .2s}
  .wa-fab:hover{transform:scale(1.08)}
  .wa-fab svg{width:30px;height:30px}

  .reveal{opacity:0;transform:translateY(20px);transition:opacity .7s ease,transform .7s ease}
  .reveal.in{opacity:1;transform:none}
  @media(prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none;transition:none}html{scroll-behavior:auto}}
  :focus-visible{outline:3px solid var(--orange);outline-offset:3px;border-radius:5px}

  /* ============ PERSONAL TOUCH ELEMENTS ============ */
  .handwritten{font-family:"Caveat",cursive;font-weight:600;line-height:1.35}

  .welcome-note{position:absolute;top:-16px;left:-24px;background:#FFFDF7;border:1px solid var(--line-2);border-radius:12px;box-shadow:var(--shadow);padding:14px 18px 14px 14px;display:flex;gap:12px;align-items:flex-start;max-width:250px;transform:rotate(-3deg);z-index:5}
  .welcome-note .wn-face{width:44px;height:44px;border-radius:50%;overflow:hidden;flex-shrink:0;border:2px solid #fff;box-shadow:0 2px 6px rgba(1,16,38,.2)}
  .welcome-note .wn-face img{width:100%;height:100%;object-fit:cover}
  .welcome-note p{font-family:"Caveat",cursive;font-weight:600;font-size:1.28rem;line-height:1.25;color:var(--navy)}
  .welcome-note .pin{position:absolute;top:-9px;left:50%;transform:translateX(-50%);width:16px;height:16px;border-radius:50%;background:var(--orange);box-shadow:0 3px 6px rgba(0,0,0,.25)}
  @media(max-width:880px){.welcome-note{position:static;transform:rotate(-1.5deg);margin:18px auto 0;max-width:280px}}

  .sig-note{font-family:"Caveat",cursive;font-weight:700;font-size:1.7rem;color:var(--orange)}

  .reply-bubble{margin-top:1rem;background:var(--orange-soft);border-radius:12px;padding:12px 14px;display:flex;gap:10px;align-items:flex-start}
  .reply-bubble .rb-face{width:32px;height:32px;border-radius:50%;overflow:hidden;flex-shrink:0}
  .reply-bubble .rb-face img{width:100%;height:100%;object-fit:cover}
  .reply-bubble .rb-text{font-family:"Caveat",cursive;font-weight:600;font-size:1.15rem;line-height:1.3;color:var(--orange-deep)}
  .reply-bubble .rb-tag{font-family:"Plus Jakarta Sans",sans-serif;font-size:.68rem;color:var(--muted);text-transform:uppercase;letter-spacing:.05em;margin-top:2px;display:block}

  .wa-preview{background:#E9F5EC;border-radius:16px;padding:20px;max-width:340px;margin:0 auto;box-shadow:var(--shadow);text-align:left}
  .wa-preview .wa-head{display:flex;align-items:center;gap:10px;margin-bottom:14px;padding-bottom:12px;border-bottom:1px solid rgba(1,16,38,.08)}
  .wa-preview .wa-head img{width:36px;height:36px;border-radius:50%;object-fit:cover}
  .wa-preview .wa-head b{font-size:.92rem;color:var(--navy);display:block}
  .wa-preview .wa-head span{font-size:.72rem;color:#3CA55C;font-weight:600}
  .wa-bubble{border-radius:12px;padding:9px 13px;font-size:.86rem;margin-bottom:8px;max-width:82%;line-height:1.4}
  .wa-bubble.in{background:#fff;color:var(--ink)}
  .wa-bubble.out{background:#DCF8C6;color:var(--ink);margin-left:auto}

  .founder-strip{display:flex;align-items:center;gap:.6rem;justify-content:center;margin-top:1rem}
  .founder-strip img{width:26px;height:26px;border-radius:50%;object-fit:cover;border:1.5px solid #fff;box-shadow:0 2px 4px rgba(0,0,0,.2)}
  .founder-strip span{font-size:.82rem;color:var(--ink);font-weight:600}

/* ============================================================
   INNER PAGES — page-hero, entry typography, single layouts
   (added for the dynamic template system; uses existing tokens)
   ============================================================ */
.page-hero{background:linear-gradient(150deg,var(--navy) 0%,var(--navy-deep) 100%);padding:120px 24px 56px;color:#fff}
.page-hero .wrap{max-width:1160px;margin:0 auto}
.page-hero .eyebrow{color:var(--orange)}
.page-hero h1{font-size:clamp(2rem,4.5vw,3.1rem);line-height:1.15;margin:10px 0 8px;color:#fff;letter-spacing:-.5px}
.page-hero p{color:rgba(255,255,255,.78);max-width:640px}
.page-hero .single-meta a{color:var(--orange);text-decoration:none}

.single-cover{max-width:1160px;margin:-28px auto 0;padding:0 24px;position:relative;z-index:2}
.single-cover img{width:100%;height:auto;max-height:520px;object-fit:cover;border-radius:var(--radius);box-shadow:var(--shadow)}

.entry{max-width:760px;margin:0 auto}
.entry h2{color:var(--navy);font-size:1.6rem;margin:2.1em 0 .6em;letter-spacing:-.3px}
.entry h3{color:var(--navy);font-size:1.25rem;margin:1.8em 0 .5em}
.entry p{margin:0 0 1.15em}
.entry a{color:var(--orange-deep);text-decoration:underline;text-underline-offset:3px}
.entry ul,.entry ol{margin:0 0 1.3em 1.3em}
.entry li{margin-bottom:.45em}
.entry img{max-width:100%;height:auto;border-radius:var(--radius);box-shadow:var(--shadow-sm);margin:1.4em 0}
.entry blockquote{border-left:3px solid var(--orange);background:var(--tint);padding:16px 20px;border-radius:0 var(--radius) var(--radius) 0;margin:1.6em 0;font-style:italic;color:var(--navy)}
.entry .wp-block-table table,.entry table{width:100%;border-collapse:collapse;margin:1.4em 0;font-size:.95rem}
.entry th,.entry td{border:1px solid var(--line-2);padding:10px 12px;text-align:left}
.entry th{background:var(--tint);color:var(--navy)}

.trip-facts{display:flex;flex-wrap:wrap;align-items:center;gap:18px 34px;background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow-sm);padding:20px 26px;margin:26px 0 0}
.trip-facts .tf{display:flex;flex-direction:column;gap:2px}
.trip-facts .tf-label{font-size:.74rem;text-transform:uppercase;letter-spacing:.08em;color:var(--muted)}
.trip-facts .tf-val{font-weight:700;color:var(--navy);font-size:1.05rem}
.trip-facts .btn{margin-left:auto}
@media(max-width:640px){.trip-facts .btn{margin-left:0;width:100%;text-align:center}}

.author-card{display:flex;gap:18px;align-items:flex-start;background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow-sm);padding:22px 26px;max-width:760px;margin:0 auto}
.author-card .ac-face img{border-radius:50%;display:block}
.author-card .ac-name{font-weight:800;color:var(--navy);font-size:1.1rem;margin-bottom:4px}
.author-card p{color:var(--ink);font-size:.95rem;margin-bottom:6px}
.author-card .go{color:var(--orange-deep);font-weight:700;text-decoration:none;font-size:.92rem}

.contact-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:22px;max-width:760px;margin:0 auto}
.contact-card{display:block;background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow-sm);padding:26px;text-decoration:none;transition:transform .18s ease,box-shadow .18s ease}
.contact-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.contact-card .cc-ic{font-size:1.6rem;margin-bottom:10px}
.contact-card h3{color:var(--navy);margin-bottom:4px}
.contact-card p{color:var(--ink);margin-bottom:10px}
.contact-card .go{color:var(--orange-deep);font-weight:700;font-size:.92rem}

.tg-pagination{margin:44px 0 0;text-align:center}
.tg-pagination .nav-links{display:inline-flex;gap:8px;flex-wrap:wrap;justify-content:center}
.tg-pagination a,.tg-pagination span.current,.tg-pagination span.dots{display:inline-block;padding:9px 15px;border-radius:10px;border:1px solid var(--line-2);color:var(--navy);text-decoration:none;font-weight:600;font-size:.92rem;background:#fff}
.tg-pagination span.current{background:var(--navy);color:#fff;border-color:var(--navy)}
.tg-pagination a:hover{border-color:var(--orange);color:var(--orange-deep)}

.tg-empty{text-align:center;padding:56px 0}
.tg-empty h2{color:var(--navy);margin-bottom:8px}
.tg-empty p{max-width:480px;margin:0 auto 20px;color:var(--muted)}

/* ============================================================
   ITINERARY CARD — a plan, not a blog post. Mini day-timeline
   preview + handwritten note (Caveat, same as founder signature).
   ============================================================ */
.itin-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
@media(max-width:1020px){.itin-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:680px){.itin-grid{grid-template-columns:1fr;max-width:420px;margin:0 auto}}

.itin{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;text-decoration:none;color:var(--navy);box-shadow:var(--shadow-sm);transition:transform .2s ease,box-shadow .2s ease;display:flex;flex-direction:column}
.itin:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.itin .img{height:200px;position:relative}
.itin .img img{width:100%;height:100%;object-fit:cover}
.itin .tag{position:absolute;top:12px;left:12px;z-index:2;background:var(--orange);color:#231400;font-size:.72rem;font-weight:800;padding:.32rem .75rem;border-radius:999px;letter-spacing:.03em}
.itin-body{padding:18px 20px 20px;display:flex;flex-direction:column;flex:1}
.itin-body .loc{font-size:.74rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--orange-deep);margin-bottom:.35rem}
.itin-body h3{font-size:1.32rem;line-height:1.25;margin-bottom:.3rem}
.itin-body .dur{font-size:.86rem;color:var(--muted);margin-bottom:.85rem}
.itin-sum{font-size:.98rem;color:var(--ink);margin-bottom:.9rem;flex:1}

/* Mini day timeline — dots + connecting line, encodes the real structure */
.itin-days{list-style:none;margin:0 0 1rem;padding:0;flex:1}
.itin-days li{position:relative;padding:0 0 12px 22px;font-size:.92rem;color:var(--ink);line-height:1.4}
.itin-days li::before{content:"";position:absolute;left:4px;top:6px;width:8px;height:8px;border-radius:50%;background:var(--orange);box-shadow:0 0 0 3px var(--orange-soft)}
.itin-days li::after{content:"";position:absolute;left:7px;top:16px;bottom:-2px;width:2px;background:var(--line-2)}
.itin-days li:last-child{padding-bottom:0}
.itin-days li:last-child::after{display:none}
.itin-days li.more{color:var(--muted);font-weight:600}
.itin-days li.more::before{background:var(--line-2);box-shadow:none}

.itin-foot{display:flex;justify-content:space-between;align-items:flex-end;gap:12px;border-top:1px dashed var(--line-2);padding-top:12px;margin-top:auto}
.itin-foot .note{font-family:"Caveat",cursive;font-size:1.15rem;font-weight:600;color:var(--orange-deep);transform:rotate(-2deg);line-height:1.1}
.itin-foot .go{font-weight:700;font-size:.86rem;color:var(--navy);white-space:nowrap;display:inline-flex;gap:.4rem;align-items:center}
.itin:hover .itin-foot .go{color:var(--orange-deep);gap:.7rem}

/* ============================================================
   DESTINATIONS PAGE — calm hero with full-background image,
   floating cards with depth, warm closer. (archive-destination.php)
   ============================================================ */
.tg-crumbs{display:flex;align-items:center;gap:8px;flex-wrap:wrap;font-size:.85rem;color:rgba(255,255,255,.65);margin-bottom:34px}
.tg-crumbs a{color:rgba(255,255,255,.65);text-decoration:none;transition:color .2s}
.tg-crumbs a:hover{color:#fff}
.tg-crumbs .sep{opacity:.5}
.tg-crumbs .here{color:var(--orange);font-weight:600}

.dest-hero{position:relative;min-height:520px;display:flex;align-items:center;overflow:hidden;background:var(--navy)}
.dest-hero-bg{position:absolute;inset:0}
.dest-hero-bg img{width:100%;height:100%;object-fit:cover}
.dest-hero::after{content:"";position:absolute;inset:0;background:linear-gradient(100deg,rgba(7,17,33,.82) 20%,rgba(7,17,33,.45) 60%,rgba(7,17,33,.25));z-index:1}
.dest-hero-in{position:relative;z-index:2;width:100%;padding-top:120px;padding-bottom:140px}
.dest-hero h1{font-size:clamp(2.1rem,4.4vw,3.3rem);color:#fff;line-height:1.16;max-width:560px}
.dest-hero h1 em{font-style:normal;color:var(--orange)}
.dest-hero p{color:rgba(255,255,255,.88);max-width:470px;margin-top:16px;font-size:1.05rem;line-height:1.8}
.dest-hero .btn{margin-top:26px;box-shadow:0 8px 24px rgba(253,153,2,.35)}

.dest-cards{margin-top:-84px;position:relative;z-index:3;padding-bottom:10px;background:transparent}
.dcard-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}

/* Regions section (single-destination.php sub-locations) — dedicated,
   not shared with .dcard (that's the /destinations/ listing's own card
   style) so a future edit to one can never silently affect the other. */
/* Destination single-page hero — dedicated full-bleed photo design
   matching the approved destination-country.html / destination-
   sublocation.html mockups. NOT shared with .hero/.hero-grid/
   .welcome-note/.float-card (those are the homepage + Package page's
   own "home-DNA" hero — touching them would break those pages too). */
.ds-hero{position:relative;min-height:480px;display:flex;align-items:flex-end;overflow:hidden;background:#0A1B33}
.ds-hero-bg{position:absolute;inset:0}
.ds-hero-bg img{width:100%;height:100%;object-fit:cover;position:absolute;top:0;left:0;max-width:none;object-position:center;display:block}
.ds-hero::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,17,33,.1) 0%,rgba(7,17,33,.4) 55%,rgba(7,17,33,.92) 100%);z-index:1}
.ds-hero-in{position:relative;z-index:2;width:100%;padding-top:120px;padding-bottom:44px}
.ds-crumbs{display:flex;gap:8px;font-size:.85rem;color:rgba(255,255,255,.7);flex-wrap:wrap;margin-bottom:18px}
.ds-crumbs a{color:rgba(255,255,255,.7);text-decoration:none}
.ds-crumbs .here{color:var(--orange);font-weight:700}
.ds-hero h1{font-size:clamp(2.4rem,5.4vw,3.8rem);margin-bottom:14px;color:#fff;font-family:'Sora',sans-serif;font-weight:800;letter-spacing:-.02em}
.ds-hero p.lede{font-size:1.15rem;color:rgba(255,255,255,.85);max-width:60ch;margin-bottom:24px;line-height:1.65}
.ds-hero-actions{display:flex;gap:.8rem;flex-wrap:wrap;margin-bottom:24px}
.ds-proof{display:flex;gap:0;flex-wrap:wrap;align-items:stretch;background:rgba(255,255,255,.08);backdrop-filter:blur(6px);border:1px solid rgba(255,255,255,.15);border-radius:14px;overflow:hidden;max-width:fit-content}
.ds-proof-item{padding:14px 22px;text-align:center}
.ds-proof-item .num{font-family:'Sora',sans-serif;font-size:1.4rem;font-weight:800;line-height:1;color:#fff}
.ds-proof-item .num span{color:var(--orange)}
.ds-proof-item .lbl{font-size:.76rem;color:rgba(255,255,255,.7);font-weight:500;margin-top:3px}
.ds-proof-div{width:1px;background:rgba(255,255,255,.18)}

@media(max-width:960px){
  .ds-hero{min-height:420px}
}
@media(max-width:680px){
  .ds-hero-in{padding-top:96px;padding-bottom:32px}
  .ds-proof{display:grid;grid-template-columns:1fr 1fr;max-width:100%;gap:1px;background:rgba(255,255,255,.18);border-radius:12px}
  .ds-proof-item{background:rgba(10,27,51,.55)}
  .ds-proof-div{display:none}
}

.region-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.region-card{position:relative;border-radius:18px;overflow:hidden;height:230px;box-shadow:var(--shadow-sm);display:block;transition:transform .25s ease,box-shadow .25s ease;background:linear-gradient(150deg,#12294a,var(--navy-deep))}
.region-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.region-card .img{position:absolute;inset:0}
.region-card .img img{width:100%;height:100%;object-fit:cover}
.region-card::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,17,33,0) 40%,rgba(7,17,33,.86) 100%)}
.region-card .body{position:absolute;left:0;right:0;bottom:0;z-index:2;padding:16px 18px}
.region-card h3{color:#fff;font-size:1.25rem;margin-bottom:4px;font-family:'Sora',sans-serif}
.region-card .cnt{color:rgba(255,255,255,.8);font-size:.82rem}
.region-card .arrow{position:absolute;top:14px;right:14px;z-index:2;width:32px;height:32px;border-radius:50%;background:rgba(255,255,255,.15);backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;color:#fff;font-size:1rem;transition:background .2s}
.region-card:hover .arrow{background:var(--orange);color:#231400}

/* Hierarchy signals on a sub-location's own page (e.g. Kerala) */
.part-of{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.12);backdrop-filter:blur(6px);border:1px solid rgba(255,255,255,.2);border-radius:999px;padding:.4rem .95rem .4rem .5rem;margin-bottom:16px;font-size:.85rem;color:rgba(255,255,255,.9)}
.part-of img{width:22px;height:22px;border-radius:50%;object-fit:cover}
.part-of b{color:#fff}
.side-facts .up-link{display:flex;align-items:center;gap:8px;margin-top:16px;padding-top:16px;border-top:1px dashed var(--line-2);font-size:.88rem;font-weight:700;color:var(--orange-deep)}
.more-country{background:var(--navy);border-radius:20px;padding:34px 36px;display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.more-country div h3{color:#fff;font-size:1.25rem;margin-bottom:6px;font-family:'Sora',sans-serif}
.more-country div p{color:rgba(255,255,255,.7);font-size:.92rem;margin:0}
.sibling-chips{display:flex;gap:8px;flex-wrap:wrap}
.sibling-chip{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);color:#fff;padding:.5rem 1rem;border-radius:999px;font-size:.86rem;font-weight:600}
.sibling-chip:hover{background:var(--orange);color:#231400;border-color:var(--orange)}
.sibling-chip.on{background:var(--orange);color:#231400;border-color:var(--orange)}

@media(max-width:960px){
  .region-grid{grid-template-columns:1fr 1fr}
  .more-country{flex-direction:column;align-items:flex-start}
}
@media(max-width:680px){
  .region-grid{grid-template-columns:1fr}
  .more-country{padding:26px 22px}
}
.dcard{background:#fff;border-radius:18px;overflow:hidden;box-shadow:0 18px 44px rgba(10,27,51,.14);transition:transform .3s ease,box-shadow .3s ease;display:block;text-decoration:none;color:var(--ink)}
.dcard:hover{transform:translateY(-10px);box-shadow:0 30px 60px rgba(10,27,51,.2)}
.dcard .img{height:210px;overflow:hidden}
.dcard .img img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.dcard:hover .img img{transform:scale(1.06)}
.dcard .body{padding:20px 22px 22px}
.dcard h3{font-size:1.45rem;color:var(--navy)}
.dcard .places{font-size:.84rem;color:var(--muted);margin:3px 0 12px}
.dcard .warm{font-size:.95rem;line-height:1.75;margin-bottom:16px;color:var(--ink)}
.dcard .foot{display:flex;align-items:center;justify-content:space-between}
.dcard .count{font-size:.8rem;color:var(--muted)}
.dcard .go-btn{background:var(--navy);color:#fff;font-weight:600;font-size:.86rem;padding:.62rem 1.15rem;border-radius:999px;display:inline-flex;align-items:center;gap:8px;transition:all .25s ease}
.dcard .go-btn .ar{color:var(--orange);transition:transform .25s ease}
.dcard:hover .go-btn{background:var(--orange);color:#231400}
.dcard:hover .go-btn .ar{color:#231400;transform:translateX(4px)}

.dest-closer{text-align:center;padding:84px 24px 90px;background:#F6F8FC;border-top:1px solid var(--line);margin-top:70px}
.dest-closer .eyebrow{justify-content:center;margin-bottom:14px}
.dest-closer h2{font-size:1.7rem;line-height:1.5;color:var(--navy)}
.dest-closer p{max-width:440px;margin:14px auto 26px;line-height:1.85;color:var(--muted)}
.dest-closer .btn{box-shadow:0 6px 18px rgba(253,153,2,.3)}

@media(max-width:920px){
  .dcard-grid{grid-template-columns:1fr;max-width:440px;margin:0 auto}
  .dest-cards{margin-top:-60px}
  .dest-hero-in{padding-top:100px;padding-bottom:110px}
}

/* Archive pages share the calm hero; cards float over its edge */
.arch-hero{min-height:440px}
.arch-hero .eyebrow{display:inline-flex;margin-bottom:12px}
.arch-hero .dest-hero-in{padding-top:104px;padding-bottom:128px}
.float-cards{position:relative;z-index:3}
.dest-cards .trip,.dest-cards .itin,.dest-cards .blog,.dest-cards .dest{box-shadow:0 18px 44px rgba(10,27,51,.12)}
.dest-cards .trip:hover,.dest-cards .itin:hover,.dest-cards a.blog:hover,.dest-cards .dest:hover{box-shadow:0 30px 60px rgba(10,27,51,.18)}
@media(max-width:920px){.arch-hero .dest-hero-in{padding-top:92px;padding-bottom:104px}}

/* ============================================================
   SINGLE DESTINATION (v4) — home-DNA hero on a destination page:
   dark breadcrumbs on cream, chips, facts sidebar, link lists.
   ============================================================ */
.dest-single-hero{padding:38px 0 54px}
.crumbs-dark{display:flex;align-items:center;gap:8px;flex-wrap:wrap;font-size:.85rem;color:var(--muted);margin-bottom:22px;position:relative;z-index:1;row-gap:4px}
.crumbs-dark a{color:var(--muted);text-decoration:none}
.crumbs-dark a:hover{color:var(--navy)}
.crumbs-dark .sep{opacity:.6}
.crumbs-dark .here{color:var(--orange-deep);font-weight:700}

.dsg-about{display:grid;grid-template-columns:1.5fr 1fr;gap:56px;align-items:start}
.dsg-chips{display:flex;flex-wrap:wrap;gap:9px;margin-top:1.2rem}
.dsg-chip{background:#fff;border:1px solid var(--line-2);border-radius:999px;padding:.5rem 1.05rem;font-size:.88rem;font-weight:700;color:var(--navy);box-shadow:var(--shadow-sm)}

.side-facts{background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow-sm);overflow:hidden}
.side-facts .row{display:flex;justify-content:space-between;gap:14px;padding:15px 20px;border-bottom:1px solid var(--line);font-size:.94rem}
.side-facts .row .k{color:var(--muted)}
.side-facts .row .v{font-weight:700;color:var(--navy);text-align:right}
.side-facts .cta{padding:16px 20px 18px}
.side-facts .cta .btn{width:100%;justify-content:center}

.dsg-res{display:grid;grid-template-columns:1fr 1fr;gap:52px}
.dsg-res .res h3{font-size:1.3rem;margin:.6rem 0 1rem}
.dsg-res .res ul{margin:0}
.dsg-res .res li{list-style:none;border-bottom:1px solid var(--line-2)}
.dsg-res .res li a{display:flex;justify-content:space-between;align-items:center;padding:15px 2px;font-size:1.01rem;font-weight:600;color:var(--navy);text-decoration:none;transition:all .2s}
.dsg-res .res li a:hover{color:var(--orange-deep);padding-left:8px}
.dsg-res .res li .meta{font-size:.8rem;color:var(--muted);font-weight:500;white-space:nowrap;margin-left:14px}
.dsg-res .res .all{margin-top:16px}

@media(max-width:960px){
  .dsg-about,.dsg-res{grid-template-columns:1fr;gap:34px}
  .dest-single-hero .hero-photo{height:380px}
}

/* ============================================================
   SINGLE PACKAGE (v2 — matches the approved mockup exactly):
   home-DNA hero with a real photo, price-float card, hero-proof
   stats, assurance strip, day-by-day with DAY-N badges,
   inclusions/exclusions, accommodation grid, sticky booking card.
   ============================================================ */
.trip-meta{display:flex;gap:.6rem;flex-wrap:wrap;align-items:center;font-size:.92rem;color:var(--muted);font-weight:600;margin-bottom:1rem}
.trip-meta .dot{width:4px;height:4px;border-radius:50%;background:var(--orange)}

.price-float{position:absolute;left:-18px;bottom:26px;background:#fff;border-radius:14px;box-shadow:var(--shadow);padding:14px 18px}
.price-float .p{font-family:'Sora',sans-serif;font-weight:800;font-size:1.5rem;color:var(--navy)}
.price-float .p small{font-size:.8rem;color:var(--muted);font-weight:500}
.price-float .t{font-size:.78rem;color:#2E9E5B;font-weight:700}

.main{padding:64px 0 30px}
.main-grid{display:grid;grid-template-columns:1.55fr .95fr;gap:52px;align-items:start}
.sect{margin-bottom:52px}
.sect h2{font-size:1.7rem;margin-bottom:1rem}
.sect h2 em{font-style:normal;color:var(--orange)}
.sect .entry p{line-height:1.85;margin-bottom:1rem;font-size:1.03rem}

.day-label{display:inline-flex;background:var(--orange-soft);color:var(--orange-deep);font-size:.72rem;font-weight:800;padding:.2rem .6rem;border-radius:999px;margin-right:10px;letter-spacing:.04em;flex-shrink:0}

.inc-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.inc-card{border:1px solid var(--line);border-radius:14px;padding:20px 22px;background:#fff;box-shadow:var(--shadow-sm)}
.inc-card h3{font-size:1.05rem;margin-bottom:12px;display:flex;align-items:center;gap:8px}
.inc-card li{list-style:none;display:flex;gap:10px;align-items:flex-start;padding:7px 0;font-size:.96rem;line-height:1.55}
.tick{width:20px;height:20px;border-radius:50%;background:#E9F5EC;color:#2E9E5B;font-weight:800;font-size:.75rem;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:3px}
.cross{width:20px;height:20px;border-radius:50%;background:#F4F5F7;color:var(--muted);font-weight:800;font-size:.72rem;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:3px}

.stay-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.stay{border:1px solid var(--line);border-radius:14px;overflow:hidden;background:#fff;box-shadow:var(--shadow-sm)}
.stay .img{height:110px}
.stay .b{padding:12px 14px 14px}
.stay .city{font-size:.7rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:var(--orange-deep)}
.stay h4{font-size:.98rem;margin:.2rem 0;color:var(--navy)}
.stay p{font-size:.82rem;color:var(--muted);line-height:1.5}

.book{position:sticky;top:80px}
.book-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden}
.book-top{padding:22px 24px 16px;border-bottom:1px dashed var(--line-2)}
.book-top .from{font-size:.78rem;color:var(--muted);font-weight:600;text-transform:uppercase;letter-spacing:.06em}
.book-top .price{font-family:'Sora',sans-serif;font-weight:800;font-size:2.1rem;color:var(--navy);line-height:1.1}
.book-top .price small{font-size:.85rem;color:var(--muted);font-weight:500}
.book-top .note{font-size:.82rem;color:#2E9E5B;font-weight:700;margin-top:4px}
.book-rows{padding:8px 24px}
.book-rows .row{display:flex;justify-content:space-between;gap:14px;padding:11px 0;border-bottom:1px solid var(--line);font-size:.92rem}
.book-rows .row:last-child{border-bottom:0}
.book-rows .k{color:var(--muted)}
.book-rows .v{font-weight:700;color:var(--navy);text-align:right}
.book-cta{padding:16px 24px 20px;display:grid;gap:10px}

@media(max-width:960px){
  .main-grid,.inc-grid{grid-template-columns:1fr}
  .stay-grid{grid-template-columns:1fr;max-width:430px;margin:0 auto}
  .book{position:static}
}


/* ============================================================
   PACKAGES / ITINERARIES LISTING — dedicated classes (.pl-*),
   byte-for-byte match of the approved mockup
   (tripgozy-packages-listing-mockup_1.html). Deliberately NOT
   shared with any other page's hero/cards/closer classes, so a
   future edit elsewhere can never silently break this page again.
   ============================================================ */

/* Hero — full-bleed photo, no CTA button (mockup has none here) */
.pl-hero{position:relative;overflow:hidden;min-height:400px;display:flex;align-items:center;background:var(--navy)}
.pl-hero-bg{position:absolute;inset:0}
.pl-hero-bg img{width:100%;height:100%;object-fit:cover;display:block}
.pl-hero::after{content:"";position:absolute;inset:0;background:linear-gradient(100deg,rgba(7,17,33,.85) 15%,rgba(7,17,33,.5) 60%,rgba(7,17,33,.28));z-index:1}
.pl-hero .wrap{position:relative;z-index:2;padding:100px 24px 76px}
.pl-crumbs{display:flex;gap:8px;flex-wrap:wrap;font-size:.85rem;color:rgba(255,255,255,.65);margin-bottom:20px}
.pl-crumbs a{color:rgba(255,255,255,.65);text-decoration:none}
.pl-crumbs .here{color:var(--orange);font-weight:700}
.pl-hero h1{font-size:clamp(2.4rem,4.8vw,3.6rem);margin:.2rem 0 .8rem;color:#fff;font-family:'Sora',sans-serif;font-weight:800;letter-spacing:-.02em}
.pl-hero h1 em{font-style:normal;color:var(--orange)}
.pl-hero p{font-size:1.1rem;color:rgba(255,255,255,.82);max-width:600px}

/* Filter card — floats over the hero's bottom edge */
.pl-filter-strip{position:relative;z-index:3;margin-top:-38px;margin-bottom:10px}
.pl-filter-card{background:#fff;border-radius:16px;box-shadow:0 18px 44px rgba(10,27,51,.16);padding:20px 26px;display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.filter-label{font-size:.82rem;font-weight:700;color:var(--muted);text-transform:uppercase;letter-spacing:.06em;margin-right:4px}
.fchip{position:relative;border:1.5px solid var(--line-2);background:#fff;border-radius:999px;padding:.55rem 1.3rem;font-size:.92rem;font-weight:700;color:var(--navy);cursor:pointer;transition:all .2s ease;display:inline-flex;align-items:center;gap:8px;text-decoration:none}
.fchip:hover{border-color:var(--orange);color:var(--orange-deep)}
.fchip.on{background:var(--navy);border-color:var(--navy);color:#fff;box-shadow:0 8px 18px -8px rgba(10,27,51,.5)}
.fchip .ct{font-size:.78rem;opacity:.6;font-weight:600}
.fchip.on .ct{opacity:.85}
.fdot{width:7px;height:7px;border-radius:50%;background:var(--orange);flex-shrink:0}
.fchip.on .fdot{background:#fff}

/* Sort / Duration / Trip-type bar — sits right under the destination filter */
.pl-sortbar{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-bottom:24px}
.pl-sort-form{display:flex;gap:14px;flex-wrap:wrap;align-items:flex-end}
.pl-sort-field{display:flex;flex-direction:column;gap:4px}
.pl-sort-field span{font-size:.74rem;font-weight:700;color:var(--muted);text-transform:uppercase;letter-spacing:.05em}
.pl-sort-field select{border:1.5px solid var(--line-2);border-radius:10px;padding:.6rem .9rem;font-family:inherit;font-size:.92rem;color:var(--navy);background:#fff;cursor:pointer;min-width:170px}
.pl-sort-field select:focus{outline:none;border-color:var(--orange)}
.pl-type-chips{display:flex;gap:8px;flex-wrap:wrap}
.fchip.small{padding:.4rem .9rem;font-size:.84rem}

@media(max-width:680px){
  .pl-sortbar{flex-direction:column;align-items:stretch}
  .pl-sort-form{flex-direction:column;align-items:stretch}
  .pl-sort-field select{min-width:0;width:100%}
}

/* Cards section — plain block, NOT the dest-cards pull-up pattern */
.pl-cards-section{padding:34px 0 60px 0}
.results-bar{display:flex;justify-content:space-between;align-items:center;padding-bottom:22px;border-bottom:1px solid var(--line);margin-bottom:30px;flex-wrap:wrap;gap:8px}
.results-bar .count{font-size:.92rem;color:var(--muted)}
.results-bar .count b{color:var(--navy)}
.pl-tagline{font-size:.86rem;color:var(--muted)}

/* About-this-destination strip — shown only on destination-filtered listings */
.pl-about{background:var(--tint);border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:44px 0}
.pl-about-grid{display:grid;grid-template-columns:1.6fr 1fr;gap:40px;align-items:center}
.pl-about h3{font-size:1.3rem;margin-bottom:.6rem}
.pl-about p{color:var(--ink);line-height:1.8;font-size:.98rem}
.pl-about-cta{background:#fff;border:1px solid var(--line);border-radius:14px;padding:18px 20px;box-shadow:var(--shadow-sm);text-align:center}
.pl-about-cta .lbl{font-size:.78rem;color:var(--muted);text-transform:uppercase;letter-spacing:.05em;font-weight:700;margin-bottom:6px}
.pl-about-cta .val{font-family:'Sora',sans-serif;font-weight:800;font-size:1.3rem;color:var(--navy);margin-bottom:10px}

/* Final CTA — dark radial gradient, dedicated (not shared with home/.final) */
.pl-final{background:radial-gradient(ellipse 900px 500px at 50% -8%,rgba(253,153,2,.16),rgba(253,153,2,0) 65%),linear-gradient(165deg,#15335C 0%,#0A1B33 55%,#011026 100%);color:#E6ECF5;text-align:center;border-bottom:1px solid rgba(253,153,2,.2)}
.pl-final .wrap{padding:74px 24px}
.pl-final .eyebrow{color:var(--orange);justify-content:center}
.pl-final h2{font-size:clamp(2rem,4.2vw,2.9rem);color:#fff;margin:1rem 0;font-weight:800;font-family:'Sora',sans-serif;letter-spacing:-.02em}
.pl-final h2 em{font-style:normal;color:var(--orange)}
.pl-final p{color:#CBD4E2;max-width:44ch;margin:0 auto 1.7rem;font-size:1.08rem}
.pl-final .sig-note{font-family:'Caveat',cursive;font-weight:700;font-size:1.5rem;color:var(--orange);display:block;margin-top:1.3rem;transform:rotate(-1.5deg)}

@media(max-width:960px){
  .pl-filter-strip{margin-top:-26px}
  .pl-filter-card{padding:14px 16px;gap:8px}
  .results-bar{flex-direction:column;align-items:flex-start}
  .pl-about-grid{grid-template-columns:1fr}
}

/* ============================================================
   SINGLE ITINERARY — dedicated si-* classes (byte-match of the
   approved mockup). Deliberately NOT shared with single-package.php's
   .book-*/.hero/.final classes, so a future edit to one page can
   never silently break the other again.
   ============================================================ */

/* Hero — full-bleed banner */
.si-hero{position:relative;min-height:560px;max-height:900px;display:flex;align-items:flex-end;overflow:hidden;background:var(--navy)}
.si-hero-bg{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;overflow:hidden}
.si-hero-bg img{position:absolute;top:0;left:0;width:100%;height:100%;max-width:none;object-fit:cover;object-position:center}
.si-hero::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,17,33,.15) 0%,rgba(7,17,33,.35) 45%,rgba(7,17,33,.92) 100%);z-index:1}
.si-hero-in{position:relative;z-index:2;width:100%;padding-top:130px;padding-bottom:44px}
.si-crumbs{display:flex;gap:8px;font-size:.85rem;color:rgba(255,255,255,.7);flex-wrap:wrap;margin-bottom:20px}
.si-crumbs a{color:rgba(255,255,255,.7);text-decoration:none}
.si-crumbs .here{color:var(--orange);font-weight:700}
.si-pill{display:inline-flex;align-items:center;gap:.5rem;font-size:.85rem;font-weight:700;color:#231400;background:var(--orange);padding:.42rem .9rem;border-radius:999px;margin-bottom:1.1rem}
.si-pill .live{width:8px;height:8px;border-radius:50%;background:#231400}
.si-hero h1{font-size:clamp(2.2rem,5vw,3.6rem);margin:.2rem 0 .7rem;font-weight:800;color:#fff;font-family:'Sora',sans-serif;letter-spacing:-.02em}
.si-route-line{font-size:1.1rem;color:rgba(255,255,255,.85);font-weight:600;margin-bottom:1.3rem}
.si-route-line b{color:#fff}
.si-hero-actions{display:flex;gap:.8rem;flex-wrap:wrap;margin-bottom:1.9rem}
.btn-ghost-light{border-color:rgba(255,255,255,.5);color:#fff}
.btn-ghost-light:hover{background:#fff;color:var(--navy)}
.si-proof{display:flex;gap:0;flex-wrap:wrap;align-items:stretch;background:rgba(255,255,255,.08);backdrop-filter:blur(6px);border:1px solid rgba(255,255,255,.15);border-radius:14px;overflow:hidden;max-width:fit-content}
.si-proof-item{padding:14px 22px;text-align:center}
.si-proof-item .num{font-family:'Sora',sans-serif;font-size:1.4rem;font-weight:800;line-height:1;color:#fff}
.si-proof-item .num span{color:var(--orange)}
.si-proof-item .lbl{font-size:.76rem;color:rgba(255,255,255,.7);font-weight:500;margin-top:3px}
.si-proof-div{width:1px;background:rgba(255,255,255,.18)}
.si-note{position:static;background:#FFFDF7;border-radius:12px;box-shadow:var(--shadow);padding:12px 15px 12px 12px;display:flex;gap:9px;align-items:flex-start;max-width:280px;transform:rotate(-1.5deg);margin-top:20px}
.si-note .wn-face{width:34px;height:34px;border-radius:50%;overflow:hidden;flex-shrink:0;border:2px solid #fff}
.si-note .wn-face img{width:100%;height:100%;object-fit:cover}
.si-note p{font-family:'Caveat',cursive;font-weight:600;font-size:1.02rem;line-height:1.2;color:var(--navy)}

/* Free-vs-paid clarity strip */
.si-model{background:var(--navy);color:#DCE5F1;font-size:.88rem}
.si-model-in{max-width:1180px;margin:0 auto;padding:12px 24px;display:flex;gap:1.3rem;align-items:center;justify-content:center;flex-wrap:wrap}
.si-model b{color:#fff}
.si-model-dot{width:4px;height:4px;border-radius:50%;background:var(--orange);flex-shrink:0}

/* Layout */
.si-layout{display:grid;grid-template-columns:1.7fr 1fr;gap:48px;align-items:start;padding-top:52px}
.si-main section{margin-bottom:50px}
.si-main h2{font-size:1.55rem;margin-bottom:14px}

/* Places covered */
.si-place-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.si-place-card{border-radius:16px;overflow:hidden;box-shadow:var(--shadow-sm);position:relative;height:220px;display:block}
.si-place-card .img{height:100%}
.si-place-card::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,17,33,0) 45%,rgba(7,17,33,.82) 100%)}
.si-place-card .pb{position:absolute;left:0;right:0;bottom:0;z-index:2;padding:16px 18px}
.si-place-card .n{display:inline-flex;width:24px;height:24px;border-radius:50%;background:var(--orange);color:#231400;font-size:.78rem;font-weight:800;align-items:center;justify-content:center;margin-bottom:8px}
.si-place-card h4{font-size:1.2rem;color:#fff;font-family:'Sora',sans-serif}
.si-place-card .days{font-size:.82rem;color:rgba(255,255,255,.8)}

/* Full-bleed breather image */
.si-break{position:relative;height:380px;margin:0 -24px;border-radius:18px;overflow:hidden}
.si-break img{width:100%;height:100%;object-fit:cover}
.si-break::after{content:"";position:absolute;inset:0;background:rgba(7,17,33,.28)}
.si-break .cap{position:absolute;left:22px;right:22px;bottom:20px;z-index:2;color:#fff;font-family:'Caveat',cursive;font-size:1.4rem;text-shadow:0 2px 10px rgba(0,0,0,.4)}

/* Map */
.si-map{border-radius:16px;overflow:hidden;border:1px solid var(--line);box-shadow:var(--shadow-sm);position:relative;background:#EFF3F8}
.si-map-note{padding:12px 16px;border-top:1px solid var(--line);background:#fff;font-size:.82rem;color:var(--muted)}

/* Day-by-day extras: photo + cost table */
.si-day-photo{border-radius:10px;overflow:hidden;height:150px;margin-bottom:14px}
.si-cost-table{border:1px solid var(--line);border-radius:10px;overflow:hidden}
.si-cost-table .cr{display:flex;justify-content:space-between;padding:8px 14px;font-size:.86rem;border-bottom:1px solid var(--line)}
.si-cost-table .cr:last-child{border-bottom:0;background:var(--tint);font-weight:800;color:var(--navy)}
.si-cost-table .cr span:first-child{color:var(--muted)}
.si-cost-table .cr:last-child span:first-child{color:var(--navy)}

/* Travel tips — scannable */
.si-tip-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.si-tip{display:flex;gap:10px;align-items:center;background:var(--tint);border-radius:10px;padding:12px 14px}
.si-tip .ic{width:30px;height:30px;border-radius:8px;background:var(--orange-soft);color:var(--orange-deep);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:.95rem}
.si-tip .t{font-size:.86rem;line-height:1.35}
.si-tip .t b{display:block;color:var(--navy);font-weight:800;font-size:.92rem;font-family:'Sora',sans-serif}
.si-tip .t span{color:var(--muted)}

/* Sidebar — dedicated, not shared with package's .book-* */
.si-book{position:sticky;top:80px}
.si-book-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden}
.si-book-top{padding:20px 22px 6px;text-align:center}
.si-free-badge{display:inline-flex;align-items:center;gap:6px;background:var(--green-soft);color:var(--green);font-weight:800;font-size:.85rem;padding:.4rem .9rem;border-radius:999px;margin-bottom:10px}
.si-book-top .est{font-size:.78rem;color:var(--muted);font-weight:600;text-transform:uppercase;letter-spacing:.05em;margin-top:10px}
.si-book-top .price{font-family:'Sora',sans-serif;font-weight:800;font-size:1.7rem;color:var(--navy);line-height:1.15}
.si-book-top .price small{font-size:.78rem;color:var(--muted);font-weight:500}
.si-book-rows{padding:14px 22px}
.si-book-rows .row{display:flex;justify-content:space-between;gap:14px;padding:10px 0;border-bottom:1px solid var(--line);font-size:.9rem}
.si-book-rows .row:last-child{border-bottom:0}
.si-book-rows .k{color:var(--muted)}
.si-book-rows .v{font-weight:700;color:var(--navy);text-align:right}
.si-book-cta{padding:8px 22px 20px;display:grid;gap:9px}
.si-book-cta .fine{font-size:.76rem;color:var(--muted);text-align:center;margin-top:2px}
.si-note2{background:var(--orange-soft);border-radius:12px;padding:13px 15px;display:flex;gap:10px;align-items:flex-start;margin-top:16px}
.si-note2 .wn-face{width:32px;height:32px;border-radius:50%;overflow:hidden;flex-shrink:0}
.si-note2 .wn-face img{width:100%;height:100%;object-fit:cover}
.si-note2 .tag{font-family:'Plus Jakarta Sans',sans-serif;font-size:.68rem;color:var(--muted);text-transform:uppercase;letter-spacing:.05em;display:block;margin-top:2px}

/* Related — prominent */
.si-related{background:var(--tint);border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:70px 0;margin-top:20px}
.si-related .itin{transition:transform .25s ease,box-shadow .25s ease}
.si-related .itin:hover{transform:translateY(-8px);box-shadow:var(--shadow)}
.si-related .itin .img{height:230px}
.si-related .itin .img img{transition:transform .5s ease}
.si-related .itin:hover .img img{transform:scale(1.06)}
.si-related .go{display:inline-block;margin-top:12px;font-weight:700;font-size:.86rem;color:var(--navy)}
.si-related .itin:hover .go{color:var(--orange-deep)}

/* Final CTA — dedicated, not shared */
.si-final{background:radial-gradient(ellipse 900px 500px at 50% -8%,rgba(253,153,2,.16),rgba(253,153,2,0) 65%),linear-gradient(165deg,#15335C 0%,#0A1B33 55%,#011026 100%);color:#E6ECF5;text-align:center;border-bottom:1px solid rgba(253,153,2,.2)}
.si-final .wrap{padding:74px 24px}
.si-final .eyebrow{color:var(--orange);justify-content:center}
.si-final h2{font-size:clamp(2rem,4.2vw,2.9rem);color:#fff;margin:1rem 0;font-weight:800;font-family:'Sora',sans-serif;letter-spacing:-.02em}
.si-final h2 em{font-style:normal;color:var(--orange)}
.si-final p{color:#CBD4E2;max-width:44ch;margin:0 auto 1.7rem;font-size:1.08rem}
.si-final .sig-note{font-family:'Caveat',cursive;font-weight:700;font-size:1.5rem;color:var(--orange);display:block;margin-top:1.3rem;transform:rotate(-1.5deg)}

@media(max-width:960px){
  .si-layout{grid-template-columns:1fr}
  .si-book{position:static;margin-top:0;order:-1;margin-bottom:36px}
  .si-tip-grid,.si-place-grid{grid-template-columns:1fr 1fr}
  .si-hero{min-height:420px}
  .si-hero-in{padding-top:96px;padding-bottom:32px}
  .si-break{height:220px;margin:0 -16px;border-radius:0}
  .si-proof{max-width:100%}
}

@media(max-width:680px){
  .si-hero-in{padding-top:88px;padding-bottom:26px}
  .si-hero h1{font-size:clamp(1.9rem,7vw,2.4rem)}
  .si-route-line{font-size:.95rem}
  .si-hero-actions{flex-direction:column;align-items:stretch}
  .si-hero-actions .btn{width:100%}
  .si-proof{display:grid;grid-template-columns:1fr 1fr;border-radius:12px;max-width:100%;gap:1px;background:rgba(255,255,255,.18)}
  .si-proof-item{padding:12px 10px;background:rgba(10,27,51,.55)}
  .si-proof-div{display:none}
  .si-note{max-width:100%;margin-top:16px}
  .si-model-in{flex-direction:column;gap:.5rem;text-align:center;padding:12px 16px}
  .si-model-dot{display:none}
  .si-layout{padding-top:32px;gap:32px}
  .si-main section{margin-bottom:38px}
  .si-place-grid,.si-tip-grid{grid-template-columns:1fr}
  .si-place-card{height:180px}
  .si-break{height:190px}
  .si-break .cap{font-size:1.15rem;left:14px;right:14px;bottom:14px}
  .si-day-photo{height:130px}
  .si-related .itin .img{height:190px}
  .si-final .wrap{padding:52px 20px}
  .si-final h2{font-size:clamp(1.7rem,7vw,2.2rem)}
}

@media(max-width:420px){
  .si-hero-actions{gap:.6rem}
  .si-book-rows .row{flex-direction:column;align-items:flex-start;gap:2px}
  .si-book-rows .v{text-align:left}
  .si-place-card h4{font-size:1.05rem}
}

/* ============================================================
   ABOUT PAGE — dedicated ab-* classes (byte-match of the approved
   mockup). Not shared with any other page's hero/final classes.
   ============================================================ */
.ab-hero{position:relative;overflow:hidden;padding:60px 0 50px;background:linear-gradient(180deg,#FFFBF4 0%,#FFFFFF 82%)}
.ab-route{position:absolute;inset:0;width:100%;height:100%;z-index:0;pointer-events:none}
.ab-hero .wrap{position:relative;z-index:1;text-align:center;max-width:760px}
.ab-hero h1{font-size:clamp(2.3rem,5vw,3.4rem);margin:1rem 0 1rem}
.ab-hero h1 em{font-style:normal;color:var(--orange)}
.ab-hero p{font-size:1.15rem;color:var(--muted);max-width:56ch;margin:0 auto}

.ab-story{padding:70px 0}
.ab-story-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:56px;align-items:center}
.ab-photo-wrap{position:relative}
.ab-photo{border-radius:20px;overflow:hidden;box-shadow:var(--shadow);height:460px}
.ab-note{position:absolute;bottom:-18px;left:-20px;background:#FFFDF7;border:1px solid var(--line-2);border-radius:12px;box-shadow:var(--shadow);padding:14px 18px;max-width:230px;transform:rotate(-2.5deg)}
.ab-note p{font-family:'Caveat',cursive;font-weight:600;font-size:1.2rem;color:var(--navy);line-height:1.25}
.ab-story-text h2{font-size:clamp(1.8rem,3.6vw,2.5rem);margin-bottom:1.1rem}
.ab-story-text h2 em{font-style:normal;color:var(--orange)}
.ab-sig{font-family:'Caveat',cursive;font-weight:700;font-size:1.7rem;color:var(--navy);margin-top:1.4rem;display:block}

.ab-stats{background:var(--navy);padding:44px 0}
.ab-stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;text-align:center}
.ab-stat .num{font-family:'Sora',sans-serif;font-weight:800;font-size:2.2rem;color:#fff}
.ab-stat .num span{color:var(--orange)}
.ab-stat .lbl{font-size:.85rem;color:rgba(255,255,255,.7);margin-top:4px}

.ab-steps{padding:74px 0}
.ab-steps .sec-head{text-align:center;max-width:600px;margin:0 auto 46px}
.ab-steps .sec-head h2{font-size:clamp(1.9rem,3.8vw,2.5rem);margin-top:.7rem}
.ab-steps .sec-head h2 em{font-style:normal;color:var(--orange)}
.step-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.step-card{background:var(--tint);border-radius:16px;padding:26px 22px;position:relative}
.step-card .n{width:38px;height:38px;border-radius:50%;background:var(--navy);color:var(--orange);font-family:'Sora',sans-serif;font-weight:800;display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.step-card h3{font-size:1.08rem;margin-bottom:8px}
.step-card p{font-size:.9rem;color:var(--muted);line-height:1.6}

.ab-values{background:var(--tint);padding:70px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.value-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.value-card{background:#fff;border:1px solid var(--line);border-radius:16px;padding:28px 24px;box-shadow:var(--shadow-sm)}
.value-card .ic{font-size:1.8rem;margin-bottom:12px}
.value-card h3{font-size:1.1rem;margin-bottom:8px}
.value-card p{font-size:.92rem;color:var(--muted);line-height:1.65}

.ab-final{background:radial-gradient(ellipse 900px 500px at 50% -8%,rgba(253,153,2,.16),rgba(253,153,2,0) 65%),linear-gradient(165deg,#15335C 0%,#0A1B33 55%,#011026 100%);color:#E6ECF5;text-align:center;border-bottom:1px solid rgba(253,153,2,.2)}
.ab-final .wrap{padding:74px 24px}
.ab-final .eyebrow{color:var(--orange);justify-content:center}
.ab-final h2{font-size:clamp(2rem,4.2vw,2.9rem);color:#fff;margin:1rem 0;font-weight:800;font-family:'Sora',sans-serif}
.ab-final h2 em{font-style:normal;color:var(--orange)}
.ab-final p{color:#CBD4E2;max-width:44ch;margin:0 auto 1.7rem;font-size:1.08rem}
.ab-sig-note{font-family:'Caveat',cursive;font-weight:700;font-size:1.5rem;color:var(--orange);display:block;margin-top:1.3rem;transform:rotate(-1.5deg)}

@media(max-width:960px){
  .ab-story-grid{grid-template-columns:1fr;gap:36px}
  .ab-photo{height:380px}
  .step-grid{grid-template-columns:1fr 1fr}
  .value-grid{grid-template-columns:1fr 1fr}
  .ab-stats-grid{grid-template-columns:1fr 1fr;gap:28px 20px}
}
@media(max-width:680px){
  .ab-hero{padding:44px 0 36px}
  .ab-story{padding:48px 0}
  .ab-photo{height:300px}
  .ab-note{position:static;transform:rotate(-1deg);margin-top:14px;max-width:100%}
  .step-grid,.value-grid{grid-template-columns:1fr}
  .ab-stats-grid{grid-template-columns:1fr 1fr}
  .ab-steps,.ab-values{padding:48px 0}
  .ab-final .wrap{padding:52px 20px}
}

/* ============================================================
   AUTHOR PAGE — dedicated au-* classes
   ============================================================ */
.au-hero{position:relative;overflow:hidden;padding:56px 0 46px;background:linear-gradient(180deg,#FFFBF4 0%,#FFFFFF 82%)}
.au-route{position:absolute;inset:0;width:100%;height:100%;z-index:0;pointer-events:none}
.au-hero .wrap{position:relative;z-index:1}
.au-grid{display:grid;grid-template-columns:auto 1fr;gap:36px;align-items:center}
.au-avatar{width:150px;height:150px;border-radius:50%;overflow:hidden;box-shadow:var(--shadow);border:4px solid #fff;flex-shrink:0}
.au-avatar img{width:100%;height:100%;object-fit:cover}
.au-info h1{font-size:clamp(1.9rem,4vw,2.6rem);margin-bottom:.6rem}
.au-info p.bio{color:var(--muted);font-size:1.05rem;max-width:60ch;margin-bottom:1.1rem}
.au-trust{display:flex;gap:1.6rem;flex-wrap:wrap;align-items:center}
.au-trust-item{display:flex;flex-direction:column}
.au-trust-item .num{font-family:'Sora',sans-serif;font-weight:800;font-size:1.4rem;color:var(--navy)}
.au-trust-item .num span{color:var(--orange)}
.au-trust-item .lbl{font-size:.78rem;color:var(--muted)}
.au-trust-div{width:1px;height:32px;background:var(--line-2)}

.au-bio{padding:60px 0}
.au-bio-grid{display:grid;grid-template-columns:1fr .8fr;gap:48px;align-items:start}
.au-bio-text h2{font-size:1.5rem;margin-bottom:1rem}
.au-bio-text h2 em{font-style:normal;color:var(--orange)}
.au-bio-text p{margin-bottom:1.05rem;font-size:1rem;line-height:1.85;color:var(--ink)}
.au-cred-list{list-style:none;margin-top:1.2rem}
.au-cred-list li{display:flex;gap:10px;align-items:flex-start;font-size:.93rem;color:var(--ink);margin-bottom:.7rem;line-height:1.5}
.au-cred-list li .ck{color:var(--orange);font-weight:800;flex-shrink:0}
.au-org{background:var(--navy);border-radius:20px;padding:32px 30px;color:#fff}
.au-org .eyebrow{color:var(--orange);margin-bottom:.8rem}
.au-org h3{color:#fff;font-size:1.25rem;margin-bottom:.7rem}
.au-org p{color:rgba(255,255,255,.75);font-size:.92rem;line-height:1.7;margin-bottom:1.2rem}
.au-org a.link{color:var(--orange);font-weight:700;font-size:.9rem}

.au-posts{padding:60px 0}
.au-posts .sec-head{margin-bottom:30px}
.au-posts .sec-head h2{font-size:1.6rem}

.au-final{background:radial-gradient(ellipse 900px 500px at 50% -8%,rgba(253,153,2,.16),rgba(253,153,2,0) 65%),linear-gradient(165deg,#15335C 0%,#0A1B33 55%,#011026 100%);color:#E6ECF5;text-align:center;border-bottom:1px solid rgba(253,153,2,.2)}
.au-final .wrap{padding:74px 24px}
.au-final .eyebrow{color:var(--orange);justify-content:center}
.au-final h2{font-size:clamp(2rem,4.2vw,2.9rem);color:#fff;margin:1rem 0;font-weight:800;font-family:'Sora',sans-serif}
.au-final h2 em{font-style:normal;color:var(--orange)}
.au-final p{color:#CBD4E2;max-width:44ch;margin:0 auto 1.7rem;font-size:1.08rem}
.au-sig-note{font-family:'Caveat',cursive;font-weight:700;font-size:1.5rem;color:var(--orange);display:block;margin-top:1.3rem;transform:rotate(-1.5deg)}

@media(max-width:960px){
  .au-bio-grid{grid-template-columns:1fr;gap:30px}
}
@media(max-width:680px){
  .au-hero{padding:40px 0 32px}
  .au-grid{grid-template-columns:1fr;text-align:center;gap:18px}
  .au-avatar{width:110px;height:110px;margin:0 auto}
  .au-info p.bio{margin-left:auto;margin-right:auto}
  .au-trust{justify-content:center}
  .au-bio{padding:40px 0}
  .au-posts{padding:40px 0}
  .au-final .wrap{padding:52px 20px}
}

/* ============================================================
   CONTACT PAGE — dedicated co-* classes
   ============================================================ */
.co-hero{position:relative;overflow:hidden;padding:60px 0 40px;background:linear-gradient(180deg,#FFFBF4 0%,#FFFFFF 82%);text-align:center}
.co-route{position:absolute;inset:0;width:100%;height:100%;z-index:0;pointer-events:none}
.co-hero .wrap{position:relative;z-index:1;max-width:640px}
.co-hero h1{font-size:clamp(2.2rem,4.6vw,3.1rem);margin:1rem 0 1rem}
.co-hero h1 em{font-style:normal;color:var(--orange)}
.co-hero p{color:var(--muted);font-size:1.1rem}

.co-cards{padding:20px 0 70px}
.co-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:stretch}
.co-side{display:flex;flex-direction:column;gap:20px}
.co-card{background:#fff;border:1px solid var(--line);border-radius:18px;padding:26px 24px;box-shadow:var(--shadow-sm);display:flex;gap:16px;align-items:flex-start;flex:1;text-decoration:none;color:inherit;transition:transform .18s ease,box-shadow .18s ease}
.co-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.co-card .ic{width:44px;height:44px;border-radius:12px;background:var(--orange-soft);color:var(--orange-deep);display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0}
.co-card h3{font-size:1.05rem;margin-bottom:.35rem}
.co-card p{font-size:.9rem;color:var(--muted);line-height:1.55}
.co-card .link{color:var(--orange-deep);font-weight:700;font-size:.92rem;display:inline-block;margin-top:.4rem}
.co-card-whatsapp{border-color:rgba(37,211,102,.3);background:var(--green-soft)}

.co-form-card{background:#fff;border:1px solid var(--line);border-radius:22px;box-shadow:var(--shadow);padding:44px 44px;max-width:720px;margin:0 auto}
.co-form-primary{max-width:none;margin:0}
.co-form-card .sec-head h2{font-size:clamp(1.7rem,3.4vw,2.1rem)}
.co-form-card .sec-head h2 em{font-style:normal;color:var(--orange)}
.co-form-card .sec-head p{color:var(--muted);font-size:.98rem;margin-top:.5rem}
.co-form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
.co-field{display:flex;flex-direction:column;gap:6px}
.co-field.full{grid-column:1/-1}
.co-field label{font-size:.85rem;font-weight:700;color:var(--navy)}
.co-field input,.co-field select,.co-field textarea{border:1.5px solid var(--line-2);border-radius:10px;padding:.75rem .9rem;font-family:inherit;font-size:.95rem;color:var(--ink);background:#fff}
.co-field input:focus,.co-field select:focus,.co-field textarea:focus{outline:none;border-color:var(--orange)}
.co-field textarea{resize:vertical;min-height:90px}
.co-form-card .btn{width:100%;margin-top:6px;padding:1rem}
.co-form-fine{text-align:center;font-size:.82rem;color:var(--muted);margin-top:14px}

.co-note{background:var(--tint);border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:60px 0}
.co-note-grid{display:grid;grid-template-columns:auto 1fr;gap:26px;align-items:center;max-width:760px;margin:0 auto;text-align:left}
.co-note-face{width:76px;height:76px;border-radius:50%;overflow:hidden;box-shadow:var(--shadow-sm);flex-shrink:0}
.co-note-face img{width:100%;height:100%;object-fit:cover}
.co-note p{font-family:'Caveat',cursive;font-size:1.5rem;color:var(--navy);line-height:1.3}
.co-note .who{font-family:'Plus Jakarta Sans',sans-serif;font-size:.85rem;color:var(--muted);margin-top:.5rem;font-weight:600}

.co-faq{padding:70px 0}
.co-faq .sec-head{text-align:center;max-width:600px;margin:0 auto 40px}
.co-faq .sec-head h2{font-size:clamp(1.8rem,3.6vw,2.4rem);margin-top:.7rem}
.co-faq .sec-head h2 em{font-style:normal;color:var(--orange)}

@media(max-width:960px){
  .co-grid{grid-template-columns:1fr}
}
@media(max-width:680px){
  .co-hero{padding:44px 0 30px}
  .co-form-card{padding:28px 22px}
  .co-form-row{grid-template-columns:1fr}
  .co-card{flex-direction:column;text-align:center;align-items:center}
  .co-note-grid{grid-template-columns:1fr;text-align:center}
  .co-note-face{margin:0 auto}
  .co-faq,.co-note{padding:44px 0}
}

/* ============================================================
   BLOG ARTICLE (single.php) — dedicated art-* classes, full-bleed
   hero, EEAT byline, sticky sidebar (TOC + Categories + Popular),
   Gutenberg core-block styling so the block editor "just works" on
   brand with zero manual CSS classes needed from the author.
   ============================================================ */

.art-hero{position:relative;min-height:520px;display:flex;align-items:flex-end;overflow:hidden;background:var(--navy)}
.art-hero-bg{position:absolute;inset:0}
.art-hero-bg img{width:100%;height:100%;object-fit:cover}
.art-hero::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,17,33,.1) 0%,rgba(7,17,33,.4) 55%,rgba(7,17,33,.94) 100%);z-index:1}
.art-hero-in{position:relative;z-index:2;width:100%;padding-top:120px;padding-bottom:40px;max-width:900px;margin:0 auto}
.art-crumbs{display:flex;gap:8px;font-size:.85rem;color:rgba(255,255,255,.7);flex-wrap:wrap;margin-bottom:18px}
.art-crumbs a{color:rgba(255,255,255,.7);text-decoration:none}
.art-tag{display:inline-flex;background:var(--orange);color:#231400;font-size:.76rem;font-weight:800;padding:.35rem .9rem;border-radius:999px;text-transform:uppercase;letter-spacing:.05em;margin-bottom:18px}
.art-hero h1{font-size:clamp(2.3rem,5.4vw,3.6rem);margin-bottom:18px;color:#fff;font-family:'Sora',sans-serif;font-weight:800;letter-spacing:-.02em}
.art-dek{font-size:1.2rem;color:rgba(255,255,255,.85);margin-bottom:26px;line-height:1.6;max-width:70ch}

.art-byline{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.art-byline img{width:64px;height:64px;border-radius:50%;flex-shrink:0;border:3px solid rgba(255,255,255,.25)}
.art-byline-info .by{font-size:.78rem;color:rgba(255,255,255,.65)}
.art-byline-info .name{font-weight:800;font-size:1.08rem;color:#fff}
.art-byline-info .name a:hover{color:var(--orange)}
.art-meta{display:flex;gap:14px;flex-wrap:wrap;font-size:.85rem;color:rgba(255,255,255,.7);margin-top:4px}
.art-meta b{color:#fff}

.art-layout{display:grid;grid-template-columns:1fr .36fr;gap:56px;align-items:start;padding:52px 0 0;max-width:1180px;margin:0 auto;padding-left:24px;padding-right:24px}
.art-body{max-width:760px}

.art-sidebar{position:sticky;top:80px;display:flex;flex-direction:column;gap:24px}
.side-widget{background:var(--tint);border-radius:16px;padding:22px 22px}
.side-widget .ttl{font-family:'Sora',sans-serif;font-weight:800;font-size:.85rem;color:var(--navy);margin-bottom:16px;text-transform:uppercase;letter-spacing:.05em;display:flex;align-items:center;gap:8px}
.side-widget .ttl .ic{color:var(--orange)}

.art-toc ol{list-style:none;counter-reset:toc}
.art-toc li{counter-increment:toc;margin-bottom:10px}
.art-toc a{font-size:.88rem;color:var(--ink);line-height:1.5;display:flex;gap:8px;text-decoration:none}
.art-toc a:hover{color:var(--orange-deep)}
.art-toc a::before{content:counter(toc);font-weight:800;color:var(--orange);flex-shrink:0}
.art-toc-cta{margin-top:16px;padding-top:16px;border-top:1px solid var(--line-2)}
.art-toc-cta p{font-size:.82rem;color:var(--muted);margin-bottom:10px}

.cat-list{list-style:none}
.cat-list li{margin-bottom:2px}
.cat-list a{display:flex;justify-content:space-between;align-items:center;font-size:.92rem;color:var(--ink);padding:.55rem 0;border-bottom:1px solid var(--line-2);text-decoration:none}
.cat-list li:last-child a{border-bottom:0}
.cat-list a:hover{color:var(--orange-deep)}
.cat-list .n{font-size:.76rem;color:var(--muted);background:#fff;border-radius:999px;padding:.15rem .55rem}

.pop-list{list-style:none}
.pop-item{display:flex;gap:12px;margin-bottom:16px}
.pop-item:last-child{margin-bottom:0}
.pop-item .img{width:64px;height:64px;border-radius:10px;flex-shrink:0}
.pop-item .num{font-family:'Sora',sans-serif;font-weight:800;font-size:1.3rem;color:var(--line-2);flex-shrink:0;width:20px}
.pop-item h5{font-size:.9rem;font-weight:700;color:var(--navy);line-height:1.35;margin-bottom:4px}
.pop-item .meta{font-size:.74rem;color:var(--muted)}

.art-body h2{font-size:1.6rem;margin:2.4rem 0 1rem}
.art-body h3{font-size:1.24rem;margin:2rem 0 .8rem}
.art-body p{margin-bottom:1.3rem;font-size:1.05rem;line-height:1.9;color:var(--ink)}
.art-body ul,.art-body ol{margin:0 0 1.3rem 1.4rem}
.art-body li{margin-bottom:.5rem;font-size:1.02rem;line-height:1.8}

/* Gutenberg core blocks */
.art-body .wp-block-image{margin:1.8rem 0}
.art-body .wp-block-image img{border-radius:14px;box-shadow:var(--shadow-sm)}
.art-body .wp-block-image figcaption{font-size:.84rem;color:var(--muted);margin-top:.6rem;text-align:center}
.art-body .wp-block-quote{font-family:'Caveat',cursive;font-size:1.7rem;color:var(--navy);border-left:3px solid var(--orange);padding-left:22px;margin:2rem 0;line-height:1.35;font-style:normal}
.art-body .wp-block-quote cite{display:block;font-family:'Plus Jakarta Sans',sans-serif;font-size:.85rem;color:var(--muted);margin-top:.5rem;font-style:normal}
.art-body .wp-block-pullquote{border-top:3px solid var(--orange);border-bottom:3px solid var(--orange);padding:1.6rem 0;text-align:center;margin:2.2rem 0}
.art-body .wp-block-pullquote p{font-family:'Sora',sans-serif;font-size:1.3rem;font-weight:700;color:var(--navy);line-height:1.4}
.art-body .wp-block-table table{width:100%;border-collapse:collapse;margin:1.8rem 0;font-size:.94rem}
.art-body .wp-block-table th,.art-body .wp-block-table td{padding:.7rem .9rem;border:1px solid var(--line);text-align:left}
.art-body .wp-block-table th{background:var(--tint);font-family:'Sora',sans-serif;font-weight:700;color:var(--navy)}
.art-body .wp-block-button__link{display:inline-flex;background:var(--orange);color:#231400;font-weight:700;padding:.85rem 1.5rem;border-radius:999px;text-decoration:none}
.art-body .wp-block-columns{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin:1.8rem 0}
.art-body .wp-block-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin:1.8rem 0}
.art-body .wp-block-gallery img{border-radius:10px}
.art-body .wp-block-embed{margin:1.8rem 0;border-radius:14px;overflow:hidden}
.art-body .wp-block-separator{border:0;border-top:1px solid var(--line);margin:2.4rem 0}

.art-exp{background:var(--orange-soft);border-left:3px solid var(--orange);border-radius:10px;padding:18px 22px;margin:1.8rem 0;display:flex;gap:14px;align-items:flex-start}
.art-exp .ic{font-size:1.3rem;flex-shrink:0}
.art-exp p{margin:0;font-size:.98rem;color:var(--navy);font-weight:600;line-height:1.6}

.art-cta{background:var(--navy);border-radius:18px;padding:28px 30px;margin:2.4rem 0;display:flex;align-items:center;gap:20px;flex-wrap:wrap;justify-content:space-between}
.art-cta div h4{color:#fff;font-size:1.1rem;margin-bottom:4px}
.art-cta div p{color:rgba(255,255,255,.7);font-size:.9rem;margin:0}

.art-author-card{background:var(--tint);border-radius:18px;padding:30px 28px;display:flex;gap:22px;align-items:flex-start;margin-top:3rem}
.art-author-card img{width:88px;height:88px;border-radius:50%;flex-shrink:0}
.art-author-card .lbl{font-size:.72rem;text-transform:uppercase;letter-spacing:.06em;color:var(--orange-deep);font-weight:800;margin-bottom:6px}
.art-author-card h4{font-size:1.2rem;margin-bottom:6px}
.art-author-card p{font-size:.94rem;color:var(--muted);line-height:1.6;margin-bottom:10px}
.art-author-card a.link{font-weight:700;font-size:.88rem;color:var(--orange-deep)}

.art-facts{display:flex;gap:1.5rem;flex-wrap:wrap;font-size:.82rem;color:var(--muted);margin-top:1.6rem;padding-top:1.6rem;border-top:1px solid var(--line)}
.art-facts b{color:var(--navy)}

@media(max-width:960px){
  .art-layout{grid-template-columns:1fr}
  .art-sidebar{position:static}
  .art-hero{min-height:440px}
}
@media(max-width:680px){
  .art-layout{padding-left:16px;padding-right:16px;padding-top:36px}
  .art-hero{min-height:400px}
  .art-hero-in{padding-top:96px;padding-bottom:30px}
  .art-byline img{width:52px;height:52px}
  .art-cta{flex-direction:column;align-items:stretch;text-align:center}
  .art-author-card{flex-direction:column;text-align:center;align-items:center}
  .art-author-card img{width:76px;height:76px}
  .art-body .wp-block-columns{grid-template-columns:1fr}
  .art-body .wp-block-gallery{grid-template-columns:1fr 1fr}
}

/* ============================================================
   BLOG HOME (home.php) — dedicated bl-* classes
   ============================================================ */
.bl-hero{position:relative;min-height:400px;display:flex;align-items:center;overflow:hidden;background:#0A1B33}
.bl-hero-bg{position:absolute;inset:0}
.bl-hero-bg img{width:100%;height:100%;object-fit:cover}
.bl-hero::after{content:"";position:absolute;inset:0;background:linear-gradient(100deg,rgba(7,17,33,.85) 15%,rgba(7,17,33,.5) 60%,rgba(7,17,33,.28));z-index:1}
.bl-hero-in{position:relative;z-index:2;width:100%;padding-top:100px;padding-bottom:76px}
.bl-crumbs{display:flex;gap:8px;font-size:.85rem;color:rgba(255,255,255,.65);flex-wrap:wrap;margin-bottom:20px}
.bl-crumbs a{color:rgba(255,255,255,.65);text-decoration:none}
.bl-crumbs .here{color:var(--orange);font-weight:700}
.bl-hero h1{font-size:clamp(2.4rem,4.8vw,3.6rem);margin:.2rem 0 .8rem;color:#fff;font-family:'Sora',sans-serif;font-weight:800}
.bl-hero h1 em{font-style:normal;color:var(--orange)}
.bl-hero p{font-size:1.1rem;color:rgba(255,255,255,.82);max-width:600px}

.bl-trust{background:var(--navy);color:#DCE5F1;font-size:.86rem}
.bl-trust-in{max-width:1180px;margin:0 auto;padding:11px 24px;display:flex;gap:1.2rem;align-items:center;justify-content:center;flex-wrap:wrap;text-align:center}
.bl-trust b{color:#fff}
.bl-trust-dot{width:4px;height:4px;border-radius:50%;background:var(--orange);flex-shrink:0}

.bl-featured-sec{padding:34px 0 20px}
.bl-featured{display:grid;grid-template-columns:1.15fr 1fr;gap:0;border-radius:22px;overflow:hidden;box-shadow:var(--shadow);border:1px solid var(--line);text-decoration:none;color:inherit}
.bl-featured .img{height:100%;min-height:340px}
.bl-featured-body{padding:38px 40px;display:flex;flex-direction:column;justify-content:center}
.bl-featured-tag{display:inline-flex;background:var(--orange-soft);color:var(--orange-deep);font-size:.74rem;font-weight:800;padding:.3rem .8rem;border-radius:999px;text-transform:uppercase;letter-spacing:.05em;margin-bottom:14px;width:fit-content}
.bl-featured-body h2{font-size:clamp(1.5rem,2.6vw,2rem);margin-bottom:12px}
.bl-featured-body p{color:var(--muted);font-size:1rem;line-height:1.7;margin-bottom:20px}
.bl-byline{display:flex;align-items:center;gap:10px}
.bl-byline img{width:36px;height:36px;border-radius:50%;flex-shrink:0}
.bl-byline .name{font-weight:700;font-size:.88rem;color:var(--navy)}
.bl-byline .meta{font-size:.78rem;color:var(--muted)}

.bl-grid-sec{padding:20px 0 70px}

@media(max-width:960px){
  .bl-featured{grid-template-columns:1fr}
  .bl-featured .img{min-height:220px}
  .fgrid{grid-template-columns:1fr 1fr}
}
@media(max-width:680px){
  .bl-hero-in{padding-top:88px;padding-bottom:26px}
  .bl-trust-in{flex-direction:column;gap:.4rem;padding:12px 16px}
  .bl-trust-dot{display:none}
  .bl-featured-body{padding:24px 20px}
  .bl-featured-sec,.bl-grid-sec{padding-top:20px;padding-bottom:36px}
}
