/*
Theme Name: Monkey Quad Marrakech
Theme URI: 
Author: Monkey Quad Marrakech
Description: Theme sur mesure pour Monkey Quad Marrakech - circuits quad, buggy, moto, cheval et chameau dans la Palmeraie de Marrakech.
Version: 1.0
Text Domain: monkeyquad
*/


  :root{
    --cream:#FFF8ED;
    --orange:#FEC40B;
    --red:#04123F;
    --beige:#FFFFFF;
    --ink:#04123F;
    --ink-soft:#4A5A85;
    --gold:#FEC40B;
    --white:#FFFFFF;
    --honey-gold:#FEC40B;
    --deep-navy:#04123F;
    --radius:8px;
    --radius-sm:18px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--cream);
    color:var(--ink);
    font-family:'DM Sans', sans-serif;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3,h4{
    font-family:'Passion One', sans-serif;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:-0.02em;
    line-height:0.92;
    color:var(--ink);
  }
  h3{letter-spacing:-0.01em;}
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  .wrap{max-width:1160px; margin:0 auto; padding:0 40px;}
  @media (max-width:640px){ .wrap{padding:0 22px;} }

  .eyebrow{
    font-size:0.72rem; color:var(--red); font-weight:700;
    letter-spacing:0.1em; margin-bottom:14px; display:inline-block;
    text-transform:uppercase; font-family:'DM Sans',sans-serif;
  }

  /* Orange raised button — gradient fill, dark-brown outline, condensed
     all-caps label, soft drop shadow for a flat, slightly 3D raised feel */
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:15px 30px; border-radius:10px; font-weight:700; font-size:1rem;
    cursor:pointer; white-space:nowrap; position:relative; overflow:hidden;
    font-family:'Passion One', sans-serif; text-transform:uppercase; letter-spacing:0.04em;
    background:linear-gradient(180deg, #FFDA5C 0%, var(--honey-gold) 55%, #E0AC08 100%);
    border:2px solid var(--deep-navy); color:var(--deep-navy);
    box-shadow:0 3px 0 var(--deep-navy), 0 8px 16px rgba(4,18,63,0.25);
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
  }
  .btn::after{
    content:""; position:absolute; top:0; left:-60%; width:40%; height:100%;
    background:linear-gradient(115deg, transparent, rgba(255,255,255,0.65), transparent);
    transform:skewX(-20deg); transition:left .6s ease; pointer-events:none;
  }
  .btn:hover::after{left:130%;}
  .btn:hover{
    background:linear-gradient(180deg, #FFE585 0%, #FFCE2E 55%, var(--honey-gold) 100%);
    transform:translateY(1px);
    box-shadow:0 2px 0 var(--deep-navy), 0 5px 10px rgba(4,18,63,0.22);
  }
  .btn:active{transform:translateY(3px); box-shadow:0 0 0 var(--deep-navy), 0 2px 4px rgba(4,18,63,0.2);}
  .btn-solid, .btn-outline, .btn-light{background:linear-gradient(180deg, #FFDA5C 0%, var(--honey-gold) 55%, #E0AC08 100%); color:var(--deep-navy);}
  .btn-block{width:100%;}
  .btn-sm{padding:11px 20px; font-size:0.78rem;}

  /* CTA button — sized to match reference card layout (50-58px tall) */
  .btn-cta{
    height:48px; padding:0 24px; border-radius:12px;
    background:linear-gradient(180deg, #FFDA5C 0%, var(--honey-gold) 55%, #E0AC08 100%);
    border:2px solid var(--deep-navy); color:var(--deep-navy);
    font-weight:700; font-size:1.05rem; display:inline-flex;
    align-items:center; justify-content:center;
    font-family:'Passion One', sans-serif; text-transform:uppercase; letter-spacing:0.04em;
    box-shadow:0 3px 0 var(--deep-navy), 0 8px 16px rgba(4,18,63,0.25);
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease; flex-shrink:0;
  }
  .btn-cta:hover{
    background:linear-gradient(180deg, #FFE585 0%, #FFCE2E 55%, var(--honey-gold) 100%);
    transform:translateY(1px);
    box-shadow:0 2px 0 var(--deep-navy), 0 5px 10px rgba(4,18,63,0.22);
  }

  /* fade-up reveal — single orchestrated pass, kept light.
     Progressive enhancement: content is visible by default (no-JS / JS-fails case).
     The animated hidden state only applies once JS has added .js-reveal to <html>. */
  .reveal{opacity:1; transform:none;}
  .js-reveal .reveal{opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease;}
  .js-reveal .reveal.in{opacity:1; transform:translateY(0);}

  /* Image skeleton loader — shimmer placeholder while photos load, then fade in.
     Progressive enhancement: images are visible immediately without JS. */
  .a-media, .p-media, .promo-modal-media{
    background:linear-gradient(90deg, #efe6cf 25%, #e6d9b8 37%, #efe6cf 63%);
    background-size:400% 100%;
  }
  .js-reveal .a-media, .js-reveal .p-media, .js-reveal .promo-modal-media{
    animation:imgShimmer 1.4s ease infinite;
  }
  .js-reveal .a-media.img-ready, .js-reveal .p-media.img-ready, .js-reveal .promo-modal-media.img-ready{
    animation:none; background:none;
  }
  .a-media img, .p-media img, .promo-modal-media img{opacity:1;}
  .js-reveal .a-media img, .js-reveal .p-media img, .js-reveal .promo-modal-media img{
    opacity:0; transition:opacity .4s ease;
  }
  .js-reveal .a-media img.img-ready, .js-reveal .p-media img.img-ready, .js-reveal .promo-modal-media img.img-ready{
    opacity:1;
  }
  @keyframes imgShimmer{
    0%{background-position:100% 0;}
    100%{background-position:0 0;}
  }


  /* Header — top tagline bar + cream nav row with an overlapping emblem */
  header{
    position:sticky; top:0; z-index:50;
    box-shadow:0 4px 16px rgba(90,42,32,0.08);
  }
  .topbar{
    background:var(--ink); color:var(--white); text-align:center;
    padding:11px 20px; font-size:0.82rem; font-weight:600; letter-spacing:0.03em;
  }

  .promo-modal-overlay{
    display:none; position:fixed; inset:0; z-index:950;
    background:rgba(4,18,63,0.62); backdrop-filter:blur(3px);
    align-items:center; justify-content:center; padding:20px;
    opacity:0; transition:opacity .3s ease;
  }
  .promo-modal-overlay.show{display:flex; opacity:1;}
  .promo-modal{
    display:grid; grid-template-columns:1fr 1fr; max-width:620px; width:100%;
    background:var(--white); border-radius:16px; overflow:hidden; position:relative;
    border:2.5px solid var(--ink); box-shadow:8px 8px 0 var(--ink);
    transform:scale(0.92) translateY(14px) rotate(0deg); transition:transform .35s cubic-bezier(.34,1.56,.64,1);
  }
  .promo-modal-overlay.show .promo-modal{transform:scale(1) translateY(0);}
  @media (max-width:640px){ .promo-modal{grid-template-columns:1fr; max-height:90vh; overflow-y:auto;} }
  .promo-modal-close{
    position:absolute; top:14px; right:14px; z-index:3; width:32px; height:32px; border-radius:50%;
    background:var(--white); border:2px solid var(--ink); color:var(--ink);
    display:flex; align-items:center; justify-content:center; font-size:1.2rem; line-height:1;
    cursor:pointer; transition:background .2s ease;
  }
  .promo-modal-close:hover{background:var(--honey-gold);}
  .promo-modal-media{background:var(--honey-gold); min-height:280px; padding:14px; display:flex;}
  .promo-modal-media img{width:100%; height:100%; object-fit:cover; display:block; border-radius:10px; border:2.5px solid var(--ink);}
  @media (max-width:640px){ .promo-modal-media{min-height:0; height:230px; max-height:230px;} }
  .promo-modal-content{padding:38px 34px; display:flex; flex-direction:column; gap:14px; justify-content:center;}
  @media (max-width:640px){ .promo-modal-content{padding:28px 24px 30px;} }
  .promo-modal-content .eyebrow{margin-bottom:-6px;}
  .promo-modal-content h3{
    font-family:'Passion One',sans-serif; font-weight:700; text-transform:uppercase;
    font-size:1.6rem; line-height:1.15; color:var(--ink);
  }
  @media (max-width:640px){ .promo-modal-content h3{font-size:1.3rem;} }
  .promo-modal-content h3 .accent{color:var(--red);}
  .promo-modal-cta{width:100%;}
  .promo-modal-fine{font-size:0.78rem; color:var(--ink-soft); line-height:1.4;}
  .promo-modal-dismiss{
    background:none; border:none; padding:0; color:var(--ink-soft); font-size:0.82rem;
    text-decoration:underline; cursor:pointer; align-self:flex-start;
  }
  .promo-modal-dismiss:hover{color:var(--ink);}

  .navrow{
    background:var(--cream);
    display:flex; align-items:center; justify-content:space-between;
    gap:24px; padding:16px 40px 16px 30px; position:relative;
    max-width:none; width:100%; margin:0;
  }

  .logo-badge{
    width:112px; height:112px; flex-shrink:0;
    background:transparent;
    display:flex; align-items:center; justify-content:center;
    margin-top:-52px;
    position:relative; z-index:5;
  }
  .logo-badge img{width:100%; height:100%; object-fit:contain;}
  @media (max-width:640px){ .navrow{padding:14px 20px;} .logo-badge{width:80px; height:80px; margin-top:-34px;} }

  .nav-links{display:flex; align-items:center; gap:24px; flex-wrap:wrap;}
  .nav-links a{
    font-family:'Passion One', sans-serif; font-size:1.15rem; font-weight:700;
    text-transform:uppercase; letter-spacing:-0.01em; color:var(--ink);
  }
  .nav-links a:hover{color:var(--red);}
  @media (max-width:1060px){ .nav-links{display:none;} }

  .nav-actions{display:flex; align-items:center; gap:12px; margin-top:-30px;}
  @media (max-width:640px){ .nav-actions{margin-top:-18px;} }

  /* WhatsApp quick-contact button */
  @keyframes waPulse{
    0%{box-shadow:0 3px 0 var(--deep-navy), 0 6px 14px rgba(4,18,63,0.25), 0 0 0 0 rgba(37,211,102,0.55);}
    70%{box-shadow:0 3px 0 var(--deep-navy), 0 6px 14px rgba(4,18,63,0.25), 0 0 0 10px rgba(37,211,102,0);}
    100%{box-shadow:0 3px 0 var(--deep-navy), 0 6px 14px rgba(4,18,63,0.25), 0 0 0 0 rgba(37,211,102,0);}
  }
  .btn-whatsapp{
    width:46px; height:46px; border-radius:50%; flex-shrink:0;
    background:radial-gradient(circle at 32% 28%, #3DE875, #25D366 60%, #1DAE52 100%); color:#fff;
    display:flex; align-items:center; justify-content:center;
    border:2px solid var(--deep-navy);
    box-shadow:0 3px 0 var(--deep-navy), 0 6px 14px rgba(4,18,63,0.25);
    transition:transform .2s ease, box-shadow .2s ease;
    animation:waPulse 2.4s ease-out infinite;
  }
  .btn-whatsapp svg{width:24px; height:24px; filter:drop-shadow(0 1px 1px rgba(0,0,0,0.15));}
  .btn-whatsapp:hover{transform:translateY(1px) scale(1.06); box-shadow:0 2px 0 var(--deep-navy), 0 4px 10px rgba(4,18,63,0.22); animation-play-state:paused;}
  @media (max-width:640px){ .btn-whatsapp{width:38px; height:38px;} .btn-whatsapp svg{width:19px; height:19px;} }

  /* Leveled-up Réserver button */
  .btn-book{
    border-radius:999px; padding:0 32px; height:54px; gap:9px;
    background:linear-gradient(180deg, #FFE585 0%, var(--honey-gold) 45%, #E0AC08 100%);
    box-shadow:0 4px 0 var(--deep-navy), 0 12px 24px rgba(4,18,63,0.36), inset 0 1px 0 rgba(255,255,255,0.55);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .btn-book:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 0 var(--deep-navy), 0 16px 28px rgba(4,18,63,0.4), inset 0 1px 0 rgba(255,255,255,0.55);
  }
  .btn-book:active{transform:translateY(2px); box-shadow:0 2px 0 var(--deep-navy), 0 6px 12px rgba(4,18,63,0.3), inset 0 1px 0 rgba(255,255,255,0.55);}
  .btn-book-icon{flex-shrink:0; filter:drop-shadow(0 1px 1px rgba(4,18,63,0.25));}
  @media (max-width:640px){ .btn-book{padding:0 20px; height:46px; font-size:0.68rem; gap:6px;} .btn-book-icon{width:13px; height:13px;} }

  /* Hamburger menu toggle (mobile / tablet) */
  .menu-toggle{
    display:none; width:46px; height:46px; border-radius:12px; flex-shrink:0;
    background:var(--white); border:2px solid var(--ink); cursor:pointer;
    flex-direction:column; align-items:center; justify-content:center; gap:5px;
    box-shadow:0 3px 0 var(--ink), 0 6px 12px rgba(4,18,63,0.18);
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
  }
  .menu-toggle span{width:20px; height:2.5px; border-radius:2px; background:var(--ink); transition:transform .25s ease, opacity .25s ease, background .2s ease;}
  .menu-toggle:hover{background:var(--honey-gold); transform:translateY(1px); box-shadow:0 2px 0 var(--ink), 0 4px 8px rgba(4,18,63,0.16);}
  .menu-toggle.active{background:var(--deep-navy); border-color:var(--deep-navy);}
  .menu-toggle.active span{background:var(--honey-gold);}
  .menu-toggle.active span:nth-child(1){transform:translateY(7.5px) rotate(45deg);}
  .menu-toggle.active span:nth-child(2){opacity:0;}
  .menu-toggle.active span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg);}
  @media (max-width:1060px){ .menu-toggle{display:flex;} }
  @media (max-width:640px){ .menu-toggle{width:38px; height:38px; border-radius:10px;} .menu-toggle span{width:16px;} .menu-toggle.active span:nth-child(1){transform:translateY(6px) rotate(45deg);} .menu-toggle.active span:nth-child(3){transform:translateY(-6px) rotate(-45deg);} }

  /* Mobile dropdown menu */
  .mobile-menu{
    display:flex; flex-direction:column; gap:2px;
    max-height:0; overflow:hidden; background:var(--cream);
    transition:max-height .35s ease;
  }
  .mobile-menu.open{max-height:420px; border-top:1px solid rgba(4,18,63,0.1);}
  .mobile-menu a{
    padding:16px 24px; font-family:'Passion One', sans-serif; font-size:1.35rem; font-weight:700;
    text-transform:uppercase; letter-spacing:-0.01em; color:var(--ink);
    border-bottom:1px solid rgba(4,18,63,0.08);
  }
  .mobile-menu a:hover{background:rgba(254,196,11,0.15);}
  .mobile-menu .btn{margin:14px 24px 18px; width:calc(100% - 48px); text-align:center; border-bottom:none;}


  /* Hero */
  .hero{padding:70px 0 50px; position:relative; overflow:hidden;}
  @media (max-width:640px){ .hero{padding:22px 0 16px;} }
  .hero-image{
    position:absolute; inset:0; width:100%; height:100%;
    object-fit:cover; z-index:0;
  }
  .hero-blob{
    position:absolute; top:-120px; right:-140px; width:480px; height:480px;
    border-radius:50%; background:radial-gradient(circle at 30% 30%, var(--gold), transparent 70%);
    opacity:0.35; pointer-events:none; z-index:0;
  }
  .hero-top{max-width:640px; margin:0 auto 56px; text-align:center; position:relative; z-index:1;}
  .hero-top h1{font-size:3.8rem; margin-bottom:26px;}
  @media (max-width:640px){ .hero-top{margin:0 auto 18px;} .hero-top h1{font-size:2.2rem; margin-bottom:12px;} }
  .hero-top p{color:var(--ink-soft); font-size:1.05rem; margin-bottom:30px;}
  @media (max-width:640px){ .hero-top p{font-size:0.88rem; margin-bottom:14px;} }
  .hero-ctas{display:flex; gap:14px; justify-content:center; flex-wrap:wrap;}

  /* Hero stats — small auto-sliding carousel */
  .hero-stats-slider{
    max-width:260px; margin:44px auto 0; position:relative; z-index:1; overflow:hidden;
  }
  @media (max-width:640px){ .hero-stats-slider{margin:12px auto 0;} }
  .hero-stats-track{display:flex; transition:transform .5s ease;}
  .hero-stat{flex:0 0 100%; text-align:center;}
  .hero-stat b{display:block; font-family:'Passion One',sans-serif; font-weight:700; font-size:2.1rem; letter-spacing:-0.02em;}
  .hero-stat span{font-size:0.8rem; color:var(--ink-soft); font-weight:600;}
  .hero-stats-dots{display:flex; justify-content:center; gap:7px; margin-top:14px;}
  .hero-stats-dots .dot{
    width:6px; height:6px; border-radius:50%; background:var(--ink-soft);
    opacity:0.3; cursor:pointer; transition:opacity .3s ease, background .3s ease, transform .3s ease;
  }
  .hero-stats-dots .dot.active{opacity:1; background:var(--honey-gold); transform:scale(1.25);}


  .hero-top h1{color:#FFFFFF; text-shadow:0 3px 16px rgba(0,0,0,0.55);}
  .hero-top .eyebrow{color:var(--honey-gold); text-shadow:0 3px 16px rgba(0,0,0,0.55);}
  .hero-top p{color:#FFFFFF; text-shadow:0 2px 10px rgba(0,0,0,0.5);}
  .hero-stat b{color:#FFFFFF; text-shadow:0 3px 12px rgba(0,0,0,0.5);}
  .hero-stat span{color:rgba(255,255,255,0.85); text-shadow:0 2px 8px rgba(0,0,0,0.5);}

  /* Section rhythm */
  section{padding:110px 0;}
  @media (max-width:760px){ section{padding:64px 0;} }
  .section-cream{background:var(--cream); scroll-margin-top:140px;}
  .section-orange{background:var(--orange); color:var(--deep-navy);}
  .section-orange h2, .section-orange h3, .section-orange h4{color:var(--deep-navy);}
  .section-orange p{color:rgba(4,18,63,0.78);}
  .section-orange .eyebrow{color:var(--deep-navy); opacity:0.6;}
  .section-beige{background:var(--beige); scroll-margin-top:140px;}

  .section-head{max-width:600px; margin:0 auto 60px; text-align:center;}
  .section-head h2{font-size:2.3rem; margin-bottom:16px;}
  .section-head p{color:var(--ink-soft);}
  .section-orange .section-head p{color:rgba(4,18,63,0.78);}

  /* ===== Activity cards — rebuilt to match reference card system ===== */
  .card-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:30px;}
  @media (max-width:900px){ .card-grid{grid-template-columns:1fr 1fr;} }
  @media (max-width:600px){ .card-grid{grid-template-columns:1fr;} }

  .a-card{
    background:var(--white);
    border-radius:14px;
    border:2.5px solid var(--ink);
    box-shadow:7px 7px 0 var(--ink);
    overflow:hidden;
    display:flex; flex-direction:column;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .a-card:hover{transform:translate(-3px,-3px); box-shadow:10px 10px 0 var(--ink);}
  .a-media{aspect-ratio:4/2.3; overflow:hidden; position:relative;
    clip-path:polygon(0 0, 100% 0, 100% 86%, 0 100%);}
  .a-media div{width:100%; height:100%;}

  .a-ribbon{
    position:absolute; top:17px; left:-42px; width:175px; text-align:center;
    background:var(--ink); color:var(--white); font-family:'Passion One',sans-serif; font-weight:700;
    font-size:0.7rem; letter-spacing:0.1em; text-transform:uppercase; padding:7px 0;
    transform:rotate(-40deg); box-shadow:0 3px 8px rgba(0,0,0,0.3); z-index:2;
  }

  .a-body{padding:16px 24px 24px; display:flex; flex-direction:column; gap:12px; flex:1;}

  .a-body h3{
    font-size:1.4rem; text-transform:uppercase; letter-spacing:-0.01em;
    border-bottom:4px solid var(--orange); padding-bottom:7px; display:inline-block;
  }

  .a-pills{display:flex; flex-wrap:wrap; gap:8px;}
  .pill{
    display:inline-flex; align-items:center; padding:6px 13px; border-radius:6px;
    border:1.5px solid var(--ink); font-size:0.72rem; font-weight:700;
    text-transform:uppercase; letter-spacing:0.02em;
    color:var(--ink); background:var(--beige);
  }

  .a-desc{font-size:0.88rem; color:var(--ink-soft); line-height:1.5;}

  .a-included{display:flex; flex-wrap:wrap; align-items:center; gap:8px; font-size:0.78rem; color:var(--ink-soft);}
  .a-included .label{font-weight:600; color:var(--ink); margin-right:2px;}

  .a-bottom{display:flex; align-items:center; justify-content:space-between; gap:14px; margin-top:auto; padding-top:2px;}
  .a-price-block .label{display:block; font-size:0.7rem; color:var(--ink-soft); font-weight:600;}
  .a-price{font-family:'Passion One',sans-serif; font-weight:700; font-size:1.4rem; color:var(--ink);}
  .a-price-row{display:flex; align-items:baseline; gap:9px; flex-wrap:wrap;}
  .a-price-old{
    font-family:'DM Sans',sans-serif; font-weight:600; font-size:0.92rem;
    color:var(--ink-soft); text-decoration:line-through; text-decoration-thickness:1.5px;
    opacity:0.75;
  }
  .p-card.featured .a-price-old{color:rgba(255,255,255,0.55);}
  .discount-badge{
    display:inline-flex; align-items:center; padding:3px 9px; border-radius:6px;
    background:var(--red); color:#fff; font-family:'Passion One',sans-serif;
    font-size:0.72rem; font-weight:700; letter-spacing:0.02em;
  }
  .p-card.featured .discount-badge{background:var(--honey-gold); color:var(--deep-navy);}

  .a-secondary{font-size:0.78rem; font-weight:600; color:var(--ink-soft); border-bottom:1px solid rgba(90,42,32,0.25); padding-bottom:1px;}

  .a-whatsapp-btn{
    display:inline-flex; align-items:center; gap:6px;
    padding:8px 15px; border-radius:999px;
    background:#25D366; color:#fff; font-weight:700; font-size:0.72rem;
    text-transform:uppercase; letter-spacing:0.02em;
    border:1.5px solid var(--deep-navy);
    box-shadow:0 2px 0 var(--deep-navy), 0 4px 8px rgba(4,18,63,0.18);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .a-whatsapp-btn svg{width:14px; height:14px; flex-shrink:0;}
  .a-whatsapp-btn:hover{transform:translateY(1px); box-shadow:0 1px 0 var(--deep-navy), 0 2px 5px rgba(4,18,63,0.16);}
  .a-secondary:hover{color:var(--ink); border-color:var(--ink);}
  .a-foot-links{display:flex; justify-content:space-between; align-items:center; gap:14px;}

  /* Tea split section */
  .split{
    display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center;
  }
  @media (max-width:860px){ .split{grid-template-columns:1fr; gap:36px;} }
  .split.reverse .split-media{order:2;}
  .split-media{border-radius:var(--radius); overflow:hidden; aspect-ratio:4/3.4;}
  .split-copy .eyebrow{margin-bottom:16px;}
  .split-copy h2{font-size:2.1rem; margin-bottom:20px;}
  .split-copy p{margin-bottom:14px;}
  .split-copy p:last-of-type{margin-bottom:26px;}

  /* Featured packages — same card language as activities */
  .package-grid{display:grid; grid-template-columns:1fr 1fr; gap:32px;}
  @media (max-width:760px){ .package-grid{grid-template-columns:1fr;} }
  .p-card{
    border-radius:14px; overflow:hidden; background:var(--white);
    border:2.5px solid var(--ink); box-shadow:7px 7px 0 var(--ink);
    position:relative; display:flex; flex-direction:column;
  }
  .p-card.featured{background:var(--ink); color:var(--white); border-color:var(--ink);}
  .p-card.featured h3, .p-card.featured .a-price{color:var(--white);}
  .p-card.featured .a-desc, .p-card.featured .a-price-block .label{color:rgba(255,248,237,0.72);}
  .p-media{aspect-ratio:16/10; clip-path:polygon(0 0, 100% 0, 100% 90%, 0 100%);}
  .p-body{padding:26px 28px 28px; display:flex; flex-direction:column; gap:14px; flex:1;}
  .p-badge{
    position:absolute; top:20px; left:20px; z-index:2;
    display:inline-block; background:var(--gold); color:var(--ink);
    border:1.5px solid var(--ink);
    font-size:0.72rem; font-weight:700; text-transform:uppercase; padding:8px 16px; border-radius:6px;
  }
  .p-body h3{
    font-size:1.5rem; text-transform:uppercase;
    border-bottom:4px solid var(--orange); padding-bottom:7px; display:inline-block;
  }
  .p-meta{font-size:0.86rem; color:var(--ink-soft);}
  .p-card.featured .p-meta{color:rgba(255,248,237,0.72);}

  /* Why choose - alternating rows */
  .why-row{display:grid; grid-template-columns:44px 1fr; gap:22px; margin-bottom:36px; align-items:center;}
  .why-row:last-child{margin-bottom:0;}
  .why-mark{
    width:44px; height:44px;
    display:flex; align-items:center; justify-content:center;
    color:var(--red); flex-shrink:0; font-size:1.1rem;
  }
  .why-mark img{width:40px; height:40px; object-fit:contain;}
  .step-mark img{width:44px; height:44px; object-fit:contain;}
  .why-row h4{font-size:1.08rem; margin-bottom:6px; text-transform:none;}
  .why-row p{font-size:0.9rem; color:var(--ink-soft);}

  /* Steps */
  .steps-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:40px 30px;}
  @media (max-width:760px){ .steps-grid{grid-template-columns:1fr 1fr;} }
  @media (max-width:480px){ .steps-grid{grid-template-columns:1fr;} }
  .step{text-align:center;}
  .step-mark{
    width:60px; height:60px;
    display:flex; align-items:center; justify-content:center; margin:0 auto 18px;
  }
  .step h4{font-size:1rem; margin-bottom:8px; text-transform:none;}
  .step p{font-size:0.86rem;}

  /* Made-for-you section */
  .made-section{background:var(--deep-navy); color:var(--white); padding:100px 0; position:relative; overflow:hidden;}
  @media (max-width:760px){ .made-section{padding:60px 0;} }
  .made-header{display:flex; justify-content:space-between; align-items:flex-start; gap:20px; flex-wrap:wrap; margin-bottom:56px;}
  .made-section .eyebrow{color:var(--honey-gold);}
  .made-header h2{color:var(--white); font-size:2.4rem; max-width:520px;}
  .made-header h2 .accent{color:var(--honey-gold);}
  @media (max-width:640px){ .made-header h2{font-size:1.8rem;} }
  .made-intro{color:rgba(255,255,255,0.75); font-size:1rem; max-width:640px; margin:-30px 0 40px;}

  .made-grid{display:block;}
  .made-copy{display:grid; grid-template-columns:1fr 1fr; gap:20px 28px;}
  @media (max-width:760px){ .made-copy{grid-template-columns:1fr;} }

  .made-feature{border:1.5px solid rgba(254,196,11,0.35); border-radius:16px; padding:22px 24px; transition:border-color .25s ease, background .25s ease;}
  .made-feature:hover{border-color:var(--honey-gold); background:rgba(254,196,11,0.06);}
  .made-feature:last-child{margin-bottom:0;}
  .made-feature h4{font-family:'Passion One',sans-serif; text-transform:uppercase; letter-spacing:-0.01em; font-size:1.15rem; color:var(--honey-gold); margin-bottom:8px;}
  .made-feature p{font-size:0.9rem; color:rgba(255,255,255,0.72);}

  /* FAQ */
  .faq-list{max-width:780px; margin:0 auto;}
  .faq-item{border-bottom:1px solid rgba(90,42,32,0.15);}
  .faq-item:first-child{border-top:1px solid rgba(90,42,32,0.15);}
  .faq-q{
    display:flex; align-items:center; justify-content:space-between; gap:20px; width:100%;
    padding:26px 4px; cursor:pointer; font-weight:600; font-size:1.02rem;
    background:none; border:none; text-align:left; font-family:inherit; color:inherit;
  }
  .faq-q:focus-visible{outline:2px solid var(--honey-gold); outline-offset:2px;}
  .faq-q .plus{font-size:1.4rem; color:var(--red); transition:transform .3s ease; flex-shrink:0; font-weight:300;}
  .faq-item.open .plus{transform:rotate(45deg);}
  .faq-a{max-height:0; overflow:hidden; transition:max-height .3s ease;}
  .faq-a p{padding:0 4px 26px; color:var(--ink-soft); font-size:0.94rem; max-width:660px;}

  /* Testimonials */
  .rating-strip{display:flex; align-items:center; justify-content:center; gap:12px; margin-bottom:52px; flex-wrap:wrap;}
  .rating-strip .num{font-family:'Passion One',sans-serif; font-weight:700; font-size:1.5rem;}
  .stars{color:var(--gold); font-size:1rem; letter-spacing:2px;}
  .testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
  @media (max-width:860px){ .testi-grid{grid-template-columns:1fr;} }
  .t-card{background:var(--white); border-radius:var(--radius-sm); padding:32px; border:1px solid rgba(90,42,32,0.07);}
  .t-head{display:flex; align-items:center; gap:14px; margin-bottom:14px;}
  .t-avatar{
    width:42px; height:42px; border-radius:50%; background:var(--deep-navy);
    color:var(--white); display:flex; align-items:center; justify-content:center;
    font-family:'Passion One',sans-serif; font-weight:700;
  }
  .t-name{font-weight:600; font-size:0.92rem;}
  .t-loc{font-size:0.76rem; color:var(--ink-soft);}
  .t-card p{font-size:0.9rem; color:var(--ink-soft);}

  /* Guide links */
  .guide-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:2px;}
  @media (max-width:760px){ .guide-grid{grid-template-columns:1fr 1fr;} }
  @media (max-width:480px){ .guide-grid{grid-template-columns:1fr;} }
  .guide-link{
    background:var(--white); padding:26px 24px; font-weight:600; font-size:0.94rem;
    border-radius:var(--radius-sm); transition:background .3s ease;
  }
  .guide-link:hover{background:var(--gold);}

  /* Booking modal */
  .booking-modal-overlay{
    display:none; position:fixed; inset:0; z-index:1000;
    background:rgba(4,18,63,0.6); backdrop-filter:blur(4px);
    align-items:center; justify-content:center; padding:20px;
  }
  .booking-modal-overlay.open{display:flex;}
  .booking-modal{
    background:var(--white); border-radius:14px; border:2.5px solid var(--ink); width:100%; max-width:600px;
    max-height:min(560px,86vh); overflow:hidden; padding:28px 34px 24px; position:relative;
    box-shadow:8px 8px 0 var(--ink);
    animation:modalPop .25s ease;
    display:flex; flex-direction:column;
  }
  @keyframes modalPop{from{opacity:0; transform:scale(0.94) translateY(14px);} to{opacity:1; transform:scale(1) translateY(0);}}
  @media (max-width:640px){ .booking-modal{padding:24px 20px 18px; border-radius:14px; max-height:88vh;} }
  .booking-modal-close{
    position:absolute; top:16px; right:16px; width:38px; height:38px; border-radius:50%;
    background:var(--cream); border:2px solid var(--ink); color:var(--ink);
    display:flex; align-items:center; justify-content:center; font-size:1.4rem; line-height:1;
    cursor:pointer; transition:background .2s ease, transform .2s ease;
    z-index:5;
  }
  .booking-modal-close:hover{background:var(--honey-gold); transform:rotate(90deg);}
  .booking-modal .eyebrow{color:var(--honey-gold); text-shadow:0 1px 0 rgba(4,18,63,0.15);}

  .booking-form{display:flex; flex-direction:column; flex:1; min-height:0;}
  .booking-form-scroll{overflow-y:auto; flex:1; min-height:0; padding-right:8px; margin-right:-8px;}
  .booking-form-scroll::-webkit-scrollbar{width:6px;}
  .booking-form-scroll::-webkit-scrollbar-thumb{background:var(--gold); border-radius:10px;}
  .form-row{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
  @media (max-width:600px){ .form-row{grid-template-columns:1fr;} }
  .form-field{display:flex; flex-direction:column; gap:7px; margin-bottom:20px;}
  .form-field label{font-size:0.78rem; font-weight:700; text-transform:uppercase; letter-spacing:0.03em; color:var(--ink);}
  .form-field input, .form-field select, .form-field textarea{
    font-family:'DM Sans', sans-serif; font-size:0.95rem; color:var(--ink);
    padding:13px 16px; border-radius:10px; border:1.5px solid rgba(4,18,63,0.2);
    background:var(--cream); outline:none; transition:border-color .2s ease, box-shadow .2s ease;
  }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus{
    border-color:var(--honey-gold); box-shadow:0 0 0 3px rgba(254,196,11,0.25);
  }
  .form-field textarea{resize:vertical; min-height:100px; font-family:'DM Sans', sans-serif;}
  .form-submit{width:100%; margin-top:14px; flex-shrink:0;}
  .form-note{margin-top:10px; font-size:0.85rem; font-weight:600; text-align:center; min-height:1.2em; flex-shrink:0;}
  .form-note.success{color:#1e8e3e;}

  /* Footer */
  footer{background:var(--ink); color:rgba(255,248,237,0.7); padding:70px 0 30px;}
  .foot-top{display:flex; justify-content:space-between; gap:50px; flex-wrap:wrap; margin-bottom:50px;}
  .foot-logo{font-family:'Passion One',sans-serif; font-weight:700; text-transform:uppercase; letter-spacing:-0.01em; font-size:1.6rem; color:var(--white); margin-bottom:14px;}
  .foot-logo-badge{width:88px; height:88px; margin-bottom:14px; display:flex; align-items:center; justify-content:center; background:var(--white); border-radius:50%; padding:6px;}
  .foot-logo-badge img{width:100%; height:100%; object-fit:contain;}
  .foot-col h5{color:var(--white); font-size:0.82rem; margin-bottom:16px; font-weight:600;}
  .foot-col a{display:block; font-size:0.88rem; margin-bottom:11px;}
  /* Showcase CTA (grid panel + wave + wordmark) */
  .showcase-cta{background:var(--cream); overflow:hidden; padding:0;}
  .showcase-top{
    position:relative; background:var(--honey-gold);
    background-image:
      linear-gradient(rgba(4,18,63,0.18) 1.5px, transparent 1.5px),
      linear-gradient(90deg, rgba(4,18,63,0.18) 1.5px, transparent 1.5px);
    background-size:60px 60px;
    padding:90px 40px 70px; display:flex; align-items:center; justify-content:center;
  }
  @media (max-width:760px){ .showcase-top{padding:70px 24px 56px; background-size:40px 40px;} }

  .showcase-btn{
    display:inline-flex; align-items:center; justify-content:center;
    background:var(--white); color:var(--deep-navy); border:4px solid var(--deep-navy);
    border-radius:999px; padding:26px 54px; font-family:'Passion One',sans-serif;
    font-weight:700; font-size:1.5rem; text-transform:uppercase; letter-spacing:0.01em;
    box-shadow:0 8px 0 var(--deep-navy); position:relative; z-index:2;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .showcase-btn:hover{transform:translateY(3px); box-shadow:0 5px 0 var(--deep-navy);}
  @media (max-width:760px){ .showcase-btn{padding:18px 32px; font-size:1.05rem; border-width:3px; box-shadow:0 6px 0 var(--deep-navy);} }

  @media (max-width:760px){ .showcase-top{flex-direction:column;} }

  .showcase-wave{position:absolute; bottom:-1px; left:0; width:100%; height:32px; display:block;}

  .foot-col a:hover{color:var(--gold);}
  .foot-bottom{border-top:1px solid rgba(255,248,237,0.14); padding-top:22px; font-size:0.78rem; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;}
