/* ════════════════════════════════════════════════════════════════════
   LEARNING WITHOUT LIMITS TUITION — "THE STORYBOOK, MARKED BY THE TEACHER"
   A well-loved picture book with a teacher's encouraging pen: cream
   pages, wavy page edges, watercolor washes, handwritten margin notes,
   a bookshelf of subjects and a star trail. Brief: DESIGN.md.
   Palette + motifs eyedropped from Lena's own logo & flyer.
   ════════════════════════════════════════════════════════════════════ */

:root{
  --cream:#fbf8f2;          /* page */
  --white:#fffefb;          /* lifted page */
  --sage-wash:#e7ecdf;      /* watercolor bands */
  --lilac-wash:#ece2f0;
  --gold-wash:#f7ead2;

  --navy:#23355e;           /* from the crest */
  --sage:#718f77;
  --sage-deep:#54705b;
  --lilac:#9880a2;
  --lilac-deep:#7c6488;
  --gold:#dfa341;
  --gold-deep:#b97f22;
  --teal:#729a92;
  --teal-deep:#54776f;

  --ink:#2d3a5c;            /* body text */
  --ink-soft:#56608a;
  --ink-mute:#7f86a6;

  --line:#e3ddd0;

  --display:"Young Serif",Georgia,serif;
  --body:"Atkinson Hyperlegible",Verdana,sans-serif;
  --pen:"Caveat",cursive;

  --wrap:1140px;
  --r-blob:1.4em 1.1em 1.5em 1em;   /* squishy hand-painted radius */
  --ease:cubic-bezier(.34,1.3,.5,1);
  --shadow:0 10px 30px -14px rgba(35,53,94,.22);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  background:var(--cream);
  color:var(--ink);
  font-family:var(--body);
  font-size:1.06rem;
  line-height:1.7;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
::selection{background:var(--gold);color:var(--navy)}

.wrap{max-width:var(--wrap);margin:0 auto;padding:0 22px}

.skip-link{position:absolute;left:-9999px;top:0;background:var(--navy);color:#fff;padding:.7rem 1.2rem;z-index:200;border-radius:0 0 12px 0}
.skip-link:focus{left:0}

/* ---- Type ------------------------------------------------------------ */
h1,h2,h3,h4{font-family:var(--display);font-weight:400;line-height:1.18;color:var(--navy)}
h1{font-size:clamp(2.1rem,4.8vw,3.4rem)}
h2{font-size:clamp(1.7rem,3.4vw,2.4rem)}
h3{font-size:1.3rem}
.lede{color:var(--ink-soft);font-size:1.12rem;max-width:60ch}
.muted{color:var(--ink-mute)}

/* teacher's pen — handwritten margin notes */
.note{
  font-family:var(--pen);font-size:clamp(1.35rem,2.4vw,1.7rem);line-height:1.2;
  color:var(--lilac-deep);display:inline-block;transform:rotate(-2deg);
}
.note.sage{color:var(--sage-deep)}
.note.gold{color:var(--gold-deep)}

/* watercolor highlight stroke under key words (like Lena's flyer) */
.hl{
  background-image:linear-gradient(104deg,transparent 2%,var(--lilac-wash) 8%,var(--lilac-wash) 92%,transparent 98%);
  background-repeat:no-repeat;background-size:100% .55em;background-position:0 78%;
  border-radius:4px;
}
.hl.sage{background-image:linear-gradient(104deg,transparent 2%,var(--sage-wash) 8%,var(--sage-wash) 92%,transparent 98%)}
.hl.gold{background-image:linear-gradient(104deg,transparent 2%,var(--gold-wash) 8%,var(--gold-wash) 92%,transparent 98%)}

/* wobbly hand-drawn underline (SVG, draws itself on reveal) */
.squiggle{position:relative;white-space:nowrap}
.squiggle svg{position:absolute;left:0;bottom:-.32em;width:100%;height:.5em;overflow:visible}
.squiggle path{
  fill:none;stroke:var(--gold);stroke-width:3.2;stroke-linecap:round;
  stroke-dasharray:240;stroke-dashoffset:240;
}
.in .squiggle path,.squiggle.in path{animation:pen-draw 1s ease-out .25s forwards}
@keyframes pen-draw{to{stroke-dashoffset:0}}

/* ---- Doodles — stars, hearts, sprigs --------------------------------- */
.doodle{position:absolute;pointer-events:none}
.doodle svg{width:100%;height:100%}
.twinkle{animation:twinkle 3.4s ease-in-out infinite}
.twinkle.t2{animation-delay:1.1s}
.twinkle.t3{animation-delay:2.2s}
@keyframes twinkle{0%,100%{opacity:.45;transform:scale(.92) rotate(-4deg)}50%{opacity:1;transform:scale(1.06) rotate(4deg)}}

/* ---- Buttons — soft painted blobs ------------------------------------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  font-family:var(--body);font-weight:700;font-size:1rem;
  padding:.85rem 1.7rem;border:2px solid transparent;border-radius:var(--r-blob);
  cursor:pointer;white-space:nowrap;
  transition:transform .25s var(--ease),background .2s,color .2s,border-color .2s,box-shadow .25s;
}
.btn .ic{width:17px;height:17px}
.btn:hover{transform:translateY(-2px) rotate(-.6deg)}
.btn:active{transform:translateY(0) scale(.98)}

.btn-navy{background:var(--navy);color:#fff;box-shadow:var(--shadow)}
.btn-navy:hover{background:#2c4071}
.btn-sage{background:var(--sage);color:#fff;box-shadow:var(--shadow)}
.btn-sage:hover{background:var(--sage-deep)}
.btn-soft{background:transparent;color:var(--navy);border-color:var(--navy)}
.btn-soft:hover{background:var(--navy);color:#fff}
.btn-block{width:100%}
.btn-sm{padding:.5rem 1.1rem;font-size:.9rem}

.text-link{
  font-weight:700;color:var(--sage-deep);
  border-bottom:2px dotted var(--sage);padding-bottom:1px;
  transition:color .2s,border-color .2s;
  display:inline-flex;align-items:center;gap:.35rem;
}
.text-link:hover{color:var(--navy);border-color:var(--gold)}
.text-link .ic{width:14px;height:14px}

/* ---- Header — friendly lockup ------------------------------------------ */
.site-head{
  position:sticky;top:0;z-index:60;
  background:rgba(251,248,242,.92);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:border-color .3s,box-shadow .3s;
}
.site-head.scrolled{border-bottom-color:var(--line);box-shadow:0 6px 24px -16px rgba(35,53,94,.25)}
.head-inner{
  max-width:var(--wrap);margin:0 auto;padding:.6rem 22px;
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
}
.brand{display:inline-flex;align-items:center;gap:.75rem;min-width:0}
.brand img{width:54px;height:54px;border-radius:50%}
.brand b{
  font-family:var(--display);font-weight:400;font-size:1.12rem;color:var(--navy);
  line-height:1.1;display:block;
}
.brand small{font-family:var(--pen);font-size:1.02rem;color:var(--sage-deep);display:block;line-height:1}

.nav-main{display:flex;align-items:center;gap:.4rem}
.nav-main a{
  font-weight:700;font-size:.96rem;color:var(--ink-soft);
  padding:.45rem .95rem;border-radius:999px;
  transition:background .2s,color .2s;
}
.nav-main a:hover{background:var(--sage-wash);color:var(--navy)}
.nav-main a.is-active{background:var(--lilac-wash);color:var(--lilac-deep)}

.head-actions{display:flex;align-items:center;gap:.7rem}
.head-cta{padding:.6rem 1.25rem;font-size:.92rem}

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

/* ---- Mobile drawer ------------------------------------------------------- */
.drawer-backdrop{position:fixed;inset:0;z-index:70;background:rgba(35,53,94,.4);opacity:0;transition:opacity .3s}
.drawer-backdrop.show{opacity:1}
.nav-drawer{
  position:fixed;top:0;right:0;bottom:0;z-index:71;width:min(330px,86vw);
  background:var(--cream);display:flex;flex-direction:column;padding:1.3rem 1.5rem;
  transform:translateX(100%);transition:transform .35s var(--ease);
  border-left:1px solid var(--line);border-radius:22px 0 0 22px;
}
.nav-drawer.open{transform:none}
.drawer-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.4rem}
.drawer-word{font-family:var(--pen);font-size:1.5rem;color:var(--sage-deep)}
.drawer-close{background:none;border:0;color:var(--ink-soft);cursor:pointer}
.drawer-close .ic{width:24px;height:24px}
.drawer-links{display:flex;flex-direction:column;gap:.2rem}
.drawer-links a{
  font-weight:700;font-size:1.12rem;color:var(--ink);
  padding:.8rem 1rem;border-radius:14px;
}
.drawer-links a:hover{background:var(--sage-wash)}
.drawer-foot{margin-top:auto;display:flex;flex-direction:column;gap:.9rem}
.drawer-tel{text-align:center;font-weight:700;color:var(--sage-deep)}

/* ---- Sections + wavy page edges -------------------------------------------- */
.sec{padding:clamp(2.6rem,5.5vw,4.4rem) 0;position:relative}
.band{position:relative}
.band-sage{background:var(--sage-wash)}
.band-lilac{background:var(--lilac-wash)}
.band-white{background:var(--white)}

/* soft wavy edge between bands */
.wave{display:block;width:100%;height:42px;margin-bottom:-1px}
.wave.flip{transform:scaleY(-1);margin-bottom:0;margin-top:-1px}

/* ---- Hero — the open page ---------------------------------------------------- */
.hero{position:relative;overflow:hidden;padding:clamp(2.2rem,5vw,4rem) 0 clamp(2.4rem,5vw,3.6rem)}
.hero-grid{display:grid;grid-template-columns:minmax(0,1.12fr) minmax(0,.88fr);gap:clamp(2rem,5vw,4rem);align-items:center}
.hero-copy .note{margin-bottom:.7rem}
.hero-copy h1{margin-bottom:1.2rem}
.hero-copy h1 .hl-line{display:block}
.hero-text{color:var(--ink-soft);font-size:1.13rem;max-width:54ch;margin-bottom:1.7rem}
.hero-cta{display:flex;flex-wrap:wrap;gap:.9rem;align-items:center;position:relative}
.hero-annot{
  position:relative;margin-top:1.6rem;display:inline-flex;align-items:center;gap:.4rem;
  font-family:var(--pen);font-size:1.45rem;color:var(--gold-deep);transform:rotate(-3deg);
}
.hero-annot svg{width:46px;height:30px;color:var(--gold)}

/* crest panel with watercolor blob */
.hero-art{position:relative;display:grid;place-items:center;min-height:340px}
.hero-art .blob{
  position:absolute;width:88%;aspect-ratio:1;border-radius:48% 52% 55% 45%/50% 46% 54% 50%;
  background:radial-gradient(circle at 36% 30%,var(--lilac-wash),var(--sage-wash) 75%);
  animation:blob-drift 14s ease-in-out infinite alternate;
}
@keyframes blob-drift{to{border-radius:52% 48% 45% 55%/46% 54% 46% 54%;transform:rotate(4deg)}}
.hero-art img{position:relative;width:min(330px,72%);filter:drop-shadow(0 18px 30px rgba(35,53,94,.18))}

/* ---- Consult ribbon ------------------------------------------------------------ */
.ribbon{
  background:var(--lilac-wash);
  border-block:2px dashed rgba(124,100,136,.35);
  padding:.85rem 0;text-align:center;
}
.ribbon p{
  font-family:var(--pen);font-size:clamp(1.3rem,2.6vw,1.6rem);color:var(--lilac-deep);
  display:inline-flex;align-items:center;gap:.6rem;padding:0 22px;
}
.ribbon .ic{width:20px;height:20px;color:var(--lilac)}

/* ---- Promise — note for parents -------------------------------------------------- */
.promise-head{max-width:680px;margin-bottom:1.8rem}
.promise-head .note{margin-bottom:.5rem}
.promise-head h2{margin-bottom:1rem}
.promise-head p{color:var(--ink-soft);font-size:1.1rem}
.promise-row{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem;margin-top:2rem}
.pp{
  position:relative;padding:1.3rem 1.4rem;
  border-radius:var(--r-blob);
}
.pp:nth-child(1){background:var(--sage-wash)}
.pp:nth-child(2){background:var(--gold-wash)}
.pp:nth-child(3){background:var(--lilac-wash)}
.pp h3{font-size:1.12rem;margin-bottom:.4rem;display:flex;align-items:center;gap:.5rem}
.pp h3 .ic{width:20px;height:20px;flex:0 0 20px}
.pp:nth-child(1) h3 .ic{color:var(--sage-deep)}
.pp:nth-child(2) h3 .ic{color:var(--gold-deep)}
.pp:nth-child(3) h3 .ic{color:var(--lilac-deep)}
.pp p{color:var(--ink-soft);font-size:.97rem}

/* ---- THE BOOKSHELF ----------------------------------------------------------------- */
.shelf-head{text-align:center;max-width:640px;margin:0 auto 2.2rem}
.shelf-head .note{margin-bottom:.4rem}
.shelf-head h2{margin-bottom:.8rem}
.shelf-head p{color:var(--ink-soft)}

.shelf{max-width:880px;margin:0 auto;position:relative}
.shelf-books{
  display:flex;justify-content:center;align-items:flex-end;gap:10px;
  padding:0 14px;
}
.spine{
  --c:var(--sage);
  position:relative;flex:0 1 86px;height:236px;
  background:var(--c);border-radius:9px 9px 3px 3px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:inset -6px 0 10px -6px rgba(0,0,0,.28),inset 3px 0 6px -3px rgba(255,255,255,.35);
  transition:transform .3s var(--ease),box-shadow .3s;
  transform-origin:bottom center;
}
.spine:nth-child(odd){height:218px}
.spine:nth-child(3n){height:248px}
.spine::before{ /* band detail */
  content:"";position:absolute;left:10%;right:10%;top:14px;height:7px;
  border-block:2px solid rgba(255,255,255,.55);
}
.spine::after{
  content:"";position:absolute;left:10%;right:10%;bottom:16px;height:7px;
  border-block:2px solid rgba(255,255,255,.4);
}
.spine span{
  writing-mode:vertical-rl;transform:rotate(180deg);
  font-family:var(--display);font-size:.98rem;color:#fff;
  letter-spacing:.03em;text-align:center;line-height:1.15;
  padding:1.4rem 0;max-height:100%;
}
.spine:hover,.spine:focus-visible{transform:translateY(-14px) rotate(-2deg);box-shadow:0 18px 28px -14px rgba(35,53,94,.4),inset -6px 0 10px -6px rgba(0,0,0,.28)}
.spine.c-navy{--c:var(--navy)}
.spine.c-sage{--c:var(--sage)}
.spine.c-lilac{--c:var(--lilac)}
.spine.c-gold{--c:var(--gold)}
.spine.c-teal{--c:var(--teal)}

.shelf-board{
  height:14px;border-radius:7px;background:var(--navy);
  box-shadow:0 10px 18px -10px rgba(35,53,94,.5);
  margin-top:-2px;
}
.shelf-hint{
  text-align:center;margin-top:1.1rem;
  font-family:var(--pen);font-size:1.3rem;color:var(--ink-mute);
}

/* mobile shelf → stacked horizontal books */
@media (max-width:680px){
  .shelf-books{flex-direction:column;align-items:stretch;gap:8px;padding:0}
  .spine,.spine:nth-child(odd),.spine:nth-child(3n){height:58px;flex:none}
  .spine{border-radius:8px 3px 3px 8px}
  .spine span{writing-mode:horizontal-tb;transform:none;padding:0 1.2rem}
  .spine::before{left:auto;right:14px;top:18%;bottom:18%;height:auto;width:7px;border-block:0;border-inline:2px solid rgba(255,255,255,.55)}
  .spine::after{display:none}
  .spine:hover{transform:translateX(8px)}
  .shelf-board{display:none}
}

/* ---- SEND callout ------------------------------------------------------------------- */
.send-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:clamp(1.8rem,4.5vw,3.6rem);align-items:center}
.send-copy .note{margin-bottom:.5rem}
.send-copy h2{margin-bottom:1rem}
.send-copy p{color:var(--ink-soft);font-size:1.08rem;margin-bottom:1.5rem}
.send-art{position:relative;display:grid;place-items:center;min-height:260px}
.send-art .blob{
  position:absolute;width:78%;aspect-ratio:1.1;border-radius:55% 45% 48% 52%/48% 55% 45% 52%;
  background:radial-gradient(circle at 60% 35%,var(--gold-wash),var(--lilac-wash) 80%);
}
.send-art svg,.send-art img{position:relative;width:min(250px,62%);height:auto;color:var(--navy)}

/* ---- Star trail journey ---------------------------------------------------------------- */
.journey-head{text-align:center;max-width:620px;margin:0 auto 2.4rem}
.journey-head .note{margin-bottom:.4rem}
.trail{position:relative;max-width:980px;margin:0 auto}
.trail-path{position:absolute;inset:0;width:100%;height:100%;pointer-events:none}
.trail-path path{
  fill:none;stroke:var(--gold);stroke-width:2.5;stroke-dasharray:1 10;stroke-linecap:round;opacity:.7;
}
.trail-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem;position:relative}
.tstep{text-align:center;padding:0 .4rem}
.tstep:nth-child(even){margin-top:2.6rem}
.tstep .star{width:22px;height:22px;margin:0 auto .8rem;color:var(--gold)}
.tstep:nth-child(2) .star{width:27px;height:27px}
.tstep:nth-child(3) .star{width:33px;height:33px}
.tstep:nth-child(4) .star{width:40px;height:40px}
.tstep h3{font-size:1.14rem;margin-bottom:.4rem}
.tstep p{color:var(--ink-soft);font-size:.96rem}
@media (max-width:880px){
  .trail-steps{grid-template-columns:1fr 1fr;gap:1.8rem 1.2rem}
  .tstep:nth-child(even){margin-top:0}
  .trail-path{display:none}
}
@media (max-width:520px){.trail-steps{grid-template-columns:1fr}}

/* ---- Page hero (inner pages) -------------------------------------------------------------- */
.page-hero{padding:clamp(2.2rem,4.5vw,3.4rem) 0 clamp(1rem,2vw,1.6rem);position:relative;overflow:hidden}
.page-hero .note{margin-bottom:.4rem}
.page-hero h1{max-width:22ch;margin-bottom:.9rem}
.page-hero .lede{font-size:1.12rem}
.crumb{font-size:.95rem;color:var(--ink-mute);margin-bottom:.8rem;display:flex;gap:.4rem;align-items:center}
.crumb a{color:var(--sage-deep);font-weight:700}
.crumb .ic{width:13px;height:13px}

/* ---- Subjects page entries ------------------------------------------------------------------ */
.subj-list{max-width:860px;margin:0 auto;display:flex;flex-direction:column;gap:1.1rem}
.subj{
  display:flex;gap:1.3rem;align-items:flex-start;
  background:var(--white);border-radius:var(--r-blob);
  padding:1.5rem 1.6rem;box-shadow:var(--shadow);
  border-left:10px solid var(--sage);
  transition:transform .25s var(--ease);
}
.subj:hover{transform:translateX(6px)}
.subj.c-navy{border-left-color:var(--navy)}
.subj.c-sage{border-left-color:var(--sage)}
.subj.c-lilac{border-left-color:var(--lilac)}
.subj.c-gold{border-left-color:var(--gold)}
.subj.c-teal{border-left-color:var(--teal)}
.subj h2{font-size:1.3rem;margin-bottom:.35rem}
.subj .short{font-family:var(--pen);font-size:1.3rem;color:var(--lilac-deep);margin-bottom:.5rem;display:block;line-height:1.2}
.subj p{color:var(--ink-soft);font-size:.99rem}
.subj-actions{margin-top:.9rem;display:flex;gap:1.3rem;align-items:center;flex-wrap:wrap}

/* ---- Subject detail ---------------------------------------------------------------------------- */
.detail-grid{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(0,.75fr);gap:clamp(1.8rem,4vw,3rem);align-items:start;max-width:1000px;margin:0 auto}
.detail-body p{color:var(--ink-soft);font-size:1.08rem;margin-bottom:1.1rem}
.detail-body p:first-of-type{font-size:1.16rem;color:var(--ink)}
.aside-note{
  position:sticky;top:90px;
  background:var(--white);border-radius:var(--r-blob);box-shadow:var(--shadow);
  padding:1.6rem 1.5rem;text-align:center;
  border-top:8px solid var(--gold);
}
.aside-note .note{margin-bottom:.6rem}
.aside-note ul{margin:1rem 0 1.3rem;display:flex;flex-direction:column;gap:.6rem;text-align:left}
.aside-note li{display:flex;gap:.6rem;align-items:flex-start;font-size:.97rem;color:var(--ink-soft)}
.aside-note li .ic{width:17px;height:17px;flex:0 0 17px;color:var(--sage-deep);margin-top:.2rem}
.more-row{max-width:1000px;margin:2.2rem auto 0}
.more-row .note{display:block;text-align:center;margin-bottom:1rem}
.more-spines{display:flex;flex-wrap:wrap;justify-content:center;gap:.7rem}
.more-spines a{
  --c:var(--sage);
  background:var(--c);color:#fff;font-weight:700;font-size:.92rem;
  padding:.5rem 1.1rem;border-radius:999px;transition:transform .2s var(--ease);
}
.more-spines a:hover{transform:translateY(-3px) rotate(-1deg)}
.more-spines a.c-navy{--c:var(--navy)}
.more-spines a.c-sage{--c:var(--sage)}
.more-spines a.c-lilac{--c:var(--lilac)}
.more-spines a.c-gold{--c:var(--gold)}
.more-spines a.c-teal{--c:var(--teal)}

/* ---- About ---------------------------------------------------------------------------------------- */
.about-grid{display:grid;grid-template-columns:minmax(0,.62fr) minmax(0,1.38fr);gap:clamp(2rem,4.5vw,3.6rem);align-items:start;max-width:1020px;margin:0 auto}
.about-photo{position:relative;display:grid;place-items:center}
.about-photo .blob{
  position:absolute;width:104%;aspect-ratio:1;border-radius:48% 52% 55% 45%/50% 46% 54% 50%;
  background:radial-gradient(circle at 30% 30%,var(--sage-wash),var(--lilac-wash) 80%);
}
.about-photo img{position:relative;width:min(300px,86%);border-radius:50%;border:7px solid #fff;box-shadow:var(--shadow)}
.about-photo .note{position:absolute;bottom:-6px;right:4%;transform:rotate(-5deg)}
.about-body .note{margin-bottom:.3rem}
.about-body h1{margin-bottom:1.1rem}
.about-body p{color:var(--ink-soft);font-size:1.07rem;margin-bottom:1.05rem}
.about-body p:first-of-type{font-size:1.16rem;color:var(--ink)}
.quals{
  margin:1.6rem 0;display:grid;grid-template-columns:1fr 1fr;gap:.6rem 1.4rem;
}
.quals li{display:flex;gap:.6rem;align-items:flex-start;font-size:.98rem;color:var(--ink-soft)}
.quals li .ic{width:18px;height:18px;flex:0 0 18px;color:var(--gold-deep);margin-top:.15rem}
@media (max-width:560px){.quals{grid-template-columns:1fr}}

/* ---- Contact ---------------------------------------------------------------------------------------- */
.contact-grid{display:grid;grid-template-columns:minmax(0,1.18fr) minmax(0,.82fr);gap:clamp(1.8rem,4vw,3rem);align-items:start;max-width:1040px;margin:0 auto}
.form-page{
  background:var(--white);border-radius:1.6em 1.2em 1.6em 1.2em;box-shadow:var(--shadow);
  padding:2rem 1.9rem;position:relative;
}
.form-page::before{ /* notebook margin line */
  content:"";position:absolute;top:18px;bottom:18px;left:1.05rem;width:2px;
  background:var(--lilac-wash);border-radius:2px;
}
.field{display:flex;flex-direction:column;gap:.35rem;flex:1;margin-bottom:1.05rem}
.field-row{display:flex;gap:1.1rem}
.field label{font-weight:700;font-size:.92rem;color:var(--navy)}
.field label .opt{font-weight:400;color:var(--ink-mute)}
.field input,.field select,.field textarea{
  background:var(--cream);border:2px solid var(--line);border-radius:12px;
  color:var(--ink);font-family:var(--body);font-size:1rem;
  padding:.7rem .9rem;width:100%;
  transition:border-color .2s,box-shadow .2s;
}
.field textarea{min-height:120px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--sage);box-shadow:0 0 0 4px rgba(113,143,119,.18);
}
.field select{
  appearance:none;-webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23718f77' stroke-width='2.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right .9rem center;
}
.hp{position:absolute;left:-9999px;opacity:0;height:0;overflow:hidden}
.form-note{margin-top:.9rem;font-size:.9rem;color:var(--ink-mute)}
.form-note a{color:var(--sage-deep);font-weight:700}
.gform-alt{margin-top:1rem;font-size:.95rem;color:var(--ink-mute)}
.gform-alt a{color:var(--lilac-deep);font-weight:700;border-bottom:2px dotted var(--lilac)}

.contact-aside{display:flex;flex-direction:column;gap:1rem}
.info-card{
  background:var(--white);border-radius:var(--r-blob);box-shadow:var(--shadow);
  padding:1.2rem 1.3rem;display:flex;gap:.95rem;align-items:flex-start;
}
.info-card .ic-wrap{
  flex:0 0 42px;width:42px;height:42px;border-radius:50%;
  display:grid;place-items:center;background:var(--sage-wash);color:var(--sage-deep);
}
.info-card:nth-child(2) .ic-wrap{background:var(--lilac-wash);color:var(--lilac-deep)}
.info-card:nth-child(3) .ic-wrap{background:var(--gold-wash);color:var(--gold-deep)}
.info-card .ic{width:20px;height:20px}
.info-card h4{font-family:var(--body);font-weight:800;font-size:.92rem;color:var(--navy);margin-bottom:.15rem}
.info-card a,.info-card p{font-size:.99rem;color:var(--ink-soft)}
.info-card a{font-weight:700}
.info-card a:hover{color:var(--sage-deep)}

/* ---- CTA --------------------------------------------------------------------------------------------- */
.cta{text-align:center;position:relative;overflow:hidden}
.cta .note{margin-bottom:.4rem}
.cta h2{max-width:22ch;margin:0 auto .8rem}
.cta .lede{margin:0 auto 1.7rem;text-align:center}
.cta-actions{display:flex;justify-content:center;flex-wrap:wrap;gap:.9rem}

/* ---- Legal --------------------------------------------------------------------------------------------- */
.legal{max-width:720px;margin:0 auto}
.legal h2{font-size:1.35rem;margin:1.8rem 0 .6rem}
.legal p,.legal li{color:var(--ink-soft);margin-bottom:.8rem;font-size:1rem}
.legal ul{list-style:disc;padding-left:1.4rem}
.legal a{color:var(--sage-deep);font-weight:700}

/* ---- Flash / cookie -------------------------------------------------------------------------------------- */
.flash-wrap{position:fixed;top:84px;right:18px;z-index:90;display:flex;flex-direction:column;gap:.6rem;max-width:min(420px,calc(100vw - 36px))}
.flash{
  background:var(--white);border-radius:14px;box-shadow:var(--shadow);
  border-left:6px solid var(--sage);padding:.9rem 1.2rem;font-size:.98rem;
}
.flash-error{border-left-color:#c2604e}

.cookie-bar{
  position:fixed;left:18px;right:18px;bottom:18px;z-index:80;max-width:520px;margin:0 auto;
  background:var(--navy);color:#fff;border-radius:18px;
  padding:1rem 1.3rem;display:flex;gap:1rem;align-items:center;justify-content:space-between;flex-wrap:wrap;
  box-shadow:0 18px 50px rgba(35,53,94,.4);opacity:0;transition:opacity .4s;
}
.cookie-bar p{font-size:.9rem;color:#d7dcEC;flex:1 1 240px}
.cookie-bar a{color:var(--gold);font-weight:700}

/* ---- Footer — light, friendly ------------------------------------------------------------------------------ */
.site-foot{background:var(--white);border-top:1px solid var(--line)}
.foot-grid{
  max-width:var(--wrap);margin:0 auto;padding:1.9rem 22px 1.4rem;
  display:grid;grid-template-columns:1.5fr 1fr 1fr 1.1fr;gap:1.8rem;align-items:start;
}
.foot-brand{display:flex;flex-direction:column;align-items:flex-start;gap:.4rem}
.foot-brand img{width:60px;height:60px;border-radius:50%}
.foot-tag{font-family:var(--pen);font-size:1.25rem;color:var(--sage-deep);line-height:1.2}
.foot-social{display:flex;gap:.7rem;margin-top:.3rem}
.foot-social a{
  width:36px;height:36px;border-radius:50%;display:grid;place-items:center;
  background:var(--sage-wash);color:var(--sage-deep);transition:background .2s,color .2s;
}
.foot-social a:hover{background:var(--navy);color:#fff}
.foot-social .ic{width:17px;height:17px}
.foot-col h4{font-family:var(--body);font-weight:800;font-size:.85rem;color:var(--navy);margin-bottom:.5rem}
.foot-col ul{display:flex;flex-direction:column;gap:.2rem}
.foot-col a{color:var(--ink-soft);font-size:.95rem}
.foot-col a:hover{color:var(--sage-deep)}
.foot-col p{color:var(--ink-soft);font-size:.93rem;line-height:1.6}
.foot-contact{display:block;font-weight:700;color:var(--ink);font-size:.97rem;margin-bottom:.2rem}
.foot-contact:hover{color:var(--sage-deep)}
.foot-bar{
  border-top:1px solid var(--line);
  max-width:var(--wrap);margin:0 auto;padding:.8rem 22px;
  display:flex;align-items:center;justify-content:space-between;gap:.5rem 1.8rem;flex-wrap:wrap;
  font-size:.85rem;color:var(--ink-mute);
}
.foot-legal{display:flex;gap:1.3rem}
.foot-legal a:hover{color:var(--sage-deep)}

/* ---- Reveal — gentle ------------------------------------------------------------------------------------------ */
.reveal{opacity:0;transform:scale(.985);transition:opacity .7s ease,transform .7s var(--ease)}
.reveal.in{opacity:1;transform:none}

/* Decorative motion intentionally runs under prefers-reduced-motion
   (estate rule f8c30f05); nothing here is parallax/spin-class. */
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
}

/* ---- Responsive -------------------------------------------------------------------------------------------------- */
@media (max-width:1000px){
  .promise-row{grid-template-columns:1fr}
  .foot-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:880px){
  .nav-main{display:none}
  .nav-toggle{display:block}
  .hero-grid{grid-template-columns:1fr}
  .hero-art{min-height:280px;order:-1}
  .send-grid{grid-template-columns:1fr}
  .send-art{min-height:220px}
  .detail-grid,.contact-grid,.about-grid{grid-template-columns:1fr}
  .aside-note{position:static}
  .about-photo{max-width:330px;margin:0 auto}
}
@media (max-width:560px){
  .field-row{flex-direction:column;gap:0}
  .hero-cta .btn,.cta-actions .btn{width:100%}
  .foot-grid{grid-template-columns:1fr;gap:1.2rem}
  .foot-bar{justify-content:center;text-align:center}
}
/* 360px guard — header CTA must never clip */
@media (max-width:400px){
  .head-inner{padding:.5rem 12px;gap:.5rem}
  .brand img{width:46px;height:46px}
  .brand span{display:none}
  .head-cta{padding:.5rem .8rem;font-size:.8rem}
  .nav-toggle{padding:4px}
  .wrap{padding:0 16px}
}
