:root{
    --navy:#0B2E58;
    --navy-deep:#071D3A;
    --blue:#1957A6;
    --gold:#F0AE00;
    --gold-deep:#C98E00;
    --cream:#FFFBF2;
    --ink:#171B22;
    --slate:#5B6472;
    --line:#E6E2D8;
    --white:#FFFFFF;
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  html{scroll-behavior:smooth;width:100%;overflow-x:hidden;}
  body{
    font-family:'Helvetica Neue', Arial, sans-serif;
    color:var(--ink);
    background:var(--white);
    -webkit-font-smoothing:antialiased;
    width:100%;
    overflow-x:hidden;
  }
  a{color:inherit;text-decoration:none;}
  ul{list-style:none;}
  img{max-width:100%;display:block;}
  .wrap{max-width:1240px;margin:0 auto;padding:0 32px;}

  h1,h2,h3,h4{
    font-family:'Georgia','Times New Roman',serif;
    font-weight:700;
    letter-spacing:-0.01em;
    line-height:1.08;
  }

  /* ===== TOP STRIP ===== */
  .top-strip{
    background:var(--navy-deep);
    color:#CFE0F2;
    font-size:13px;
    padding:9px 0;
    text-align:center;
    letter-spacing:0.02em;
  }
  .top-strip strong{color:var(--gold);}
  .top-strip a{border-bottom:1px solid rgba(240,174,0,0.5);margin-left:6px;}

  /* ===== HEADER ===== */
  header{
    background:var(--white);
    border-bottom:1px solid var(--line);
    position:sticky;top:0;z-index:200;
  }
  .nav-row{
    display:flex;align-items:center;justify-content:space-between;
    padding:18px 0;
  }
  .logo{
    display:flex;align-items:center;gap:10px;
    font-family:Georgia,serif;font-weight:800;font-size:22px;
    color:var(--navy);
  }
  .logo .mark{
    width:38px;height:38px;border-radius:50%;
    background:var(--gold);
    display:flex;align-items:center;justify-content:center;
    font-family:Georgia,serif;font-weight:800;color:var(--navy-deep);
    font-size:15px;
    overflow:hidden;
    flex-shrink:0;
  }
  .logo .mark img{width:100%;height:100%;object-fit:cover;object-position:center 32%;transform:scale(1.65);}
  nav.links{display:flex;gap:32px;font-size:14px;font-weight:600;color:var(--ink);}
  nav.links a{position:relative;padding:6px 0;}
  nav.links a::after{
    content:"";position:absolute;left:0;bottom:0;width:0;height:2px;
    background:var(--gold);transition:width .2s ease;
  }
  nav.links a:hover::after{width:100%;}
  .nav-right{display:flex;align-items:center;gap:16px;}
  .icon-circle{
    width:38px;height:38px;border-radius:50%;
    border:1px solid var(--line);
    display:flex;align-items:center;justify-content:center;
    font-size:14px;color:var(--navy);
    cursor:pointer;
  }
  .btn{
    display:inline-flex;align-items:center;gap:8px;
    padding:12px 24px;
    border-radius:4px;
    font-weight:700;font-size:13.5px;
    letter-spacing:0.02em;
    cursor:pointer;
    border:2px solid transparent;
    transition:all .18s ease;
    text-transform:uppercase;
  }
  .btn-gold{background:var(--gold);color:var(--navy-deep);}
  .btn-gold:hover{background:var(--gold-deep);}
  .btn-navy-outline{border-color:var(--navy);color:var(--navy);}
  .btn-navy-outline:hover{background:var(--navy);color:var(--white);}
  .btn-white-outline{border-color:rgba(255,255,255,0.7);color:var(--white);}
  .btn-white-outline:hover{background:rgba(255,255,255,0.15);}
  @media(max-width:960px){nav.links{display:none;}}

  /* ===== HERO — full bleed photographic ===== */
  :root{
    --topstrip-h:37px;
    --header-h:75px;
  }
  .hero{
    position:relative;
    min-height:620px;
    display:flex;
    align-items:center;
    background:
      linear-gradient(100deg, rgba(7,29,58,0.94) 0%, rgba(7,29,58,0.75) 45%, rgba(7,29,58,0.25) 75%),
      url('awards-night.jpeg') center/cover no-repeat;
    color:var(--white);
    padding:70px 0;
  }
  .hero-inner{max-width:640px;position:relative;z-index:2;}
  .hero .eyebrow{
    display:inline-flex;align-items:center;gap:8px;
    font-size:13px;font-weight:700;letter-spacing:0.1em;
    text-transform:uppercase;color:var(--gold);
    margin-bottom:20px;
  }
  .hero .eyebrow::before{content:"";width:26px;height:2px;background:var(--gold);}
  .hero h1{
    font-size:clamp(36px,5.4vw,58px);
    margin-bottom:22px;
  }
  .hero h1 em{font-style:normal;color:var(--gold);}
  .hero-title-large{
    font-size:clamp(40px,6vw,64px);
    margin-bottom:18px;
  }
  .hero-subtitle-medium{
    font-size:clamp(20px,2.6vw,26px);
    color:var(--gold);
    font-family:Georgia,serif;
    max-width:560px;
    margin-bottom:14px;
    line-height:1.4;
  }
  .hero-subtitle-small{
    font-size:15px;
    color:#DCE7F3;
    max-width:480px;
    margin-bottom:34px;
    line-height:1.6;
  }
  .hero p{
    font-size:18px;
    color:#DCE7F3;
    max-width:520px;
    margin-bottom:34px;
    line-height:1.6;
  }
  .hero-ctas{display:flex;gap:14px;flex-wrap:wrap;}

  /* ===== HERO → IMPACT TRANSITION ===== */
  .hero-transition{
    display:none;
    line-height:0;
    margin-top:-2px;
  }
  .hero-transition svg{display:block;width:100%;height:56px;}

  /* ===== IMPACT SECTION HEADING (mobile) ===== */
  .impact-head-wrap{display:none;}
  .impact-head{
    text-align:center;justify-content:center;margin-bottom:0;
  }
  .impact-head .eyebrow{
    display:inline-flex;align-items:center;gap:8px;justify-content:center;width:100%;
  }
  .impact-head .eyebrow::before{content:"";width:22px;height:2px;background:var(--gold);}
  .impact-head h2{
    font-size:clamp(24px,6vw,28px);color:var(--navy-deep);margin-top:8px;
  }
  .impact-head-divider{
    display:flex;align-items:center;justify-content:center;gap:10px;
    margin-top:14px;color:var(--navy-deep);font-size:13px;
  }
  .impact-head-divider::before,.impact-head-divider::after{
    content:"";width:34px;height:1px;background:var(--line);
  }

  /* ===== STAT BAND ===== */
  .stat-band{
    background:var(--navy);
    color:var(--white);
  }
  .stat-band .wrap{
    display:grid;grid-template-columns:repeat(4,1fr);
    padding:0;
  }
  .stat-item{
    padding:34px 22px 30px;
    text-align:center;
    border-right:1px solid rgba(255,255,255,0.12);
  }
  /* Desktop: only the 4 primary metrics are visible (the last 2 are
     display:none), so the 4th item is the visual last column — target it
     explicitly rather than :last-of-type, which ignores display:none. */
  .stat-item:nth-child(4){border-right:none;}
  .stat-mobile-only{display:none;}
  .stat-band strong{
    display:block;font-family:Georgia,serif;font-size:32px;color:var(--gold);margin-bottom:6px;
  }
  .stat-band .stat-label{display:block;font-size:12px;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;color:var(--white);margin-bottom:6px;}
  .stat-band .stat-desc{display:block;font-size:12px;line-height:1.5;color:#AFC3D6;text-transform:none;letter-spacing:0;max-width:220px;margin:0 auto;}

  /* Desktop: hide metric icons — mobile keeps them (responsive requirement) */
  .stat-icon{display:none;}
  @media(min-width:769px){
    .stat-band .stat-icon{display:none !important;}
  }

  /* Tablet: 4 primary metrics only (same as desktop), 2-column so labels
     have room to breathe at medium widths. */
  @media(max-width:900px) and (min-width:769px){
    .stat-band .wrap{grid-template-columns:repeat(2,1fr);}
    .stat-item{border-right:1px solid rgba(255,255,255,0.12);border-bottom:1px solid rgba(255,255,255,0.12);}
    .stat-item:nth-child(2n){border-right:none;}
    .stat-item:nth-child(3),.stat-item:nth-child(4){border-bottom:none;}
  }

  /* Mobile: all 6 metrics, 3-column grid — matches reference. */
  @media(max-width:768px){
    .stat-band .wrap{grid-template-columns:repeat(3,1fr);}
    .stat-mobile-only{display:block;}
  }

  /* ===== SECTION HEAD ===== */
  section{padding:100px 0;display:block;width:100%;}
  .section-head{
    display:flex;justify-content:space-between;align-items:flex-end;
    gap:32px;margin-bottom:56px;flex-wrap:wrap;
  }
  .section-head .eyebrow{
    font-size:13px;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;color:var(--blue);
    margin-bottom:10px;display:block;
  }
  .section-head h2{font-size:clamp(28px,3.6vw,40px);color:var(--navy-deep);max-width:520px;}
  .section-head .desc{max-width:380px;color:var(--slate);font-size:15px;line-height:1.6;}

  /* ===== CATEGORY — photographic tiles ===== */
  .cat-grid{
    display:grid;grid-template-columns:repeat(4,1fr);gap:20px;
  }
  @media(max-width:900px){.cat-grid{grid-template-columns:repeat(2,1fr);}}
  .cat-tile{
    position:relative;
    height:220px;
    border-radius:8px;
    overflow:hidden;
    display:flex;align-items:flex-end;
    background-size:cover;background-position:center;
  }
  .cat-tile::after{
    content:"";position:absolute;inset:0;
    background:linear-gradient(180deg, rgba(7,29,58,0) 30%, rgba(7,29,58,0.85) 100%);
  }
  .cat-tile .info{position:relative;z-index:2;padding:20px;color:var(--white);}
  .cat-tile .info h4{font-size:17px;margin-bottom:3px;}
  .cat-tile .info span{font-size:12.5px;color:var(--gold);font-weight:600;}

  /* ===== SPOTLIGHT — editorial cards w/ photos ===== */
  .spot-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;align-items:stretch;}
  @media(max-width:1100px) and (min-width:901px){.spot-grid{grid-template-columns:repeat(4,1fr);gap:18px;}}
  @media(max-width:900px){.spot-grid{grid-template-columns:repeat(2,1fr);gap:20px;}}
  @media(max-width:600px){.spot-grid{grid-template-columns:1fr;gap:16px;}}
  .spot-card{border:1px solid var(--line);border-radius:10px;overflow:hidden;background:var(--white);display:flex;flex-direction:column;transition:transform .18s ease, box-shadow .18s ease;}
  .spot-card:hover{transform:translateY(-3px);box-shadow:0 10px 24px rgba(7,29,58,0.08);}
  .spot-photo{height:200px;min-height:200px;background-size:cover;background-position:center;position:relative;flex-shrink:0;}
  .spot-photo .badge{
    position:absolute;top:12px;left:12px;
    background:var(--gold);color:var(--navy-deep);
    font-size:10.5px;font-weight:800;letter-spacing:0.05em;text-transform:uppercase;
    padding:5px 10px;border-radius:3px;
  }
  .spot-body{padding:16px 18px 18px;flex:1;display:flex;flex-direction:column;justify-content:center;min-height:72px;}
  .spot-body h4{font-size:15.5px;color:var(--ink);margin-bottom:4px;line-height:1.25;}
  .spot-body span{font-size:12.5px;color:var(--slate);line-height:1.45;}

  /* ===== QUOTE BAND ===== */
  .quote-band{
    background:var(--cream);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    text-align:center;
    padding:90px 0;
  }
  .quote-band blockquote{
    font-family:Georgia,serif;
    font-size:clamp(22px,3vw,32px);
    color:var(--navy-deep);
    max-width:760px;
    margin:0 auto 20px;
    line-height:1.4;
  }
  .quote-band blockquote::before{content:"“";color:var(--gold);}
  .quote-band blockquote::after{content:"”";color:var(--gold);}
  .quote-band cite{font-style:normal;font-size:14px;color:var(--slate);font-weight:600;}

  /* ===== HOW IT WORKS — split image/steps ===== */
  .how-split{
    display:grid;grid-template-columns:1fr 1.1fr;gap:64px;align-items:center;
  }
  @media(max-width:900px){.how-split{grid-template-columns:1fr;}}
  .how-image{
    height:520px;border-radius:8px;overflow:hidden;
    background:url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?q=80&w=1200&auto=format&fit=crop') center/cover;
  }
  .how-steps .step{
    display:flex;gap:22px;padding:26px 0;border-bottom:1px solid var(--line);
  }
  .how-steps .step:first-child{border-top:1px solid var(--line);}
  .step-num{
    flex:0 0 auto;
    font-family:Georgia,serif;font-weight:800;font-size:22px;color:var(--gold);
  }
  .step-text h3{font-size:19px;color:var(--navy-deep);margin-bottom:8px;}
  .step-text p{font-size:14.5px;color:var(--slate);line-height:1.6;}

  /* ===== PROGRAMS — three-panel photographic ===== */
  .prog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;align-items:stretch;}
  @media(max-width:900px){.prog-grid{grid-template-columns:1fr;gap:16px;}}
  .prog-card{
    position:relative;
    min-height:300px;
    height:300px;
    border-radius:10px;
    overflow:hidden;
    background-size:cover;background-position:center;
    display:flex;flex-direction:column;justify-content:flex-end;
    color:var(--white);
  }
  .prog-card::after{
    content:"";position:absolute;inset:0;
    background:linear-gradient(180deg, rgba(11,46,88,0.08) 0%, rgba(7,29,58,0.88) 68%, rgba(7,29,58,0.94) 100%);
  }
  .prog-body{position:relative;z-index:2;padding:22px 24px;}
  .prog-body h3{font-size:18px;margin-bottom:6px;line-height:1.25;}
  .prog-body p{font-size:13.5px;color:#D9E5F1;line-height:1.55;max-width:100%;}

  /* ===== EVENTS ===== */
  .events-row{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
  @media(max-width:900px){.events-row{grid-template-columns:1fr;}}
  .event-card{border:1px solid var(--line);border-radius:8px;overflow:hidden;}
  .event-banner{
    height:150px;position:relative;
    background:linear-gradient(135deg,var(--navy),var(--blue));
  }
  .event-banner .date{
    position:absolute;top:14px;left:14px;
    background:var(--white);color:var(--navy-deep);
    padding:8px 12px;border-radius:6px;
    text-align:center;line-height:1.1;
  }
  .event-banner .date strong{display:block;font-size:18px;font-family:Georgia,serif;}
  .event-banner .date span{font-size:10.5px;text-transform:uppercase;color:var(--slate);}
  .event-body{padding:20px;}
  .event-body h4{font-size:15.5px;color:var(--ink);margin-bottom:8px;font-family:Georgia,serif;}
  .event-body p{font-size:13.5px;color:var(--slate);line-height:1.5;}

  /* ===== UPCOMING EVENTS — month timeline (homepage) ===== */
  .month-events-row{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:stretch;}
  @media(max-width:900px){.month-events-row{grid-template-columns:1fr;gap:16px;}}
  .month-event-card{
    position:relative;
    display:flex;flex-direction:column;
    border:1px solid var(--line);border-radius:10px;
    background:var(--white);
    padding:26px 24px 24px;
    overflow:hidden;
    min-height:176px;
  }
  .month-event-card::before{
    content:"";position:absolute;top:0;left:0;right:0;height:4px;
    background:var(--gold);
  }
  .month-event-month{
    font-size:11.5px;font-weight:800;letter-spacing:0.13em;text-transform:uppercase;
    color:var(--blue);margin-bottom:14px;
    display:flex;align-items:center;gap:10px;
  }
  .month-event-month::after{content:"";flex:1;height:1px;background:#E8E2D6;}
  .month-event-card h4{
    font-family:Georgia,serif;font-size:18px;color:var(--navy-deep);line-height:1.35;margin-bottom:10px;min-height:48px;display:flex;align-items:flex-start;
  }
  .month-event-card p{font-size:13.5px;color:var(--slate);line-height:1.65;flex:1;}
  @media(max-width:768px){
    .month-event-card{padding:22px 20px;min-height:auto;}
    .month-event-card h4{font-size:17px;min-height:auto;}
  }

  /* ===== MEMBERSHIP ===== */
  .plan-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;}
  @media(max-width:900px){.plan-grid{grid-template-columns:1fr;}}
  .plan-card{
    border:1px solid var(--line);border-radius:8px;padding:40px;background:var(--white);
  }
  .plan-card.highlight{
    border-color:var(--gold);
    box-shadow:0 0 0 1px var(--gold);
  }
  .plan-tag{
    display:inline-block;font-size:11px;font-weight:800;letter-spacing:0.08em;text-transform:uppercase;
    color:var(--navy);background:#E9EFF6;padding:5px 12px;border-radius:3px;margin-bottom:18px;
  }
  .plan-card h3{font-size:23px;color:var(--navy-deep);margin-bottom:12px;}
  .plan-card p{font-size:14.5px;color:var(--slate);line-height:1.6;margin-bottom:22px;}
  .plan-price{font-family:Georgia,serif;font-size:20px;color:var(--gold-deep);font-weight:800;margin-bottom:24px;}

  /* ===== FINANCIAL / TIERED PLANS (4-up) ===== */
  .tier-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;}
  @media(max-width:1080px){.tier-grid{grid-template-columns:1fr 1fr;}}
  @media(max-width:600px){.tier-grid{grid-template-columns:1fr;}}
  .tier-card{
    border:1px solid var(--line);border-radius:8px;padding:32px 26px;background:var(--white);
    display:flex;flex-direction:column;
  }
  .tier-card.tier-gold{
    background:var(--gold);border-color:var(--gold);
  }
  .tier-card.tier-gold .tier-name,
  .tier-card.tier-gold .tier-price{color:var(--navy-deep);}
  .tier-card.tier-gold .tier-bullets li{color:var(--navy-deep);}
  .tier-card.tier-gold .tier-bullets li::before{color:var(--navy-deep);}
  .tier-price{
    font-family:Georgia,serif;font-weight:800;font-size:28px;color:var(--navy-deep);line-height:1.1;margin-bottom:6px;
  }
  .tier-name{
    font-size:12.5px;font-weight:800;letter-spacing:0.06em;text-transform:uppercase;color:var(--gold-deep);margin-bottom:18px;
  }
  .tier-card.tier-gold .tier-name{color:var(--navy-deep);}
  .tier-bullets{list-style:none;padding:0;margin:0;flex:1;}
  .tier-bullets li{
    position:relative;padding-left:18px;font-size:13.5px;line-height:1.55;color:var(--slate);margin-bottom:14px;
  }
  .tier-bullets li::before{
    content:"•";position:absolute;left:0;color:var(--gold-deep);font-weight:800;
  }
  .tier-note{
    margin-top:20px;font-size:12.5px;color:var(--slate);background:var(--cream);
    border:1px solid var(--line);border-radius:6px;padding:12px 14px;line-height:1.5;
  }

  /* ===== CTA BAND ===== */
  .cta-band{
    background:
      linear-gradient(100deg, rgba(7,29,58,0.92), rgba(11,46,88,0.85)),
      url('https://images.unsplash.com/photo-1531058020387-3be344556be6?q=80&w=2000&auto=format&fit=crop') center/cover;
    color:var(--white);
    text-align:center;
    padding:110px 0;
  }
  .cta-band h2{font-size:clamp(28px,4vw,44px);margin-bottom:16px;}
  .cta-band p{color:#DCE7F3;max-width:520px;margin:0 auto 34px;font-size:16px;}
  .cta-band .hero-ctas{justify-content:center;}

  /* ===== FOOTER ===== */
  footer{background:var(--navy-deep);color:#AFC3D6;padding:70px 0 28px;}
  .foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:36px;margin-bottom:52px;}
  @media(max-width:850px){.foot-grid{grid-template-columns:1fr 1fr;}}
  footer h5{color:var(--white);font-size:13px;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:18px;}
  footer li{margin-bottom:11px;font-size:14px;}
  footer a:hover{color:var(--gold);}
  .foot-logo{display:flex;align-items:center;gap:9px;font-family:Georgia,serif;font-weight:800;font-size:20px;color:var(--white);margin-bottom:16px;}
  .foot-logo .mark{width:32px;height:32px;border-radius:50%;background:var(--gold);display:flex;align-items:center;justify-content:center;color:var(--navy-deep);font-size:13px;overflow:hidden;flex-shrink:0;}
  .foot-logo .mark img{width:100%;height:100%;object-fit:cover;object-position:center 32%;transform:scale(1.65);}
  footer .desc{font-size:13.5px;color:#8AA0B5;margin-bottom:20px;max-width:280px;line-height:1.6;}
  .social-row{display:flex;gap:10px;}
  .social-row a{
    width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,0.07);
    display:flex;align-items:center;justify-content:center;font-size:13px;
  }
  .social-row a:hover{background:var(--gold);color:var(--navy-deep);}
  .foot-bottom{
    border-top:1px solid rgba(255,255,255,0.1);padding-top:24px;
    font-size:12.5px;color:#7691A8;
    display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;
  }

  .wa-float{
    position:fixed;bottom:26px;right:26px;z-index:300;
    width:58px;height:58px;border-radius:50%;
    background:#25D366;color:white;font-size:26px;
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 10px 24px rgba(0,0,0,0.3);
  }

/* ===== SHARED: INNER PAGE HERO (smaller than homepage hero) ===== */
.page-hero{
  position:relative;
  padding:64px 0 56px;
  background:
    linear-gradient(100deg, rgba(7,29,58,0.94) 0%, rgba(11,46,88,0.88) 100%);
  color:var(--white);
}
.page-hero.with-photo{
  background:
    linear-gradient(100deg, rgba(7,29,58,0.93) 0%, rgba(7,29,58,0.78) 60%, rgba(7,29,58,0.55) 100%),
    var(--photo) center/cover no-repeat;
}
.page-hero .crumb{
  font-size:12.5px;color:#AFC3D6;margin-bottom:16px;letter-spacing:0.03em;
}
.page-hero .crumb a:hover{color:var(--gold);}
.page-hero h1{font-size:clamp(30px,4.4vw,46px);margin-bottom:14px;max-width:680px;}
.page-hero p{font-size:16px;color:#DCE7F3;max-width:560px;line-height:1.6;}

/* ===== SHARED: BREADCRUMB style eyebrow already exists via .eyebrow ===== */

/* ===== DIRECTORY / EXPLORE PAGE ===== */
.directory-shell{
  display:grid;grid-template-columns:260px 1fr;gap:40px;
  align-items:flex-start;
}
@media(max-width:860px){.directory-shell{grid-template-columns:1fr;}}
.filter-panel{
  border:1px solid var(--line);border-radius:8px;padding:26px;
  position:sticky;top:90px;
}
.filter-panel h4{font-family:Georgia,serif;font-size:15px;color:var(--navy-deep);margin-bottom:14px;}
.filter-group{margin-bottom:22px;}
.filter-group:last-child{margin-bottom:0;}
.filter-group .label{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:0.05em;color:var(--slate);margin-bottom:10px;}
.filter-chip{
  display:inline-block;font-size:13px;padding:7px 13px;border-radius:999px;
  border:1px solid var(--line);color:var(--ink);margin:0 6px 8px 0;cursor:pointer;
}
.filter-chip.active{background:var(--navy);border-color:var(--navy);color:var(--white);}
.search-input{
  width:100%;padding:11px 14px;border:1px solid var(--line);border-radius:6px;
  font-size:14px;margin-bottom:6px;
}
.directory-toolbar{
  display:flex;justify-content:space-between;align-items:center;
  margin-bottom:24px;flex-wrap:wrap;gap:12px;
}
.directory-toolbar .count{font-size:14px;color:var(--slate);}
.listing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
@media(max-width:900px){.listing-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:620px){.listing-grid{grid-template-columns:1fr;}}
.listing-card{border:1px solid var(--line);border-radius:8px;overflow:hidden;background:var(--white);transition:box-shadow .2s ease;}
.listing-card:hover{box-shadow:0 12px 28px rgba(11,46,88,0.1);}
.listing-photo{height:170px;background-size:cover;background-position:center;position:relative;}
.listing-photo .badge{
  position:absolute;top:12px;left:12px;background:var(--gold);color:var(--navy-deep);
  font-size:10px;font-weight:800;letter-spacing:0.05em;text-transform:uppercase;padding:4px 9px;border-radius:3px;
}
.listing-body{padding:18px 18px 20px;}
.listing-body .cat{font-size:11.5px;color:var(--blue);font-weight:700;text-transform:uppercase;letter-spacing:0.04em;margin-bottom:6px;}
.listing-body h4{font-family:Georgia,serif;font-size:16.5px;color:var(--ink);margin-bottom:4px;}
.listing-body .loc{font-size:13px;color:var(--slate);}
.pagination{display:flex;justify-content:center;gap:8px;margin-top:48px;}
.pagination a{
  width:38px;height:38px;border-radius:6px;border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;font-size:13.5px;color:var(--ink);
}
.pagination a.active{background:var(--navy);border-color:var(--navy);color:var(--white);}

/* ===== ABOUT PAGE ===== */
.about-split{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;}
@media(max-width:860px){.about-split{grid-template-columns:1fr;}}
.about-photo{height:460px;border-radius:8px;background-size:cover;background-position:center;}
.value-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
@media(max-width:860px){.value-grid{grid-template-columns:1fr;}}
.value-card{padding:30px;border:1px solid var(--line);border-radius:8px;}
.value-card .num{font-family:Georgia,serif;font-weight:800;color:var(--gold);font-size:26px;margin-bottom:14px;}
.value-card h3{font-size:18px;color:var(--navy-deep);margin-bottom:10px;}
.value-card p{font-size:14px;color:var(--slate);line-height:1.6;}
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
@media(max-width:860px){.team-grid{grid-template-columns:repeat(2,1fr);}}
.team-card{text-align:center;}
.team-photo{width:100%;aspect-ratio:1/1;border-radius:8px;background-size:cover;background-position:center;margin-bottom:14px;}
.team-card h4{font-size:15px;color:var(--ink);margin-bottom:3px;}
.team-card span{font-size:12.5px;color:var(--slate);}

/* ===== FORM PAGES (Add Business / Contact) ===== */
.form-shell{max-width:720px;margin:0 auto;}
.form-card{border:1px solid var(--line);border-radius:10px;padding:44px;background:var(--white);}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:20px;}
@media(max-width:620px){.field-row{grid-template-columns:1fr;}}
.field{margin-bottom:20px;}
.field label{display:block;font-size:13px;font-weight:700;color:var(--ink);margin-bottom:8px;}
.field input, .field select, .field textarea{
  width:100%;padding:12px 14px;border:1px solid var(--line);border-radius:6px;
  font-size:14.5px;font-family:inherit;color:var(--ink);background:var(--white);
}
.field textarea{resize:vertical;min-height:110px;}
.field input:focus, .field select:focus, .field textarea:focus{outline:2px solid var(--gold);outline-offset:1px;border-color:var(--gold);}
.form-note{font-size:13px;color:var(--slate);margin-top:14px;}
.steps-mini{display:flex;gap:0;margin-bottom:40px;}
.steps-mini .s{
  flex:1;text-align:center;padding-bottom:14px;border-bottom:3px solid var(--line);
  font-size:12.5px;font-weight:700;color:var(--slate);text-transform:uppercase;letter-spacing:0.04em;
}
.steps-mini .s.active{border-color:var(--gold);color:var(--navy-deep);}

/* ===== JOIN OUR COMMUNITY — choice cards + form panels ===== */
.choice-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:24px;
  max-width:900px;margin:0 auto 8px;
}
@media(max-width:700px){.choice-grid{grid-template-columns:1fr;}}
.choice-card{
  display:flex;flex-direction:column;align-items:flex-start;text-align:left;
  border:2px solid var(--line);border-radius:12px;background:var(--white);
  padding:28px 26px;cursor:pointer;font-family:inherit;
  transition:border-color .18s ease, box-shadow .18s ease, transform .12s ease;
}
.choice-card:hover{border-color:var(--gold);transform:translateY(-2px);}
.choice-card.active{border-color:var(--gold);box-shadow:0 10px 26px rgba(0,0,0,0.08);background:var(--cream);}
.choice-icon{font-size:28px;margin-bottom:14px;}
.choice-card h3{font-size:17px;color:var(--navy-deep);margin:0 0 10px;}
.choice-card p{font-size:13.5px;color:var(--slate);line-height:1.6;margin:0;}
.join-form-panel{display:none;}
.join-form-panel.active{display:block;}

/* ===== EVENTS PAGE — full listing ===== */
.events-full-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
@media(max-width:900px){.events-full-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:620px){.events-full-grid{grid-template-columns:1fr;}}
.tab-row{display:flex;gap:10px;margin-bottom:44px;flex-wrap:wrap;}
.tab-chip{
  padding:10px 20px;border-radius:999px;border:1px solid var(--line);font-size:13.5px;font-weight:600;color:var(--ink);cursor:pointer;
}
.tab-chip.active{background:var(--navy);border-color:var(--navy);color:var(--white);}

/* ===== MEMBERSHIP PAGE — comparison table ===== */
.compare-scroll{width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;margin-top:20px;}
.compare-table{width:100%;border-collapse:collapse;margin-top:0;}
.compare-table th, .compare-table td{
  padding:16px 18px;border-bottom:1px solid var(--line);text-align:left;font-size:14px;
}
.compare-table th{font-family:Georgia,serif;color:var(--navy-deep);font-size:15px;}
.compare-table td.center, .compare-table th.center{text-align:center;}
.compare-table .yes{color:var(--gold-deep);font-weight:800;}
.compare-table .no{color:var(--line);}
.faq-item{border-bottom:1px solid var(--line);padding:22px 0;}
.faq-item h4{font-size:16px;color:var(--navy-deep);margin-bottom:8px;font-family:Georgia,serif;}
.faq-item p{font-size:14.5px;color:var(--slate);line-height:1.6;}

/* ===== CONTACT PAGE ===== */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;}
@media(max-width:860px){.contact-grid{grid-template-columns:1fr;}}
.contact-info-item{display:flex;gap:16px;margin-bottom:28px;}
.contact-icon{
  width:44px;height:44px;border-radius:50%;background:var(--cream);border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;font-size:17px;flex:0 0 auto;
}
.contact-info-item h4{font-size:14.5px;color:var(--ink);margin-bottom:4px;}
.contact-info-item p{font-size:13.5px;color:var(--slate);line-height:1.5;}
.map-block{height:280px;border-radius:8px;background:var(--cream);border:1px solid var(--line);display:flex;align-items:center;justify-content:center;color:var(--slate);font-size:13.5px;margin-top:8px;}

/* ===================================================================
   ADDITIONS — interactivity, mobile nav, modals, forms, polish
   =================================================================== */

/* ----- Buttons: base states for real interactivity ----- */
.btn{transform:translateZ(0);}
.btn:active{transform:translateY(1px) scale(0.99);}
button.btn{font-family:inherit;}
.icon-circle{transition:background .18s ease, color .18s ease, transform .18s ease;}
.icon-circle:hover{background:var(--navy);color:var(--white);transform:translateY(-1px);}
.filter-chip, .tab-chip{transition:background .16s ease, color .16s ease, border-color .16s ease, transform .1s ease;}
.filter-chip:hover, .tab-chip:hover{border-color:var(--navy);}
.filter-chip:active, .tab-chip:active{transform:scale(0.97);}
nav.links a.active-link{color:var(--navy);}
nav.links a.active-link::after{width:100%;}

/* ----- Hamburger (mobile nav trigger) ----- */
.nav-burger{
  display:none;
  flex-direction:column;justify-content:center;gap:5px;
  width:38px;height:38px;border:1px solid var(--line);border-radius:8px;
  background:var(--white);cursor:pointer;padding:0;margin-left:6px;
}
.nav-burger span{
  display:block;width:18px;height:2px;background:var(--navy);margin:0 auto;
  transition:transform .2s ease, opacity .2s ease;
}
.nav-burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-burger.open span:nth-child(2){opacity:0;}
.nav-burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
@media(max-width:960px){
  .nav-burger{display:flex;}
}

/* ----- Mobile nav panel ----- */
.mobile-nav-overlay{
  position:fixed;inset:0;background:rgba(7,29,58,0.45);
  z-index:399;opacity:0;pointer-events:none;transition:opacity .22s ease;
}
.mobile-nav-overlay.open{opacity:1;pointer-events:auto;}
.mobile-nav-panel{
  position:fixed;top:0;right:0;bottom:0;width:min(340px,88vw);
  background:var(--white);z-index:400;
  transform:translateX(100%);transition:transform .28s ease;
  box-shadow:-16px 0 40px rgba(0,0,0,0.18);
  padding:84px 22px 32px;overflow-y:auto;
  -webkit-overflow-scrolling:touch;
}
.mobile-nav-panel.open{transform:translateX(0);}

.mobile-nav-head{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  position:absolute;top:0;left:0;right:0;
  padding:16px 20px;
  border-bottom:1px solid var(--line);
  background:var(--white);
}
.mobile-nav-logo{font-size:15.5px;gap:8px;}
.mobile-nav-logo .mark{width:30px;height:30px;}
.mobile-nav-close{
  width:34px;height:34px;border-radius:50%;border:1px solid var(--line);
  background:var(--cream);color:var(--navy);font-size:20px;line-height:1;
  display:flex;align-items:center;justify-content:center;cursor:pointer;flex:0 0 auto;
}
.mobile-nav-close:hover{background:var(--navy);color:var(--white);}

.mobile-links{display:flex;flex-direction:column;gap:2px;margin-bottom:18px;}
.mobile-links a{
  padding:13px 6px;font-size:15.5px;font-weight:700;color:var(--ink);
  border-bottom:1px solid var(--line);
  display:flex;align-items:center;justify-content:space-between;
}
.mobile-links a::after{content:"\203A";color:var(--slate);font-weight:400;font-size:18px;}
.mobile-links a.active-link{color:var(--navy);}
.mobile-links a.active-link::after{color:var(--gold);}

.mobile-quick-actions{
  display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:20px;
}
.mobile-quick-btn{
  display:flex;align-items:center;justify-content:center;gap:8px;
  padding:11px 10px;border-radius:8px;border:1px solid var(--line);
  background:var(--cream);color:var(--navy);font-weight:700;font-size:13px;
  cursor:pointer;font-family:inherit;
}
.mobile-quick-btn:active{transform:scale(0.98);}

.mobile-nav-ctas{display:flex;flex-direction:column;gap:10px;margin-bottom:26px;}
.mobile-nav-ctas .btn{width:100%;justify-content:center;}

.mobile-nav-contact{
  border-top:1px solid var(--line);padding-top:18px;
  display:flex;flex-direction:column;gap:10px;
}
.mobile-contact-line{
  font-size:13.5px;font-weight:600;color:var(--slate);
  display:flex;align-items:center;gap:8px;
}
.mobile-contact-line:hover{color:var(--navy);}
.mobile-social-row{display:flex;gap:10px;margin-top:4px;}
.mobile-social-row a{
  width:34px;height:34px;border-radius:50%;border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;
  font-size:11px;font-weight:800;color:var(--navy);
}
.mobile-social-row a:hover{background:var(--navy);color:var(--white);}

/* ----- Modal overlays (quick search) ----- */
.bwh-modal-overlay{
  position:fixed;inset:0;background:rgba(7,29,58,0.55);
  z-index:500;display:flex;align-items:flex-start;justify-content:center;
  padding:14vh 20px 20px;opacity:0;pointer-events:none;transition:opacity .2s ease;
}
.bwh-modal-overlay.open{opacity:1;pointer-events:auto;}
.bwh-modal{
  background:var(--white);border-radius:12px;max-width:440px;width:100%;
  padding:30px;position:relative;box-shadow:0 30px 70px rgba(0,0,0,0.3);
  transform:translateY(-14px);transition:transform .22s ease;
}
.bwh-modal-overlay.open .bwh-modal{transform:translateY(0);}
.bwh-modal h3{font-family:Georgia,serif;font-size:20px;color:var(--navy-deep);margin-bottom:14px;}
.bwh-modal input{
  width:100%;padding:12px 14px;border:1px solid var(--line);border-radius:6px;
  font-size:14.5px;margin-bottom:6px;font-family:inherit;
}
.bwh-modal input:focus{outline:2px solid var(--gold);outline-offset:1px;border-color:var(--gold);}
.bwh-modal-hint{font-size:12.5px;color:var(--slate);}
.bwh-modal-close{
  position:absolute;top:14px;right:16px;background:none;border:none;
  font-size:24px;line-height:1;color:var(--slate);cursor:pointer;
}
.bwh-modal-close:hover{color:var(--navy);}
.bwh-modal .field{margin-bottom:14px;}
.bwh-modal .field label{display:block;font-size:12.5px;font-weight:700;color:var(--ink);margin-bottom:6px;}

/* ----- Form success box ----- */
.bwh-success-box{
  display:none;align-items:flex-start;gap:14px;
  background:#EAF7EF;border:1px solid #B7E4C7;border-radius:8px;
  padding:18px 20px;margin-bottom:24px;
}
.bwh-success-icon{
  width:30px;height:30px;border-radius:50%;background:#1B7F4B;color:#fff;
  display:flex;align-items:center;justify-content:center;font-size:15px;font-weight:800;flex:0 0 auto;
}
.bwh-success-box h4{font-size:15px;color:#155C37;margin-bottom:4px;}
.bwh-success-box p{font-size:13.5px;color:#2E5B41;line-height:1.5;}

/* ----- Back to top ----- */
#bwh-back-to-top{
  position:fixed;bottom:26px;right:96px;z-index:300;
  width:48px;height:48px;border-radius:50%;
  background:var(--navy);color:var(--white);border:none;font-size:18px;cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,0.25);
  opacity:0;pointer-events:none;transform:translateY(10px);
  transition:opacity .2s ease, transform .2s ease, background .18s ease;
}
#bwh-back-to-top.visible{opacity:1;pointer-events:auto;transform:translateY(0);}

/* ===================================================================
   MOBILE RESPONSIVENESS PASS — PREMIUM REFERENCE-MATCHED REDESIGN
   =================================================================== */
@media(max-width:768px){
  /* -- Layout widths & rhythm -- */
  .wrap{padding:0 18px;}
  section{padding:56px 0;}
  .section-head{margin-bottom:32px;gap:16px;}
  .section-head .desc{max-width:100%;}

  /* -- Announcement bar: premium compact dark navy + gold accent -- */
  .top-strip{
    font-size:12.2px;
    padding:10px 16px;
    line-height:1.45;
    display:flex;align-items:center;justify-content:center;flex-wrap:wrap;
    gap:4px 6px;
    text-align:center;
    letter-spacing:0.01em;
  }
  .top-strip strong{color:var(--gold);font-weight:800;}
  .top-strip span{color:#DCE7F3;}
  .top-strip a{margin-left:2px;color:#fff;border-bottom:1px solid rgba(240,174,0,0.55);font-weight:700;}

  /* -- Header: clean white premium lightweight -- */
  header{border-bottom:1px solid #EDE8DD;}
  .nav-row{padding:13px 0;min-height:64px;}
  .logo{font-size:17.5px;gap:9px;letter-spacing:-0.01em;}
  .logo .mark{width:34px;height:34px;box-shadow:0 1px 6px rgba(11,46,88,0.08);}
  .nav-right{gap:10px;}
  .nav-right .btn-navy-outline{display:none;} /* keep header light — CTA lives in hero + mobile menu */
  .nav-right .btn{padding:10px 16px;font-size:12px;}
  .icon-circle{
    width:40px;height:40px;font-size:14px;
    border-color:#E8E2D6;background:#fff;
    box-shadow:0 1px 4px rgba(11,46,88,0.06);
  }
  .nav-burger{width:40px;height:40px;border-radius:10px;border-color:#E8E2D6;gap:5px;}
  .nav-burger span{width:18px;height:2px;}

  /* -- HERO: dominant cinematic dark, left aligned, viewport-filling -- */
  .hero{
    position:relative;
    z-index:1;
    /* Fill exactly the first viewport (announcement + header + hero) using measured heights */
    min-height:calc(100vh - var(--topstrip-h) - var(--header-h));
    min-height:calc(100svh - var(--topstrip-h) - var(--header-h));
    min-height:calc(100dvh - var(--topstrip-h) - var(--header-h));
    display:flex;
    align-items:center;
    /* Slight top bias for editorial balance — not mathematically centered */
    padding:38px 0 78px;
    /* Controlled overlay: dark behind text, visible photography on right/bottom */
    background:
      linear-gradient(102deg, rgba(7,29,58,0.97) 0%, rgba(7,29,58,0.90) 38%, rgba(7,29,58,0.66) 62%, rgba(7,29,58,0.38) 82%, rgba(7,29,58,0.22) 100%),
      url('awards-night.jpeg') 62% 28% / cover no-repeat;
    color:var(--white);
    overflow:hidden;
  }
  /* Extra vignette for text readability — subtle, cinematic */
  .hero::before{
    content:"";
    position:absolute;inset:0;
    background:radial-gradient(ellipse 85% 70% at 18% 42%, rgba(7,29,58,0.55) 0%, transparent 68%);
    pointer-events:none;
    z-index:1;
  }
  .hero .wrap{position:relative;z-index:2;width:100%;}
  .hero-inner{
    max-width:100%;
    text-align:left;
    position:relative;z-index:2;
    /* Left edge 16-20px via .wrap, keep intrinsic left alignment */
    padding-right:6%;
  }
  .hero .eyebrow{
    display:inline-flex;align-items:center;gap:10px;
    font-size:11.5px;font-weight:800;letter-spacing:0.14em;
    text-transform:uppercase;color:var(--gold);
    margin-bottom:18px;
  }
  .hero .eyebrow::before{content:"";width:28px;height:2px;background:var(--gold);border-radius:99px;opacity:0.95;}
  .hero-title-large{
    font-size:clamp(36px, 9.5vw, 44px);
    line-height:1.06;
    letter-spacing:-0.02em;
    font-weight:800;
    color:#fff;
    margin-bottom:16px;
    max-width:92%;
  }
  .hero-subtitle-medium{
    font-size:clamp(17px, 4.6vw, 20px);
    font-family:'Helvetica Neue', Arial, sans-serif;
    font-weight:700;
    color:#fff;
    line-height:1.35;
    max-width:94%;
    margin-bottom:14px;
  }
  .hero-subtitle-small{
    font-size:15px;
    font-weight:400;
    color:#D6E4F2;
    line-height:1.6;
    max-width:88%;
    margin-bottom:30px;
  }
  .hero h1{font-size:clamp(36px,9.5vw,44px);}
  .hero p{font-size:15px;max-width:88%;color:#D6E4F2;line-height:1.6;}
  .hero-ctas{
    flex-direction:column;
    align-items:stretch;
    gap:12px;
    max-width:100%;
  }
  .hero-ctas .btn{
    width:100%;
    justify-content:center;
    text-align:center;
    padding:0 20px;
    height:54px;
    min-height:54px;
    font-size:14px;
    font-weight:800;
    letter-spacing:0.06em;
    text-transform:uppercase;
    border-radius:10px;
    border-width:1.6px;
    line-height:1;
  }
  .hero-ctas .btn-gold{
    background:var(--gold);
    color:var(--navy-deep);
    border-color:var(--gold);
    box-shadow:0 6px 18px rgba(240,174,0,0.28);
  }
  .hero-ctas .btn-gold:hover{background:var(--gold-deep);border-color:var(--gold-deep);}
  .hero-ctas .btn-white-outline{
    background:rgba(255,255,255,0.06);
    border-color:rgba(255,255,255,0.92);
    color:#fff;
    backdrop-filter:blur(2px);
  }
  .hero-ctas .btn-white-outline:hover{background:rgba(255,255,255,0.14);}

  /* -- Soft curved transition hero → white -- */
  .hero-transition{display:block;position:relative;z-index:3;margin-top:-48px;line-height:0;pointer-events:none;}
  .hero-transition svg{display:block;width:100%;height:52px;}
  .hero-transition path{fill:var(--white);}

  /* -- Our Impact heading: calm spacious after dark hero -- */
  .impact-head-wrap{
    display:block;background:var(--white);padding:30px 0 18px;position:relative;z-index:2;
  }
  .impact-head{flex-direction:column;align-items:center;text-align:center;gap:0;}
  .impact-head .eyebrow{
    font-size:11px;font-weight:800;letter-spacing:0.14em;text-transform:uppercase;
    color:var(--gold);display:inline-flex;align-items:center;gap:10px;justify-content:center;width:auto;
  }
  .impact-head .eyebrow::before{width:26px;height:2px;background:var(--gold);border-radius:99px;}
  .impact-head h2{
    font-size:clamp(24px,6.2vw,28px)!important;
    color:var(--navy-deep);margin-top:10px;letter-spacing:-0.015em;line-height:1.15;
  }
  .impact-head-divider{margin-top:12px;gap:12px;font-size:14px;color:var(--navy-deep);}
  .impact-head-divider::before,.impact-head-divider::after{width:42px;height:1px;background:#E0D9C8;}

  /* -- Metrics: 2 × 3 premium cards — spacious, readable, not microscopic -- */
  .stat-band{background:var(--white);padding:10px 0 36px;position:relative;z-index:2;}
  .stat-band .wrap{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    padding:0 18px;
  }
  .stat-mobile-only{display:block;}
  .stat-band .wrap{grid-template-columns:repeat(2,1fr);}
  .stat-item{
    padding:22px 16px 18px;
    min-height:182px;
    display:flex;flex-direction:column;justify-content:flex-start;align-items:center;
    text-align:center;
    background:var(--white);
    border:1px solid #EDE9DE;
    border-radius:14px;
    box-shadow:0 4px 18px rgba(11,46,88,0.07), 0 1px 4px rgba(11,46,88,0.04);
    border-right:1px solid #EDE9DE !important; /* override desktop border */
    border-bottom:none !important;
  }
  .stat-icon{
    width:44px;height:44px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    font-size:15px;margin-bottom:12px;
    box-shadow:inset 0 1px 0 rgba(255,255,255,0.7);
  }
  .stat-icon-blue{background:#E8F0FA;color:#1A5A9A;}
  .stat-icon-rose{background:#FDE8EC;color:#9A2A4A;}
  .stat-icon-green{background:#E6F4EA;color:#1B7F4B;}
  .stat-icon-amber{background:#FFF1D6;color:#9A6A00;}
  .stat-icon-purple{background:#F0E6F7;color:#7B3AA0;}
  .stat-band strong{
    display:block;
    font-family:Georgia,serif;
    font-size:28px;line-height:1;
    margin-bottom:8px;color:var(--navy-deep);font-weight:800;letter-spacing:-0.02em;
  }
  .stat-band .stat-label{
    display:block;
    font-size:10.5px;
    color:var(--navy-deep);
    letter-spacing:0.07em;text-transform:uppercase;font-weight:800;line-height:1.35;
    margin-bottom:10px;max-width:92%;text-align:center;
  }
  .stat-band .stat-desc{
    display:block !important;
    font-size:12.6px;line-height:1.55;color:var(--slate);font-weight:400;
    max-width:100%;margin:0 auto;text-transform:none;letter-spacing:0;
  }

  h2{font-size:clamp(26px,6.5vw,32px)!important;}

  .btn{padding:11px 18px;font-size:12.5px;}

  .wa-float{width:54px;height:54px;bottom:20px;right:16px;font-size:22px;box-shadow:0 12px 28px rgba(0,0,0,0.28);}
  #bwh-back-to-top{right:76px;bottom:22px;width:44px;height:44px;font-size:16px;}

  /* -- Remaining sections: keep spacious premium feel -- */
  .about-split{gap:28px;}
  .about-photo{height:260px;}

  .cat-grid{grid-template-columns:1fr!important;gap:14px;}
  .cat-tile{height:180px;}

  /* spot-grid responsive handled by top-level queries: 4-col desktop, 2-col tablet (900px), 1-col mobile (600px) */
  .spot-photo{height:170px;}

  .quote-band blockquote{font-size:18px;}

  .how-split{gap:24px;}
  .how-image{height:220px;}
  .step{gap:14px;}

  .prog-grid{gap:16px;}
  .prog-card{height:auto;min-height:220px;}

  .events-row{gap:16px;}

  .tier-grid{gap:16px;}

  .cta-band{padding:56px 0;}
  .cta-band h2{font-size:clamp(24px,7vw,32px);}
  .cta-band .hero-ctas{flex-direction:column;align-items:stretch;}
  .cta-band .hero-ctas .btn{width:100%;justify-content:center;}

  /* Gentle short-screen refinement — keep premium but avoid overflow on 667h */
  @media(max-height:720px){
    .hero{padding:28px 0 62px;}
    .hero .eyebrow{margin-bottom:12px;}
    .hero-title-large{font-size:clamp(32px,8.5vw,40px);}
    .hero-subtitle-medium{margin-bottom:10px;}
    .hero-subtitle-small{margin-bottom:22px;font-size:14px;}
  }
  @media(max-height:620px){
    .hero{padding:20px 0 52px;}
    .hero .eyebrow{margin-bottom:10px;font-size:10.5px;}
    .hero-title-large{font-size:clamp(28px,8vw,36px);margin-bottom:10px;}
    .hero-subtitle-medium{font-size:15px;}
    .hero-subtitle-small{font-size:13.5px;margin-bottom:18px;}
    .hero-ctas .btn{height:50px;min-height:50px;font-size:13px;}
  }
}

@media(max-width:480px){
  .wrap{padding:0 16px;}
  section{padding:44px 0;}
  /* Keep premium hero typography — do not shrink back to tiny on narrow phones */
  .hero-title-large{font-size:clamp(32px,9vw,38px);}
  .hero-subtitle-medium{font-size:clamp(16px,4.4vw,18px);}
  .hero-subtitle-small{font-size:14px;max-width:92%;}
  .logo{font-size:16px;}
  .nav-right .btn{display:none;}
  /* Keep 2×3 metrics — 2 columns even on 375px, just tighter gap */
  .stat-band .wrap{grid-template-columns:repeat(2,1fr);gap:12px;padding:0 16px;}
  .stat-item{padding:18px 12px 16px;min-height:168px;border-radius:13px;}
  .stat-icon{width:40px;height:40px;font-size:14px;margin-bottom:10px;}
  .stat-band strong{font-size:26px;}
  .stat-band .stat-label{font-size:10px;}
  .stat-band .stat-desc{font-size:11.8px;display:block !important;}

  .foot-grid{grid-template-columns:1fr!important;gap:28px;}
  footer .desc{max-width:100%;}
  .foot-bottom{flex-direction:column;align-items:flex-start;text-align:left;}

  .team-grid{grid-template-columns:1fr!important;}
  .value-grid{grid-template-columns:1fr!important;}
  .listing-grid{grid-template-columns:1fr!important;}
  .events-full-grid{grid-template-columns:1fr!important;}
  .choice-grid{grid-template-columns:1fr!important;}

  .page-hero{padding:48px 0!important;}
  .page-hero h1{font-size:clamp(26px,8vw,32px)!important;}
  .page-hero p{font-size:14.5px!important;}

  .bwh-modal{padding:22px;}
  #bwh-back-to-top{right:16px;bottom:80px;}
  .wa-float{right:16px;bottom:16px;}
}

img{height:auto;}
#bwh-back-to-top:hover{background:var(--blue);}
@media(max-width:640px){#bwh-back-to-top{right:20px;bottom:92px;width:44px;height:44px;}}

/* ----- WhatsApp float hover ----- */
.wa-float{transition:transform .18s ease, box-shadow .18s ease;}
.wa-float:hover{transform:translateY(-3px) scale(1.05);box-shadow:0 14px 30px rgba(0,0,0,0.35);}

/* ----- Scroll reveal ----- */
.reveal-init{opacity:0;transform:translateY(22px);transition:opacity .55s ease, transform .55s ease;}
.reveal-in{opacity:1;transform:translateY(0);}

/* ----- Cursor affordances ----- */
.filter-chip, .tab-chip, .icon-circle, .cat-tile, .listing-card, .spot-card, .prog-card{cursor:pointer;}

/* ----- Pagination active/disabled polish ----- */
.pagination a{transition:background .16s ease, color .16s ease, border-color .16s ease;cursor:pointer;}
.pagination a:hover:not(.active){border-color:var(--navy);color:var(--navy);}

/* (removed: obsolete dead-class mobile hero/metrics hack — replaced by the
   dvh-based .hero mobile rules inside the main mobile media query below) */