/* ---------- Tokens (all pastel) ---------- */
  :root{
    color-scheme:light;
    /* ---- Wildflower meadow: blues, greens, pinks, purples, yellows ---- */
    --paper:#FAFAF5;          /* page background, soft chalk-white */
    --petal:#F5E4EA;          /* pink section wash */
    --meadow:#E4EFE0;         /* green section wash */
    --sky:#DEEAF3;            /* blue section wash */
    --lilac:#EAE4F5;          /* purple section wash */
    --pollen:#F8EFD8;         /* yellow section wash */

    --bluebell:#7FA0C2;       /* primary accent — buttons, chips */
    --bluebell-deep:#3F6489;  /* hover + small accent text (AA on every wash) */
    --leaf:#8FB889;           /* green accent */
    --leaf-soft:#B9D3B4;      /* green badge fill */
    --clover:#E4A0B6;         /* pink accent */
    --thistle:#7B66AB;        /* purple accent */
    --buttercup:#EBC565;      /* yellow accent */

    --iris:#463F6E;           /* headings — deep blue-violet */
    --iris-deep:#2F2A4D;      /* text on light accent fills */
    --ink:#565F5B;            /* body copy — soft green-grey */
    --line:rgba(70,63,110,.16);
    --shadow:0 2px 12px rgba(70,63,110,.09);
    --shadow-lift:0 16px 38px rgba(70,63,110,.15);
    --radius:14px;
    --radius-lg:24px;
    --wrap:1080px;
    --serif:"Palatino Linotype","Book Antiqua",Palatino,"Iowan Old Style",Georgia,serif;
    --sans:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  }

  /* ---------- Base ---------- */
  *{box-sizing:border-box}
  html{scroll-behavior:smooth;background:#FAFAF5}
  body{
    margin:0;
    background:var(--paper);
    color:var(--ink);
    font-family:var(--sans);
    font-size:clamp(1rem,.97rem + .2vw,1.12rem);
    line-height:1.7;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
  }
  h1,h2,h3{font-family:var(--serif);color:var(--iris);font-weight:600;line-height:1.12;letter-spacing:-.01em;margin:0}
  p{margin:0}
  a{color:var(--iris);text-decoration:none}
  a:hover{color:var(--bluebell-deep)}
  img,svg{display:block}
  .wrap{width:100%;max-width:var(--wrap);margin-inline:auto;padding-inline:clamp(20px,5vw,40px)}

  a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible,summary:focus-visible{
    outline:3px solid var(--iris);outline-offset:3px;border-radius:6px;
  }

  .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}
  .skip{position:absolute;left:12px;top:-60px;background:var(--bluebell);color:var(--iris-deep);padding:10px 16px;border-radius:10px;z-index:200;font-weight:600;transition:top .2s}
  .skip:focus{top:12px}

  .eyebrow{
    font-family:var(--sans);font-size:.76rem;font-weight:700;letter-spacing:.16em;
    text-transform:uppercase;color:var(--iris);margin:0 0 14px;
  }

  /* ---------- Buttons ---------- */
  .btn{
    display:inline-flex;align-items:center;gap:.5em;cursor:pointer;
    font-family:var(--sans);font-size:.98rem;font-weight:700;line-height:1;
    padding:.85em 1.5em;border-radius:999px;border:1.5px solid transparent;
    transition:transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  }
  .btn--primary{background:var(--bluebell);color:var(--iris-deep);box-shadow:var(--shadow)}
  .btn--primary:hover{background:var(--bluebell-deep);color:#fff;transform:translateY(-2px);box-shadow:var(--shadow-lift)}
  .btn--ghost{background:transparent;color:var(--iris);border-color:var(--line)}
  .btn--ghost:hover{background:var(--petal);color:var(--iris);transform:translateY(-2px)}
  .btn--block{width:100%;justify-content:center;padding-block:1em}
  .btn--small{font-size:.85rem;padding:.6em 1.1em}

  /* ---------- Header ---------- */
  .site-header{position:sticky;top:0;z-index:100;transition:background .25s ease, box-shadow .25s ease, backdrop-filter .25s}
  .site-header.is-scrolled{background:rgba(250,250,245,.85);backdrop-filter:blur(10px);box-shadow:0 1px 0 var(--line)}
  .bar{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding-block:16px}
  .brand{display:flex;align-items:center;gap:12px}
  .brand__mark{width:34px;height:34px;flex:0 0 auto}
  .brand__name{font-family:var(--serif);font-size:1.32rem;color:var(--iris);line-height:1}
  .brand__sub{display:block;font-family:var(--sans);font-size:.6rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--bluebell-deep);margin-top:4px}

  .nav{display:flex;align-items:center;gap:28px}
  .nav__link{font-family:var(--sans);font-size:.96rem;font-weight:500;color:var(--ink)}
  .nav__link:hover{color:var(--iris)}
  .nav .btn{margin-left:4px}

  .nav-toggle{display:none;background:none;border:0;cursor:pointer;padding:8px;color:var(--iris)}
  .nav-toggle svg{width:26px;height:26px}

  /* ---------- Hero ---------- */
  .hero{position:relative;overflow:hidden}
  .hero::before,.hero::after{content:"";position:absolute;border-radius:50%;filter:blur(8px);z-index:0;pointer-events:none}
  .hero::before{width:42vw;height:42vw;max-width:520px;max-height:520px;background:var(--meadow);opacity:.55;top:-12vw;right:-10vw}
  .hero::after{width:30vw;height:30vw;max-width:360px;max-height:360px;background:var(--lilac);opacity:.62;bottom:-12vw;left:-8vw}
  .hero__inner{position:relative;z-index:1;display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(32px,5vw,72px);align-items:center;padding-block:clamp(56px,8vw,104px)}
  .hero h1{font-size:clamp(2.3rem,1.5rem + 3.4vw,3.9rem);margin:0 0 22px;max-width:14ch}
  .hero .lead{font-size:clamp(1.08rem,1rem + .5vw,1.3rem);color:var(--ink);max-width:46ch;margin:0 0 32px}
  .hero__cta{display:flex;flex-wrap:wrap;gap:14px}

  /* Signature: two glass pitchers pouring water back and forth (Montessori practical life) */
  .hero__art{display:flex;flex-direction:column;align-items:center;justify-content:flex-end}
  .jug-stage{width:min(100%,440px);padding:10px 10px 14px;border-radius:28px;
    background:radial-gradient(80% 70% at 50% 50%, var(--sky) 0%, rgba(222,234,243,0) 76%)}
  .jug-stage svg{width:100%;height:auto}

  /* ---------- The pour cycle ----------
     One 8s loop with two beats: left pours into right, then right pours
     back into left. Everything below is CSS keyframes — no JS, no canvas,
     so it keeps running under a strict CSP and costs almost nothing.
     Each pitcher and its water share a transform-origin sitting on the
     spout, so the body swings up and over while the water counter-rotates
     to stay level. The stream is one path revealed by stroke-dashoffset. */
  #jugPL,#jugPR,#jugWL,#jugWR{transform-box:view-box}
  #jugPL,#jugWL{transform-origin:180px 138px}
  #jugPR,#jugWR{transform-origin:240px 138px}

  #jugPL{animation:jugTiltL 8s cubic-bezier(.4,0,.3,1) infinite}
  #jugPR{animation:jugTiltR 8s cubic-bezier(.4,0,.3,1) infinite}
  #jugWL{animation:jugWaterL 8s cubic-bezier(.4,0,.3,1) infinite}
  #jugWR{animation:jugWaterR 8s cubic-bezier(.4,0,.3,1) infinite}
  #jugStreamL{animation:jugFlowL 8s linear infinite}
  #jugStreamR{animation:jugFlowR 8s linear infinite}
  #jugShL{animation:jugShadeL 8s cubic-bezier(.4,0,.3,1) infinite}
  #jugShR{animation:jugShadeR 8s cubic-bezier(.4,0,.3,1) infinite}

  @keyframes jugTiltL{
    0%,6%{transform:translate(0px,0px) rotate(0deg)}
    14%,40%{transform:translate(40px,-80px) rotate(24deg)}
    48%,100%{transform:translate(0px,0px) rotate(0deg)}
  }
  @keyframes jugTiltR{
    0%,56%{transform:translate(0px,0px) rotate(0deg)}
    64%,90%{transform:translate(-40px,-80px) rotate(-24deg)}
    98%,100%{transform:translate(0px,0px) rotate(0deg)}
  }
  @keyframes jugWaterL{
    0%,6%{transform:rotate(0deg) translateY(0px)}
    14%{transform:rotate(-24deg) translateY(4px);animation-timing-function:linear}
    38%,40%{transform:rotate(-24deg) translateY(92px)}
    48%,69%{transform:rotate(0deg) translateY(92px);animation-timing-function:linear}
    91%,100%{transform:rotate(0deg) translateY(0px)}
  }
  @keyframes jugWaterR{
    0%,19%{transform:rotate(0deg) translateY(92px);animation-timing-function:linear}
    41%,56%{transform:rotate(0deg) translateY(0px)}
    64%{transform:rotate(24deg) translateY(4px);animation-timing-function:linear}
    88%,90%{transform:rotate(24deg) translateY(92px)}
    98%,100%{transform:rotate(0deg) translateY(92px)}
  }
  /* The opacity steps sit either side of the flow window purely to kill the
     dot a round linecap leaves behind when the dash sits at the path end. */
  @keyframes jugFlowL{
    0%{stroke-dashoffset:100;opacity:0}
    13.9%{opacity:0}
    14%{stroke-dashoffset:100;opacity:1}
    18%,38%{stroke-dashoffset:0}
    43%{stroke-dashoffset:-100;opacity:1}
    43.1%{opacity:0}
    100%{stroke-dashoffset:-100;opacity:0}
  }
  @keyframes jugFlowR{
    0%{stroke-dashoffset:100;opacity:0}
    63.9%{opacity:0}
    64%{stroke-dashoffset:100;opacity:1}
    68%,88%{stroke-dashoffset:0}
    93%{stroke-dashoffset:-100;opacity:1}
    93.1%{opacity:0}
    100%{stroke-dashoffset:-100;opacity:0}
  }
  @keyframes jugShadeL{
    0%,6%{opacity:.2}
    14%,40%{opacity:.07}
    48%,100%{opacity:.2}
  }
  @keyframes jugShadeR{
    0%,56%{opacity:.2}
    64%,90%{opacity:.07}
    98%,100%{opacity:.2}
  }

  /* Reduced motion: hold a calm, half-full still frame instead. */
  @media (prefers-reduced-motion: reduce){
    #jugPL,#jugPR,#jugWL,#jugWR,#jugStreamL,#jugStreamR,#jugShL,#jugShR{animation:none}
    #jugWL,#jugWR{transform:translateY(44px)}
    #jugStreamL,#jugStreamR{opacity:0}
  }
  .toy-caption{font-family:var(--sans);font-size:.78rem;color:var(--bluebell-deep);font-weight:600;letter-spacing:.04em;margin-top:14px;text-align:center}

  /* ---------- Section scaffolding ---------- */
  .section{padding-block:clamp(64px,9vw,116px)}
  .section--petal{background:var(--petal)}
  .section--meadow{background:var(--meadow)}
  .section--sky{background:var(--sky)}
  .section--lilac{background:var(--lilac)}
  .section--pollen{background:var(--pollen)}
  .section__head{max-width:60ch;margin-bottom:clamp(36px,5vw,56px)}
  .section h2{font-size:clamp(1.8rem,1.3rem + 2.2vw,2.8rem);margin:0 0 16px}
  .section__intro{font-size:1.1rem;color:var(--ink);max-width:54ch}
  [id]{scroll-margin-top:88px}

  /* ---------- Services ---------- */
  .grid-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:22px}
  .card{background:var(--paper);border:1px solid var(--line);border-radius:var(--radius-lg);padding:30px 28px;box-shadow:var(--shadow);transition:transform .18s ease, box-shadow .18s ease}
  .card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lift)}
  .card__icon{width:50px;height:50px;border-radius:14px;background:var(--meadow);display:grid;place-items:center;margin-bottom:20px}
  .card:nth-child(1) .card__icon{background:var(--sky)}
  .card:nth-child(2) .card__icon{background:var(--meadow)}
  .card:nth-child(3) .card__icon{background:var(--petal)}
  .card:nth-child(4) .card__icon{background:var(--pollen)}
  .card__icon svg{width:27px;height:27px;stroke:var(--iris-deep);stroke-width:1.7;fill:none;stroke-linecap:round;stroke-linejoin:round}
  .card h3{font-size:1.24rem;margin:0 0 10px}
  .card p{font-size:1rem;color:var(--ink)}

  /* ---------- Trouble spots (native details accordion) ---------- */
  .acc{display:flex;flex-direction:column;gap:14px;max-width:860px}
  details.spot{background:var(--paper);border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden}
  .spot__summary{list-style:none;cursor:pointer;display:flex;align-items:flex-start;gap:16px;padding:22px 24px}
  .spot__summary::-webkit-details-marker{display:none}
  .spot__flower{flex:0 0 auto;margin-top:2px}
  .spot__flower svg{width:26px;height:28px}
  details[open] .spot__flower svg{transform:scale(1.06);transition:transform .3s ease}
  .spot__head{flex:1 1 auto;min-width:0}
  .spot__title{font-family:var(--serif);font-size:1.22rem;color:var(--iris);line-height:1.2}
  .spot__teaser{font-size:.98rem;color:var(--ink);margin-top:5px}
  .spot__chev{flex:0 0 auto;margin-top:4px;color:var(--bluebell-deep);transition:transform .3s ease}
  .spot__chev svg{width:20px;height:20px;stroke:currentColor;stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round}
  details[open] .spot__chev{transform:rotate(180deg)}
  .spot__body{display:grid;grid-template-rows:0fr;transition:grid-template-rows .32s ease}
  details[open] .spot__body{grid-template-rows:1fr}
  .spot__bodyInner{overflow:hidden}
  .spot__content{padding:0 24px 24px 64px}
  .spot__label{font-family:var(--sans);font-size:.72rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--bluebell-deep);margin:14px 0 5px}
  .spot__content p{font-size:1rem;color:var(--ink)}

  /* ---------- About ---------- */
  .about__inner{display:grid;grid-template-columns:auto 1fr;gap:clamp(28px,5vw,56px);align-items:center}
  .monogram{width:150px;height:150px;border-radius:50%;flex:0 0 auto;display:grid;place-items:center;
    background:linear-gradient(150deg,var(--leaf) 0%,var(--bluebell) 55%,var(--thistle) 100%);color:#fff;
    font-family:var(--serif);font-size:3rem;box-shadow:var(--shadow-lift)}
  .about__content h2{margin-bottom:18px}
  .about__content p + p{margin-top:16px}
  .placeholder{background:var(--lilac);border-radius:5px;padding:.05em .35em;color:var(--iris-deep);font-style:italic}

  /* ---------- Process ---------- */
  .steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:26px}
  .step{position:relative;padding-top:8px}
  .step__num{font-family:var(--serif);font-size:2.6rem;line-height:1;display:block;margin-bottom:12px;color:var(--bluebell-deep)}
  .step:nth-child(2) .step__num{color:#4E7A49}
  .step:nth-child(3) .step__num{color:var(--thistle)}
  .step:nth-child(4) .step__num{color:#B54A70}
  .step h3{font-size:1.3rem;margin:0 0 10px}
  .step p{font-size:1rem;color:var(--ink)}

  /* ---------- Booking ---------- */
  .booking__grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(28px,4vw,48px);align-items:start}
  .booking__intro h2{margin-bottom:16px}
  .approve-note{display:flex;gap:12px;align-items:flex-start;background:var(--paper);border:1px solid var(--line);border-radius:var(--radius);padding:16px 18px;margin-top:22px;box-shadow:var(--shadow)}
  .approve-note svg{flex:0 0 auto;width:22px;height:22px;stroke:var(--bluebell-deep);stroke-width:1.8;fill:none;stroke-linecap:round;stroke-linejoin:round;margin-top:2px}
  .approve-note p{font-size:.96rem;color:var(--ink)}
  .approve-note b{color:var(--iris)}

  .card-panel{position:relative;overflow:hidden;background:var(--paper);border:1px solid var(--line);border-radius:var(--radius-lg);padding:clamp(22px,3vw,32px);box-shadow:var(--shadow-lift)}
  /* wildflower band — the five meadow hues, used once */
  .card-panel::before{content:"";position:absolute;inset:0 0 auto;height:5px;
    background:linear-gradient(90deg,var(--bluebell) 0%,var(--leaf) 26%,var(--buttercup) 50%,var(--clover) 74%,var(--thistle) 100%)}
  .picker__label{font-family:var(--sans);font-size:.74rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--iris);margin:0 0 12px}
  .picker__step + .picker__step{margin-top:22px}
  .chips{display:flex;flex-wrap:wrap;gap:9px}
  .chip{font-family:var(--sans);font-size:.92rem;font-weight:600;cursor:pointer;background:var(--paper);
    color:var(--ink);border:1.5px solid var(--line);border-radius:12px;padding:9px 13px;line-height:1.2;text-align:center;
    transition:background .15s ease, border-color .15s ease, color .15s ease, transform .12s ease}
  .chip small{display:block;font-weight:500;font-size:.72rem;color:var(--bluebell-deep);margin-top:2px}
  .chip:hover:not([disabled]){border-color:var(--bluebell);transform:translateY(-1px)}
  .chip.selected{background:var(--bluebell);border-color:var(--bluebell);color:var(--iris-deep)}
  .chip.selected small{color:var(--iris-deep)}
  .chip[disabled]{cursor:not-allowed;opacity:.5;background:var(--petal);border-color:transparent}
  .picker__hint{font-size:.92rem;color:var(--ink);opacity:.8;font-style:italic}

  .field{margin-bottom:16px}
  .field label{display:block;font-family:var(--sans);font-size:.82rem;font-weight:700;letter-spacing:.04em;color:var(--iris);margin-bottom:7px}
  .field input,.field textarea,.field select{
    width:100%;font-family:var(--sans);font-size:1rem;color:var(--ink);
    background:var(--paper);border:1.5px solid var(--line);border-radius:11px;padding:12px 15px;
    transition:border-color .18s ease, box-shadow .18s ease;
  }
  .field input:focus,.field textarea:focus,.field select:focus{outline:none;border-color:var(--bluebell);box-shadow:0 0 0 3px rgba(127,160,194,.35)}
  .field textarea{resize:vertical;min-height:96px}
  .field-hint{font-size:.82rem;color:var(--ink);opacity:.72;margin-top:6px}
  .opt{font-weight:500;color:var(--ink);opacity:.7}
  .field-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}

  .book-success{display:none;background:var(--meadow);border:1px solid var(--leaf-soft);color:var(--iris);
    border-radius:12px;padding:16px 18px;margin-bottom:18px;font-size:.98rem}
  .book-success.show{display:block}
  .book-success b{color:var(--iris)}

  .your-requests{margin-top:22px}
  .your-requests h4{font-family:var(--sans);font-size:.74rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--iris);margin:0 0 12px}
  .req{display:flex;align-items:center;justify-content:space-between;gap:12px;background:var(--paper);
    border:1px solid var(--line);border-radius:11px;padding:12px 14px;margin-bottom:9px}
  .req__when{font-weight:600;color:var(--iris);font-size:.96rem}
  .req__who{font-size:.82rem;color:var(--ink);opacity:.8}
  .badge{font-family:var(--sans);font-size:.72rem;font-weight:700;letter-spacing:.04em;padding:5px 11px;border-radius:999px;white-space:nowrap}
  .badge--pending{background:var(--lilac);color:var(--iris-deep)}
  .badge--confirmed{background:var(--leaf-soft);color:var(--iris-deep)}
  .badge--declined{background:#E5E5DE;color:#5C6560}
  .empty{font-size:.92rem;color:var(--ink);opacity:.7;font-style:italic}

  /* contact fallback, tucked away */
  .contact-alt{margin-top:26px;border-top:1px solid var(--line);padding-top:18px}
  .contact-alt summary{list-style:none;cursor:pointer;font-size:.9rem;font-weight:600;color:var(--iris);display:flex;align-items:center;gap:8px}
  .contact-alt summary::-webkit-details-marker{display:none}
  .contact-alt summary::after{content:"+";margin-left:auto;color:var(--bluebell-deep);font-weight:700}
  .contact-alt[open] summary::after{content:"–"}
  .contact-alt p{font-size:.92rem;color:var(--ink);margin-top:10px}
  .contact-alt .val{color:var(--iris);font-weight:600}

  /* ---------- Footer ---------- */
  .site-footer{background:var(--meadow);color:var(--ink);padding-block:46px 34px}
  .footer__inner{display:flex;flex-wrap:wrap;gap:32px;justify-content:space-between;align-items:flex-start}
  .footer__brand{max-width:320px}
  .footer__brand .brand__name{color:var(--iris)}
  .footer__tag{font-size:.92rem;margin-top:12px;color:var(--ink)}
  .footer__nav{display:flex;flex-direction:column;gap:10px}
  .footer__nav a{color:var(--ink);font-size:.96rem}
  .footer__nav a:hover{color:var(--iris)}
  .footer__legal{width:100%;margin-top:34px;padding-top:22px;border-top:1px solid var(--line);
    font-size:.82rem;color:var(--ink);opacity:.85;display:flex;flex-wrap:wrap;gap:8px 22px;justify-content:space-between}

  /* ---------- Reveal motion ---------- */
  .js [data-reveal]{opacity:0;transform:translateY(18px);transition:opacity .6s ease,transform .6s ease}
  .js [data-reveal].is-visible{opacity:1;transform:none}

  @keyframes riseIn{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:none}}
  @keyframes cubeIn{from{opacity:0;transform:translateY(26px) scale(.95)}to{opacity:1;transform:none}}
  .hero__content > *{animation:riseIn .7s both}
  .hero__content > *:nth-child(1){animation-delay:.05s}
  .hero__content > *:nth-child(2){animation-delay:.18s}
  .hero__content > *:nth-child(3){animation-delay:.32s}
  .hero__content > *:nth-child(4){animation-delay:.46s}
  .jug-stage{animation:cubeIn .7s both;animation-delay:.15s}

  /* ---------- Responsive ---------- */
  @media (max-width:860px){
    .nav{position:fixed;inset:0 0 0 auto;width:min(80vw,320px);flex-direction:column;align-items:flex-start;
      justify-content:center;gap:22px;background:var(--paper);padding:40px;box-shadow:-12px 0 40px rgba(70,63,110,.18);
      transform:translateX(100%);transition:transform .3s ease;z-index:120}
    .nav.open{transform:translateX(0)}
    .nav__link{font-size:1.15rem}
    .nav .btn{margin-left:0}
    .nav-toggle{display:inline-flex;z-index:130}
    .hero__inner{grid-template-columns:1fr;text-align:center}
    .hero h1,.hero .lead{margin-inline:auto}
    .hero__cta{justify-content:center}
    .hero__art{order:-1;margin-bottom:8px}
    .about__inner{grid-template-columns:1fr;text-align:center;justify-items:center}
    .booking__grid{grid-template-columns:1fr}
  }
  @media (max-width:460px){
    .bar{padding-block:12px}
    .spot__content{padding-left:24px}
    .step{text-align:center}
    .step__num{display:inline-block}
    .field-row{grid-template-columns:1fr}
  }

  @media (prefers-reduced-motion:reduce){
    html{scroll-behavior:auto}
    *{animation:none !important;transition:none !important}
    .js [data-reveal]{opacity:1;transform:none}
  }

  /* ---------- Utility classes (moved out of inline style attributes so the
     Content-Security-Policy can forbid inline styles entirely) ---------- */
  .hp-field{position:absolute;left:-9999px;top:-9999px;height:0;overflow:hidden}
  #turnstile-box{margin-bottom:14px}
  .field-hint--center{text-align:center;margin-top:10px}
  .footer__label{color:var(--iris);font-weight:600;font-size:.74rem;letter-spacing:.12em;
    text-transform:uppercase;display:block;margin-bottom:6px}
  .footer__tag--flush{margin-top:0}
  .footer__admin{color:var(--ink);opacity:.7}

  /* ---------- Brand mark: the same pour, in miniature ---------- */
  @keyframes mkTilt{
    0%,10%{transform:translate(0,0) rotate(0deg)}
    22%,62%{transform:translate(0.60px,-1.40px) rotate(22deg)}
    74%,100%{transform:translate(0,0) rotate(0deg)}
  }
  @keyframes mkWater{
    0%,10%{transform:rotate(0deg) translateY(0px)}
    22%{transform:rotate(-22deg) translateY(1px);animation-timing-function:linear}
    60%,62%{transform:rotate(-22deg) translateY(12.0px)}
    74%{transform:rotate(0deg) translateY(12.0px)}
    100%{transform:rotate(0deg) translateY(0px)}
  }
  @keyframes mkFlow{
    0%{stroke-dashoffset:100;opacity:0}
    25.9%{opacity:0}
    26%{stroke-dashoffset:100;opacity:1}
    32%,60%{stroke-dashoffset:0}
    66%{stroke-dashoffset:-100;opacity:1}
    66.1%{opacity:0}
    100%{stroke-dashoffset:-100;opacity:0}
  }
  @keyframes mkBasin{
    0%,26%{transform:translateY(2.4px)}
    62%,74%{transform:translateY(0px)}
    100%{transform:translateY(2.4px)}
  }
  #mkP,#mkW,#mkB{transform-box:view-box}
  #mkP,#mkW{transform-origin:30.5px 11.5px}
  #mkB{transform-origin:20px 32px}
  #mkP{animation:mkTilt 5s cubic-bezier(.4,0,.3,1) infinite}
  #mkW{animation:mkWater 5s cubic-bezier(.4,0,.3,1) infinite}
  #mkS{animation:mkFlow 5s linear infinite}
  #mkB{animation:mkBasin 5s cubic-bezier(.4,0,.3,1) infinite}
  @media (prefers-reduced-motion:reduce){
    #mkP,#mkW,#mkS,#mkB{animation:none}
    #mkW{transform:translateY(5px)}
    #mkS{opacity:0}
  }
