:root{
    --green-900:#0B3D2A;
    --green-800:#0E4D34;
    --green-700:#12603F;
    --green-600:#17784F;
    --gold-500:#C89B3C;
    --gold-400:#D9B15C;
    --gold-100:#F3E6C7;
    --cream:#FBF6EC;
    --cream-2:#F4EDDD;
    --ink:#17251D;
    --ink-soft:#4A5A50;
    --line:#DDD2B4;
    --white:#FFFFFF;
    --stamp:#A6432F;
    --shadow: 0 20px 60px -25px rgba(11,61,42,0.35);
    --mono:'Space Mono', monospace;
  }

  *{box-sizing:border-box; margin:0; padding:0;}

  html{scroll-behavior:smooth;}

  body{
    font-family:'Space Grotesk', sans-serif;
    background:var(--cream);
    color:var(--ink);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

  img{max-width:100%; display:block;}

  h1,h2,h3,h4{
    font-family:'Fraunces', serif;
    font-weight:600;
    line-height:1.08;
    letter-spacing:-0.01em;
    color:var(--green-900);
  }

  a{color:inherit; text-decoration:none;}

  .wrap{
    max-width:1240px;
    margin:0 auto;
    padding:0 40px;
  }

  .eyebrow{
    font-family:'Space Mono', monospace;
    font-size:12px;
    font-weight:700;
    letter-spacing:0.2em;
    text-transform:uppercase;
    color:var(--gold-500);
    display:flex;
    align-items:center;
    gap:10px;
  }
  .eyebrow::before{
    content:"";
    width:22px; height:1px;
    background:var(--gold-500);
    display:inline-block;
  }

  .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:14px 26px;
    border-radius:3px;
    font-family:'Space Grotesk', sans-serif;
    font-weight:600;
    font-size:14.5px;
    letter-spacing:0.01em;
    cursor:pointer;
    border:1px solid transparent;
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    white-space:nowrap;
  }
  .btn-primary{
    background:var(--green-800);
    color:var(--cream);
  }
  .btn-primary:hover{ background:var(--green-900); transform:translateY(-2px); box-shadow:var(--shadow);}
  .btn-gold{
    background:var(--gold-500);
    color:var(--green-900);
  }
  .btn-gold:hover{ background:var(--gold-400); transform:translateY(-2px); }
  .btn-ghost{
    background:transparent;
    border:1px solid var(--green-900);
    color:var(--green-900);
  }
  .btn-ghost:hover{ background:var(--green-900); color:var(--cream); }
  .btn-ghost-light{
    background:transparent;
    border:1px solid rgba(251,246,236,0.4);
    color:var(--cream);
  }
  .btn-ghost-light:hover{ background:rgba(251,246,236,0.12); border-color:var(--cream);}

  /* ---------------- TOP CONTACT BAR ---------------- */
  .topbar{
    background:var(--green-900);
    color:rgba(251,246,236,0.85);
    border-bottom:1px solid rgba(200,155,60,0.25);
  }
  .topbar .wrap{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:28px;
    padding-top:9px;
    padding-bottom:9px;
  }
  .topbar a{
    font-family:var(--mono);
    font-size:12.5px;
    font-weight:600;
    letter-spacing:0.02em;
    color:rgba(251,246,236,0.85);
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:color .2s ease;
  }
  .topbar a:hover{ color:var(--gold-400); }
  .topbar a svg{ width:14px; height:14px; color:var(--gold-400); flex-shrink:0; }

  /* ---------------- PERFORATION UTILITY ---------------- */
  .perf-h{
    height:2px;
    background-image:radial-gradient(circle, var(--cream) 3px, transparent 3.2px);
    background-size:16px 2px;
    background-repeat:repeat-x;
    background-position:center;
  }
  .perf-h.on-white{ background-image:radial-gradient(circle, var(--white) 3px, transparent 3.2px); }
  .perf-h.on-cream2{ background-image:radial-gradient(circle, var(--cream-2) 3px, transparent 3.2px); }
  .perf-v{
    width:2px;
    background-image:radial-gradient(circle, var(--cream) 3px, transparent 3.2px);
    background-size:2px 18px;
    background-repeat:repeat-y;
    background-position:center;
  }

  /* ---------------- NAV ---------------- */
  header{
    position:sticky; top:0; z-index:100;
    background:rgba(251,246,236,0.88);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  nav.wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:84px;
  }
  .logo-mark{ height:34px; width:auto; }
  .nav-links{
    display:flex;
    align-items:center;
    gap:36px;
    font-size:14.5px;
    font-weight:500;
  }
  .nav-links a{
    position:relative;
    color:var(--ink);
    padding:4px 0;
  }
  .nav-links a::after{
    content:"";
    position:absolute; left:0; bottom:-2px;
    width:0; height:1.5px;
    background:var(--gold-500);
    transition:width .25s ease;
  }
  .nav-links a:hover::after{ width:100%; }
  .nav-cta{ display:flex; align-items:center; gap:14px; }
  .nav-phone{ font-size:14px; font-weight:600; color:var(--green-800); display:flex; align-items:center; gap:8px;}

  /* ---------------- MOBILE MENU ---------------- */
  .burger{
    display:none;
    width:40px; height:40px;
    align-items:center; justify-content:center;
    background:transparent;
    border:1px solid var(--line);
    border-radius:6px;
    color:var(--green-900);
    cursor:pointer;
    flex-shrink:0;
    position:relative;
  }
  .burger svg{ width:18px; height:18px; position:absolute; transition:opacity .2s ease, transform .2s ease; }
  .burger .icon-close{ opacity:0; transform:rotate(-90deg); }
  .burger.open .icon-open{ opacity:0; transform:rotate(90deg); }
  .burger.open .icon-close{ opacity:1; transform:rotate(0); }

  .mobile-menu{
    max-height:0;
    overflow:hidden;
    background:var(--cream);
    border-bottom:0px solid var(--line);
    transition:max-height .38s ease, border-color .38s ease;
  }
  .mobile-menu.open{ max-height:640px; border-bottom:1px solid var(--line); }
  .mobile-menu-inner{ padding:6px 40px 24px; display:flex; flex-direction:column; }
  .mobile-menu a{
    padding:15px 0;
    border-top:1px dashed var(--line);
    font-family:'Space Grotesk', sans-serif;
    font-weight:500;
    font-size:15.5px;
    color:var(--green-900);
  }
  .mobile-menu-inner > a:first-child{ border-top:none; }
  .mobile-menu .mm-contact{
    margin-top:6px;
    padding-top:16px;
    border-top:1px dashed var(--line);
    display:flex;
    flex-direction:column;
    gap:4px;
  }
  .mobile-menu .mm-contact a{
    border-top:none;
    padding:8px 0;
    font-family:var(--mono);
    font-size:13px;
    font-weight:600;
    color:var(--ink-soft);
    display:flex;
    align-items:center;
    gap:10px;
  }
  .mobile-menu .mm-contact svg{ width:14px; height:14px; color:var(--gold-500); }

  @media (max-width:1280px){
    .burger{ display:flex; }
  }

  /* ---------------- HERO SLIDER ---------------- */
  .hero{
    position:relative;
  }
  .hero-slider{
    position:relative;
    height:640px;
    overflow:hidden;
  }
  .hero-slider .slide{
    position:absolute; inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transform:scale(1.07);
    transition:opacity 1.6s ease, transform 7s ease;
    z-index:1;
  }
  .hero-slider .slide.active{
    opacity:1;
    transform:scale(1);
    z-index:2;
  }
  .hero-slider .slide-scrim{
    position:absolute; inset:0;
    z-index:3;
    background:linear-gradient(180deg, rgba(11,61,42,0.68) 0%, rgba(11,61,42,0.28) 42%, rgba(11,61,42,0.82) 100%);
    pointer-events:none;
  }
  .hero-content{
    position:relative;
    z-index:4;
    padding-top:96px;
    color:var(--cream);
  }
  .hero-content .eyebrow{ color:var(--gold-400); margin-bottom:18px; }
  .hero-content .eyebrow::before{ background:var(--gold-400); }
  .hero-content h1{
    color:var(--cream);
    font-size:clamp(34px, 4.4vw, 56px);
    margin:0 0 18px;
    max-width:660px;
  }
  .hero-content h1 em{ color:var(--gold-400); font-style:italic; }
  .hero-content p.lead{
    color:rgba(251,246,236,0.85);
    max-width:460px;
    font-size:17px;
  }
  .hero-dots{
    position:absolute; bottom:118px; left:50%;
    transform:translateX(-50%);
    z-index:5;
    display:flex;
    gap:10px;
  }
  .hero-dots button{
    width:8px; height:8px; padding:0;
    border-radius:50%;
    background:rgba(251,246,236,0.45);
    border:none;
    cursor:pointer;
    transition:all .3s ease;
  }
  .hero-dots button.active{
    background:var(--gold-400);
    width:26px;
    border-radius:5px;
  }
  .slide-arrow{
    position:absolute; top:44%;
    transform:translateY(-50%);
    z-index:5;
    width:44px; height:44px;
    border-radius:50%;
    background:rgba(251,246,236,0.12);
    border:1px solid rgba(251,246,236,0.35);
    color:var(--cream);
    display:flex; align-items:center; justify-content:center;
    cursor:pointer;
    transition:background .25s ease;
  }
  .slide-arrow:hover{ background:rgba(251,246,236,0.25); }
  .slide-arrow.prev{ left:24px; }
  .slide-arrow.next{ right:24px; }
  .slide-arrow svg{ width:19px; height:19px; }
  .slide-caption{
    position:absolute; z-index:5;
    right:40px; bottom:150px;
    text-align:right;
    font-family:var(--mono);
    color:rgba(251,246,236,0.85);
    font-size:12px;
    letter-spacing:0.08em;
  }
  .slide-caption b{ color:var(--gold-400); }

  /* --- floating booking card, ticket-torn top edge --- */
  .hero-booking-card{
    position:relative;
    z-index:6;
    background:var(--white);
    border-radius:14px;
    box-shadow:var(--shadow);
    margin:-86px 0 0;
    padding:30px 34px 26px;
  }
  .hero-booking-card::before{
    content:"";
    position:absolute; top:0; left:26px; right:26px; height:2px;
    background-image:radial-gradient(circle, var(--cream) 3px, transparent 3.2px);
    background-size:16px 2px;
    background-repeat:repeat-x;
  }

  .toggle-pills{
    display:inline-flex;
    background:var(--cream-2);
    border:1px solid var(--line);
    border-radius:999px;
    padding:4px;
    margin-bottom:22px;
  }
  .toggle-pills button{
    border:none;
    background:transparent;
    padding:10px 22px;
    border-radius:999px;
    font-family:var(--mono);
    font-weight:700;
    font-size:12.5px;
    letter-spacing:0.05em;
    text-transform:uppercase;
    color:var(--ink-soft);
    cursor:pointer;
    transition:all .3s ease;
  }
  .toggle-pills button.active{
    background:var(--green-800);
    color:var(--cream);
  }

  .enquiry-card{
    display:grid;
    grid-template-columns:1.3fr 1fr 0.9fr auto;
    gap:22px;
    align-items:end;
  }
  .field label{
    display:block;
    font-family:var(--mono);
    font-size:10.5px;
    font-weight:700;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--gold-500);
    margin-bottom:9px;
  }
  .field select, .field input{
    width:100%;
    border:none;
    border-bottom:1.5px solid var(--line);
    padding:6px 2px 10px;
    font-family:'Space Grotesk', sans-serif;
    font-size:15px;
    font-weight:500;
    color:var(--ink);
    background:transparent;
    outline:none;
  }
  .field select:focus, .field input:focus{ border-color:var(--gold-500); }
  .enquiry-card .btn{ height:44px; justify-content:center; }

  .plane-travel{
    offset-rotate:auto;
    animation:flyPath 7s linear infinite;
  }
  @keyframes flyPath{
    0%{ offset-distance:0%; opacity:0; }
    5%{ opacity:1; }
    95%{ opacity:1; }
    100%{ offset-distance:100%; opacity:0; }
  }

  /* ---------------- STATS STRIP ---------------- */
  .stats{
    background:var(--green-900);
    color:var(--cream);
    padding:36px 0;
  }
  .stats .wrap{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:20px;
  }
  .stat{
    flex:1;
    min-width:150px;
    text-align:center;
    border-left:1px dotted rgba(251,246,236,0.3);
    padding:0 10px;
  }
  .stat:first-child{ border-left:none; }
  .stat .num{
    font-family:'Fraunces', serif;
    font-size:34px;
    font-weight:600;
    color:var(--gold-400);
  }
  .stat .label{
    font-size:12px;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:rgba(251,246,236,0.75);
    margin-top:4px;
  }

  /* ---------------- SECTION HEADERS ---------------- */
  .section{ padding:96px 0; }
  .section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:48px;
    gap:24px;
  }
  .section-head h2{ font-size:clamp(30px,3.2vw,42px); margin-top:14px; }
  .brand-mark{
    font-family:'Space Grotesk', sans-serif;
    font-weight:700;
    letter-spacing:0.01em;
  }
  .section-head p{ color:var(--ink-soft); max-width:360px; font-size:15px; }

  /* route divider between sections */
  .route-divider{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--gold-500);
    justify-content:center;
    padding:0 0 0;
  }
  .route-divider .line{
    flex:1;
    height:0;
    border-top:1.5px dotted var(--line);
  }
  .route-divider svg{ width:20px; height:20px; flex-shrink:0; }

  /* ---------------- DESTINATION CARDS ---------------- */
  .card-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:26px;
  }
  .dest-tag{
    font-size:10.5px;
    font-weight:700;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--gold-500);
    padding:16px 24px 0;
    font-family:'Space Mono', monospace;
  }
  .section.intl{ background:var(--cream-2); }

  .ticket-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-family:'Space Mono', monospace;
    font-size:12px;
    font-weight:700;
    letter-spacing:0.05em;
    color:var(--green-800);
    border:1px dashed var(--green-700);
    border-radius:999px;
    padding:7px 16px 7px 8px;
    margin-bottom:22px;
    background:var(--white);
  }
  .ticket-badge .dot{
    width:20px; height:20px; border-radius:50%;
    background:var(--green-900);
    color:var(--gold-400);
    display:flex; align-items:center; justify-content:center;
  }
  .ticket-badge .dot svg{ width:11px; height:11px; }

  /* ---- Boarding-pass style destination cards ---- */
  .dest-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:8px;
    overflow:visible;
    transition:transform .35s ease, box-shadow .35s ease;
    display:flex;
    flex-direction:column;
    position:relative;
  }
  .dest-art{
    aspect-ratio:1 / 1;
    width:100%;
    border-radius:8px 8px 0 0;
    position:relative;
    background-size:cover;
    background-position:center;
    overflow:hidden;
  }
  .dest-art-overlay{
    position:absolute; inset:0;
    background:linear-gradient(160deg, rgba(11,61,42,0.55), rgba(11,61,42,0.12) 55%, rgba(200,155,60,0.18));
    mix-blend-mode:multiply;
  }
  .dest-art-overlay::after{
    content:"";
    position:absolute; inset:0;
    background:rgba(251,246,236,0.06);
  }
  .dest-card:hover .dest-art{ }
  .dest-card:hover .dest-art-overlay{ background:linear-gradient(160deg, rgba(11,61,42,0.4), rgba(11,61,42,0.05) 55%, rgba(200,155,60,0.12)); }
  .emi-badge{
    position:absolute;
    top:14px; right:14px;
    z-index:2;
    background:rgba(251,246,236,0.94);
    color:var(--green-900);
    font-family:var(--mono);
    font-size:10px;
    font-weight:700;
    letter-spacing:0.05em;
    text-transform:uppercase;
    padding:6px 12px;
    border-radius:999px;
    border:1px solid var(--gold-500);
    display:flex;
    align-items:center;
    gap:6px;
  }
  .emi-badge svg{ width:11px; height:11px; color:var(--gold-500); }
  .custom-badge{
    position:absolute;
    top:14px; left:14px;
    z-index:2;
    background:rgba(11,61,42,0.85);
    color:var(--cream);
    font-family:var(--mono);
    font-size:10px;
    font-weight:700;
    letter-spacing:0.05em;
    text-transform:uppercase;
    padding:6px 12px;
    border-radius:999px;
    display:flex;
    align-items:center;
    gap:6px;
  }
  .custom-badge svg{ width:11px; height:11px; color:var(--gold-400); }
  .per-person{
    font-family:'Space Grotesk', sans-serif;
    font-size:11.5px;
    font-weight:500;
    color:var(--ink-soft);
    margin-left:6px;
  }
  .min-pax{
    font-family:'Space Grotesk', sans-serif;
    font-size:11px;
    color:var(--ink-soft);
    opacity:0.8;
    display:block;
    margin-top:2px;
  }
  .dest-emi{
    font-family:var(--mono);
    font-size:11px;
    color:var(--gold-500);
    display:block;
    margin-top:4px;
  }
  .route-strip{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 24px 0;
    font-family:'Space Mono', monospace;
  }
  .route-strip .code{
    font-size:26px;
    font-weight:700;
    color:var(--green-900);
    letter-spacing:0.02em;
  }
  .route-strip .code.dim{ color:var(--ink-soft); font-size:22px; }
  .route-line-mid{
    flex:1;
    display:flex;
    align-items:center;
    margin:0 10px;
    position:relative;
    height:14px;
  }
  .route-line-mid::before{
    content:"";
    position:absolute; left:0; right:0; top:50%;
    border-top:1.5px dashed var(--line);
  }
  .route-line-mid svg{
    width:16px; height:16px;
    color:var(--gold-500);
    position:relative;
    background:var(--white);
    margin:0 auto;
    z-index:1;
  }
  .route-caption{
    display:flex;
    justify-content:space-between;
    padding:4px 24px 0;
    font-size:10.5px;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:var(--ink-soft);
  }
  .dest-body{ padding:16px 24px 26px; flex:1; display:flex; flex-direction:column;}
  .dest-body h3{ font-size:22px; margin:10px 0 8px; }
  .dest-body p{ font-size:14px; color:var(--ink-soft); flex:1; margin-bottom:18px;}

  .perforation{
    height:2px;
    margin:0 0 16px;
    background-image:radial-gradient(circle, var(--line) 1.6px, transparent 1.7px);
    background-size:10px 2px;
    background-repeat:repeat-x;
    position:relative;
  }
  .perforation::before, .perforation::after{
    content:"";
    position:absolute; top:50%; transform:translateY(-50%);
    width:18px; height:18px; border-radius:50%;
    background:var(--cream);
    border:1px solid var(--line);
  }
  .perforation::before{ left:-33px; }
  .perforation::after{ right:-33px; }
  .section.intl .perforation::before,
  .section.intl .perforation::after{ background:var(--cream-2); }

  .dest-foot{ display:flex; justify-content:space-between; align-items:flex-end; }
  .dest-price{ font-size:12px; color:var(--ink-soft); font-family:'Space Grotesk',sans-serif;}
  .dest-price b{ color:var(--green-900); font-size:18px; font-family:'Space Mono', monospace; font-weight:700; }
  .dest-link{ font-size:13px; font-weight:600; color:var(--green-800); display:flex; align-items:center; gap:6px;}
  .dest-link svg{ width:14px; height:14px; transition:transform .25s ease;}
  .dest-card:hover .dest-link svg{ transform:translateX(4px); }
  .dest-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
  .emi-note{
    font-family:var(--mono);
    font-size:11px;
    color:var(--ink-soft);
    opacity:0.75;
    margin-top:26px;
    text-align:right;
  }

  /* ---------------- BLOG ---------------- */
  .blog-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:26px;
  }
  .blog-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:8px;
    overflow:visible;
    transition:transform .35s ease, box-shadow .35s ease;
    display:flex;
    flex-direction:column;
    position:relative;
  }
  .blog-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
  .blog-art{
    aspect-ratio:16 / 10;
    width:100%;
    border-radius:8px 8px 0 0;
    position:relative;
    background-size:cover;
    background-position:center;
    overflow:hidden;
  }
  .blog-art-overlay{
    position:absolute; inset:0;
    background:linear-gradient(160deg, rgba(11,61,42,0.55), rgba(11,61,42,0.1) 55%, rgba(200,155,60,0.16));
    mix-blend-mode:multiply;
  }
  .blog-date-stamp{
    position:absolute;
    top:14px; left:14px;
    z-index:2;
    width:56px; height:56px;
    border-radius:50%;
    background:var(--white);
    border:1.5px dashed var(--gold-500);
    display:flex; flex-direction:column;
    align-items:center; justify-content:center;
    font-family:var(--mono);
    color:var(--green-900);
    line-height:1.1;
  }
  .blog-date-stamp .day{ font-size:16px; font-weight:700; }
  .blog-date-stamp .mon{ font-size:9px; letter-spacing:0.05em; text-transform:uppercase; color:var(--gold-500); }
  .blog-body{ padding:22px 24px 24px; flex:1; display:flex; flex-direction:column; }
  .blog-tag{
    font-family:var(--mono);
    font-size:10.5px;
    font-weight:700;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--gold-500);
    margin-bottom:8px;
  }
  .blog-body h3{ font-size:19px; margin-bottom:10px; line-height:1.25; }
  .blog-body p{ font-size:13.5px; color:var(--ink-soft); line-height:1.6; flex:1; margin-bottom:18px; }
  .blog-foot{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px dashed var(--line);
    padding-top:14px;
  }
  .blog-meta{ font-family:var(--mono); font-size:11px; color:var(--ink-soft); }
  .blog-link{ font-size:13px; font-weight:600; color:var(--green-800); display:flex; align-items:center; gap:6px; }
  .blog-link svg{ width:14px; height:14px; transition:transform .25s ease; }
  .blog-card:hover .blog-link svg{ transform:translateX(4px); }

  .blog-featured{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:0;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:12px;
    overflow:hidden;
    box-shadow:var(--shadow);
  }
  .blog-featured .blog-art{ aspect-ratio:auto; height:100%; border-radius:0; min-height:320px; }
  .blog-featured-body{ padding:40px 40px; display:flex; flex-direction:column; justify-content:center; }
  .blog-featured-body h2{ font-size:clamp(24px,2.6vw,32px); margin-bottom:16px; }
  .blog-featured-body p{ font-size:15px; color:var(--ink-soft); line-height:1.7; margin-bottom:24px; }

  /* ---------------- GROUP DEPARTURES ---------------- */
  .group-panel{
    background:var(--green-900);
    border-radius:12px;
    overflow:hidden;
  }
  .group-panel-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 30px;
    border-bottom:1px dashed rgba(251,246,236,0.22);
  }
  .group-panel-head .gp-title{
    font-family:var(--mono);
    font-size:11.5px;
    font-weight:700;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--gold-400);
    display:flex;
    align-items:center;
    gap:10px;
  }
  .group-panel-head .gp-title svg{ width:15px; height:15px; }
  .group-panel-head .gp-updated{
    font-family:var(--mono);
    font-size:11px;
    color:rgba(251,246,236,0.55);
  }
  .group-list{ display:flex; flex-direction:column; }
  .group-row{
    display:grid;
    grid-template-columns:1.7fr 1fr 0.9fr 1fr auto;
    align-items:center;
    gap:18px;
    padding:22px 30px;
    border-bottom:1px dashed rgba(251,246,236,0.16);
    transition:background .25s ease;
  }
  .group-row:last-child{ border-bottom:none; }
  .group-row:hover{ background:rgba(251,246,236,0.04); }
  .group-dest{ display:flex; flex-direction:column; gap:5px; }
  .group-dest .gp-tag{
    font-family:var(--mono);
    font-size:10px;
    font-weight:700;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--gold-400);
    display:flex;
    align-items:center;
    gap:8px;
  }
  .gp-guaranteed{
    background:rgba(200,155,60,0.16);
    border:1px solid rgba(200,155,60,0.4);
    color:var(--gold-400);
    padding:2px 8px;
    border-radius:999px;
    font-size:9px;
    letter-spacing:0.05em;
  }
  .group-dest h4{
    font-family:'Fraunces', serif;
    font-size:19px;
    font-weight:600;
    color:var(--cream);
  }
  .group-meta{ display:flex; flex-direction:column; gap:3px; }
  .group-meta .label{
    font-family:var(--mono);
    font-size:9.5px;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:rgba(251,246,236,0.45);
  }
  .group-meta .val{
    font-family:var(--mono);
    font-size:13.5px;
    font-weight:700;
    color:var(--cream);
  }
  .group-meta .val.seats-low{ color:#E08B6E; }
  .group-meta .val.seats-ok{ color:var(--gold-400); }
  .group-price{ text-align:right; }
  .group-price .label{
    font-family:var(--mono);
    font-size:9.5px;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:rgba(251,246,236,0.45);
    display:block;
    margin-bottom:3px;
  }
  .group-price .amt{
    font-family:'Fraunces', serif;
    font-size:20px;
    font-weight:600;
    color:var(--gold-400);
  }
  .group-price .amt-sub{
    font-family:'Space Grotesk', sans-serif;
    font-size:11px;
    color:rgba(251,246,236,0.6);
  }
  .group-row .btn{
    padding:11px 20px;
    font-size:13px;
    white-space:nowrap;
  }
  .group-note{
    font-family:var(--mono);
    font-size:11px;
    color:var(--ink-soft);
    opacity:0.75;
    margin-top:20px;
    text-align:right;
  }

  /* ---------------- ABOUT: PROFILE ID CARDS ---------------- */
  .about-hero{
    padding:64px 0 20px;
  }
  .about-hero h1{
    font-size:clamp(34px, 4vw, 52px);
    max-width:720px;
    margin:16px 0 20px;
  }
  .about-hero p.lead{
    font-size:16.5px;
    color:var(--ink-soft);
    max-width:620px;
    line-height:1.7;
  }
  .about-story{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:48px;
    align-items:center;
    padding:20px 0 10px;
  }
  .about-story .story-icon{
    width:56px; height:56px;
    border-radius:50%;
    background:var(--cream-2);
    border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center;
    color:var(--green-800);
    margin-bottom:20px;
  }
  .about-story .story-icon svg{ width:24px; height:24px; }
  .about-story h3{ font-size:24px; margin-bottom:14px; }
  .about-story p{ font-size:15px; color:var(--ink-soft); line-height:1.75; margin-bottom:14px; }

  .profile-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
  }
  .profile-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:14px;
    overflow:hidden;
    box-shadow:var(--shadow);
  }
  .profile-head{
    background:var(--green-900);
    color:var(--cream);
    padding:30px 32px 26px;
    position:relative;
  }
  .profile-head .badge-label{
    font-family:var(--mono);
    font-size:10.5px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--gold-400);
    display:flex;
    align-items:center;
    gap:8px;
  }
  .profile-head .crew-id{
    position:absolute;
    top:28px; right:28px;
    font-family:var(--mono);
    font-size:10px;
    letter-spacing:0.06em;
    color:rgba(251,246,236,0.55);
    text-align:right;
    line-height:1.5;
  }
  .profile-head .crew-id b{ color:var(--gold-400); display:block; font-size:12px; }
  .profile-avatar{
    width:82px; height:82px;
    border-radius:50%;
    background:var(--cream-2);
    border:2.5px solid var(--gold-400);
    display:flex; align-items:center; justify-content:center;
    font-family:'Fraunces', serif;
    font-size:30px;
    font-weight:600;
    color:var(--green-900);
    margin:18px 0 16px;
  }
  .profile-head h3{ color:var(--cream); font-size:23px; margin-bottom:4px; }
  .profile-head .role{
    font-family:'Space Grotesk', sans-serif;
    font-size:13.5px;
    color:rgba(251,246,236,0.78);
  }
  .profile-perf{
    height:2px;
    background-image:radial-gradient(circle, var(--white) 3.5px, transparent 3.7px);
    background-size:18px 2px;
    background-repeat:repeat-x;
    background-position:center;
    position:relative;
  }
  .profile-perf::before, .profile-perf::after{
    content:"";
    position:absolute; top:50%;
    width:22px; height:22px;
    background:var(--cream);
    border-radius:50%;
    transform:translateY(-50%);
  }
  .profile-perf::before{ left:-11px; }
  .profile-perf::after{ right:-11px; }
  .profile-body{ padding:28px 32px 30px; }
  .profile-exp-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--cream-2);
    border:1px solid var(--line);
    padding:8px 15px;
    border-radius:999px;
    font-family:var(--mono);
    font-size:11px;
    font-weight:700;
    letter-spacing:0.03em;
    color:var(--green-800);
    margin-bottom:20px;
  }
  .profile-exp-badge svg{ width:13px; height:13px; color:var(--gold-500); }
  .profile-body p{ font-size:14.5px; color:var(--ink-soft); line-height:1.75; margin-bottom:20px; }
  .profile-footer{
    display:flex;
    gap:12px;
    border-top:1px dashed var(--line);
    padding-top:20px;
  }
  .profile-footer a{
    width:38px; height:38px;
    border:1px solid var(--line);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    color:var(--green-800);
    transition:border-color .2s ease, background .2s ease;
  }
  .profile-footer a:hover{ border-color:var(--gold-500); background:rgba(200,155,60,0.08); }
  .profile-footer svg{ width:15px; height:15px; }

  /* ---------------- INSTITUTIONAL SERVICES ---------------- */
  .inst-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:26px;
  }
  .inst-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:10px;
    padding:34px 30px;
    display:flex;
    flex-direction:column;
    transition:transform .3s ease, box-shadow .3s ease;
  }
  .inst-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
  .inst-icon{
    width:52px; height:52px;
    border-radius:50%;
    background:var(--cream-2);
    border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:20px;
    color:var(--green-800);
  }
  .inst-icon svg{ width:22px; height:22px; }
  .inst-tag{
    font-family:var(--mono);
    font-size:10.5px;
    font-weight:700;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--gold-500);
    margin-bottom:8px;
  }
  .inst-card h3{ font-size:20px; margin-bottom:10px; }
  .inst-card p.desc{ font-size:14px; color:var(--ink-soft); line-height:1.6; margin-bottom:20px; }
  .inst-list{ list-style:none; margin-bottom:24px; flex:1; }
  .inst-list li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:13px;
    color:var(--ink-soft);
    padding:9px 0;
    border-top:1px dashed var(--line);
  }
  .inst-list li:first-child{ border-top:none; }
  .inst-list li svg{ width:14px; height:14px; color:var(--gold-500); flex-shrink:0; margin-top:2px; }
  .inst-card .btn{ margin-top:auto; width:100%; justify-content:center; }

  /* ---- Perforated section divider (ticket tear) ---- */
  .route-divider{
    display:flex;
    align-items:center;
    gap:14px;
    justify-content:center;
    padding:0;
  }
  .route-divider .line{
    flex:1;
    height:2px;
    background-image:radial-gradient(circle, var(--line) 1.6px, transparent 1.7px);
    background-size:10px 2px;
    background-repeat:repeat-x;
  }
  .route-divider .stub{
    font-family:'Space Mono', monospace;
    font-size:11px;
    font-weight:700;
    letter-spacing:0.12em;
    color:var(--gold-500);
    border:1px dashed var(--line);
    border-radius:999px;
    padding:8px 16px;
    display:flex;
    align-items:center;
    gap:8px;
    white-space:nowrap;
  }
  .route-divider svg{ width:16px; height:16px; flex-shrink:0; }

  /* ---- Postcard testimonials ---- */
  .testi{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:4px;
    padding:30px 26px 26px 32px;
    position:relative;
    overflow:hidden;
  }
  .testi::before{
    content:"";
    position:absolute; left:0; top:0; bottom:0; width:8px;
    background:repeating-linear-gradient(-45deg, var(--green-800) 0 6px, var(--gold-500) 6px 12px);
  }
  .postmark{
    position:absolute; top:16px; right:18px;
    width:64px; height:64px;
  }
  .stars{ color:var(--gold-500); font-size:14px; letter-spacing:2px; margin-bottom:14px;}
  .testi p.quote{ font-family:'Fraunces', serif; font-style:italic; font-weight:500; font-size:15.5px; color:var(--ink); margin-bottom:22px; position:relative; z-index:1; padding-right:50px;}
  .testi-who{ display:flex; align-items:center; gap:12px; }
  .testi-avatar{
    width:38px; height:38px; border-radius:50%;
    background:var(--green-800);
    color:var(--cream);
    display:flex; align-items:center; justify-content:center;
    font-family:'Fraunces',serif; font-size:15px; font-weight:600;
  }
  .testi-who .name{ font-size:14px; font-weight:600; color:var(--green-900);}
  .testi-who .trip{ font-size:11.5px; color:var(--ink-soft); font-family:'Space Mono', monospace; }

  /* ---------------- FEATURES ---------------- */
  .features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:2px;
    background:var(--line);
    border:1px solid var(--line);
    border-radius:6px;
    overflow:hidden;
  }
  .feature{
    background:var(--white);
    padding:34px 26px;
  }
  .feature svg{ width:30px; height:30px; color:var(--green-800); margin-bottom:18px;}
  .feature h4{ font-size:17px; margin-bottom:8px; }
  .feature p{ font-size:13.5px; color:var(--ink-soft); }

  /* ---------------- VISION & MISSION ---------------- */
  .vm-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
  }
  .vm-card{
    border-radius:10px;
    padding:40px 38px;
    position:relative;
    overflow:hidden;
  }
  .vm-card.vm-vision{
    background:var(--white);
    border:1px solid var(--line);
  }
  .vm-card.vm-mission{
    background:var(--green-900);
    color:var(--cream);
  }
  .vm-icon{
    width:56px; height:56px;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    margin-bottom:22px;
  }
  .vm-vision .vm-icon{ background:var(--cream-2); border:1px solid var(--line); color:var(--green-800); }
  .vm-mission .vm-icon{ background:rgba(251,246,236,0.1); border:1px solid rgba(251,246,236,0.3); color:var(--gold-400); }
  .vm-icon svg{ width:24px; height:24px; }
  .vm-card .eyebrow{ margin-bottom:14px; }
  .vm-mission .eyebrow{ color:var(--gold-400); }
  .vm-mission .eyebrow::before{ background:var(--gold-400); }
  .vm-card h3{ font-size:26px; margin-bottom:14px; }
  .vm-mission h3{ color:var(--cream); }
  .vm-card p{ font-size:15px; line-height:1.65; }
  .vm-vision p{ color:var(--ink-soft); }
  .vm-mission p{ color:rgba(251,246,236,0.82); }
  .vm-card .vm-stamp{
    position:absolute;
    top:28px; right:28px;
    width:64px; height:64px;
    border-radius:50%;
    border:1.5px dashed;
    display:flex; align-items:center; justify-content:center;
    font-family:var(--mono);
    font-size:9px;
    font-weight:700;
    letter-spacing:0.05em;
    text-align:center;
    line-height:1.3;
    transform:rotate(8deg);
    opacity:0.5;
  }
  .vm-vision .vm-stamp{ border-color:var(--green-700); color:var(--green-700); }
  .vm-mission .vm-stamp{ border-color:var(--gold-400); color:var(--gold-400); }

  /* ---------------- VALUES ---------------- */
  .values-strip{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:0;
    border:1px solid var(--line);
    border-radius:10px;
    background:var(--line);
    overflow:hidden;
  }
  .value-item{
    background:var(--white);
    padding:32px 26px;
    text-align:center;
  }
  .value-badge{
    width:64px; height:64px;
    border-radius:50%;
    border:1.5px dashed var(--gold-500);
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 18px;
    color:var(--green-800);
  }
  .value-badge svg{ width:24px; height:24px; }
  .value-item h4{ font-size:16.5px; margin-bottom:8px; color:var(--green-900); }
  .value-item p{ font-size:13px; color:var(--ink-soft); line-height:1.55; }

  /* ---------------- GALLERY ---------------- */
  .gallery-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    grid-auto-rows:170px;
    gap:12px;
  }
  .gallery-item{
    position:relative;
    border-radius:8px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    cursor:pointer;
  }
  .gallery-item.big{ grid-column:span 2; grid-row:span 2; }
  .gallery-item img{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:cover;
    transition:transform .6s ease;
  }
  .gallery-item:hover img{ transform:scale(1.08); }
  .gallery-overlay{
    position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(11,61,42,0) 55%, rgba(11,61,42,0.75) 100%);
    transition:background .3s ease;
  }
  .gallery-item:hover .gallery-overlay{
    background:linear-gradient(180deg, rgba(11,61,42,0.1) 40%, rgba(11,61,42,0.85) 100%);
  }
  .gallery-label{
    position:absolute; left:16px; bottom:14px;
    z-index:2;
    color:var(--cream);
    font-family:var(--mono);
    font-size:11.5px;
    font-weight:700;
    letter-spacing:0.08em;
  }
  .gallery-label span{
    display:block;
    font-family:'Space Grotesk', sans-serif;
    font-weight:400;
    font-size:10px;
    letter-spacing:0.04em;
    color:var(--gold-400);
    margin-top:2px;
  }

  /* ---------------- SPOTLIGHT BANNER ---------------- */
  .spotlight{
    background:linear-gradient(120deg, var(--green-900), var(--green-700));
    border-radius:10px;
    padding:56px;
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:40px;
    align-items:center;
    position:relative;
    overflow:hidden;
    color:var(--cream);
  }
  .spotlight::after{
    content:"";
    position:absolute; inset:0;
    background-image:radial-gradient(circle, rgba(200,155,60,0.35) 1.5px, transparent 1.5px);
    background-size:22px 22px;
    opacity:0.25;
    pointer-events:none;
  }
  .spotlight .eyebrow{ color:var(--gold-400); }
  .spotlight .eyebrow::before{ background:var(--gold-400); }
  .spotlight h2{ color:var(--cream); font-size:clamp(28px,3vw,38px); margin:14px 0 16px;}
  .spotlight p{ color:rgba(251,246,236,0.8); font-size:15px; max-width:420px; margin-bottom:26px;}
  .spotlight-price{
    background:rgba(251,246,236,0.08);
    border:1px solid rgba(251,246,236,0.25);
    border-radius:8px;
    padding:28px;
    text-align:center;
    position:relative;
    z-index:1;
  }
  .spotlight-price .from{ font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color:rgba(251,246,236,0.7);}
  .spotlight-price .amount{ font-family:'Fraunces',serif; font-size:46px; color:var(--gold-400); margin:8px 0;}
  .spotlight-price .per{ font-size:12.5px; color:rgba(251,246,236,0.7); margin-bottom:20px;}

  /* ---------------- TESTIMONIALS ---------------- */
  .testi-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
  }
  .testi{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:6px;
    padding:30px 28px;
    position:relative;
  }
  .testi .quote-mark{
    font-family:'Fraunces',serif;
    font-size:56px;
    color:var(--gold-100);
    position:absolute;
    top:6px; right:20px;
    line-height:1;
  }
  .stars{ color:var(--gold-500); font-size:14px; letter-spacing:2px; margin-bottom:14px;}
  .testi p.quote{ font-size:14.5px; color:var(--ink); margin-bottom:22px; position:relative; z-index:1;}
  .testi-who{ display:flex; align-items:center; gap:12px; }
  .testi-avatar{
    width:38px; height:38px; border-radius:50%;
    background:var(--green-800);
    color:var(--cream);
    display:flex; align-items:center; justify-content:center;
    font-family:'Fraunces',serif; font-size:15px; font-weight:600;
  }
  .testi-who .name{ font-size:14px; font-weight:600; color:var(--green-900);}
  .testi-who .trip{ font-size:12px; color:var(--ink-soft); }

  /* ---------------- CTA ---------------- */
  .cta-band{
    background:var(--gold-100);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    padding:70px 0;
    text-align:center;
  }
  .cta-band h2{ font-size:clamp(28px,3.4vw,40px); margin-bottom:16px;}
  .cta-band p{ color:var(--ink-soft); max-width:480px; margin:0 auto 30px; font-size:15.5px;}
  .cta-buttons{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap;}

  /* ---------------- FAQS ---------------- */
  .faq-list{
    max-width:840px;
    border-top:1px dashed var(--line);
  }
  .faq-item{
    border-bottom:1px dashed var(--line);
    padding:22px 0;
  }
  .faq-item summary{
    cursor:pointer;
    list-style:none;
    display:flex;
    align-items:center;
    gap:18px;
    font-family:'Fraunces', serif;
    font-size:18px;
    font-weight:600;
    color:var(--green-900);
  }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-num{
    font-family:var(--mono);
    font-size:12px;
    font-weight:700;
    color:var(--gold-500);
    flex-shrink:0;
    width:34px;
  }
  .faq-q{ flex:1; }
  .faq-icon{
    flex-shrink:0;
    width:26px; height:26px;
    border-radius:50%;
    border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center;
    transition:transform .3s ease, background .3s ease;
  }
  .faq-icon svg{ width:12px; height:12px; transition:transform .3s ease; }
  .faq-item[open] .faq-icon{ background:var(--green-800); border-color:var(--green-800); color:var(--cream); }
  .faq-item[open] .faq-icon svg{ transform:rotate(45deg); }
  .faq-answer{
    padding:14px 0 0 52px;
    color:var(--ink-soft);
    font-size:14.5px;
    line-height:1.7;
    max-width:640px;
  }

  /* ---------------- CONTACT ---------------- */
  .contact-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:28px;
    align-items:stretch;
  }
  .contact-form-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:10px;
    padding:36px;
  }
  .contact-form-fields{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px 22px;
  }
  .contact-form-fields .field.full{ grid-column:1 / -1; }
  .contact-form-fields textarea{
    width:100%;
    border:none;
    border-bottom:1.5px solid var(--line);
    padding:6px 2px 10px;
    font-family:'Space Grotesk', sans-serif;
    font-size:15px;
    font-weight:500;
    color:var(--ink);
    background:transparent;
    outline:none;
    resize:vertical;
    min-height:70px;
  }
  .contact-form-fields textarea:focus{ border-color:var(--gold-500); }
  .contact-form-card .btn{ margin-top:26px; width:100%; justify-content:center; }

  .contact-info-card{
    background:var(--green-900);
    color:var(--cream);
    border-radius:10px;
    padding:36px 32px;
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
  }
  .contact-info-card .eyebrow{ color:var(--gold-400); margin-bottom:18px; }
  .contact-info-card .eyebrow::before{ background:var(--gold-400); }
  .contact-info-row{
    display:flex;
    gap:14px;
    padding:16px 0;
    border-top:1px dashed rgba(251,246,236,0.22);
  }
  .contact-info-row:first-of-type{ border-top:none; }
  .contact-info-row svg{ width:18px; height:18px; flex-shrink:0; margin-top:2px; color:var(--gold-400); }
  .contact-info-row .label{
    font-family:var(--mono);
    font-size:10.5px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:rgba(251,246,236,0.6);
    margin-bottom:4px;
  }
  .contact-info-row .value{ font-size:14.5px; line-height:1.5; }
  .contact-info-row a{ color:var(--cream); }
  .contact-info-row a:hover{ color:var(--gold-400); }
  .contact-social{
    display:flex; gap:12px;
    margin-top:26px;
    padding-top:22px;
    border-top:1px dashed rgba(251,246,236,0.22);
  }
  .contact-social a{
    width:36px; height:36px;
    border:1px solid rgba(251,246,236,0.3);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
  }
  .contact-social a:hover{ border-color:var(--gold-400); background:rgba(200,155,60,0.12); }
  .contact-social svg{ width:15px; height:15px; }

  /* ---------------- FOOTER ---------------- */
  footer{
    background:var(--green-900);
    color:rgba(251,246,236,0.85);
    padding:70px 0 30px;
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1.4fr 0.8fr 0.8fr 1fr;
    gap:40px;
    padding-bottom:50px;
    border-bottom:1px solid rgba(251,246,236,0.15);
  }
  .footer-logo{ height:30px; margin-bottom:18px; }
  .footer-grid p{ font-size:13.5px; color:rgba(251,246,236,0.65); max-width:280px; }
  .footer-col h5{
    font-family:'Space Grotesk',sans-serif;
    font-size:12px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--gold-400);
    margin-bottom:18px;
  }
  .footer-col a{
    display:block;
    font-size:14px;
    color:rgba(251,246,236,0.8);
    margin-bottom:12px;
    transition:color .2s ease;
  }
  .footer-col a:hover{ color:var(--gold-400); }
  .footer-social{ display:flex; gap:12px; margin-top:6px; }
  .footer-social a{
    width:34px; height:34px;
    border:1px solid rgba(251,246,236,0.25);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    margin-bottom:0;
  }
  .footer-social a:hover{ border-color:var(--gold-400); background:rgba(200,155,60,0.12);}
  .footer-social svg{ width:15px; height:15px; }
  .footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:26px;
    font-size:12.5px;
    color:rgba(251,246,236,0.55);
    flex-wrap:wrap;
    gap:12px;
  }

  /* ---------------- REVEAL ANIM ---------------- */
  .reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
  .reveal.in{ opacity:1; transform:translateY(0); }

  /* ---------------- RESPONSIVE ---------------- */
  @media (max-width:980px){
    .hero-slider{ height:560px; }
    .hero-content{ padding-top:70px; }
    .hero-booking-card{ margin-top:-70px; padding:24px 22px 20px; }
    .enquiry-card{ grid-template-columns:1fr 1fr; }
    .card-grid{ grid-template-columns:repeat(2,1fr); }
    .features{ grid-template-columns:repeat(2,1fr); }
    .testi-grid{ grid-template-columns:1fr; }
    .spotlight{ grid-template-columns:1fr; padding:40px 28px; }
    .contact-grid{ grid-template-columns:1fr; }
    .vm-grid{ grid-template-columns:1fr; }
    .values-strip{ grid-template-columns:repeat(2,1fr); }
    .gallery-grid{ grid-template-columns:repeat(3,1fr); grid-auto-rows:140px; }
    .gallery-item.big{ grid-column:span 2; grid-row:span 1; }
    .group-row{ grid-template-columns:1fr 1fr; row-gap:12px; }
    .group-row .btn{ grid-column:1 / -1; justify-content:center; margin-top:6px; }
    .group-price{ text-align:left; }
    .inst-grid{ grid-template-columns:1fr; }
    .footer-grid{ grid-template-columns:1fr 1fr; }
    .section-head{ flex-direction:column; align-items:flex-start; gap:14px; }
    .section-head p{ max-width:480px; }
    .profile-grid{ grid-template-columns:1fr; }
    .about-story{ grid-template-columns:1fr; gap:24px; }
    .blog-grid{ grid-template-columns:repeat(2,1fr); }
    .blog-featured{ grid-template-columns:1fr; }
    .blog-featured .blog-art{ aspect-ratio:16/10; min-height:0; }
  }
  @media (max-width:1280px){
    .nav-links{ display:none; }
  }
  @media (max-width:600px){
    .wrap{ padding:0 20px; }
    nav.wrap{ padding-top:0; padding-bottom:0; height:66px; }
    .logo-mark{ height:24px; }
    .nav-cta{ gap:8px; }
    .nav-cta .btn-primary{ padding:9px 14px; font-size:12.5px; }
    .card-grid{ grid-template-columns:1fr; }
    .features{ grid-template-columns:1fr; }
    .enquiry-card{ grid-template-columns:1fr; }
    .blog-grid{ grid-template-columns:1fr; }
    .contact-form-fields{ grid-template-columns:1fr; }
    .faq-item summary{ font-size:16px; gap:12px; }
    .faq-answer{ padding-left:0; }
    .faq-num{ width:26px; }
    .values-strip{ grid-template-columns:1fr; }
    .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:120px; }
    .gallery-item.big{ grid-column:span 2; grid-row:span 1; }
    .vm-card{ padding:30px 26px; }
    .group-row{ grid-template-columns:1fr; text-align:left; padding:20px 22px; }
    .group-price{ text-align:left; }
    .group-panel-head{ padding:18px 22px; flex-direction:column; align-items:flex-start; gap:6px; }
    .topbar .wrap{ justify-content:center; gap:16px; padding-top:8px; padding-bottom:8px; flex-wrap:wrap; }
    .topbar a{ font-size:11px; }
    .stats .wrap{ flex-direction:column; }
    .stat{ border-left:none; border-top:1px dotted rgba(251,246,236,0.3); padding-top:14px;}
    .stat:first-child{ border-top:none; }
    .section-head{ margin-bottom:32px; }
    .section-head p{ max-width:none; }
    .inst-card{ padding:28px 24px; }
    .footer-grid{ grid-template-columns:1fr; }
    .nav-phone{ display:none; }
    .section{ padding:64px 0; }
    .hero-slider{ height:520px; }
    .hero-content{ padding-top:56px; }
    .hero-content h1{ font-size:30px; }
    .slide-arrow{ width:36px; height:36px; }
    .slide-caption{ display:none; }
    .hero-booking-card{ margin-top:-56px; }
    .profile-head{ padding:26px 24px 22px; }
    .profile-body{ padding:24px 24px 26px; }
    .about-hero{ padding:48px 0 12px; }
  }
  @media (max-width:380px){
    .nav-cta .btn-primary{ display:none; }
  }