/* ============================================================
   Waggin' Tails Doggy Day Care
   Design tokens derived from the real brand logo:
   navy lettering, warm sand retriever, cream ground.
   ============================================================ */
:root{
  --navy:#1d2f5e;
  --navy-deep:#15274f;
  --navy-ink:#0e1c3d;
  --sand:#d7c59d;
  --sand-soft:#ece1c8;
  --gold:#f4b740;
  --gold-ink:#8a5a00;
  --coral:#e4704f;
  --cream:#fdf8f1;
  --cream-2:#f7efe1;
  --white:#ffffff;
  --ink:#232a3b;
  --slate:#59616e;
  --line:#e9dfcc;
  --green:#4e9c63;

  --ff-head:"Poppins",system-ui,sans-serif;
  --ff-body:"Inter",system-ui,sans-serif;

  --fs-h1:clamp(2.35rem,4.8vw,3.5rem);
  --fs-h2:clamp(1.75rem,3.2vw,2.35rem);
  --fs-h3:clamp(1.15rem,1.8vw,1.35rem);
  --fs-body:1.0625rem;

  --radius:18px;
  --radius-sm:12px;
  --shadow:0 10px 30px -12px rgba(21,39,79,.18);
  --shadow-lg:0 24px 50px -20px rgba(21,39,79,.28);
  --wrap:1160px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
}
body{
  margin:0;
  font-family:var(--ff-body);
  font-size:var(--fs-body);
  line-height:1.65;
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{font-family:var(--ff-head);line-height:1.15;margin:0;color:var(--navy-deep)}
p{margin:0 0 1rem}
img{max-width:100%;display:block}
a{color:var(--navy)}
a:focus-visible,button:focus-visible,summary:focus-visible,
input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:2px solid var(--navy);
  outline-offset:2px;
  border-radius:4px;
}
.wrap{width:min(var(--wrap),92%);margin-inline:auto}
.icon{width:1.15em;height:1.15em;fill:currentColor;flex:none}
.icon-stroke{fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

.skip-link{
  position:absolute;left:-999px;top:8px;z-index:100;
  background:var(--navy);color:#fff;padding:.6rem 1rem;border-radius:8px;
  text-decoration:none;font-weight:600;
}
.skip-link:focus{left:8px}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  font-family:var(--ff-head);font-weight:700;font-size:1.1rem;
  padding:.9rem 1.7rem;border-radius:999px;text-decoration:none;
  border:2px solid transparent;cursor:pointer;letter-spacing:.01em;
  transition:background .18s ease,color .18s ease,transform .15s ease,box-shadow .18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--navy);color:#fff;box-shadow:var(--shadow)}
.btn-primary:hover{background:var(--navy-deep)}
.btn-outline{background:transparent;color:var(--navy-deep);border-color:var(--navy)}
.btn-outline:hover{background:var(--navy);color:#fff}
.btn-gold{background:var(--gold);color:var(--navy-ink);box-shadow:var(--shadow)}
.btn-gold:hover{background:#e8a825}
.btn-sm{padding:.5rem 1.05rem;font-size:.95rem}
.btn-lg{padding:1.05rem 2.1rem;font-size:1.22rem}
.btn-block{width:100%}
.text-link{
  font-weight:600;color:var(--gold-ink);text-decoration:none;
  border-bottom:2px solid var(--sand);padding-bottom:1px;
}
.text-link:hover{color:var(--navy-deep);border-color:var(--gold)}

/* ---------- header ---------- */
.site-header{
  position:sticky;top:0;z-index:60;
  background:rgba(253,248,241,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:.55rem 0;gap:1rem}
.brand{display:flex;align-items:center}
.brand-logo{width:auto;height:76px}
.nav-links{display:flex;align-items:center;gap:1.45rem;list-style:none;margin:0;padding:0}
.nav-links a:not(.btn){
  text-decoration:none;color:var(--navy-deep);font-weight:500;font-size:.98rem;
  padding:.35rem 0;border-bottom:2px solid transparent;
}
.nav-links a:not(.btn):hover{border-color:var(--gold)}
.nav-toggle{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  width:44px;height:44px;background:none;border:0;cursor:pointer;padding:8px;
}
.nav-toggle span{height:2.5px;background:var(--navy-deep);border-radius:2px;transition:transform .2s,opacity .2s}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7.5px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg)}

/* ---------- hero ---------- */
.hero{
  position:relative;overflow:hidden;
  background:
    radial-gradient(720px 480px at 8% -10%,rgba(244,183,64,.12),transparent 70%),
    radial-gradient(820px 560px at 105% 112%,rgba(29,47,94,.10),transparent 70%),
    var(--cream);
}
.hero-inner{
  display:grid;grid-template-columns:1.04fr .96fr;gap:clamp(2rem,5vw,4.5rem);
  align-items:center;padding:clamp(2.6rem,6vw,5rem) 0 clamp(3rem,6vw,5.5rem);
}
.eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  background:var(--white);border:1px solid var(--line);
  color:var(--navy-deep);font-weight:600;font-size:.9rem;
  padding:.4rem .95rem;border-radius:999px;margin:0 0 1.3rem;
  box-shadow:0 4px 14px -8px rgba(21,39,79,.25);
}
.eyebrow .icon{color:var(--coral)}
.hero-copy h1{font-size:var(--fs-h1);font-weight:700;letter-spacing:-.01em;margin-bottom:1.1rem}
.hero-copy h1 .accent{color:var(--gold-ink);position:relative;white-space:nowrap}
.hero-copy h1 .accent::after{
  content:"";position:absolute;left:0;right:0;bottom:.04em;height:.32em;
  background:var(--gold);opacity:.4;border-radius:4px;z-index:-1;
}
.lead{font-size:clamp(1.08rem,1.6vw,1.2rem);color:var(--slate);max-width:36ch;margin-bottom:1.8rem}
.hero-cta{display:flex;gap:.85rem;flex-wrap:wrap;margin-bottom:2rem}
.hero-proof{display:flex;gap:2.2rem;list-style:none;margin:0;padding:0;flex-wrap:wrap}
.hero-proof li{display:flex;flex-direction:column}
.hero-proof strong{font-family:var(--ff-head);font-size:1.3rem;color:var(--navy-deep)}
.hero-proof span{font-size:.9rem;color:var(--slate)}
.hero-art{position:relative}
.hero-frame{position:relative;margin:0;max-width:460px;margin-inline:auto}
.hero-frame::before{
  content:"";position:absolute;inset:auto -18px -18px 26px;top:26px;
  background:var(--sand-soft);border-radius:26px;z-index:0;
}
.hero-frame img{
  position:relative;z-index:1;width:100%;height:auto;
  border-radius:24px;box-shadow:var(--shadow-lg);
}
.hero-tag{
  position:absolute;z-index:2;left:50%;transform:translateX(-50%);bottom:-1.15rem;
  display:inline-flex;align-items:center;gap:.5rem;white-space:nowrap;
  background:var(--white);border:1px solid var(--line);border-radius:999px;
  font-size:.85rem;font-weight:600;color:var(--navy-deep);
  padding:.5rem 1.05rem;box-shadow:var(--shadow);
}
.hero-tag .icon{color:var(--gold-ink)}

/* ---------- trust strip ---------- */
.trust{background:var(--white);border-block:1px solid var(--line)}
.trust-inner{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;
  padding:1.6rem 0;
}
.trust-item{display:flex;align-items:flex-start;gap:.85rem}
.trust-item>.icon{
  width:2.6rem;height:2.6rem;padding:.62rem;border-radius:12px;
  background:var(--cream-2);color:var(--navy);
}
.trust-item p{margin:0;display:flex;flex-direction:column;gap:.1rem}
.trust-item strong{font-family:var(--ff-head);font-size:.98rem;color:var(--navy-deep);line-height:1.25}
.trust-item span{font-size:.88rem;color:var(--slate)}

/* ---------- sections ---------- */
.section{padding:clamp(3.4rem,7vw,5.5rem) 0}
.section-tint{background:var(--cream-2)}
.section-eyebrow{
  font-family:var(--ff-head);color:var(--gold-ink);font-weight:600;
  letter-spacing:.12em;text-transform:uppercase;font-size:.8rem;margin:0 0 .55rem;
}
.section-eyebrow.light{color:var(--gold)}
.section-title{font-size:var(--fs-h2);font-weight:700;letter-spacing:-.01em;margin-bottom:.7rem}
.section-sub{color:var(--slate);max-width:62ch;margin-bottom:2rem}

/* ---------- service cards ---------- */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem;margin-top:2.2rem}
.card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;box-shadow:var(--shadow);
  transition:transform .2s ease,box-shadow .2s ease;
}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.card-photo{width:100%;height:auto;aspect-ratio:4/3;object-fit:cover}
.card-body{padding:1.4rem 1.5rem 1.6rem}
.card h3{font-size:var(--fs-h3);margin-bottom:.55rem}
.card p{color:var(--slate);font-size:.98rem;margin-bottom:1.1rem}

/* ---------- day band ---------- */
.section-navy{background:linear-gradient(150deg,var(--navy-deep),var(--navy-ink));color:#e8ecf6}
.section-navy .section-title{color:#fff}
.day-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.day-steps{list-style:none;counter-reset:step;margin:1.6rem 0;padding:0;display:grid;gap:1.15rem}
.day-steps li{
  counter-increment:step;position:relative;padding-left:3.2rem;color:#c6cfe2;
}
.day-steps li strong{color:#fff;display:block;font-family:var(--ff-head);font-weight:600}
.day-steps li::before{
  content:counter(step);
  position:absolute;left:0;top:.1rem;
  width:2.2rem;height:2.2rem;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:var(--gold);color:var(--navy-ink);
  font-family:var(--ff-head);font-weight:700;
}
.day-note{color:#9fb0d0;font-size:.95rem;margin-bottom:1.6rem}
.day-photo{margin:0}
.day-photo img{border-radius:var(--radius);box-shadow:0 30px 60px -25px rgba(0,0,0,.55);width:100%;height:auto}
.day-photo figcaption{font-size:.88rem;color:#9fb0d0;margin-top:.8rem}

/* ---------- gallery ---------- */
.gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:1.3rem;margin-top:2.2rem}
.gallery figure{
  margin:0;background:var(--white);border:1px solid var(--line);
  border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);
  transition:transform .2s ease,box-shadow .2s ease;
}
.gallery figure:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.gallery img{width:100%;height:auto;aspect-ratio:4/5;object-fit:cover}
.gallery figcaption{
  padding:.7rem .9rem;font-family:var(--ff-head);font-weight:600;
  font-size:.92rem;color:var(--navy-deep);
}
.gallery-more{margin:2rem 0 0;color:var(--slate)}
.gallery-more a{font-weight:600}

/* ---------- puptoons (cartoon pairs) ---------- */
.toons{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem;margin-top:2rem}
.toon-pair{
  position:relative;margin:0;background:var(--white);border:1px solid var(--line);
  border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);
  transition:transform .2s ease,box-shadow .2s ease;
}
.toon-pair:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.toon-pair>img{width:100%;height:auto;aspect-ratio:1;object-fit:cover}
.toon-pair .toon-original{
  position:absolute;right:.85rem;bottom:3.4rem;
  width:27%;aspect-ratio:1;object-fit:cover;
  border-radius:12px;border:3px solid var(--white);
  box-shadow:0 8px 20px -8px rgba(21,39,79,.5);
}
.toon-pair figcaption{
  display:flex;align-items:center;justify-content:space-between;gap:.6rem;
  padding:.7rem .9rem;font-family:var(--ff-head);font-weight:600;
  font-size:.92rem;color:var(--navy-deep);
}
.toon-pair figcaption small{
  font-family:var(--ff-body);font-weight:500;color:var(--slate);font-size:.78rem;
}

/* ---------- puptumes (seasonal) ---------- */
.section-seasonal{
  background:
    radial-gradient(640px 320px at 92% 0%,rgba(228,112,79,.10),transparent 70%),
    var(--cream-2);
}
.section-seasonal .section-eyebrow{color:var(--coral)}

/* ---------- costume fun (Howl-aween grid) ---------- */
.costumes{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.1rem;
  margin-top:1.6rem;
}
.costumes figure{
  margin:0;
  background:var(--white);border:1px solid var(--line);
  border-radius:var(--radius-sm);overflow:hidden;box-shadow:var(--shadow);
}
.costumes img{width:100%;height:auto;aspect-ratio:3/4;object-fit:cover;display:block}
.costumes figcaption{
  font-family:var(--ff-head);font-weight:600;color:var(--navy-deep);
  font-size:.92rem;padding:.65rem .8rem;
}
.seasonal-note{margin-top:1rem;color:var(--slate);font-size:.95rem;max-width:70ch}

/* ---------- fan quotes (in-section) ---------- */
.fan-quotes{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;margin-top:1.8rem}
.fan-quotes blockquote{
  margin:0;background:var(--white);border:1px solid var(--line);
  border-left:4px solid var(--gold);border-radius:var(--radius-sm);
  padding:1rem 1.2rem;box-shadow:0 6px 18px -12px rgba(21,39,79,.18);
}
.fan-quotes p{
  font-family:var(--ff-head);font-weight:600;font-size:1.02rem;
  color:var(--navy-deep);margin:0 0 .35rem;
}
.fan-quotes cite{font-style:normal;font-size:.84rem;color:var(--slate)}
@media (max-width:640px){ .fan-quotes{grid-template-columns:1fr} }

/* ---------- community ---------- */
.community-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(2rem,5vw,4rem);align-items:center}

/* Social feed */
.feed-section .section-sub.light{color:rgba(255,255,255,.82)}
.feed-head{max-width:66ch;margin-bottom:2.2rem}
.feed-grid{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(0,.75fr);gap:clamp(1.5rem,3.5vw,2.8rem);align-items:start}

.feed-fb{background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow-lg);overflow:hidden}
.feed-fb-bar{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.75rem 1.1rem;border-bottom:1px solid var(--line)}
.feed-live{display:inline-flex;align-items:center;gap:.55rem;font-family:var(--ff-head);font-weight:700;font-size:.92rem;color:var(--navy)}
.feed-live-dot{width:9px;height:9px;border-radius:50%;background:#31c46b;box-shadow:0 0 0 0 rgba(49,196,107,.55);animation:feedpulse 2.2s infinite}
@keyframes feedpulse{0%{box-shadow:0 0 0 0 rgba(49,196,107,.55)}70%{box-shadow:0 0 0 9px rgba(49,196,107,0)}100%{box-shadow:0 0 0 0 rgba(49,196,107,0)}}
.feed-fb-updates{font-size:.8rem;color:var(--slate)}
.feed-fb-scroll{padding:12px}
.feed-fb-scroll .fb-page,.feed-fb-scroll .fb-page>span,.feed-fb-scroll iframe{width:100%!important}

.feed-follow{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.15);border-radius:var(--radius);padding:1.9rem 1.7rem;position:sticky;top:1.5rem}
.feed-follow-title{font-family:var(--ff-head);font-size:1.5rem;color:#fff;margin-bottom:.5rem}
.feed-follow-sub{color:rgba(255,255,255,.78);margin-bottom:1.5rem;font-size:.98rem}
.feed-btn{width:100%;margin-bottom:.85rem}
.feed-btn .icon{width:20px;height:20px}
.feed-btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.4)}
.feed-btn-ghost:hover{background:rgba(255,255,255,.1);border-color:#fff}
.feed-stats{list-style:none;display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:1.6rem;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,.14)}
.feed-stats strong{display:block;font-family:var(--ff-head);font-size:1.35rem;color:var(--gold)}
.feed-stats span{font-size:.85rem;color:rgba(255,255,255,.72)}

@media (prefers-reduced-motion:reduce){ .feed-live-dot{animation:none} }
@media (max-width:860px){ .feed-grid{grid-template-columns:1fr} .feed-follow{position:static} }
.community-quote{
  margin:1.1rem 0;background:var(--white);border:1px solid var(--line);
  border-left:5px solid var(--gold);border-radius:var(--radius-sm);
  padding:1.3rem 1.5rem;box-shadow:var(--shadow);
}
.community-quote p{
  font-family:var(--ff-head);font-weight:600;font-size:1.18rem;
  color:var(--navy-deep);margin-bottom:.5rem;
}
.community-quote cite{font-style:normal;font-size:.9rem;color:var(--slate)}
.community-stats{display:flex;gap:2.4rem;list-style:none;margin:0;padding:0;flex-wrap:wrap}
.community-stats li{display:flex;flex-direction:column}
.community-stats strong{font-family:var(--ff-head);font-size:1.5rem;color:var(--navy-deep)}
.community-stats span{font-size:.9rem;color:var(--slate);max-width:20ch}
.community-photo{margin:0;max-width:420px;justify-self:center}
.community-photo img{border-radius:var(--radius);box-shadow:var(--shadow-lg);width:100%;height:auto}
.community-photo figcaption{font-size:.88rem;color:var(--slate);margin-top:.8rem}

/* ---------- faq ---------- */
.faq-wrap{max-width:780px}
.faq-wrap details{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius-sm);
  padding:0;margin-bottom:.8rem;box-shadow:0 6px 18px -12px rgba(21,39,79,.18);
  overflow:hidden;
}
.faq-wrap summary{
  list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:1rem;
  font-family:var(--ff-head);font-weight:600;color:var(--navy-deep);
  padding:1.05rem 1.3rem;
}
.faq-wrap summary::-webkit-details-marker{display:none}
.faq-wrap summary::after{
  content:"+";font-size:1.5rem;line-height:1;color:var(--gold-ink);
  transition:transform .2s ease;flex:none;
}
.faq-wrap details[open] summary::after{transform:rotate(45deg)}
.faq-wrap details p{padding:0 1.3rem 1.15rem;margin:0;color:var(--slate)}

/* ---------- contact ---------- */
.contact-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:clamp(2rem,5vw,4rem);align-items:start}
.contact-facts{list-style:none;margin:1.8rem 0 0;padding:0;display:grid;gap:1rem}
.contact-facts li{display:flex;align-items:flex-start;gap:.85rem;color:var(--ink)}
.contact-facts .icon{
  width:2.4rem;height:2.4rem;padding:.55rem;border-radius:10px;
  background:var(--cream-2);color:var(--navy);
}
.contact-facts small{color:var(--slate)}
.contact-form{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:clamp(1.4rem,3vw,2.1rem);box-shadow:var(--shadow-lg);
}
.contact-form h3{font-size:var(--fs-h3);margin-bottom:.4rem}
.form-intro{color:var(--slate);font-size:.95rem;margin-bottom:1.3rem}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.field{margin-bottom:1rem}
.field label{display:block;font-weight:600;font-size:.92rem;margin-bottom:.35rem;color:var(--navy-deep)}
.field input,.field select,.field textarea{
  width:100%;padding:.72rem .85rem;font:inherit;color:var(--ink);
  background:var(--cream);border:1.5px solid var(--line);border-radius:10px;
  transition:border-color .15s ease,box-shadow .15s ease;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--navy);box-shadow:0 0 0 3px rgba(29,47,94,.15);
}
.field .invalid{border-color:var(--coral);box-shadow:0 0 0 3px rgba(228,112,79,.15)}
.form-status{min-height:1.4em;font-weight:600;margin:.9rem 0 0}
.form-status.ok{color:var(--green)}
.form-status.err{color:var(--coral)}

/* ---------- footer ---------- */
.site-footer{background:var(--navy-ink);color:#c6cfe2;margin-top:1rem}
.footer-inner{
  display:grid;grid-template-columns:auto 1fr;gap:clamp(2rem,5vw,4.5rem);
  align-items:start;padding:3.2rem 0 2.2rem;
}
.footer-brand{background:var(--white);border-radius:14px;padding:.7rem .9rem;box-shadow:var(--shadow)}
.footer-brand img{height:78px;width:auto}
.footer-cols{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:2rem}
.footer-cols h4{color:#fff;font-size:.95rem;letter-spacing:.06em;text-transform:uppercase;margin-bottom:.7rem}
.footer-cols p{margin:0;font-size:.95rem;line-height:1.8}
.footer-cols a{color:var(--gold);text-decoration:none}
.footer-cols a:hover{text-decoration:underline}
.footer-fine{border-top:1px solid rgba(255,255,255,.12)}
.footer-fine p{padding:1.1rem 0;margin:0;font-size:.85rem;color:#8fa0c2}
.footer-fine a{color:#f4b740;text-decoration:none;font-weight:600}
.footer-fine a:hover{text-decoration:underline}

/* ---------- mobile call bar ---------- */
.callbar{
  display:none;position:fixed;left:0;right:0;bottom:0;z-index:70;
  padding:.6rem max(4%,env(safe-area-inset-left)) calc(.6rem + env(safe-area-inset-bottom));
  background:rgba(253,248,241,.95);backdrop-filter:blur(10px);
  border-top:1px solid var(--line);
}

/* ---------- reveal animation (js-gated) ---------- */
.js .reveal{opacity:0;transform:translateY(18px);transition:opacity .5s ease,transform .5s ease}
.js .reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .js .reveal{opacity:1;transform:none;transition:none}
  .btn:hover,.card:hover,.gallery figure:hover{transform:none}
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width:1100px){
  .gallery{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:940px){
  .toons{grid-template-columns:repeat(2,1fr)}
  .costumes{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:940px){
  .nav-toggle{display:flex}
  .nav-links{
    position:absolute;top:calc(100% + 8px);right:4%;left:4%;
    flex-direction:column;align-items:stretch;gap:.15rem;
    background:var(--white);border:1px solid var(--line);border-radius:16px;
    padding:.9rem;box-shadow:var(--shadow-lg);display:none;
  }
  .nav-links.open{display:flex}
  .nav-links a:not(.btn){padding:.6rem .4rem}
  .nav-links .btn{margin-top:.5rem}

  .hero-inner{grid-template-columns:1fr;text-align:center;gap:1.6rem}
  /* title above image, supporting copy below, on mobile */
  .hero-copy{display:contents}
  .hero-copy .eyebrow{order:1;margin-bottom:0}
  .hero-copy h1{order:2;margin-bottom:0}
  .hero-art{order:3}
  .hero-copy .lead{order:4;margin-inline:auto}
  .hero-copy .hero-cta{order:5}
  .hero-copy .hero-proof{order:6}
  .hero-cta,.hero-proof{justify-content:center}
  .eyebrow{margin-inline:auto}
  .hero-frame{max-width:400px}

  .trust-inner{grid-template-columns:repeat(2,1fr)}
  .day-grid,.community-grid,.contact-grid{grid-template-columns:1fr}
  .day-photo{order:-1}
  .community-photo{max-width:100%}
  .gallery{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
  .cards{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .toons{grid-template-columns:1fr}
  .costumes{grid-template-columns:repeat(2,1fr);gap:.8rem}
  .trust-inner{grid-template-columns:1fr;gap:1.1rem}
  .field-row{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
  .footer-cols{grid-template-columns:1fr;gap:1.6rem}
  .brand-logo{height:62px}

  .callbar{display:block}
  body{padding-bottom:76px}
  .hero-proof{gap:1.4rem}
}
