/* =============================================
   NASYA COLORING — MAIN STYLESHEET
   Palette: Warm cream · Dusty rose · Sage · Deep ink
============================================= */
:root {
  --cream:       #FFF8F2;
  --cream-dark:  #F5EDE2;
  --rose:        #D4847A;
  --rose-light:  #F0C4BE;
  --rose-deep:   #A85C54;
  --sage:        #8BA888;
  --sage-light:  #C8D9C6;
  --sage-deep:   #5A7A57;
  --ink:         #2C2118;
  --ink-mid:     #5C4A38;
  --ink-light:   #8C7A68;
  --gold:        #C49A3C;
  --gold-light:  #EDD98A;
  --white:       #FFFFFF;
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --shadow-soft: 0 4px 24px rgba(44,33,24,.08);
  --shadow-card: 0 2px 12px rgba(44,33,24,.06);
  --t:           all .25s ease;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font-body);background:var(--cream);color:var(--ink);line-height:1.7}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none;transition:var(--t)}
ul{list-style:none}
input,select,textarea,button{font-family:inherit}

/* ── NAV ── */
.nav{position:sticky;top:0;z-index:100;background:rgba(255,248,242,.96);backdrop-filter:blur(12px);border-bottom:1px solid var(--rose-light);padding:0 2rem}
.nav-inner{max-width:1200px;margin:0 auto;height:68px;display:flex;align-items:center;justify-content:space-between;gap:2rem}
.nav-logo{font-family:var(--font-display);font-size:1.5rem;color:var(--ink);font-style:italic;letter-spacing:-.02em;white-space:nowrap}
.nav-logo span{color:var(--rose)}
.nav-links{display:flex;align-items:center;gap:.25rem}
.nav-links a{font-size:.9rem;font-weight:500;color:var(--ink-mid);padding:.5rem .9rem;border-radius:var(--radius-sm);transition:var(--t)}
.nav-links a:hover,.nav-links a.active{color:var(--rose-deep);background:rgba(212,132,122,.1)}
.nav-dropdown{position:relative}
.nav-dropdown-menu{display:none;position:absolute;top:calc(100% + 8px);left:0;background:var(--white);border:1px solid var(--rose-light);border-radius:var(--radius-md);min-width:200px;box-shadow:var(--shadow-soft);padding:.5rem;z-index:200}
.nav-dropdown:hover .nav-dropdown-menu{display:block}
.nav-dropdown-menu a{display:block;padding:.5rem .9rem;font-size:.875rem;border-radius:var(--radius-sm);color:var(--ink-mid)}
.nav-dropdown-menu a:hover{background:var(--cream-dark);color:var(--rose-deep)}
.nav-cta{background:var(--rose)!important;color:var(--white)!important;border-radius:var(--radius-md)!important;padding:.5rem 1.2rem!important;font-weight:600!important;font-size:.875rem!important}
.nav-cta:hover{background:var(--rose-deep)!important}
.nav-toggle{display:none;background:none;border:none;font-size:1.4rem;cursor:pointer;color:var(--ink)}

/* ── UTILITIES ── */
.section{padding:5rem 2rem}
.section-sm{padding:3rem 2rem}
.container{max-width:1200px;margin:0 auto}
.container-sm{max-width:820px;margin:0 auto}
.container-xs{max-width:600px;margin:0 auto}
.section-label{display:inline-block;font-size:.75rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--rose);margin-bottom:.75rem}
.section-title{font-family:var(--font-display);font-size:clamp(2rem,4vw,3rem);line-height:1.15;color:var(--ink);margin-bottom:1.25rem}
.section-title em{font-style:italic;color:var(--rose)}
.section-sub{font-size:1.05rem;color:var(--ink-light);max-width:560px;line-height:1.8}
.text-center{text-align:center}
.text-center .section-sub{margin-left:auto;margin-right:auto}
.divider{width:48px;height:3px;background:var(--rose);border-radius:2px;margin:1.25rem 0}
.stars{color:var(--gold);letter-spacing:2px}
.price-digital{font-size:.8rem;color:var(--ink-light);font-family:var(--font-body);font-weight:400}

/* ── BUTTONS ── */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.8rem 1.75rem;border-radius:var(--radius-md);font-weight:600;font-size:.9rem;cursor:pointer;transition:var(--t);border:2px solid transparent;text-decoration:none;white-space:nowrap}
.btn-primary{background:var(--rose);color:#fff;border-color:var(--rose)}
.btn-primary:hover{background:var(--rose-deep);border-color:var(--rose-deep);transform:translateY(-1px);box-shadow:0 6px 20px rgba(168,92,84,.3)}
.btn-secondary{background:transparent;color:var(--ink);border-color:var(--ink-light)}
.btn-secondary:hover{border-color:var(--ink);background:var(--ink);color:#fff}
.btn-outline-rose{background:transparent;color:var(--rose-deep);border-color:var(--rose)}
.btn-outline-rose:hover{background:var(--rose);color:#fff}
.btn-amazon{background:#FF9900;color:var(--ink);border-color:#FF9900;font-weight:700}
.btn-amazon:hover{background:#e68900;transform:translateY(-1px);box-shadow:0 6px 20px rgba(255,153,0,.35)}
.btn-lg{padding:1rem 2.25rem;font-size:1rem;border-radius:var(--radius-lg)}

/* ── BADGES ── */
.badge{display:inline-block;font-size:.7rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;padding:.25rem .6rem;border-radius:var(--radius-sm)}
.badge-rose{background:var(--rose-light);color:var(--rose-deep)}
.badge-sage{background:var(--sage-light);color:var(--sage-deep)}
.badge-gold{background:var(--gold-light);color:#7A5C1A}
.badge-ink{background:var(--ink);color:var(--cream)}

/* ── PRODUCT CARDS ── */
.product-card{background:var(--white);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-card);transition:var(--t);border:1px solid rgba(212,132,122,.1);display:flex;flex-direction:column}
.product-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-soft)}
.product-card-img{width:100%;aspect-ratio:4/3;background:var(--cream-dark);position:relative;overflow:hidden}
.product-card-img img{width:100%;height:100%;object-fit:cover}
.product-card-img-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:.5rem;color:var(--ink-light);font-size:.8rem;background:linear-gradient(135deg,var(--cream-dark),var(--rose-light))}
.product-card-img-placeholder svg{width:48px;height:48px;opacity:.4}
.product-card-badge{position:absolute;top:12px;left:12px}
.product-card-body{padding:1.25rem;display:flex;flex-direction:column;flex:1;gap:.5rem}
.product-card-title{font-family:var(--font-display);font-size:1.05rem;font-weight:700;color:var(--ink);line-height:1.3}
.product-card-desc{font-size:.85rem;color:var(--ink-light);line-height:1.6;flex:1}
.product-card-price{font-size:1.25rem;font-weight:700;color:var(--rose-deep);font-family:var(--font-display)}
.product-card-footer{display:flex;gap:.5rem;flex-wrap:wrap;margin-top:.25rem}
.product-card-footer .btn{flex:1;justify-content:center;padding:.6rem .75rem;font-size:.82rem}
.admin-card-actions{display:flex;gap:.5rem;margin-top:.5rem;padding-top:.5rem;border-top:1px dashed var(--cream-dark)}
.btn-admin-edit,.btn-admin-toggle{font-size:.75rem;padding:.3rem .7rem;border-radius:var(--radius-sm);cursor:pointer;border:1px solid var(--cream-dark);background:var(--cream);color:var(--ink-mid);transition:var(--t);text-decoration:none}
.btn-admin-edit:hover{background:var(--rose-light);border-color:var(--rose)}
.btn-admin-toggle:hover{background:var(--sage-light);border-color:var(--sage)}

/* ── GRIDS ── */
.grid-3{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.5rem}
.grid-4{display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,1fr));gap:1.5rem}
.grid-2{display:grid;grid-template-columns:repeat(auto-fit,minmax(360px,1fr));gap:2rem}

/* ── TRUST BAR ── */
.trust-bar{background:var(--ink);color:var(--cream);padding:.85rem 2rem}
.trust-bar-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:center;gap:2.5rem;flex-wrap:wrap}
.trust-item{display:flex;align-items:center;gap:.5rem;font-size:.82rem;font-weight:500;color:rgba(255,248,242,.85);white-space:nowrap}
.trust-item svg{width:16px;height:16px;color:var(--gold);flex-shrink:0}

/* ── HERO ── */
.hero{min-height:88vh;display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:4rem;padding:5rem 2rem;max-width:1200px;margin:0 auto}
.hero-eyebrow{display:flex;align-items:center;gap:.75rem;margin-bottom:1.5rem}
.hero-eyebrow-line{width:32px;height:2px;background:var(--rose)}
.hero-eyebrow-text{font-size:.78rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--rose)}
.hero-title{font-family:var(--font-display);font-size:clamp(2.5rem,5vw,4rem);line-height:1.1;color:var(--ink);margin-bottom:1.5rem}
.hero-title em{font-style:italic;color:var(--rose)}
.hero-desc{font-size:1.05rem;color:var(--ink-mid);line-height:1.8;margin-bottom:2.5rem;max-width:480px}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:2.5rem}
.hero-social-proof{display:flex;align-items:center;gap:1rem}
.hero-proof-text{font-size:.82rem;color:var(--ink-light);line-height:1.5}
.hero-proof-text strong{color:var(--ink);font-weight:600}
.hero-visual{position:relative}
.hero-visual-frame{width:100%;aspect-ratio:3/4;max-width:460px;margin-left:auto;border-radius:var(--radius-xl);overflow:hidden;background:linear-gradient(135deg,var(--rose-light),var(--sage-light));position:relative;box-shadow:0 20px 60px rgba(168,92,84,.2)}
.hero-visual-frame img{width:100%;height:100%;object-fit:cover}
.hero-visual-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:1rem;color:var(--rose-deep);font-family:var(--font-display);font-style:italic;font-size:1.1rem;opacity:.7}
.hero-visual-placeholder svg{width:80px;height:80px;opacity:.5}
.hero-badge-float{position:absolute;bottom:-16px;left:-16px;background:var(--white);border-radius:var(--radius-md);padding:1rem 1.25rem;box-shadow:var(--shadow-soft);border:1px solid var(--rose-light)}
.hero-badge-float .badge-num{font-family:var(--font-display);font-size:1.75rem;font-weight:700;color:var(--rose);line-height:1}
.hero-badge-float .badge-label{font-size:.75rem;color:var(--ink-light);margin-top:.2rem}
.hero-badge-float2{position:absolute;top:24px;right:-12px;background:var(--sage-deep);color:#fff;border-radius:var(--radius-md);padding:.75rem 1rem;box-shadow:var(--shadow-soft);font-size:.78rem;font-weight:600;text-align:center;line-height:1.4}

/* ── AUDIENCE SPLIT ── */
.audience-split{display:grid;grid-template-columns:1fr 1fr;overflow:hidden;border-radius:var(--radius-xl);box-shadow:var(--shadow-soft)}
.audience-card{padding:3.5rem;display:flex;flex-direction:column;gap:1rem;overflow:hidden;transition:var(--t);cursor:pointer}
.audience-card-teens{background:var(--rose-deep);color:#fff}
.audience-card-kids{background:var(--sage-deep);color:#fff}
.audience-icon{font-size:3rem;margin-bottom:.5rem}
.audience-card h3{font-family:var(--font-display);font-size:1.75rem;font-weight:700;line-height:1.2;color:#fff}
.audience-card p{font-size:.95rem;opacity:.85;line-height:1.7;max-width:340px}
.audience-card .btn{align-self:flex-start;margin-top:.5rem;background:rgba(255,255,255,.15);border-color:rgba(255,255,255,.4);color:#fff}
.audience-card .btn:hover{background:#fff;color:var(--rose-deep)}
.audience-card-kids .btn:hover{color:var(--sage-deep)}

/* ── FEATURES ── */
.features-strip{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:2rem}
.feature-item{display:flex;flex-direction:column;align-items:center;text-align:center;gap:.75rem;padding:2rem 1.5rem;background:var(--white);border-radius:var(--radius-lg);box-shadow:var(--shadow-card);border:1px solid rgba(212,132,122,.08);transition:var(--t)}
.feature-item:hover{transform:translateY(-3px);box-shadow:var(--shadow-soft)}
.feature-icon{width:56px;height:56px;background:var(--cream-dark);border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;font-size:1.5rem}
.feature-item h4{font-weight:600;font-size:.95rem;color:var(--ink)}
.feature-item p{font-size:.82rem;color:var(--ink-light);line-height:1.6}

/* ── TESTIMONIALS ── */
.testimonials-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem}
.testimonial-card{background:var(--white);border-radius:var(--radius-lg);padding:1.75rem;box-shadow:var(--shadow-card);border:1px solid rgba(212,132,122,.08);display:flex;flex-direction:column;gap:1rem;transition:var(--t)}
.testimonial-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-soft)}
.testimonial-quote{font-size:.95rem;line-height:1.75;color:var(--ink-mid);font-style:italic;font-family:var(--font-display);flex:1}
.testimonial-author{display:flex;align-items:center;gap:.75rem;padding-top:1rem;border-top:1px solid var(--cream-dark)}
.author-avatar{width:38px;height:38px;border-radius:50%;background:var(--rose-light);display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-weight:700;color:var(--rose-deep);font-size:.85rem;flex-shrink:0}
.author-name{font-weight:600;font-size:.875rem;color:var(--ink)}
.author-sub{font-size:.78rem;color:var(--ink-light)}

/* ── EMAIL CAPTURE ── */
.email-capture{background:var(--rose-deep);border-radius:var(--radius-xl);padding:4rem 3rem;text-align:center;position:relative;overflow:hidden}
.email-capture h2{font-family:var(--font-display);font-size:clamp(1.75rem,3vw,2.5rem);color:#fff;margin-bottom:.75rem}
.email-capture p{color:rgba(255,255,255,.8);font-size:1rem;margin-bottom:2rem}
.email-form{display:flex;gap:.75rem;max-width:480px;margin:0 auto;flex-wrap:wrap;justify-content:center}
.email-input{flex:1;min-width:240px;padding:.875rem 1.25rem;border-radius:var(--radius-md);border:2px solid rgba(255,255,255,.2);background:rgba(255,255,255,.12);color:#fff;font-size:.9rem;outline:none;transition:var(--t)}
.email-input::placeholder{color:rgba(255,255,255,.5)}
.email-input:focus{border-color:rgba(255,255,255,.6)}
.email-submit{background:#fff;color:var(--rose-deep);border:none;padding:.875rem 1.75rem;border-radius:var(--radius-md);font-weight:700;font-size:.9rem;cursor:pointer;transition:var(--t)}
.email-submit:hover{background:var(--cream)}

/* ── SHOP PAGE ── */
.shop-header{background:var(--cream-dark);padding:4rem 2rem 0;border-bottom:1px solid rgba(212,132,122,.15)}
.shop-filters{display:flex;gap:.5rem;flex-wrap:wrap;padding-top:2rem}
.filter-tab{padding:.55rem 1.1rem;border-radius:var(--radius-md) var(--radius-md) 0 0;font-size:.85rem;font-weight:500;color:var(--ink-light);cursor:pointer;border:1px solid transparent;border-bottom:none;transition:var(--t);background:transparent;white-space:nowrap}
.filter-tab:hover{color:var(--rose-deep)}
.filter-tab.active{background:var(--cream);color:var(--rose-deep);border-color:rgba(212,132,122,.15);font-weight:600}
.shop-sort-row{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;margin-bottom:2rem}
.product-count{font-size:.875rem;color:var(--ink-light)}
.sort-select{padding:.5rem 1rem;border-radius:var(--radius-sm);border:1px solid rgba(212,132,122,.25);background:var(--white);font-size:.85rem;color:var(--ink);cursor:pointer;outline:none}
.category-section-title{font-family:var(--font-display);font-size:1.5rem;color:var(--ink);margin-bottom:1.5rem;padding-bottom:.75rem;border-bottom:2px solid var(--rose-light);display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.5rem}
.category-section-title a{font-size:.85rem;font-family:var(--font-body);color:var(--rose);font-weight:500}
.category-section-title a:hover{color:var(--rose-deep)}
.category-block{margin-bottom:4rem}

/* ── ABOUT PAGE ── */
.about-hero{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;padding:5rem 2rem;max-width:1200px;margin:0 auto}
.about-visual{position:relative}
.about-visual-frame{width:100%;aspect-ratio:1;border-radius:var(--radius-xl);background:linear-gradient(135deg,var(--sage-light),var(--rose-light));display:flex;align-items:center;justify-content:center;font-size:6rem;box-shadow:0 16px 48px rgba(91,122,87,.2)}
.about-stat-card{position:absolute;background:var(--white);border-radius:var(--radius-md);padding:.875rem 1.25rem;box-shadow:var(--shadow-soft);border:1px solid rgba(212,132,122,.12)}
.about-stat-card .num{font-family:var(--font-display);font-size:1.5rem;font-weight:700;color:var(--rose)}
.about-stat-card .lbl{font-size:.75rem;color:var(--ink-light);margin-top:.15rem}
.about-stat-1{bottom:24px;left:-20px}
.about-stat-2{top:24px;right:-20px}

/* ── CONTACT PAGE ── */
.contact-layout{display:grid;grid-template-columns:1fr 1.4fr;gap:4rem;align-items:start;padding:5rem 2rem;max-width:1100px;margin:0 auto}
.contact-info{display:flex;flex-direction:column;gap:1.5rem}
.contact-info-item{display:flex;gap:1rem;align-items:flex-start}
.contact-info-icon{width:44px;height:44px;border-radius:var(--radius-md);background:var(--rose-light);display:flex;align-items:center;justify-content:center;font-size:1.25rem;flex-shrink:0}
.contact-info-label{font-weight:600;font-size:.9rem;color:var(--ink);margin-bottom:.2rem}
.contact-info-value{font-size:.875rem;color:var(--ink-light);line-height:1.6}
.contact-form-card{background:var(--white);border-radius:var(--radius-xl);padding:2.5rem;box-shadow:var(--shadow-soft);border:1px solid rgba(212,132,122,.1)}
.contact-form-card h3{font-family:var(--font-display);font-size:1.5rem;margin-bottom:.5rem;color:var(--ink)}
.form-group{margin-bottom:1.25rem}
.form-label{display:block;font-size:.82rem;font-weight:600;color:var(--ink-mid);margin-bottom:.4rem;letter-spacing:.02em}
.form-input,.form-select,.form-textarea{width:100%;padding:.75rem 1rem;border:1.5px solid rgba(212,132,122,.2);border-radius:var(--radius-md);font-size:.9rem;color:var(--ink);background:var(--cream);outline:none;transition:var(--t)}
.form-input:focus,.form-select:focus,.form-textarea:focus{border-color:var(--rose);background:var(--white);box-shadow:0 0 0 3px rgba(212,132,122,.12)}
.form-textarea{min-height:120px;resize:vertical}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}

/* ── FAQ ── */
.faq-list{display:flex;flex-direction:column;gap:.75rem;margin-top:1.5rem}
.faq-item{background:var(--white);border-radius:var(--radius-md);border:1px solid rgba(212,132,122,.1);overflow:hidden}
.faq-q{padding:1rem 1.25rem;font-weight:600;font-size:.9rem;color:var(--ink);cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1rem;user-select:none;list-style:none}
.faq-q::after{content:'+';font-size:1.1rem;color:var(--rose);transition:var(--t);flex-shrink:0}
.faq-item.open .faq-q::after{content:'−'}
.faq-a{display:none;padding:0 1.25rem 1rem;font-size:.875rem;color:var(--ink-light);line-height:1.7}
.faq-item.open .faq-a{display:block}

/* ── PAGE HEADER ── */
.page-header{background:var(--cream-dark);padding:3rem 2rem;text-align:center;border-bottom:1px solid rgba(212,132,122,.12)}

/* ── FOOTER ── */
footer{background:var(--ink);color:var(--cream);padding:4rem 2rem 2rem}
.footer-inner{max-width:1200px;margin:0 auto}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;padding-bottom:3rem;border-bottom:1px solid rgba(255,248,242,.1);margin-bottom:2rem}
.footer-brand-name{font-family:var(--font-display);font-size:1.4rem;font-style:italic;color:var(--cream);margin-bottom:.75rem}
.footer-brand-name span{color:var(--rose)}
.footer-tagline{font-size:.875rem;color:rgba(255,248,242,.55);line-height:1.7;margin-bottom:1.25rem}
.footer-socials{display:flex;gap:.75rem}
.footer-social-link{width:36px;height:36px;border-radius:var(--radius-sm);background:rgba(255,248,242,.08);display:flex;align-items:center;justify-content:center;transition:var(--t)}
.footer-social-link:hover{background:var(--rose)}
.footer-social-link svg{width:16px;height:16px;fill:var(--cream);stroke:var(--cream)}
.footer-col-title{font-size:.75rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,248,242,.45);margin-bottom:1.25rem}
.footer-links{display:flex;flex-direction:column;gap:.6rem}
.footer-links a{font-size:.875rem;color:rgba(255,248,242,.65);transition:var(--t)}
.footer-links a:hover{color:var(--rose-light)}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;font-size:.8rem;color:rgba(255,248,242,.35)}

/* ── NOTICE ── */
.notice{padding:.9rem 1.25rem;border-radius:var(--radius-md);font-size:.875rem;margin-bottom:1.5rem;font-weight:500}
.notice-success{background:#d4edda;color:#155724;border:1px solid #c3e6cb}
.notice-error{background:#f8d7da;color:#721c24;border:1px solid #f5c6cb}
.notice-info{background:#d1ecf1;color:#0c5460;border:1px solid #bee5eb}

/* ── ANIMATIONS ── */
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.fade-up{animation:fadeUp .6s ease forwards}
.fade-up-1{animation-delay:.1s;opacity:0}
.fade-up-2{animation-delay:.2s;opacity:0}
.fade-up-3{animation-delay:.3s;opacity:0}
.fade-up-4{animation-delay:.4s;opacity:0}
.fade-up-5{animation-delay:.5s;opacity:0}

/* ── RESPONSIVE ── */
@media(max-width:1024px){.footer-grid{grid-template-columns:1fr 1fr;gap:2rem}}
@media(max-width:900px){
  .hero{grid-template-columns:1fr;min-height:auto;padding:3rem 2rem}
  .hero-visual{order:-1}
  .about-hero{grid-template-columns:1fr;gap:2.5rem}
  .contact-layout{grid-template-columns:1fr;gap:3rem}
}
@media(max-width:700px){
  .audience-split{grid-template-columns:1fr;border-radius:var(--radius-lg)}
  .nav-links{display:none;position:fixed;top:68px;left:0;right:0;background:var(--cream);border-bottom:1px solid var(--rose-light);flex-direction:column;padding:1rem;gap:.25rem;z-index:99;box-shadow:var(--shadow-soft)}
  .nav-links.open{display:flex}
  .nav-toggle{display:block}
  .nav-dropdown-menu{position:static;box-shadow:none;border:none;background:var(--cream-dark);margin-top:.25rem}
  .footer-grid{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .email-capture{padding:3rem 1.5rem}
  .about-stat-1,.about-stat-2{display:none}
}
@media(max-width:480px){
  .section{padding:3rem 1.25rem}
  .hero{padding:2rem 1.25rem}
  .audience-card{padding:2.5rem 1.75rem}
  .contact-form-card{padding:1.75rem}
}
