/* ============================================================
   Cultural Destinations — Theme Stylesheet v3
   ============================================================ */

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

:root{
  --navy:#12102A;
  --saffron:#E8861A;
  --magenta:#C4347A;
  --teal:#1A9E8F;
  --emerald:#1A7A3C;
  --violet:#5B3FA0;
  --gold:#D4A017;
  --orange:#D85A1A;
  --cream:#F7F4EF;
  --text:#1A1628;
  --text-mid:#4A4060;
  --text-light:#8A7FA0;
  --border:rgba(18,16,42,0.1);
  --vibrant-gradient:linear-gradient(135deg,#C4347A 0%,#E8861A 50%,#1A9E8F 100%);
}

body{font-family:'DM Sans',sans-serif;background:var(--cream);color:var(--text);-webkit-font-smoothing:antialiased}

/* NAV */
.nav{background:var(--navy);padding:0 5%;display:flex;align-items:center;justify-content:space-between;height:68px;position:sticky;top:0;z-index:100;border-bottom:3px solid var(--gold)}
.nav-logo{font-family:'Playfair Display',serif;font-size:18px;font-weight:700;color:white;text-decoration:none;letter-spacing:-.3px}
.nav-logo span{color:var(--gold)}
.nav-links{display:flex;gap:28px;list-style:none}
.nav-links a{font-size:13px;font-weight:500;color:rgba(255,255,255,0.78);text-decoration:none;transition:color .2s}
.nav-links a:hover{color:var(--gold)}
.nav-cta{background:var(--gold);color:var(--navy);padding:9px 20px;border-radius:6px;font-size:13px;font-weight:700;text-decoration:none;white-space:nowrap;transition:background .2s,transform .15s}
.nav-cta:hover{background:#e6b520;transform:translateY(-1px)}
.admin-bar .nav{top:32px}
@media screen and (max-width:782px){.admin-bar .nav{top:46px}}

/* HERO */
.hero{position:relative;min-height:700px;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden}
.hero::after{content:'';position:absolute;bottom:0;left:0;right:0;height:4px;background:var(--vibrant-gradient);z-index:5}

.hero-video-wrap{position:absolute;inset:0;overflow:hidden}
.hero-video{width:100%;height:100%;object-fit:cover;filter:brightness(.35);display:block}
.hero-video-fallback{position:absolute;inset:0;background-size:cover;background-position:center;background-attachment:fixed;filter:brightness(.35)}

/* Photo mosaic grid — visible when no video set */
.hero-mosaic{position:absolute;inset:0;display:grid;grid-template-columns:repeat(5,1fr);grid-template-rows:repeat(3,1fr);gap:3px}
.hero-mosaic::after{content:'';position:absolute;inset:0;background:rgba(18,16,42,.55)}
.hero-mosaic-cell{background-size:cover;background-position:center}

.hero-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(135deg,rgba(196,52,122,.45) 0%,rgba(18,16,42,.2) 45%,rgba(26,158,143,.3) 100%),
    linear-gradient(to bottom,rgba(18,16,42,.05) 0%,rgba(18,16,42,.72) 100%);
}

.hero-content{position:relative;z-index:2;padding:80px 24px 90px;max-width:800px;margin:0 auto}

.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:11px;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);
  background:rgba(212,160,23,.14);border:1px solid rgba(212,160,23,.4);
  padding:7px 18px;border-radius:30px;margin-bottom:22px;
}
.hero-eyebrow::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--gold);flex-shrink:0}

.hero-title{font-family:'Playfair Display',serif;font-size:clamp(42px,6.5vw,74px);font-weight:700;color:white;line-height:1.05;margin-bottom:22px;text-shadow:0 2px 28px rgba(0,0,0,.5)}
.hero-title em{font-style:italic;color:var(--gold)}
.hero-sub{font-size:17px;color:rgba(255,255,255,.9);line-height:1.7;margin-bottom:38px;font-weight:300;max-width:540px;margin-left:auto;margin-right:auto;text-shadow:0 1px 10px rgba(0,0,0,.4)}
.hero-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-bottom:44px}

.btn-primary{background:var(--gold);color:var(--navy);padding:16px 36px;border-radius:8px;font-size:15px;font-weight:700;text-decoration:none;transition:background .2s,transform .15s,box-shadow .2s;box-shadow:0 6px 28px rgba(212,160,23,.5);letter-spacing:.03em}
.btn-primary:hover{background:#e6b520;transform:translateY(-2px);box-shadow:0 12px 36px rgba(212,160,23,.6)}
.btn-outline{background:rgba(255,255,255,.1);backdrop-filter:blur(8px);color:white;border:1.5px solid rgba(255,255,255,.55);padding:15px 36px;border-radius:8px;font-size:15px;font-weight:500;text-decoration:none;transition:all .2s}
.btn-outline:hover{background:rgba(255,255,255,.2);border-color:white}

.hero-stats{display:flex;gap:0;justify-content:center;flex-wrap:wrap;border-top:1px solid rgba(255,255,255,.15);padding-top:32px}
.hs{text-align:center;padding:0 32px;position:relative}
.hs+.hs::before{content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);height:36px;width:1px;background:rgba(255,255,255,.15)}
.hs-num{font-family:'Playfair Display',serif;font-size:34px;font-weight:700;color:var(--gold);line-height:1;margin-bottom:5px}
.hs-label{font-size:11px;color:rgba(255,255,255,.78);letter-spacing:.1em;text-transform:uppercase;font-weight:500}

/* SEARCH */
.search-wrap{background:white;padding:0 5%;box-shadow:0 6px 36px rgba(18,16,42,.1);position:relative;z-index:10}
.search-inner{max-width:920px;margin:0 auto;padding:22px 0}
.search-bar{display:flex;border:2px solid var(--navy);border-radius:10px;overflow:hidden}
.search-input{flex:1;border:none;outline:none;padding:16px 20px;font-size:14px;font-family:'DM Sans',sans-serif;color:var(--text);background:white;min-width:0}
.search-input::placeholder{color:var(--text-light)}
.search-sep{width:1px;background:var(--border);flex-shrink:0;margin:10px 0}
.search-select{border:none;outline:none;padding:16px 16px;font-size:13px;font-family:'DM Sans',sans-serif;color:var(--text-mid);background:white;cursor:pointer;appearance:none;-webkit-appearance:none;font-weight:500}
.search-btn{background:var(--gold);color:var(--navy);border:none;padding:16px 32px;font-size:14px;font-weight:700;font-family:'DM Sans',sans-serif;cursor:pointer;transition:background .2s;white-space:nowrap;letter-spacing:.03em}
.search-btn:hover{background:#e6b520}

/* TICKER */
.proof-ticker{background:var(--navy);padding:12px 0;overflow:hidden;border-bottom:3px solid var(--gold)}
.ticker-inner{overflow:hidden;-webkit-mask-image:linear-gradient(to right,transparent 0,black 5%,black 95%,transparent 100%);mask-image:linear-gradient(to right,transparent 0,black 5%,black 95%,transparent 100%)}
.ticker-track{display:flex;width:max-content;animation:cd-ticker 32s linear infinite}
.ticker-track:hover{animation-play-state:paused}
.ticker-item{font-size:13px;color:rgba(255,255,255,.75);white-space:nowrap;padding:0 28px;display:flex;align-items:center;gap:10px;font-weight:500}
.ticker-dot{width:5px;height:5px;border-radius:50%;background:var(--gold);flex-shrink:0}
@keyframes cd-ticker{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@media(prefers-reduced-motion:reduce){.ticker-track{animation:none}}

/* SECTIONS */
.section{padding:64px 5%}
.section-inner{max-width:1100px;margin:0 auto}
.section-header{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:32px}
.section-title{font-family:'Playfair Display',serif;font-size:30px;font-weight:700;color:var(--navy)}
.section-link{font-size:13px;color:var(--saffron);font-weight:600;text-decoration:none}
.section-link:hover{text-decoration:underline}

/* PILLAR CARDS */
.pillar-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.pillar-card{border-radius:16px;padding:28px 22px;text-decoration:none;display:flex;flex-direction:column;gap:14px;transition:transform .22s,box-shadow .22s;position:relative;overflow:hidden}
.pillar-card:hover{transform:translateY(-9px) scale(1.02);box-shadow:0 30px 60px rgba(18,16,42,.28)}
.pillar-card::before{content:'';position:absolute;top:-30px;right:-30px;width:110px;height:110px;border-radius:50%;background:rgba(255,255,255,.12)}
.pillar-card::after{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:rgba(255,255,255,.3)}
.pillar-icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:22px;background:rgba(255,255,255,.2)}
.pillar-name{font-size:17px;font-weight:700;color:white}
.pillar-desc{font-size:12px;line-height:1.6;color:rgba(255,255,255,.85)}
.pillar-arrow{font-size:12px;font-weight:600;margin-top:auto;color:rgba(255,255,255,.95)}

.p-discover{background:linear-gradient(135deg,#1A9E8F,#085041)}
.p-experience{background:linear-gradient(135deg,#E8861A,#C4347A)}
.p-learn{background:linear-gradient(135deg,#185FA5,#5B3FA0)}
/* Connect = gold — premium feel */
.p-connect{background:linear-gradient(135deg,#D4A017,#A07010)}

/* CATEGORIES */
.cat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.cat-card{border-radius:14px;padding:22px 18px;text-decoration:none;cursor:pointer;display:flex;flex-direction:column;justify-content:flex-end;min-height:120px;position:relative;overflow:hidden;transition:transform .18s,box-shadow .2s}
.cat-card:hover{transform:translateY(-4px);box-shadow:0 14px 36px rgba(18,16,42,.2)}
.cat-card::after{content:'';position:absolute;inset:0;background:linear-gradient(to bottom,transparent 20%,rgba(0,0,0,.4) 100%);pointer-events:none}
.cat-name{font-size:14px;font-weight:700;color:white;position:relative;z-index:1;line-height:1.3}
.cat-sub{font-size:11px;color:rgba(255,255,255,.85);margin-top:4px;position:relative;z-index:1;font-weight:400}
.cat-span2{grid-column:span 2}
.c-fashion{background:var(--magenta)}
.c-food{background:var(--orange)}
.c-beauty{background:var(--violet)}
.c-arts{background:var(--teal)}
.c-home{background:var(--emerald)}
.c-pro{background:var(--navy)}
.c-other{background:var(--gold)}
.c-other .cat-name{color:var(--navy);font-weight:700}
.c-other .cat-sub{color:rgba(18,16,42,.72)}

/* CITIES */
.city-row{display:flex;gap:8px;flex-wrap:wrap;margin-top:4px}
.city-pill{padding:9px 20px;border-radius:30px;border:1.5px solid var(--border);font-size:13px;color:var(--text-mid);cursor:pointer;text-decoration:none;transition:all .15s;font-family:'DM Sans',sans-serif;font-weight:500}
.city-pill:hover,.city-pill.active{background:var(--navy);color:white;border-color:var(--navy)}

/* LISTINGS */
.listings-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.listing-card{background:white;border-radius:14px;overflow:hidden;border:1px solid var(--border);transition:transform .15s,box-shadow .15s;text-decoration:none;display:block}
.listing-card:hover{transform:translateY(-3px);box-shadow:0 10px 32px rgba(18,16,42,.1)}
.lc-img{height:120px;display:flex;align-items:center;justify-content:center;position:relative}
.lc-logo{position:absolute;bottom:-18px;left:14px;width:40px;height:40px;border-radius:10px;border:3px solid white;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;color:white}
.lc-body{padding:26px 16px 18px}
.lc-name{font-size:15px;font-weight:600;color:var(--navy);margin-bottom:4px}
.lc-meta{font-size:12px;color:var(--text-light)}
.lc-tags{display:flex;gap:5px;margin-top:12px;flex-wrap:wrap}
.lc-tag{font-size:10px;padding:4px 10px;border-radius:20px;font-weight:600}
.tag-food{background:#FDEBD8;color:#7A2E00}
.tag-jam{background:#D8F0E8;color:#054030}
.tag-eth{background:#ECE4F8;color:#38147A}
.tag-fil{background:#D8EAF8;color:#0A367A}
.tag-mex{background:#FEF0D8;color:#7A4800}
.tag-er{background:#E0F0D8;color:#145800}

/* EVENTS */
.events-list{display:flex;flex-direction:column;gap:12px}
.event-row{background:white;border-radius:12px;padding:18px 20px;border:1px solid var(--border);display:flex;gap:18px;align-items:center;text-decoration:none;transition:box-shadow .15s,transform .15s;border-left:4px solid transparent}
.event-row:hover{box-shadow:0 6px 24px rgba(18,16,42,.1);transform:translateX(4px);border-left-color:var(--gold)}
.ev-date{text-align:center;width:50px;flex-shrink:0}
.ev-month{font-size:10px;text-transform:uppercase;letter-spacing:.12em;color:var(--gold);font-weight:700}
.ev-day{font-family:'Playfair Display',serif;font-size:30px;font-weight:700;color:var(--navy);line-height:1}
.ev-info{flex:1}
.ev-name{font-size:15px;font-weight:600;color:var(--navy);margin-bottom:3px}
.ev-meta{font-size:12px;color:var(--text-light)}
.ev-badge{font-size:11px;font-weight:700;padding:5px 14px;border-radius:20px;flex-shrink:0}
.eb-music{background:#C8ECE2;color:#033828}
.eb-food{background:#FAE0CA;color:#5A2000}
.eb-culture{background:#E0DAFE;color:#1E1466}

/* VIBRANT GRADIENT DIVIDER */
.gradient-divider{height:4px;background:var(--vibrant-gradient);width:100%}

/* VIDEO REEL */
.reel-section{background:var(--navy);padding:64px 5%;position:relative}
.reel-section::before{content:'';display:block;position:absolute;top:0;left:0;right:0;height:4px;background:var(--vibrant-gradient)}
.reel-section .section-title{color:white}
.reel-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.reel-card{border-radius:16px;overflow:hidden;aspect-ratio:9/16;position:relative;background:rgba(255,255,255,.06);cursor:pointer;transition:transform .2s,box-shadow .2s}
.reel-card:hover{transform:translateY(-6px);box-shadow:0 24px 60px rgba(0,0,0,.55)}
.reel-card::before{content:'';position:absolute;inset:0;background:var(--reel-color,#1A9E8F);opacity:.18;z-index:1;pointer-events:none}
.reel-video{width:100%;height:100%;object-fit:cover;display:block}
.reel-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(18,16,42,.88) 0%,transparent 50%);z-index:2;pointer-events:none}
.reel-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;border:2px dashed rgba(212,160,23,.3);border-radius:16px;font-size:12px;color:rgba(255,255,255,.45);padding:20px;text-align:center;line-height:1.7}
.reel-label{position:absolute;bottom:16px;left:16px;right:16px;z-index:3;font-size:13px;font-weight:600;color:white;text-shadow:0 1px 10px rgba(0,0,0,.8);line-height:1.4}

/* JOIN CTA */
.join-cta{background:linear-gradient(135deg,#C4347A 0%,#5B3FA0 45%,#12102A 100%);padding:96px 5%;text-align:center;position:relative;overflow:hidden}
.join-cta::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:var(--vibrant-gradient)}
.join-cta-glow{position:absolute;border-radius:50%;pointer-events:none}
.join-cta-glow--a{width:600px;height:600px;top:-200px;right:-100px;background:radial-gradient(circle,rgba(212,160,23,.28),transparent 65%)}
.join-cta-glow--b{width:480px;height:480px;bottom:-140px;left:-80px;background:radial-gradient(circle,rgba(26,158,143,.22),transparent 65%)}
.join-cta-inner{position:relative;z-index:2;max-width:640px;margin:0 auto}
.join-cta .cta-eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:11px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);background:rgba(212,160,23,.15);border:1px solid rgba(212,160,23,.45);padding:7px 18px;border-radius:30px;margin-bottom:22px}
.join-cta-title{font-family:'Playfair Display',serif;font-size:clamp(34px,5vw,56px);color:white;line-height:1.1;font-weight:700;margin:0 0 22px}
.join-cta-title em{font-style:italic;color:var(--gold)}
.join-cta-sub{color:rgba(255,255,255,.75);font-size:16px;line-height:1.75;margin-bottom:40px;font-weight:300}
.cta-btns{display:flex;gap:12px;flex-wrap:wrap}
.join-cta-btn{background:var(--gold);color:var(--navy);padding:17px 44px;font-size:15px;font-weight:700;letter-spacing:.03em;box-shadow:0 8px 32px rgba(212,160,23,.5);border-radius:8px;text-decoration:none;display:inline-block;transition:background .2s,transform .15s,box-shadow .2s}
.join-cta-btn:hover{background:#e6b520;transform:translateY(-3px);box-shadow:0 16px 48px rgba(212,160,23,.65)}
.cta-btn-sec{background:transparent;color:white;border:1.5px solid rgba(255,255,255,.4);padding:16px 28px;border-radius:8px;font-size:14px;font-weight:500;text-decoration:none;white-space:nowrap;transition:border-color .2s,background .2s;display:inline-block}
.cta-btn-sec:hover{border-color:white;background:rgba(255,255,255,.1)}

/* FOOTER */
footer{background:var(--navy);padding:56px 5% 28px;color:rgba(255,255,255,.6);position:relative}
footer::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:var(--vibrant-gradient)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;max-width:1100px;margin:0 auto 48px}
.footer-brand{font-family:'Playfair Display',serif;font-size:20px;color:white;font-weight:700;margin-bottom:14px}
.footer-brand span{color:var(--gold)}
.footer-tagline{font-size:13px;line-height:1.7;margin-bottom:20px;color:rgba(255,255,255,.55)}
.footer-social{display:flex;gap:10px}
.soc{width:34px;height:34px;border-radius:8px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);display:flex;align-items:center;justify-content:center;font-size:12px;text-decoration:none;color:rgba(255,255,255,.75);transition:all .2s;font-weight:600}
.soc:hover{background:var(--gold);border-color:var(--gold);color:var(--navy)}
.footer-heading{font-size:11px;font-weight:700;color:var(--gold);letter-spacing:.1em;text-transform:uppercase;margin-bottom:16px}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:10px}
.footer-links a{font-size:13px;color:rgba(255,255,255,.58);text-decoration:none;transition:color .2s}
.footer-links a:hover{color:white}
.footer-bottom{max-width:1100px;margin:0 auto;padding-top:24px;border-top:1px solid rgba(255,255,255,.08);display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;font-size:12px;color:rgba(255,255,255,.42)}
.footer-bottom a{color:rgba(255,255,255,.42);text-decoration:none}
.footer-bottom a:hover{color:white}
.footer-legal-links{display:flex;gap:8px;align-items:center;color:rgba(255,255,255,.42)}
.footer-disclaimer{max-width:1100px;margin:24px auto 0;padding-top:20px;border-top:1px solid rgba(255,255,255,.08);font-size:11px;color:rgba(255,255,255,.38);line-height:1.7}

/* ── EXPLICIT WHITE OVERRIDES — hero & footer ── */
.hero-title{color:white !important}
.hero-title em{color:var(--gold) !important}
.hero-sub{color:rgba(255,255,255,.9) !important}
.hero-eyebrow{color:var(--gold) !important}
.hs-num{color:var(--gold) !important}
.hs-label{color:rgba(255,255,255,.78) !important}

.footer-brand{color:white !important}
.footer-brand span{color:var(--gold) !important}
.footer-tagline{color:rgba(255,255,255,.55) !important}
.footer-heading{color:var(--gold) !important}
.footer-links a{color:rgba(255,255,255,.58) !important}
.footer-links a:hover{color:white !important}
.soc{color:rgba(255,255,255,.75) !important}
.join-cta-title{color:white !important}
.join-cta-title em{color:var(--gold) !important}
.join-cta-sub{color:rgba(255,255,255,.75) !important}
.cta-eyebrow{color:var(--gold) !important}

/* ── BUTTON COLOR FIXES ── */
a.btn-primary,
button.btn-primary,
.btn-primary{color:var(--navy) !important;background:var(--gold) !important}
a.btn-primary:hover,
.btn-primary:hover{color:var(--navy) !important;background:#e6b520 !important}

a.btn-outline-dark,
.btn-outline-dark{color:white !important;border-color:rgba(255,255,255,.55) !important}
a.btn-outline-dark:hover,
.btn-outline-dark:hover{color:white !important;border-color:white !important}

/* ── FOOTER DISCLAIMER & BOTTOM LINK FIXES ── */
.footer-disclaimer{color:rgba(255,255,255,.45) !important}
.footer-disclaimer a,
.footer-disclaimer-link{color:rgba(255,255,255,.85) !important;text-decoration:underline !important}
.footer-disclaimer a:hover,
.footer-disclaimer-link:hover{color:white !important}
.footer-bottom{color:rgba(255,255,255,.45) !important}
.footer-bottom a{color:rgba(255,255,255,.75) !important;text-decoration:none}
.footer-bottom a:hover{color:white !important}
.footer-legal-links a{color:rgba(255,255,255,.75) !important}
.footer-legal-links a:hover{color:white !important}
.geodir-category-list-wrap,.geodir-loop-container{max-width:1100px;margin:0 auto;padding:0 5%}
.gd-search-bar-wrapper{max-width:920px;margin:0 auto}
.geodir_submit_btn,.gd-search-bar .btn{background:var(--gold) !important;border-color:var(--gold) !important;color:var(--navy) !important;font-family:'DM Sans',sans-serif !important;border-radius:8px !important;font-weight:700 !important}
.geodir_submit_btn:hover{background:#e6b520 !important}
.geodir-category-badge{background:var(--gold);border-radius:20px;color:var(--navy)}
.gd-rating-count,.geodir-company-title{font-family:'Playfair Display',serif;color:var(--navy)}

/* CONTENT AREA */
.page-content-area{max-width:1100px;margin:0 auto;padding:64px 5%}
.page-content-area h1,.page-content-area h2,.page-content-area h3{font-family:'Playfair Display',serif;color:var(--navy);margin-bottom:16px}

/* RESPONSIVE */
@media(max-width:768px){
  .pillar-grid,.cat-grid,.listings-grid{grid-template-columns:1fr 1fr}
  .cat-span2{grid-column:span 2}
  .footer-grid{grid-template-columns:1fr 1fr}
  .nav-links{display:none}
  .hero-stats{gap:0}
  .hs{padding:0 16px}
  .cta-btns{justify-content:center}
}
@media(max-width:480px){
  .pillar-grid,.listings-grid{grid-template-columns:1fr}
  .cat-grid{grid-template-columns:1fr 1fr}
  .search-bar{flex-direction:column}
  .search-sep{display:none}
  .search-btn{border-radius:0 0 8px 8px}
  .footer-grid{grid-template-columns:1fr}
  .hero-stats{flex-direction:column;gap:20px;border-top:none;padding-top:0}
  .hs+.hs::before{display:none}
  .join-cta{padding:72px 5%}
  .join-cta-glow--a{width:280px;height:280px}
  .join-cta-glow--b{width:220px;height:220px}
}

/* ── NAV LOGO IMAGE ── */
.nav-logo-img{
  width:52px;height:52px;
  object-fit:contain;
  display:block;
}
.nav-logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.nav-logo .custom-logo{width:52px;height:52px;object-fit:contain}

/* ── MISSION BAND ── */
.mission-band{
  background:var(--navy);
  padding:52px 5%;
  text-align:center;
  border-bottom:4px solid var(--gold);
}
.mission-band-inner{max-width:860px;margin:0 auto}
.mission-eyebrow{
  font-size:11px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold);margin-bottom:16px;
}
.mission-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(22px,3.5vw,36px);
  font-weight:700;color:white;line-height:1.25;margin-bottom:16px;
}
.mission-title em{font-style:italic;color:var(--gold)}
.mission-sub{
  font-size:15px;color:rgba(255,255,255,.82);
  line-height:1.75;margin-bottom:28px;
}
.badge-verified-inline{
  display:inline-block;
  background:rgba(212,160,23,.18);
  border:1px solid rgba(212,160,23,.5);
  color:var(--gold);
  font-size:12px;font-weight:700;
  padding:3px 10px;border-radius:20px;
}
.mission-pillars{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-bottom:28px}
.mission-pillar{
  background:rgba(212,160,23,.12);
  border:1px solid rgba(212,160,23,.35);
  border-radius:30px;padding:10px 22px;
  font-size:13px;font-weight:600;color:var(--gold);white-space:nowrap;
}

/* Two-tier explainer inside mission band */
.mission-tiers{
  display:flex;align-items:center;justify-content:center;
  gap:16px;flex-wrap:wrap;margin-top:8px;
}
.mission-tier-item{display:flex;align-items:center;gap:10px}
.mission-tier-desc{font-size:12px;color:rgba(255,255,255,.6)}
.mission-tier-divider{font-size:20px;color:rgba(255,255,255,.25)}

/* ── CD BADGES — used on listing cards and throughout ── */
.cd-badge{
  display:inline-flex;align-items:center;gap:5px;
  font-size:10px;font-weight:700;
  padding:4px 10px;border-radius:20px;
  white-space:nowrap;letter-spacing:.02em;flex-shrink:0;
}

/* CD Aligned — blue, self-declared */
.cd-badge--aligned{
  background:#E6F1FB;
  color:#0C447C;
  border:1px solid #B5D4F4;
}

/* CD Verified — gold, team-reviewed */
.cd-badge--verified{
  background:#FFF8E0;
  color:#7A5000;
  border:1px solid #E8C84A;
}

/* Badges on dark navy backgrounds (about section, reel, footer areas) */
.about-section .cd-badge--aligned{
  background:rgba(180,215,255,.15);
  color:#A8D4FF;
  border:1px solid rgba(168,212,255,.4);
}
.about-section .cd-badge--verified{
  background:rgba(212,160,23,.15);
  color:#F0C040;
  border:1px solid rgba(212,160,23,.45);
}

/* Listing card name row — name + badge side by side */
.lc-name-row{
  display:flex;align-items:flex-start;
  justify-content:space-between;
  gap:8px;margin-bottom:4px;
}
.lc-name-row .lc-name{flex:1;min-width:0}

/* ── GEODIRECTORY: badge injection ── */
/*
  GeoDirectory custom fields:
    - Field key: cd_alignment_status
    - Values:    "verified" | "aligned" | "" (none)

  GeoDirectory outputs custom field values with the class:
    .geodir-field-cd_alignment_status

  The rules below auto-style whichever value GeoDirectory outputs.
  No PHP needed — pure CSS driven by the field value as text content.
*/
.geodir-field-cd_alignment_status{
  display:inline-flex;align-items:center;
  font-size:10px;font-weight:700;
  padding:4px 10px;border-radius:20px;
  white-space:nowrap;letter-spacing:.02em;
}
/* GeoDirectory wraps field output in a span — target by data attribute set in field settings */
[data-field="cd_alignment_status"][data-value="verified"],
.cd-status-verified{
  background:#FFF8E0;color:#7A5000;border:1px solid #E8C84A;
}
[data-field="cd_alignment_status"][data-value="verified"]::before,
.cd-status-verified::before{ content:'✦ CD Verified'; }

[data-field="cd_alignment_status"][data-value="aligned"],
.cd-status-aligned{
  background:#E6F1FB;color:#0C447C;border:1px solid #B5D4F4;
}
[data-field="cd_alignment_status"][data-value="aligned"]::before,
.cd-status-aligned::before{ content:'CD Aligned'; }

/* ── FOOTER DISCLAIMER ── */
.footer-disclaimer{
  max-width:1100px;
  margin:0 auto 24px;
  padding:16px 20px;
  border-left:3px solid var(--gold);
  border-radius:0;
  font-size:11px;
  line-height:1.75;
  color:rgba(255,255,255,.42);
}
.footer-disclaimer strong{
  color:rgba(255,255,255,.65);
  font-weight:600;
}
.footer-disclaimer a{
  color:rgba(255,255,255,.5);
  text-decoration:underline;
  transition:color .15s;
}
.footer-disclaimer a:hover{ color:var(--gold); }

/* ── FOOTER LEGAL LINKS ── */
.footer-legal-links{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  color:rgba(255,255,255,.4);
}
.footer-legal-links a{
  color:rgba(255,255,255,.45);
  text-decoration:none;
  transition:color .15s;
}
.footer-legal-links a:hover{ color:var(--gold); }

/* ── GEODIRECTORY ALIGNMENT FIELD OVERRIDE ── */
/* Ensures the alignment checkbox block looks right inside GeoDirectory's form wrapper */
.geodir-add-listing-page .cd-alignment-field,
.gd-add-listing .cd-alignment-field{
  margin:24px 0;
}

/* ── MULTI-CRITERIA RATING ROWS ── */
/* Styles GeoDirectory's rating criteria rows to match the CD theme */
.geodir-review-rating-wrap .rating-label,
.geodir-review-criteria-label{
  font-family:'DM Sans',sans-serif;
  font-size:13px;
  font-weight:600;
  color:var(--navy);
}
.geodir-review-criteria-row{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid var(--border);
}
.geodir-review-criteria-row:last-child{ border-bottom:none; }
.geodir-rating-element .star-rating .star{
  color:var(--gold);
}
/* Overall rating display on listing card */
.geodir-review-stars .filled,
.geodir-star-rating .filled{
  color:var(--gold) !important;
}

/* ── LEGAL PAGES (Terms / Privacy) ── */
.page-legal .page-content-area h1{
  font-size:clamp(28px,4vw,42px);
  margin-bottom:8px;
}
.page-legal .page-content-area .legal-effective{
  font-size:13px;
  color:var(--text-light);
  margin-bottom:40px;
}
.page-legal .page-content-area h2{
  font-size:20px;
  margin-top:36px;
  margin-bottom:12px;
  padding-bottom:8px;
  border-bottom:2px solid var(--gold);
  display:inline-block;
}
.page-legal .page-content-area p,
.page-legal .page-content-area li{
  font-size:15px;
  line-height:1.8;
  color:var(--text-mid);
  margin-bottom:12px;
}

/* ── HERO MOSAIC — cultural diversity grid ── */
.hero-mosaic{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  grid-template-rows:repeat(3,1fr);
  gap:3px;
}
/* Dark overlay sits on top of the whole mosaic */
.hero-mosaic::after{
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg,rgba(196,52,122,.4) 0%,rgba(18,16,42,.5) 50%,rgba(26,158,143,.3) 100%),
    rgba(18,16,42,.45);
  pointer-events:none;
}
.hero-mosaic-cell{
  background-size:cover;
  background-position:center;
  /* subtle scale-in on load */
  animation:mosaic-in .8s ease both;
}
/* Stagger each cell's animation */
.hero-mosaic-cell:nth-child(1){animation-delay:.05s}
.hero-mosaic-cell:nth-child(2){animation-delay:.1s}
.hero-mosaic-cell:nth-child(3){animation-delay:.15s}
.hero-mosaic-cell:nth-child(4){animation-delay:.2s}
.hero-mosaic-cell:nth-child(5){animation-delay:.25s}
.hero-mosaic-cell:nth-child(6){animation-delay:.1s}
.hero-mosaic-cell:nth-child(7){animation-delay:.15s}
.hero-mosaic-cell:nth-child(8){animation-delay:.2s}
.hero-mosaic-cell:nth-child(9){animation-delay:.25s}
.hero-mosaic-cell:nth-child(10){animation-delay:.3s}
.hero-mosaic-cell:nth-child(11){animation-delay:.15s}
.hero-mosaic-cell:nth-child(12){animation-delay:.2s}
.hero-mosaic-cell:nth-child(13){animation-delay:.25s}
.hero-mosaic-cell:nth-child(14){animation-delay:.3s}
.hero-mosaic-cell:nth-child(15){animation-delay:.35s}
@keyframes mosaic-in{
  from{opacity:0;transform:scale(1.05)}
  to{opacity:1;transform:scale(1)}
}
@media(prefers-reduced-motion:reduce){
  .hero-mosaic-cell{animation:none}
}

/* ── CD STANDARD STRIP — compact bar ── */
.cd-standard-strip{
  background:var(--navy);
  padding:12px 5%;
  border-bottom:3px solid var(--gold);
}
.cd-standard-strip-inner{
  max-width:1100px;margin:0 auto;
  display:flex;align-items:center;
  justify-content:space-between;
  gap:16px;flex-wrap:wrap;
}
.cd-standard-strip-text{
  font-size:13px;color:rgba(255,255,255,.78);
  font-weight:400;line-height:1.5;
}
.cd-standard-strip-text strong{
  color:var(--gold);font-weight:700;
}
.cd-standard-badges{
  display:flex;gap:8px;flex-shrink:0;
}
@media(max-width:600px){
  .cd-standard-strip-inner{flex-direction:column;text-align:center}
  .cd-standard-badges{justify-content:center}
}

/* ── ABOUT SECTION ── */
.about-section{
  background:var(--navy);
  color:white;
  padding-top:72px;
  padding-bottom:72px;
  position:relative;
}
.about-section::before{
  content:'';position:absolute;top:0;left:0;right:0;
  height:4px;background:var(--vibrant-gradient);
}
.about-grid{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:64px;
  align-items:center;
}

/* Left column */
.about-left{
  display:flex;flex-direction:column;
  align-items:center;gap:20px;text-align:center;
}
.about-logo-wrap{
  width:200px;height:200px;
}
.about-logo{width:100%;height:100%;object-fit:contain;display:block}
.about-tagline-row{
  display:flex;gap:6px;flex-wrap:wrap;justify-content:center;
}
.about-tagline-word{
  font-family:'Playfair Display',serif;
  font-size:18px;font-weight:700;color:white;
  padding:8px 16px;border-radius:6px;
  letter-spacing:-.01em;
}
.about-url{
  font-size:12px;color:rgba(255,255,255,.4);
  letter-spacing:.05em;
}

/* Right column */
.about-right{display:flex;flex-direction:column;gap:16px}
.about-section .about-eyebrow{
  font-size:11px;font-weight:700;letter-spacing:.2em;
  text-transform:uppercase;color:var(--gold) !important;
}
.about-section .about-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(26px,3.5vw,40px);
  font-weight:700;color:#ffffff !important;line-height:1.15;
}
.about-section .about-title em{font-style:italic;color:var(--gold) !important}
.about-body{display:flex;flex-direction:column;gap:14px}
.about-section .about-body p,
.about-section .about-body p *{
  font-size:15px;color:rgba(255,255,255,.78) !important;
  line-height:1.75;font-weight:300;
}
.about-inline-link{
  color:var(--gold);font-weight:600;
  text-decoration:none;border-bottom:1px solid rgba(212,160,23,.4);
  transition:border-color .15s;
}
.about-inline-link:hover{border-color:var(--gold)}
.about-actions{
  display:flex;gap:12px;flex-wrap:wrap;margin-top:8px;
}
.btn-outline-dark{
  background:transparent;color:white !important;
  border:1.5px solid rgba(255,255,255,.55);
  padding:15px 28px;border-radius:8px;
  font-size:14px;font-weight:500;text-decoration:none;
  transition:border-color .2s,background .2s;display:inline-block;
}
.btn-outline-dark:hover{
  border-color:white;background:rgba(255,255,255,.12);color:white !important;
}

@media(max-width:900px){
  .about-grid{grid-template-columns:1fr;gap:40px}
  .about-left{flex-direction:row;text-align:left;align-items:center}
  .about-logo-wrap{width:120px;height:120px;flex-shrink:0}
}
@media(max-width:480px){
  .about-left{flex-direction:column;text-align:center}
}
