/* ==========================================================================
   Girly Pop Tours Europe
   Brand system from Girly Pop Tours Brand Identity v1 (2026)
   ========================================================================== */

:root{
  /* Core palette - straight from the brand kit */
  --bubblegum:#FF8FC9;
  --cotton:#FFCDEC;
  --cotton-soft:#FFE6F4;
  --lilac:#C9A3EE;
  --electric:#A646E8;
  --grape:#7E1A8C;
  --plum:#29062E;
  --plum-deep:#1A0620;

  /* Working accents. Aperol orange is photos-only per the brand kit,
     so interface accents use magenta instead. */
  --magenta:#E0339B;
  --magenta-dark:#C21E78;
  --gold:#FFD966;
  --teal:#68E1D4;

  --ink:#29062E;
  --ink-soft:#5A3A60;
  --white:#FFFFFF;

  --shadow-sticker:6px 8px 14px rgba(90,20,100,.28);
  --shadow-card:0 10px 30px rgba(126,26,140,.14);
  --radius:22px;
  --radius-lg:34px;

  --measure:64ch;
  --wrap:1180px;
}

*,*::before,*::after{box-sizing:border-box}

html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important}
}

body{
  margin:0;
  font-family:'Poppins',system-ui,-apple-system,'Segoe UI',sans-serif;
  font-weight:400;
  font-size:1.0625rem;
  line-height:1.7;
  color:var(--ink);
  background:var(--cotton);
  -webkit-font-smoothing:antialiased;
}

img{max-width:100%;height:auto;display:block}
a{color:var(--magenta-dark);text-decoration-thickness:.08em;text-underline-offset:.18em}
a:hover{color:var(--grape)}

:focus-visible{
  outline:3px solid var(--grape);
  outline-offset:3px;
  border-radius:6px;
}

.wrap{width:100%;max-width:var(--wrap);margin-inline:auto;padding-inline:22px}
.narrow{max-width:70ch;margin-inline:auto}

.skip{
  position:absolute;left:-9999px;top:0;z-index:200;
  background:var(--grape);color:#fff;padding:12px 20px;border-radius:0 0 12px 0;font-weight:500;
}
.skip:focus{left:0}

/* ---------- Type scale ----------------------------------------------- */
h1,h2,h3,h4{font-weight:700;line-height:1.12;margin:0 0 .5em;letter-spacing:-.01em}
h1{font-size:clamp(2.3rem,7vw,4.2rem)}
h2{font-size:clamp(1.75rem,4.2vw,2.7rem)}
h3{font-size:clamp(1.2rem,2.4vw,1.55rem);line-height:1.25}
h4{font-size:1.05rem}
p{margin:0 0 1.1em;max-width:var(--measure)}
p:last-child{margin-bottom:0}

/* The signature treatment: cotton fill, grape outline.
   Repeating clean font + cotton fill + grape outline is what reads as
   Girly Pop before the logo even appears. */
.shout{
  color:var(--cotton);
  -webkit-text-stroke:2px var(--grape);
  paint-order:stroke fill;
  text-shadow:0 4px 0 rgba(126,26,140,.18);
}
/* Same two brand colours, flipped. For use on the pale pink sections where a
   cotton fill would vanish into the background. */
.shout-inv{
  color:var(--grape);
  -webkit-text-stroke:2px var(--cotton);
  paint-order:stroke fill;
  text-shadow:0 3px 0 rgba(255,255,255,.55);
}
@media (max-width:640px){
  .shout{-webkit-text-stroke-width:1.5px}
  .shout-inv{-webkit-text-stroke-width:1.5px}
}

.tagline{
  font-size:clamp(1.05rem,2.6vw,1.35rem);
  font-weight:500;
  color:var(--plum);
  max-width:34ch;
}

/* ---------- Buttons --------------------------------------------------- */
.btn{
  display:inline-flex;align-items:center;gap:.5em;
  font:inherit;font-weight:600;
  padding:.85em 1.7em;
  border:none;border-radius:999px;
  cursor:pointer;text-decoration:none;
  transition:transform .16s ease, box-shadow .16s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--magenta);color:#fff;box-shadow:0 6px 0 var(--magenta-dark)}
.btn-primary:hover{background:var(--magenta-dark);color:#fff;box-shadow:0 4px 0 var(--grape)}
.btn-grape{background:var(--grape);color:#fff;box-shadow:0 6px 0 #56125F}
.btn-grape:hover{background:#56125F;color:#fff}
.btn-ghost{background:rgba(255,255,255,.9);color:var(--grape);box-shadow:0 6px 0 rgba(126,26,140,.25)}
.btn-ghost:hover{background:#fff;color:var(--grape)}
.btn-block{width:100%;justify-content:center}
.btn-lg{font-size:1.08rem;padding:1em 2.1em}

/* ---------- Header ---------------------------------------------------- */
.site-header{
  position:sticky;top:0;z-index:60;
  background:rgba(255,205,236,.94);
  backdrop-filter:blur(10px);
  border-bottom:2px solid rgba(126,26,140,.12);
}
.header-inner{display:flex;align-items:center;gap:18px;padding-block:10px}
.brand{display:flex;align-items:center;gap:11px;text-decoration:none;flex:0 0 auto}
.brand img{width:46px;height:46px;border-radius:50%;box-shadow:0 3px 8px rgba(126,26,140,.28)}
.brand-name{font-weight:700;font-size:1.02rem;color:var(--grape);line-height:1.1;letter-spacing:-.01em}
.brand-name span{display:block;font-weight:500;font-size:.7rem;color:var(--electric);letter-spacing:.06em}

.nav-toggle{
  margin-left:auto;display:none;
  background:var(--grape);color:#fff;border:none;border-radius:12px;
  padding:.6em .95em;font:inherit;font-weight:600;cursor:pointer;
}

.nav{margin-left:auto;display:flex;align-items:center;gap:6px}
.nav a{
  color:var(--grape);text-decoration:none;font-weight:500;font-size:.97rem;
  padding:.5em .8em;border-radius:999px;
}
.nav a:hover{background:rgba(255,255,255,.75)}
.nav a[aria-current="page"]{background:var(--white);color:var(--magenta-dark);font-weight:600}
.nav .btn{margin-left:6px}

@media (max-width:900px){
  .nav-toggle{display:block}
  .nav{
    position:absolute;left:0;right:0;top:100%;
    flex-direction:column;align-items:stretch;gap:2px;
    background:var(--cotton);
    padding:14px 22px 22px;
    border-bottom:3px solid var(--grape);
    box-shadow:0 14px 28px rgba(41,6,46,.16);
    display:none;
  }
  .nav.open{display:flex}
  .nav a{padding:.75em 1em;font-size:1.05rem}
  .nav .btn{margin:8px 0 0;justify-content:center}
}

/* ---------- Sparkles -------------------------------------------------- */
/* Scattered, layered, mixed-colour. Two offset bursts per sparkle is what
   gives the iridescent look rather than flat single-colour glitter. */
.sparkle{position:absolute;z-index:2;pointer-events:none;user-select:none;line-height:0}
.sparkle svg{display:block}
.dot{position:absolute;z-index:2;border-radius:50%;pointer-events:none}

/* ---------- Patchwork hero ------------------------------------------- */
.hero{position:relative;overflow:hidden;background:var(--bubblegum);isolation:isolate}
.hero-mosaic{
  position:absolute;inset:0;z-index:0;
  display:grid;
  /* Fewer, larger tiles. Narrow cells crop tall phone photos down to a strip
     of sky or wall, which reads as an empty block. */
  grid-template-columns:repeat(3,minmax(0,1fr));
  grid-template-rows:repeat(2,minmax(0,1fr));
  gap:3px;
}
.hero-mosaic img{width:100%;height:100%;object-fit:cover}
/* Uneven spans: a curated collage, not a grid of thumbnails */
.m1{grid-column:1;grid-row:1}
.m2{grid-column:2;grid-row:1}
.m3{grid-column:3;grid-row:1}
.m4{grid-column:1;grid-row:2}
.m5{grid-column:2;grid-row:2}
.m6{grid-column:3;grid-row:2}
.m7,.m8,.m9,.m10{display:none}

.hero-wash{
  position:absolute;inset:0;z-index:1;
  background:
    radial-gradient(120% 80% at 50% 40%, rgba(255,143,201,.50) 0%, rgba(255,143,201,.64) 55%, rgba(224,51,155,.58) 100%);
}
.hero-inner{position:relative;z-index:3;padding:clamp(52px,9vw,104px) 0 clamp(56px,9vw,96px);text-align:center}
.hero-inner .tagline{margin-inline:auto;color:var(--plum)}
.hero h1{margin-bottom:.35em}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;margin-top:1.6em}

.pill{
  display:inline-flex;align-items:center;gap:.45em;
  background:rgba(255,255,255,.95);
  color:var(--grape);font-weight:600;font-size:.85rem;
  padding:.45em 1.05em;border-radius:999px;
  margin-bottom:1.1em;
  box-shadow:0 3px 10px rgba(126,26,140,.2);
}

.hero-meta{
  margin-top:1.5em;font-weight:600;font-size:.95rem;color:var(--plum);
  display:flex;flex-wrap:wrap;gap:.5em 1.3em;justify-content:center;
}
.hero-meta span{display:inline-flex;align-items:center;gap:.4em}

@media (max-width:700px){
  .hero-mosaic{grid-template-columns:repeat(2,minmax(0,1fr));grid-template-rows:repeat(2,minmax(0,1fr))}
  .m1{grid-column:1;grid-row:1}
  .m2{grid-column:2;grid-row:1}
  .m3{grid-column:1;grid-row:2}
  .m4{grid-column:2;grid-row:2}
  .m5,.m6{display:none}
}

/* ---------- Sections -------------------------------------------------- */
.section{position:relative;padding-block:clamp(46px,7vw,86px);overflow:hidden}
.section-cotton{background:var(--cotton)}
.section-soft{background:var(--cotton-soft)}
.section-bubble{background:var(--bubblegum)}
.section-dark{background:var(--plum-deep);color:var(--cotton)}
.section-dark h2,.section-dark h3{color:var(--cotton)}
.section-dark p{color:#F0DCEA}
.section-dark a{color:var(--bubblegum)}

.section-head{text-align:center;margin-bottom:2.2em;position:relative;z-index:3}
.section-head p{margin-inline:auto;max-width:56ch}

.lede{font-size:clamp(1.1rem,2.3vw,1.3rem);font-weight:500;line-height:1.6}

/* Lines of the brand blurb, broken for rhythm rather than run as a block */
.blurb{text-align:center;position:relative;z-index:3}
.blurb p{margin-inline:auto;margin-bottom:1.15em}
.blurb .big{font-size:clamp(1.3rem,3.2vw,1.85rem);font-weight:600;line-height:1.35;max-width:30ch}
.blurb .divas{
  font-size:clamp(1.5rem,4.5vw,2.4rem);font-weight:700;
  margin-block:1.1em .5em;
}

/* ---------- City cards ------------------------------------------------ */
.city-grid{display:grid;gap:22px;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));position:relative;z-index:3}
.city{
  background:var(--plum);
  border:3px solid var(--bubblegum);
  border-radius:var(--radius-lg);
  overflow:hidden;
  display:flex;flex-direction:column;
  box-shadow:0 14px 34px rgba(0,0,0,.28);
}
.city-soon{border-style:dashed;border-color:var(--lilac)}
.city-photo{position:relative;aspect-ratio:16/10;overflow:hidden}
.city-photo img{width:100%;height:100%;object-fit:cover}
.city-body{padding:20px 22px 24px;display:flex;flex-direction:column;gap:.3em;flex:1}
.city-body h3{margin:0;color:#fff}
.city-body .where{font-size:.9rem;color:var(--lilac);font-weight:500;margin:0}
.city-body p{color:#EFD9EA;font-size:.97rem;margin:.4em 0 0}
.city-body .btn{margin-top:auto}
.city-actions{margin-top:1.1em}
.badge{
  position:absolute;top:12px;left:12px;z-index:2;
  background:rgba(255,255,255,.94);color:var(--grape);
  font-size:.72rem;font-weight:600;padding:.3em .8em;border-radius:999px;
}

/* ---------- Sticker treatment ---------------------------------------- */
/* Photos and illustrations sit ON the page like stickers: white die-cut
   edge, a few degrees off-straight, soft plum shadow. */
.sticker{
  display:block;
  background:#fff;
  padding:10px;
  border-radius:8px;
  box-shadow:var(--shadow-sticker);
}
.sticker img{border-radius:4px}
.tilt-l{transform:rotate(-3deg)}
.tilt-r{transform:rotate(2.5deg)}
.tilt-l2{transform:rotate(-1.5deg)}
.tilt-r2{transform:rotate(4deg)}

.deco{position:absolute;pointer-events:none;user-select:none;z-index:2;opacity:.96}
.deco img{filter:drop-shadow(4px 6px 8px rgba(90,20,100,.22))}

/* ---------- Feature list --------------------------------------------- */
.features{display:grid;gap:16px;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));position:relative;z-index:3}
.feature{
  background:#fff;
  border-radius:var(--radius);
  padding:22px 24px;
  box-shadow:var(--shadow-card);
  border-bottom:5px solid var(--bubblegum);
}
.feature h3{color:var(--grape);margin-bottom:.35em}
.feature p{font-size:.98rem;margin:0;color:var(--ink-soft)}
.feature .ico{font-size:1.7rem;line-height:1;margin-bottom:.4em;display:block}

/* ---------- Detail / included lists ---------------------------------- */
.detail-cols{display:grid;gap:26px;grid-template-columns:repeat(auto-fit,minmax(290px,1fr));position:relative;z-index:3}
.panel{
  background:#fff;border-radius:var(--radius);
  padding:26px 28px;box-shadow:var(--shadow-card);
}
.panel.on-dark{background:rgba(255,255,255,.07);border:1px solid rgba(255,205,236,.22)}
.panel h3{color:var(--grape)}
.panel.on-dark h3{color:var(--bubblegum)}
.ticks{list-style:none;margin:0;padding:0;display:grid;gap:.65em}
.ticks li{display:flex;gap:.7em;align-items:flex-start;font-size:.99rem;line-height:1.5}
.ticks .mark{flex:0 0 auto;font-size:1.05rem;line-height:1.4}

.callout{
  background:linear-gradient(135deg,var(--electric),var(--grape));
  color:#fff;border-radius:var(--radius);
  padding:22px 26px;margin-top:1.4em;
  box-shadow:var(--shadow-card);
  position:relative;z-index:3;
}
.callout p{margin:0;color:#fff;font-weight:500}
.callout strong{color:var(--gold)}

.smallprint{
  font-size:.88rem;color:var(--ink-soft);
  max-width:70ch;margin-top:1.6em;
  padding-top:1.2em;border-top:2px dotted rgba(126,26,140,.3);
  position:relative;z-index:3;
}

/* ---------- Testimonials --------------------------------------------- */
.quotes{display:grid;gap:18px;grid-template-columns:repeat(auto-fit,minmax(275px,1fr));position:relative;z-index:3}
.quote{
  background:#fff;border-radius:var(--radius);
  padding:24px 26px;box-shadow:var(--shadow-card);
  display:flex;flex-direction:column;
}
.quote blockquote{margin:0 0 1em;font-size:1rem;line-height:1.6;color:var(--ink)}
.quote figcaption{margin-top:auto;font-weight:600;color:var(--magenta-dark);font-size:.93rem}
.quote figcaption span{display:block;font-weight:400;color:var(--ink-soft);font-size:.85rem}

/* ---------- FAQ ------------------------------------------------------- */
.faq{max-width:76ch;margin-inline:auto;position:relative;z-index:3}
.faq details{
  background:#fff;border-radius:16px;margin-bottom:12px;
  box-shadow:0 5px 16px rgba(126,26,140,.1);
  border-left:5px solid var(--bubblegum);
  overflow:hidden;
}
.faq details[open]{border-left-color:var(--electric)}
.faq summary{
  cursor:pointer;padding:17px 22px;font-weight:600;color:var(--grape);
  list-style:none;display:flex;justify-content:space-between;gap:1em;align-items:center;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";font-size:1.5rem;line-height:1;color:var(--magenta);flex:0 0 auto}
.faq details[open] summary::after{content:"–"}
.faq .answer{padding:0 22px 20px}
.faq .answer p{margin:0;font-size:.99rem;color:var(--ink-soft)}

/* ---------- Forms ----------------------------------------------------- */
.form-band{position:relative;overflow:hidden}
.form-card{
  background:#fff;border-radius:var(--radius-lg);
  padding:clamp(26px,4vw,42px);
  box-shadow:var(--shadow-card);
  max-width:620px;margin-inline:auto;
  position:relative;z-index:3;
}
.form-card h2{color:var(--grape);text-align:center}
.form-card > p{text-align:center;margin-inline:auto}
.gp-form{display:grid;gap:14px;margin-top:1.4em}
.gp-form label{font-weight:600;font-size:.92rem;color:var(--grape);display:block;margin-bottom:.35em}
.gp-form input[type=email],
.gp-form input[type=text]{
  width:100%;font:inherit;font-size:1rem;
  padding:.8em 1em;border:2px solid var(--cotton);
  border-radius:14px;background:var(--cotton-soft);color:var(--ink);
}
.gp-form input:focus{border-color:var(--electric);background:#fff;outline:none}
.gp-form .req{color:var(--magenta-dark)}
.form-note{font-size:.83rem;color:var(--ink-soft);margin-top:.3em}

/* HubSpot renders its own markup inside this container, so we style the
   wrapper and nudge their fields toward the brand. */
.hs-wrap{margin-top:1.2em}
.hs-wrap input[type=text],
.hs-wrap input[type=email],
.hs-wrap textarea{
  width:100% !important;font-family:'Poppins',sans-serif !important;
  font-size:1rem !important;padding:.8em 1em !important;
  border:2px solid var(--cotton) !important;border-radius:14px !important;
  background:var(--cotton-soft) !important;color:var(--ink) !important;
}
.hs-wrap textarea{min-height:120px}
.hs-wrap label{font-weight:600 !important;font-size:.92rem !important;color:var(--grape) !important}
.hs-wrap .hs-button{
  background:var(--magenta) !important;color:#fff !important;
  border:none !important;border-radius:999px !important;
  padding:.85em 1.7em !important;font-weight:600 !important;
  font-family:'Poppins',sans-serif !important;font-size:1rem !important;
  cursor:pointer;box-shadow:0 6px 0 var(--magenta-dark);
}
.hs-wrap .hs-form-field{margin-bottom:14px}
.hs-wrap .hs-error-msg{color:var(--magenta-dark) !important;font-size:.86rem}

/* ---------- Prose (blog, legal) --------------------------------------- */
.prose{max-width:68ch;margin-inline:auto;position:relative;z-index:3}
.prose h2{color:var(--grape);margin-top:2em}
.prose h3{color:var(--electric);margin-top:1.6em}
.prose p{max-width:none}
.prose ul{padding-left:1.2em;margin-bottom:1.2em}
.prose li{margin-bottom:.45em}
.prose .tease{
  background:#fff;border-radius:18px;padding:20px 24px;
  margin-block:1.3em;box-shadow:var(--shadow-card);
  border-left:5px solid var(--electric);
}
.prose .tease h3{margin-top:0;color:var(--grape)}
.prose .tease p{margin-bottom:0;font-size:1rem}
.prose .closer{
  font-size:clamp(1.2rem,3vw,1.6rem);font-weight:700;
  text-align:center;margin-block:1.6em .8em;
}
.legal-meta{font-size:.9rem;color:var(--ink-soft)}

.post-head{text-align:center;padding-block:clamp(40px,6vw,72px) 0;position:relative}
.post-head .kicker{
  display:inline-block;background:var(--grape);color:#fff;
  font-size:.78rem;font-weight:600;padding:.35em .95em;border-radius:999px;margin-bottom:1em;
}

/* Blog cards */
.post-list{display:grid;gap:20px;grid-template-columns:repeat(auto-fit,minmax(290px,1fr));position:relative;z-index:3}
.post-card{
  background:#fff;border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow-card);display:flex;flex-direction:column;
  border-bottom:5px solid var(--bubblegum);
}
.post-card .thumb{aspect-ratio:16/9;overflow:hidden}
.post-card .thumb img{width:100%;height:100%;object-fit:cover}
.post-card .body{padding:20px 22px 24px;display:flex;flex-direction:column;gap:.4em;flex:1}
.post-card h3{margin:0;color:var(--grape);font-size:1.15rem}
.post-card p{font-size:.95rem;color:var(--ink-soft);margin:0}
.post-card .btn{margin-top:auto;align-self:flex-start}
.city-tag{
  align-self:flex-start;background:var(--cotton);color:var(--grape);
  font-size:.74rem;font-weight:600;padding:.25em .75em;border-radius:999px;
}

/* ---------- Footer ---------------------------------------------------- */
.site-footer{background:var(--grape);color:#fff;padding-block:40px 28px;position:relative;overflow:hidden}
.footer-grid{display:grid;gap:26px;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));position:relative;z-index:3}
.site-footer h4{color:var(--cotton);font-size:.95rem;margin-bottom:.7em}
.site-footer a{color:#fff;text-decoration:none;font-size:.95rem}
.site-footer a:hover{color:var(--cotton);text-decoration:underline}
.site-footer ul{list-style:none;margin:0;padding:0;display:grid;gap:.45em}
.socials{display:flex;gap:12px;margin-top:.2em}
.socials a{
  display:inline-flex;align-items:center;justify-content:center;
  width:42px;height:42px;border-radius:50%;
  background:rgba(255,255,255,.16);
}
.socials a:hover{background:var(--magenta)}
.socials svg{width:21px;height:21px;fill:#fff}
.footer-legal{
  margin-top:30px;padding-top:20px;
  border-top:1px solid rgba(255,255,255,.25);
  font-size:.85rem;color:rgba(255,255,255,.85);
  display:flex;flex-wrap:wrap;gap:.4em 1.4em;align-items:center;
  position:relative;z-index:3;
}
.footer-legal p{margin:0;max-width:none}

/* ---------- Cookie banner -------------------------------------------- */
/* Analytics must not fire before consent, so Tag Manager is only injected
   once someone accepts. */
.cookie{
  position:fixed;left:14px;right:14px;bottom:14px;z-index:120;
  background:var(--plum);color:var(--cotton);
  border:2px solid var(--bubblegum);border-radius:20px;
  padding:20px 22px;
  box-shadow:0 18px 44px rgba(0,0,0,.4);
  display:none;
  max-width:560px;margin-inline:auto;
}
.cookie.show{display:block}
.cookie p{margin:0 0 1em;font-size:.93rem;line-height:1.55;color:var(--cotton);max-width:none}
.cookie a{color:var(--bubblegum)}
.cookie-actions{display:flex;flex-wrap:wrap;gap:10px}
.cookie .btn{font-size:.95rem;padding:.7em 1.4em}

/* ---------- Utilities ------------------------------------------------- */
.center{text-align:center}
.mt{margin-top:1.6em}
.visually-hidden{
  position:absolute;width:1px;height:1px;margin:-1px;padding:0;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}

/* ==========================================================================
   Page headers with a photo band behind them.
   The plain colour bands on About and the blog read as dead space, so these
   get the same collage-under-wash treatment as the homepage hero, shorter.
   ========================================================================== */
.page-hero{position:relative;overflow:hidden;background:var(--bubblegum);isolation:isolate}
.page-hero-mosaic{
  position:absolute;inset:0;z-index:0;
  display:block;
}
.page-hero-mosaic img{width:100%;height:100%;object-fit:cover}
.page-hero .hero-wash{
  background:radial-gradient(120% 90% at 50% 45%,
    rgba(255,143,201,.50) 0%, rgba(255,143,201,.64) 55%, rgba(224,51,155,.58) 100%);
}
.page-hero-inner{
  position:relative;z-index:3;
  padding:clamp(44px,7vw,78px) 0;
  text-align:center;
}
@media (max-width:700px){
  .page-hero-mosaic{grid-template-columns:repeat(2,minmax(0,1fr))}
  .page-hero-mosaic img:nth-child(n+3){display:none}
}

/* Legal pages keep a plain band but tighter, so it doesn't read as a void */
.slim-hero .wrap{padding-block:clamp(30px,4.5vw,52px)}

/* A denser sparkle field for sections that were feeling bare */
.glitterfield{position:absolute;inset:0;z-index:2;pointer-events:none;overflow:hidden}


/* With a lighter wash the headline needs a little more separation */
.hero h1.shout, .page-hero h1.shout{
  text-shadow:0 4px 0 rgba(126,26,140,.28), 0 0 26px rgba(126,26,140,.22);
}
.hero .tagline, .page-hero .tagline{
  text-shadow:0 1px 10px rgba(255,255,255,.55);
}


/* Keep the collage tiles from becoming thin slivers on wide screens */
.hero{min-height:min(78vh,660px)}
.page-hero{min-height:min(46vh,380px)}
@media (max-width:700px){
  .hero{min-height:min(70vh,560px)}
  .page-hero{min-height:min(40vh,320px)}
}


/* Page-hero shows three tiles; extras in the markup stay hidden */
.page-hero-mosaic img:nth-child(n+4){display:none}
/* Bias the crop toward the middle of the frame, where the people are */
.hero-mosaic img, .page-hero-mosaic img{object-position:50% 42%}


/* ---- Single-image page banner ------------------------------------------
   Three tiles of mixed portrait crops never sat evenly, so these pages use
   one wide image with a focal point set per page instead. */
.page-hero-mosaic img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 38%;
}
.page-hero-mosaic img + img{display:none}   /* only the first is used */

.page-hero{min-height:min(52vh,420px)}
@media (max-width:700px){ .page-hero{min-height:min(42vh,330px)} }

/* per-page focal points so faces aren't cropped out */
.hero-about   .page-hero-mosaic img{object-position:38% 32%}
.hero-guide   .page-hero-mosaic img{object-position:50% 46%}
.hero-post    .page-hero-mosaic img{object-position:50% 42%}

/* a soft edge so the banner melts into the section below */
.page-hero::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:70px;z-index:2;
  background:linear-gradient(to bottom, rgba(255,205,236,0), var(--cotton));
  pointer-events:none;
}
