/* ============================================================
   BOBBYJO — LIVE 60s FAVOURITES

     · full-bleed photo header, logotype centred over it
     · a fixed BOOK NOW tab, reachable from every screen
     · the nav appears below the fold, with a torn bottom edge
     · torn edges divide every section
     · one centred column; nothing on the page that isn't needed
   ============================================================ */

@font-face{font-family:'Anton';font-style:normal;font-weight:400;font-display:swap;
  src:url('fonts/anton-latin-400-normal.woff2') format('woff2');}
@font-face{font-family:'Oswald';font-style:normal;font-weight:400;font-display:swap;
  src:url('fonts/oswald-latin-400-normal.woff2') format('woff2');}
@font-face{font-family:'Oswald';font-style:normal;font-weight:500;font-display:swap;
  src:url('fonts/oswald-latin-500-normal.woff2') format('woff2');}
@font-face{font-family:'Oswald';font-style:normal;font-weight:600;font-display:swap;
  src:url('fonts/oswald-latin-600-normal.woff2') format('woff2');}
@font-face{font-family:'Poppins';font-style:normal;font-weight:400;font-display:swap;
  src:url('fonts/poppins-latin-400-normal.woff2') format('woff2');}
@font-face{font-family:'Poppins';font-style:normal;font-weight:600;font-display:swap;
  src:url('fonts/poppins-latin-600-normal.woff2') format('woff2');}

:root{
  --pink:#EF3564; --pink-dp:#D6154E; --pink-txt:#B0123F; --pink-em:#EF3564;
  --tang:#F2560F; --tang-dp:#BE3907; --tang-txt:#A83A06;
  --turq:#24989E; --turq-txt:#06666B;
  --gold:#F0AA0C; --gold-lt:#FFD24D; --sun:#F0AA0C;
  --ink:#100E0C; --ink-72:rgba(16,14,12,.74); --ink-58:rgba(16,14,12,.62);
  --shell:#FAF3E6; --paper:#F3D2A6; --paper-hi:#FCF0D9;

  --disp:'Anton','Haettenschweiler','Arial Narrow',sans-serif;
  --lab:'Oswald','Arial Narrow',sans-serif;
  --body:'Poppins','Helvetica Neue',Arial,sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:118px; }
body{
  margin:0; background:var(--shell); color:var(--ink);
  font-family:var(--body); font-size:17px; line-height:1.68;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
img{ display:block; max-width:100%; height:auto; }

.col{ width:100%; max-width:760px; margin:0 auto; padding:0 26px; text-align:center; }
.col--wide{ max-width:1060px; }

.band{ position:relative; overflow:hidden; padding:clamp(76px,9vw,120px) 0; }
.band--shell{ background:var(--shell); }
.band--paper{ background:var(--paper-hi); }
.flood{ position:absolute; inset:0; z-index:0; }
.flood::after{
  content:""; position:absolute; inset:0; opacity:.26; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23g)'/%3E%3C/svg%3E");
}
.flood--pink{ background:var(--pink-dp); }
.flood--tang{ background:var(--tang-dp); }
.flood--ink{ background:var(--ink); }
.band > .col{ position:relative; z-index:2; }
.rot-n6{ transform:rotate(-6deg); } .rot-p6{ transform:rotate(6deg); }

/* ---------- torn dividers ---------- */
/* the svg is drawn a few pixels taller than the box and clipped, so the
   bottom row is always painted by the shape, never by the box behind it */
.torn{
  position:relative; z-index:6; line-height:0; margin-bottom:-1px;
  height:clamp(28px,3.6vw,52px); overflow:hidden;
}
.torn svg{ display:block; width:100%; height:calc(clamp(28px,3.6vw,52px) + 3px); }

/* ---------- type ---------- */
.eyebrow{
  font-family:var(--lab); font-weight:600; font-size:.74rem;
  letter-spacing:.3em; text-transform:uppercase; margin:0 0 18px; color:var(--tang-txt);
}
.eyebrow--pink{ color:var(--pink-txt); }
.eyebrow--turq{ color:var(--turq-txt); }
.eyebrow--cream{ color:var(--paper-hi); }
.h2{
  font-family:var(--disp); font-weight:400;
  font-size:clamp(2.2rem,6vw,3.9rem); line-height:1.04;
  text-transform:uppercase; letter-spacing:.004em; margin:0; text-wrap:balance;
}
.h2 em{ font-style:normal; color:var(--pink-em); }
.on-dark{ color:var(--paper-hi); }
.on-dark .h2{ color:var(--paper-hi); }
.on-dark .h2 em{ color:var(--gold-lt); }
.head{ margin-bottom:clamp(46px,5vw,72px); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:11px;
  font-family:var(--lab); font-weight:600; font-size:.95rem;
  letter-spacing:.09em; text-transform:uppercase; text-decoration:none;
  padding:17px 32px; border:0; border-radius:999px;
  background:var(--ink); color:var(--paper-hi); cursor:pointer;
  transition:background .16s ease,color .16s ease,transform .16s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn:focus-visible{ outline:3px solid var(--turq); outline-offset:3px; }
.btn svg{ width:19px; height:19px; flex:0 0 19px; }
.btn--pink{ background:var(--pink-dp); color:var(--paper-hi); }
.btn--pink:hover{ background:var(--pink); }
.btn--ghost{ background:transparent; color:var(--ink); box-shadow:inset 0 0 0 2px var(--ink); }
.btn--ghost:hover{ background:var(--ink); color:var(--paper-hi); }
.btn--cream{ background:var(--paper-hi); color:var(--ink); }
.btn--cream:hover{ background:#fff; color:var(--ink); }
.btn--phone{ font-size:1.26rem; letter-spacing:.02em; }
.btn--block{ width:100%; }
.cta-row{ display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }

/* ============================================================
   HEADER — full-bleed photograph, logotype centred over it
   ============================================================ */
.hero{
  position:relative; min-height:100svh; overflow:hidden;
  display:grid; grid-template-rows:1fr auto; align-items:center; justify-items:center;
  padding:clamp(70px,9vh,120px) 0 calc(clamp(28px,3.6vw,52px) + 26px);
  background:var(--ink);
}
.hero__bg{
  position:absolute; inset:0; z-index:0;
  width:100%; height:100%; object-fit:cover; object-position:50% 24%;
}
.hero__scrim{
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(180deg, rgba(16,14,12,.52) 0%, rgba(16,14,12,.20) 38%, rgba(16,14,12,.68) 100%),
    radial-gradient(54% 42% at 50% 46%, rgba(16,14,12,.34) 0%, rgba(16,14,12,0) 100%);
}
.hero__in{ position:relative; z-index:3; grid-row:1; text-align:center; padding:0 26px; }
.hero__logo{
  width:min(60vw,600px); margin:0 auto;
  filter:drop-shadow(0 14px 40px rgba(0,0,0,.55));
}
/* twice the size of the ones on the quote band, and deliberately running
   off the edge of the frame — top one off the top, bottom one off the left */
.hero__daisy{
  --dz:clamp(172px,21vw,340px);
  position:absolute; z-index:2; width:var(--dz); height:auto;
  filter:drop-shadow(0 12px 30px rgba(0,0,0,.45));
}
.hero__daisy--tr{
  top:calc(var(--dz) * -0.34);
  right:clamp(16px,3.4vw,58px);
  transform:rotate(10deg);
}
.hero__daisy--bl{
  left:calc(var(--dz) * -0.32);
  bottom:calc(clamp(28px,3.6vw,52px) + clamp(14px,2vw,30px));
  transform:rotate(-14deg);
}
@media(max-width:820px){
  .hero__daisy{ --dz:clamp(150px,42vw,230px); }
  /* clear the sticky call bar so the flower keeps its shape */
  .hero__daisy--bl{ bottom:calc(clamp(28px,3.6vw,52px) + 84px); }
}

.hero__line{
  font-family:var(--lab); font-weight:600;
  font-size:clamp(.78rem,1.8vw,.98rem); letter-spacing:.3em; text-transform:uppercase;
  color:var(--paper-hi); margin:28px 0 0;
}
.hero__line .d{ color:var(--gold-lt); margin:0 10px; }

/* in flow on its own grid row, so it can never collide with the headline */
.scrollcue{
  position:relative; z-index:5; grid-row:2; margin-top:clamp(26px,4vh,56px);
  font-family:var(--lab); font-weight:600; font-size:.66rem; letter-spacing:.28em;
  text-transform:uppercase; color:var(--paper-hi); text-decoration:none;
  display:flex; flex-direction:column; align-items:center; gap:7px; opacity:.9;
}
.scrollcue svg{ width:15px; height:15px; animation:nudge 2.4s ease-in-out infinite; }
@keyframes nudge{ 0%,100%{transform:translateY(0)} 50%{transform:translateY(4px)} }
@media(max-width:820px){
  .hero__logo{ width:min(80vw,420px); }
  .hero__bg{ object-position:50% 16%; }
  .hero{ padding-bottom:calc(clamp(28px,3.6vw,52px) + 74px); }
}

/* ============================================================
   BOOK NOW TAB — fixed to the right edge
   ============================================================ */
.booktab{
  position:fixed; z-index:150; right:0; top:50%; transform:translateY(-50%);
  writing-mode:vertical-rl;
  background:var(--pink-dp); color:var(--paper-hi); text-decoration:none;
  font-family:var(--lab); font-weight:600; font-size:.84rem;
  letter-spacing:.26em; text-transform:uppercase;
  padding:28px 13px; border-radius:8px 0 0 8px;
  box-shadow:-4px 0 18px rgba(16,14,12,.26);
  transition:background .16s ease, padding .16s ease;
}
.booktab:hover{ background:var(--pink); padding-right:19px; }
.booktab:focus-visible{ outline:3px solid var(--gold); outline-offset:3px; }
@media(max-width:820px){ .booktab{ display:none; } }

/* ============================================================
   NAV — slides in below the fold, torn bottom edge
   ============================================================ */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:140;
  background:var(--ink);
  /* the torn edge hangs below the nav box, so shift by its height too */
  transform:translateY(calc(-100% - clamp(12px,1.6vw,20px)));
  transition:transform .28s ease;
}
.nav.is-on{ transform:none; }
.nav__in{
  max-width:1060px; margin:0 auto; padding:0 26px; height:96px;
  display:flex; align-items:center; justify-content:space-between; gap:18px;
}
.nav__logo img{ height:60px; width:auto; }
.nav__links{ display:flex; align-items:center; gap:28px; }
.nav__links a{
  font-family:var(--lab); font-weight:500; font-size:.78rem;
  letter-spacing:.16em; text-transform:uppercase; color:var(--paper-hi);
  text-decoration:none; padding:3px 0; border-bottom:2px solid transparent;
}
.nav__links a:hover{ color:var(--gold-lt); border-bottom-color:var(--gold-lt); }
.nav__links a.btn{ padding:10px 20px; font-size:.72rem; border-bottom:0; color:var(--paper-hi); }
.nav__links a.btn:hover{ color:var(--paper-hi); }
.nav__tear{ position:absolute; top:100%; left:0; right:0; height:clamp(12px,1.6vw,20px); line-height:0; }
.nav__tear svg{ display:block; width:100%; height:100%; }
@media(max-width:820px){
  .nav__in{ height:76px; }
  .nav__logo img{ height:44px; }
  .nav__links a:not(.btn){ display:none; }
}

/* ============================================================
   BOOK
   ============================================================ */
.bigsub{
  font-family:var(--lab); font-weight:600; font-size:.8rem;
  letter-spacing:.24em; text-transform:uppercase; color:var(--ink-58); margin:0 0 4px;
}
.bignum{
  font-family:var(--disp); font-size:clamp(2.5rem,7.6vw,4.6rem);
  line-height:1; margin:0; letter-spacing:.005em;
}
.bignum a{ color:var(--pink-txt); text-decoration:none; }
.bignum a:hover{ color:var(--pink-em); }
.mailrow{ margin:20px 0 0; font-size:1.02rem; color:var(--ink-72); }
.mailrow a{ color:var(--ink); font-weight:600; }

.formwrap{ max-width:600px; margin:60px auto 0; text-align:left; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field{ margin-bottom:16px; }
.field label{
  display:block; font-family:var(--lab); font-weight:600; font-size:.73rem;
  letter-spacing:.15em; text-transform:uppercase; color:var(--ink); margin-bottom:6px;
}
.field label .req{ color:var(--pink-txt); }
.field input,.field select,.field textarea{
  width:100%; font-family:var(--body); font-size:1rem; color:var(--ink);
  background:#fff; border:1.5px solid rgba(16,14,12,.3); border-radius:4px; padding:13px 15px;
  transition:box-shadow .16s ease, border-color .16s ease;
}
.field textarea{ min-height:104px; resize:vertical; }
.field select{
  appearance:none; padding-right:42px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23B0123F' stroke-width='2.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 15px center;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none; border-color:var(--pink-dp); box-shadow:0 0 0 3px rgba(204,20,73,.18);
}
.field input::placeholder,.field textarea::placeholder{ color:rgba(16,14,12,.4); }
.hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.form-foot{ margin:14px 0 0; font-size:.8rem; color:var(--ink-58); text-align:center; }
@media(max-width:640px){ .field-row{ grid-template-columns:1fr; gap:0; } }

/* ============================================================
   HEAR HER
   ============================================================ */
.player{ position:relative; background:var(--ink); box-shadow:0 26px 60px rgba(16,14,12,.4); }
.player img{ width:100%; aspect-ratio:16/9; object-fit:cover; object-position:50% 24%; }
.player__play{
  position:absolute; inset:0; display:grid; place-items:center;
  background:rgba(16,14,12,.24); text-decoration:none; transition:background .18s ease;
}
.player__play:hover{ background:rgba(16,14,12,.08); }
.player__play span{
  width:clamp(64px,8vw,96px); aspect-ratio:1; border-radius:50%;
  background:var(--paper-hi); display:grid; place-items:center;
  box-shadow:0 10px 26px rgba(16,14,12,.4); transition:transform .18s ease;
}
.player__play:hover span{ transform:scale(1.06); }
.player__play svg{ width:clamp(24px,3vw,32px); height:auto; margin-left:5px; color:var(--pink-dp); }
.player__play:focus-visible{ outline:4px solid var(--gold); outline-offset:5px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.quotes{ display:grid; grid-template-columns:repeat(3,1fr); gap:46px; text-align:left; }
.quote{ margin:0; }
.quote__mark{ width:38px; margin:0 0 16px; }
.quote p{ margin:0 0 16px; font-size:1.04rem; line-height:1.58; font-weight:600; color:var(--ink); }
.quote footer{
  font-family:var(--lab); font-weight:600; font-size:.75rem; letter-spacing:.14em;
  text-transform:uppercase; color:var(--turq-txt);
  padding-top:13px; border-top:2px solid rgba(16,14,12,.18);
}
.note{ margin:44px 0 0; font-size:.84rem; color:var(--ink-58); }
@media(max-width:820px){ .quotes{ grid-template-columns:1fr; gap:38px; } }

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pq p{
  font-family:var(--disp); text-transform:uppercase;
  font-size:clamp(1.7rem,4.8vw,3.2rem); line-height:1.16;
  color:var(--paper-hi); margin:0 0 26px; text-wrap:balance;
}
.pq p em{ font-style:normal; color:var(--gold-lt); }
.pq footer{
  font-family:var(--lab); font-weight:600; font-size:.82rem;
  letter-spacing:.22em; text-transform:uppercase; color:var(--paper-hi);
}
.pq__roundel{ width:48px; margin:0 auto 30px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about p{ color:var(--ink-72); margin:0 0 18px; max-width:50ch; }
.about p:last-child{ margin-bottom:0; }
.about strong{ color:var(--ink); }

/* ============================================================
   WHAT'S INCLUDED
   ============================================================ */
.inc{ list-style:none; margin:0 auto; padding:0; max-width:720px; text-align:left; }
.inc li{
  display:grid; grid-template-columns:190px 1fr; gap:26px;
  padding:20px 0; border-top:2px solid rgba(16,14,12,.16);
}
.inc li:last-child{ border-bottom:2px solid rgba(16,14,12,.16); }
.inc .k{
  font-family:var(--lab); font-weight:600; font-size:.86rem;
  letter-spacing:.13em; text-transform:uppercase; color:var(--ink);
}
.inc .v{ margin:0; color:var(--ink-72); font-size:1rem; }
@media(max-width:700px){ .inc li{ grid-template-columns:1fr; gap:6px; } }

/* ============================================================
   INSURANCE
   ============================================================ */
.safe{ display:grid; grid-template-columns:repeat(3,1fr); gap:36px; }
.safe .tick{
  width:36px; aspect-ratio:1; border-radius:50%; background:var(--turq);
  display:grid; place-items:center; margin:0 auto 16px;
}
.safe .tick svg{ width:18px; height:18px; color:var(--paper-hi); }
.safe h3{
  font-family:var(--lab); font-weight:600; font-size:.98rem;
  letter-spacing:.11em; text-transform:uppercase; margin:0 0 8px;
}
.safe p{ margin:0; font-size:.95rem; color:var(--ink-72); }
@media(max-width:820px){ .safe{ grid-template-columns:1fr; gap:32px; } }

/* ============================================================
   WHERE SHE PLAYS
   ============================================================ */
.pills{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
.pill{
  font-family:var(--lab); font-weight:600; font-size:.88rem;
  letter-spacing:.09em; text-transform:uppercase;
  padding:11px 22px; border-radius:999px;
  background:var(--paper-hi); color:var(--ink);
}
@media(max-width:820px){ .pill{ padding:9px 17px; font-size:.81rem; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--ink); color:var(--paper-hi); padding:58px 0 42px; text-align:center; }
.footer__logo{ width:min(260px,58vw); margin:0 auto 18px; }
.footer__tag{
  font-family:var(--lab); font-weight:600; font-size:.76rem;
  letter-spacing:.3em; text-transform:uppercase; color:var(--gold); margin:0 0 26px;
}
.footer__contacts{ display:flex; flex-wrap:wrap; justify-content:center; gap:12px 32px; margin-bottom:26px; }
.footer__contacts a{
  font-family:var(--lab); font-weight:500; font-size:1.02rem; letter-spacing:.04em;
  color:var(--paper-hi); text-decoration:none; border-bottom:2px solid transparent;
}
.footer__contacts a:hover{ color:var(--gold); border-bottom-color:var(--gold); }
.footer__rule{ width:min(500px,100%); margin:0 auto 22px; border-top:2px solid rgba(249,227,192,.26); }
.footer__small{ font-size:.82rem; color:rgba(252,240,217,.58); margin:0; }
.footer a:focus-visible{ outline:3px solid var(--gold); outline-offset:3px; }

/* ============================================================
   STICKY CALL BAR — phones
   ============================================================ */
.callbar{ display:none; }
@media(max-width:820px){
  .callbar{
    display:flex; position:fixed; z-index:200; left:0; right:0; bottom:0;
    align-items:center; justify-content:center; gap:11px;
    background:var(--pink-dp); color:var(--paper-hi);
    font-family:var(--lab); font-weight:600; font-size:1.04rem; letter-spacing:.04em;
    text-decoration:none; padding:16px 20px;
    box-shadow:0 -6px 20px rgba(16,14,12,.22);
  }
  .callbar svg{ width:19px; height:19px; flex:0 0 19px; }
  .callbar:focus-visible{ outline:3px solid var(--gold); outline-offset:-5px; }
  body{ padding-bottom:60px; }
}


/* ---------- additions for the new content, using the existing system ---------- */

/* torn edge at the foot of the photo header, so the band below bites into it */
.hero__tear{
  position:absolute; z-index:4; left:0; right:0; bottom:0; line-height:0;
  height:clamp(28px,3.6vw,52px); overflow:hidden;
}
.hero__tear svg{ display:block; width:100%; height:calc(clamp(28px,3.6vw,52px) + 3px); }

/* hero headline, over the photograph */
.hero__h1{
  font-family:var(--disp); font-weight:400;
  font-size:clamp(1.9rem,5vw,3.4rem); line-height:1.1;
  text-transform:uppercase; letter-spacing:.004em;
  color:var(--paper-hi); margin:26px 0 0; text-wrap:balance;
  text-shadow:0 6px 26px rgba(0,0,0,.5);
}
.hero__h1 em{ font-style:normal; color:var(--pink); }
.hero__cta{ margin-top:30px; }

/* the lede paragraphs already exist; this is the emphasised opening line */
.lede{ font-size:1.14rem; line-height:1.66; color:var(--ink-72); margin:0 auto; max-width:52ch; }
.lede--big{ font-size:clamp(1.16rem,2.3vw,1.42rem); line-height:1.5; font-weight:600; color:var(--ink); max-width:44ch; }
.on-dark .lede{ color:var(--paper-hi); }
.on-dark .lede--big{ color:var(--paper-hi); }
.stackp{ display:grid; gap:22px; justify-items:center; }

/* the four capability tags under the about copy */
.tags{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-top:34px; }
.tag{
  font-family:var(--lab); font-weight:600; font-size:.82rem;
  letter-spacing:.14em; text-transform:uppercase;
  padding:10px 20px; border-radius:999px;
  background:var(--shell); color:var(--ink);
}
.tag--pink{ background:var(--pink); }
.tag--sun{ background:var(--sun); }
.tag--turq{ background:var(--turq); }

/* the three "perfect for" cards — each one held in its own paper block */
.gigs{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(20px,2.4vw,30px); text-align:left; }
.gig{
  background:var(--pink); border-radius:8px;
  padding:clamp(28px,3vw,40px) clamp(24px,2.6vw,34px);
  box-shadow:0 14px 34px rgba(16,14,12,.09);
}
.gig h3{
  font-family:var(--disp); font-weight:400; text-transform:uppercase;
  font-size:clamp(1.35rem,2.6vw,1.8rem); line-height:1; margin:0 0 8px; color:var(--ink);
}
.gig h3::after{
  content:""; display:block; width:44px; height:4px; border-radius:2px;
  background:var(--sun); margin:16px 0 18px;
}
.gig p{ margin:0; color:var(--ink); font-size:1rem; }
@media(max-width:820px){ .gigs{ grid-template-columns:1fr; gap:18px; } }

/* the quote band's supporting line */
.pq p.pq__sub{
  font-family:var(--lab); font-weight:600; font-size:.8rem; line-height:1.7;
  letter-spacing:.22em; text-transform:uppercase; color:var(--gold-lt); margin:6px 0 0;
}

/* bookings block above the form */
.bookblock{ margin:0 0 8px; }
.bookblock .lbl{
  font-family:var(--lab); font-weight:600; font-size:.78rem;
  letter-spacing:.26em; text-transform:uppercase; color:var(--ink-58); margin:0 0 8px;
}
.bookblock .area{
  font-family:var(--lab); font-weight:600; font-size:.82rem;
  letter-spacing:.2em; text-transform:uppercase; color:var(--turq-txt); margin:18px 0 0;
}

/* ============================================================
   TWO-COLUMN SPLIT — left aligned, used by intro, about and booking
   ============================================================ */
.split{
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(38px,5vw,80px); align-items:center; text-align:left;
}
.split__a,.split__b{ min-width:0; }
.split .lede,.split .lede--big{ margin-left:0; margin-right:0; }
.split .lede--big{ margin-bottom:20px; }
.split .h2{ text-wrap:pretty; }
.split .btn{ margin-top:30px; }
/* section one: headline and body copy start on the same line */
.split--top{ align-items:start; }
.split--top .h2{ font-size:clamp(2.6rem,7.4vw,5rem); }
@media(min-width:901px){ .split--top .split__b{ padding-top:38px; } }
.split__b > :first-child{ margin-top:0; }
.split--book{ align-items:start; }
/* the loudest headline on the page — this is the ask */
.split--book .h2{ font-size:clamp(2.9rem,7.8vw,5.4rem); line-height:1; }
.split--book .bignum{ font-size:clamp(1.9rem,3.6vw,2.7rem); }
.split--book .mailrow{ margin-top:12px; font-size:.98rem; }
@media(max-width:900px){
  .split{ grid-template-columns:1fr; gap:40px; }
  .split--figure .split__a{ order:-1; }
}

/* the portrait container in the about section */
.portrait{
  margin:0; background:#FFFDF7; padding:13px; border-radius:2px;
  transform:rotate(-2.4deg);
  box-shadow:
    0 1px 2px rgba(16,14,12,.22),
    0 10px 18px rgba(16,14,12,.16),
    0 30px 56px rgba(16,14,12,.22);
}
.portrait img{ border-radius:1px; }
.portrait img{ width:100%; aspect-ratio:4/5; object-fit:cover; object-position:50% 18%; }
@media(max-width:900px){ .portrait{ max-width:420px; margin:0 auto; } }

/* the booking form no longer needs to centre itself */
.split .formwrap{ max-width:none; margin:0; }
.split .form-foot{ text-align:left; }
.split .bookblock{ margin-top:38px; }
.split .tags{ justify-content:flex-start; }

/* ============================================================
   THE SUNSHINE QUOTE BAND
   ============================================================ */
.flood--sun{ background:var(--sun); }
.pq--sun{ color:var(--ink); }
.pq--sun p{ color:var(--ink); }
/* hot pink straight off the moodboard */
.pq--sun p em{ color:var(--pink); }
.pq--sun p.pq__sub{ color:#7A2A04; }
.pq--sun{ background:var(--sun); padding:clamp(126px,14vw,190px) 0; }
/* the quote fills roughly four fifths of the band */
.pq__col{ max-width:none; width:min(80%,1180px); }
.pq--sun p{ font-size:clamp(2.2rem,6.2vw,4.5rem); }
.pq__daisy{
  position:absolute; z-index:1; width:clamp(130px,16vw,240px); height:auto;
  pointer-events:none;
}
.pq__daisy--tr{ top:clamp(20px,2.6vw,40px); right:clamp(20px,4.4vw,74px); transform:rotate(9deg); }
.pq__daisy--bl{ bottom:clamp(20px,2.6vw,40px); left:clamp(18px,3vw,44px); transform:rotate(-12deg); }
@media(max-width:820px){
  .pq--sun{ padding:clamp(132px,24vw,180px) 0; }
  .pq__col{ width:86%; }
  .pq__daisy{ width:22vw; }
  .pq__daisy--tr{ top:18px; right:14px; }
  .pq__daisy--bl{ bottom:18px; left:14px; }
}

/* ---------- thank you ---------- */
.thanks{ min-height:78vh; display:grid; place-items:center; padding:120px 0 80px; background:var(--shell); }
.thanks__roundel{ width:84px; margin:0 auto 26px; }
.thanks h1{
  font-family:var(--disp); text-transform:uppercase;
  font-size:clamp(2.1rem,6vw,3.4rem); line-height:1.08; margin:0 0 18px;
}
.thanks h1 em{ font-style:normal; color:var(--pink-em); }
.thanks p{ color:var(--ink-72); font-size:1.04rem; margin:0 auto 12px; max-width:44ch; }
.thanks .cta-row{ margin-top:30px; }
.thanks-page .nav{ transform:none; }

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  .btn,.player__play,.player__play span,.nav,.booktab{ transition:none; }
  .scrollcue svg{ animation:none; }
}
