*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

:root{
  --pearl:      #F3F0EB;
  --paper:      #FAF8F4;
  --silk:       #D9D1C8;
  --charcoal:   #2B2624;
  --espresso:   #4A342F;
  --taupe:      #6F6661;
  --ghost:      #9B938A;
  --garnet:     #7A1F2B;
  --rosewood:   #8C5A5A;
  --shadow:     #E7E1D9;
  --warm:       #EFE9E1;
  --ease: cubic-bezier(.19,1,.22,1);
}

/* Three-tone accent system (Design Package, Part One §01): garnet marks the
   primary emotional beat of a section; espresso carries display headings;
   rosewood is reserved for one quiet departure per page, at most. */

@font-face{
  font-family:'Steelfish Rg';
  src:url('../assets/SteelfishRg.otf') format('opentype');
  font-display:swap;font-weight:400;font-style:normal;
}

html{scroll-behavior:smooth}
body{
  background:var(--pearl);
  color:var(--charcoal);
  font-family:'Jost',sans-serif;
  font-weight:300;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

/* honest paper grain — not invented decoration, a material texture */
body::after{
  content:'';position:fixed;inset:0;z-index:9997;pointer-events:none;
  opacity:.05;mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:200px 200px;
}

/* ══════════════════════════
   PAGE-TURN TRANSITION — the feeling of turning a page, not a page-curl.
   Uses the browser's own cross-document View Transitions API: no JS
   router, no SPA rewrite, graceful no-op in browsers that don't support
   it (plain instant navigation — never a broken partial animation).
   Default duration is quick and near-ambient, so routine navigation
   within a screen (Collection <-> Contact) never feels slow; the
   slower, more deliberate turn is reserved for crossing between screens
   (Main <-> Digital Greetings), toggled by .vt-screen-switch on <html>
   (see js/screens-config.js). Horizontal drift only, a soft brightness
   dip for depth — no 3D transform, no curling corner, no page-flip
   physics. */
@view-transition{ navigation:auto; }

::view-transition-old(root),
::view-transition-new(root){
  animation-duration:.5s;
  animation-timing-function:var(--ease);
}
::view-transition-old(root){ animation-name:hh-page-out; }
::view-transition-new(root){ animation-name:hh-page-in; }

html.vt-screen-switch::view-transition-old(root),
html.vt-screen-switch::view-transition-new(root){
  animation-duration:1.15s;
}

@keyframes hh-page-out{
  from{opacity:1;transform:translateX(0);filter:brightness(1)}
  to{opacity:0;transform:translateX(-2.5%);filter:brightness(.97)}
}
@keyframes hh-page-in{
  from{opacity:0;transform:translateX(2.5%);filter:brightness(.97)}
  to{opacity:1;transform:translateX(0);filter:brightness(1)}
}

@media (prefers-reduced-motion:reduce){
  @view-transition{ navigation:none; }
}

/* ══════════════════════════
   NAV
══════════════════════════ */
#nav{
  position:fixed;top:0;left:0;right:0;z-index:800;
  padding:2rem 3.5rem;
  display:flex;align-items:center;justify-content:space-between;
  transition:background .8s var(--ease),padding .6s var(--ease),border-color .8s var(--ease);
  border-bottom:1px solid transparent;
}
#nav.scrolled{
  background:rgba(243,240,235,.96);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
  padding-top:1.2rem;padding-bottom:1.2rem;border-color:rgba(43,38,36,.06);
}
.nav-logo{display:block;width:38px;flex-shrink:0;opacity:.82;transition:opacity .3s var(--ease);text-decoration:none}
.nav-logo:hover{opacity:1}
.nav-logo svg{width:100%;height:auto;display:block}
.nav-links{display:flex;gap:3rem;list-style:none;align-items:center}
.nav-links a{font-size:.55rem;letter-spacing:.28em;text-transform:uppercase;color:var(--taupe);text-decoration:none;transition:opacity .3s var(--ease)}
.nav-links a:hover,.nav-links a.active{opacity:.7;color:var(--garnet)}
.nav-ham{display:none;flex-direction:column;gap:6px;background:none;border:none;cursor:pointer}
.nav-ham span{display:block;width:22px;height:1px;background:var(--charcoal);opacity:.38}

/* ══════════════════════════
   MOBILE MENU
══════════════════════════ */
.mob-menu{position:fixed;inset:0;z-index:850;background:var(--paper);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3rem;opacity:0;pointer-events:none;transition:opacity .5s var(--ease)}
.mob-menu.open{opacity:1;pointer-events:all}
.mob-x{position:absolute;top:2rem;right:3rem;background:none;border:none;cursor:pointer;font-size:.52rem;letter-spacing:.3em;text-transform:uppercase;color:var(--ghost)}
.mob-mark{width:40px;opacity:.3}
.mob-tag{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:.9rem;color:var(--ghost);letter-spacing:.06em}
.mob-menu a{font-family:'Cormorant Garamond',serif;font-weight:300;font-size:2.4rem;color:var(--charcoal);text-decoration:none;opacity:.48;transition:opacity .3s var(--ease)}
.mob-menu a:hover{opacity:1;color:var(--garnet)}

/* ══════════════════════════════════════════════
   HERO — silence, then one element at a time.
   No postmark / foxing / pencil-ghost — invented aging effects that
   belong to no real photograph don't belong here (Doctrine X).
══════════════════════════════════════════════ */
#hero{
  min-height:100svh;display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;padding:9rem 2.5rem 7rem;background:var(--pearl);
}
.hero-logo{width:220px;margin-bottom:3.2rem;opacity:0}
.hero-logo svg{width:100%;height:auto;display:block}
.hero-sub{font-family:'Jost',sans-serif;font-weight:200;font-size:clamp(.52rem,.9vw,.7rem);letter-spacing:.45em;text-transform:uppercase;color:var(--ghost);margin-bottom:2.8rem;opacity:0}
.hero-jacaranda{font-family:'Cormorant Garamond',serif;font-weight:300;font-style:italic;font-size:clamp(1rem,2.2vw,1.5rem);color:var(--taupe);letter-spacing:.02em;line-height:1.7;max-width:580px;margin-bottom:3.5rem;opacity:0}
.hero-thread{display:block;width:1px;height:60px;background:linear-gradient(to bottom,transparent,var(--silk),transparent);margin:0 auto 3.5rem;opacity:0}
.hero-tagline{font-family:'Cormorant Garamond',serif;font-style:italic;font-weight:300;font-size:clamp(1.4rem,3.5vw,2.2rem);color:var(--espresso);letter-spacing:.04em;margin-bottom:5rem;opacity:0}
.hero-descent{display:flex;flex-direction:column;align-items:center;gap:.9rem;opacity:0}
.hero-descent-word{font-size:.45rem;letter-spacing:.4em;text-transform:uppercase;color:var(--ghost)}
.hero-descent-line{width:1px;height:34px;background:linear-gradient(to bottom,var(--ghost),transparent);animation:breathe 3.2s ease-in-out infinite}

/* Arrival sequence — plays once per session (JS adds .arrive, staggers via
   inline delay custom property). Settled state (repeat visits) skips
   straight to visible, no animation. */
.hero-logo.arrive,.hero-sub.arrive,.hero-jacaranda.arrive,.hero-thread.arrive,.hero-tagline.arrive,.hero-descent.arrive{
  animation:fadeUp 1s var(--ease) forwards;animation-delay:var(--d,0s);
}
.hero-logo.settled,.hero-sub.settled,.hero-jacaranda.settled,.hero-thread.settled,.hero-tagline.settled,.hero-descent.settled{opacity:1}
@keyframes fadeUp{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}
@keyframes breathe{0%,100%{opacity:.2}50%{opacity:.58}}

/* ══════════════════════════════════════════════
   THE LETTER
══════════════════════════════════════════════ */
#letter{padding:12rem 2.5rem;max-width:840px;margin:0 auto;position:relative;background:var(--pearl)}
#letter::before{content:'';position:absolute;left:2rem;top:8rem;bottom:8rem;width:1px;background:linear-gradient(to bottom,transparent,rgba(122,31,43,.1) 18%,rgba(122,31,43,.1) 82%,transparent)}
.letter-salutation{font-family:'Cormorant Garamond',serif;font-style:italic;font-weight:300;font-size:1.15rem;color:var(--ghost);margin-bottom:3rem;padding-left:2rem}
.letter-body{font-family:'Cormorant Garamond',serif;font-weight:300;font-size:clamp(1.3rem,2.8vw,2rem);line-height:1.92;color:var(--charcoal);padding-left:2rem}
.letter-body em{font-style:italic;color:var(--garnet);text-decoration:underline;text-decoration-color:rgba(122,31,43,.18);text-underline-offset:5px;text-decoration-thickness:1px}
.letter-body strong{font-weight:300;color:var(--espresso)}
.letter-sign{margin-top:4rem;padding-left:2rem}
.letter-sign-name{font-family:'Cormorant Garamond',serif;font-style:italic;font-weight:400;font-size:1.65rem;color:var(--taupe);display:block;margin-bottom:.5rem}
.letter-sign-sub{font-size:.48rem;letter-spacing:.3em;text-transform:uppercase;color:var(--ghost)}
.letter-ps{margin-top:3.5rem;padding:2rem 0 0 2rem;border-top:1px solid rgba(43,38,36,.06);font-family:'Cormorant Garamond',serif;font-style:italic;font-weight:300;font-size:1.05rem;line-height:1.85;color:var(--ghost)}
.letter-ps strong{color:var(--taupe);font-weight:300;font-style:normal}

/* ══════════════════════════════════════════════
   EDITORIAL — the one deliberate real photograph on Home
══════════════════════════════════════════════ */
#editorial{display:grid;grid-template-columns:1.15fr 1fr;min-height:86vh;background:var(--warm);border-top:1px solid rgba(43,38,36,.05);border-bottom:1px solid rgba(43,38,36,.05)}
.ed-image{position:relative;overflow:hidden;background:#100d0b;display:flex;align-items:center;justify-content:center}
.ed-image img{width:100%;height:100%;object-fit:contain;display:block}
.ed-caption{display:flex;flex-direction:column;justify-content:center;padding:7rem 5.5rem;background:var(--paper);position:relative}
.ed-caption::before{content:'';position:absolute;left:0;top:12%;bottom:12%;width:1px;background:linear-gradient(to bottom,transparent,rgba(122,31,43,.1),rgba(122,31,43,.1),transparent)}
.ed-label{font-size:.48rem;letter-spacing:.4em;text-transform:uppercase;color:var(--ghost);margin-bottom:2.5rem;display:block}
.ed-statement{font-family:'Cormorant Garamond',serif;font-weight:300;font-size:clamp(1.7rem,3.5vw,2.8rem);line-height:1.35;color:var(--espresso);letter-spacing:-.015em;margin-bottom:2.5rem}
.ed-statement em{font-style:italic;color:var(--garnet)}
.ed-bar{display:block;width:28px;height:1px;background:var(--garnet);opacity:.32;margin-bottom:2.5rem}
.ed-body{font-family:'Cormorant Garamond',serif;font-weight:300;font-style:italic;font-size:1.05rem;line-height:1.95;color:var(--ghost);max-width:360px}

/* ══════════════════════════════════════════════
   TICKER — decorative/ambient only, not navigation
══════════════════════════════════════════════ */
.ticker{overflow:hidden;white-space:nowrap;background:var(--charcoal);padding:1.05rem 0}
.ticker-inner{display:inline-flex;gap:4rem;animation:tickerScroll 55s linear infinite;will-change:transform}
.ticker-inner span{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:.78rem;color:rgba(243,240,235,.42)}
@keyframes tickerScroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ══════════════════════════════════════════════
   DISCOVERY — Home collection preview (rendered from CATALOGUE)
   Commerce Doctrine: no price here; CTA hidden until hover on
   hover-capable pointers (this is the "preview" state).
══════════════════════════════════════════════ */
#discovery{background:var(--paper);position:relative}
#discovery::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(to right,transparent,rgba(122,31,43,.18),transparent)}
.disc-head{padding:6rem 2.5rem 2.5rem;max-width:100%}
.disc-head span{display:block;font-size:.48rem;letter-spacing:.4em;text-transform:uppercase;color:var(--ghost);margin-bottom:1.5rem}
.disc-head h2{font-family:'Cormorant Garamond',serif;font-weight:300;font-size:clamp(2rem,4.5vw,3.5rem);color:var(--espresso);line-height:1.05;letter-spacing:-.02em}
.felt-row{padding:0 2.5rem 3.5rem;font-family:'Cormorant Garamond',serif;font-style:italic;font-size:.95rem;color:var(--ghost)}

.disc-panel{display:grid;grid-template-columns:1fr 1fr;min-height:92vh;border-top:1px solid rgba(43,38,36,.065)}
.disc-panel:last-child{border-bottom:1px solid rgba(43,38,36,.065)}
.disc-panel.flip{direction:rtl}
.disc-panel.flip>*{direction:ltr}
.disc-vis{position:relative;overflow:hidden;background:#1c140d;display:flex;align-items:center;justify-content:center}
.disc-vis img{width:100%;height:100%;object-fit:contain;display:block}
.disc-num{position:absolute;top:2.2rem;right:2.2rem;font-family:'Cormorant Garamond',serif;font-style:italic;font-size:.68rem;color:rgba(255,255,255,.7)}
.disc-body{display:flex;flex-direction:column;justify-content:center;padding:5rem;background:var(--paper);border-left:1px solid rgba(43,38,36,.05)}
.disc-panel.flip .disc-body{border-left:none;border-right:1px solid rgba(43,38,36,.05)}
.disc-felt{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:.82rem;color:var(--garnet);opacity:.72;margin-bottom:1.2rem}
.disc-for{font-size:.5rem;letter-spacing:.32em;text-transform:uppercase;color:var(--ghost);line-height:1.75;margin-bottom:2.4rem}
.disc-name{font-family:'Cormorant Garamond',serif;font-weight:300;font-size:clamp(2.2rem,4vw,3.5rem);color:var(--espresso);line-height:.95;margin-bottom:2.5rem}
.disc-name em{font-style:italic;color:var(--garnet)}
.disc-quote{font-family:'Cormorant Garamond',serif;font-style:italic;font-weight:300;font-size:1.15rem;line-height:1.9;color:var(--ghost);max-width:300px;margin-bottom:3.5rem}
.disc-cta{display:inline-flex;align-items:center;gap:1rem;font-size:.5rem;letter-spacing:.28em;text-transform:uppercase;color:var(--charcoal);text-decoration:none;border-bottom:1px solid rgba(43,38,36,.22);padding-bottom:3px;width:fit-content;transition:opacity .3s var(--ease)}
.disc-cta:hover{opacity:.7}
.disc-cta span{transition:transform .3s var(--ease)}
.disc-cta:hover span{transform:translateX(4px)}
@media (hover:hover) and (pointer:fine){
  .disc-cta{opacity:0}
  .disc-panel:hover .disc-cta,.disc-cta:focus{opacity:1}
  .disc-panel:hover .disc-cta:hover{opacity:.7}
}

/* ══════════════════════════════════════════════
   GRANDMOTHER — the emotional core, no imagery
══════════════════════════════════════════════ */
#grandmother{padding:14rem 2.5rem;background:var(--pearl);text-align:center}
.gm-label{font-size:.48rem;letter-spacing:.4em;text-transform:uppercase;color:var(--ghost);margin-bottom:4.5rem;display:block}
.gm-text{font-family:'Cormorant Garamond',serif;font-weight:300;font-size:clamp(1.65rem,4vw,3.1rem);line-height:1.68;color:var(--charcoal);max-width:760px;margin:0 auto}
.gm-text em{font-style:italic;color:var(--garnet)}
.gm-text strong{font-weight:300;color:var(--espresso)}
.gm-sub{display:block;margin-top:3.2rem;font-family:'Cormorant Garamond',serif;font-style:italic;font-weight:300;font-size:clamp(1rem,2.1vw,1.4rem);color:var(--taupe)}

/* ══════════════════════════════════════════════
   MANIFESTO
══════════════════════════════════════════════ */
#manifesto{background:var(--charcoal);padding:8rem 3rem}
.manifesto-grid{max-width:1000px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr 1fr;gap:3.5rem}
.manifesto-item{border-top:1px solid rgba(122,31,43,.18);padding-top:1.6rem}
.manifesto-n{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:.68rem;color:rgba(122,31,43,.6)}
.manifesto-p{font-family:'Cormorant Garamond',serif;font-weight:300;font-size:clamp(1.6rem,3vw,2.6rem);line-height:1.15;color:rgba(243,240,235,.65);margin-top:1.9rem}

/* ══════════════════════════════════════════════
   KEEP — a small, real, tightly-cropped detail; never competes
   with the editorial photograph above it
══════════════════════════════════════════════ */
#keep{background:var(--shadow);padding:10rem 3rem}
.keep-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:flex-end;max-width:900px;margin:0 auto}
.keep-lbl{display:block;font-size:.48rem;letter-spacing:.38em;text-transform:uppercase;color:var(--ghost);margin-bottom:5rem}
.keep-words{font-family:'Cormorant Garamond',serif;font-weight:300;font-size:clamp(1.5rem,3.5vw,2.7rem);line-height:1.68;color:var(--espresso);max-width:520px}
.keep-words span{display:block}
.keep-obj{display:flex;justify-content:flex-end;align-items:flex-end;padding-bottom:1rem}
.keep-card{width:220px;transform:rotate(1deg);box-shadow:4px 10px 30px rgba(43,38,36,.2);background:var(--warm)}
.keep-card img{width:100%;height:auto;display:block;object-fit:contain}

/* ══════════════════════════════════════════════
   STILLNESS
══════════════════════════════════════════════ */
#stillness{padding:16rem 3rem;background:var(--pearl);text-align:center}
.still-line{font-family:'Cormorant Garamond',serif;font-weight:300;font-style:italic;font-size:clamp(1.2rem,3vw,2rem);color:var(--ghost);letter-spacing:.04em;line-height:1.7;opacity:.7}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
#about{background:var(--charcoal);padding:10rem 3rem}
.about-wrap{max-width:740px;margin:0 auto}
.about-lbl{display:block;font-size:.48rem;letter-spacing:.38em;text-transform:uppercase;color:rgba(122,31,43,.45);margin-bottom:3.8rem}
.about-head{font-family:'Cormorant Garamond',serif;font-weight:300;font-size:clamp(2.2rem,5vw,4.1rem);line-height:1.1;color:var(--pearl);margin-bottom:3.8rem}
.about-head em{font-style:italic;color:var(--rosewood);text-decoration:underline;text-decoration-color:rgba(140,90,90,.22);text-underline-offset:7px;text-decoration-thickness:1px}
.about-p{font-family:'Cormorant Garamond',serif;font-weight:300;font-size:1.15rem;line-height:2.1;color:rgba(243,240,235,.48);margin-bottom:1.9rem}
.about-pull{margin-top:4rem;padding:2rem 2rem 2rem 2.4rem;border-left:2px solid rgba(122,31,43,.24);background:rgba(122,31,43,.035)}
.about-pull p{font-family:'Cormorant Garamond',serif;font-style:italic;font-weight:300;font-size:1.2rem;line-height:1.82;color:rgba(243,240,235,.6)}
.about-sign{margin-top:3.8rem;font-size:.48rem;letter-spacing:.32em;text-transform:uppercase;color:rgba(122,31,43,.26)}

/* ── FOOTER STATEMENT ── */
.foot-statement{background:var(--charcoal);text-align:center;padding:4.5rem 2rem 2.5rem;border-top:1px solid rgba(122,31,43,.12)}
.foot-stmt{font-family:'Cormorant Garamond',serif;font-style:italic;font-weight:300;font-size:clamp(1.3rem,3.5vw,2.3rem);color:rgba(243,240,235,.28);letter-spacing:.05em}

/* ── FOOTER — real Full Logo (light ink) + brandmark (light ink) ── */
footer{background:var(--charcoal);border-top:1px solid rgba(243,240,235,.045);padding:3.5rem 3rem;display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:2rem}
.foot-logo{width:150px;opacity:.85}
.foot-logo svg{width:100%;height:auto;display:block}
.foot-nav{display:flex;gap:2.5rem;list-style:none;justify-content:center}
.foot-nav a{font-size:.5rem;letter-spacing:.22em;text-transform:uppercase;color:rgba(243,240,235,.4);text-decoration:none;transition:opacity .3s var(--ease)}
.foot-nav a:hover{opacity:.7}
.foot-bm{display:flex;justify-content:flex-end;opacity:.7}
.foot-bm svg{width:30px}

/* ══════════════════════════════════════════════
   COLLECTION PAGE
══════════════════════════════════════════════ */
.coll-intro{padding:6rem 2rem 0;max-width:1180px;margin:6rem auto 0}
#coll-hero{background:var(--paper);text-align:center;padding:4rem 2.5rem 2rem}
.coll-crumb{display:block;font-size:.48rem;letter-spacing:.4em;text-transform:uppercase;color:var(--ghost);margin-bottom:1.6rem}
#coll-hero h1{font-family:'Cormorant Garamond',serif;font-weight:300;font-size:clamp(2.4rem,5.5vw,4.2rem);color:var(--espresso);line-height:1.05;letter-spacing:-.02em;margin-bottom:2.4rem}
.coll-felt-links{display:flex;flex-wrap:wrap;gap:.5rem 1.8rem;justify-content:center}
.coll-felt-links a{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:.95rem;color:var(--ghost);text-decoration:none}
.coll-felt-links a.active{color:var(--garnet);opacity:.75;border-bottom:1px solid rgba(122,31,43,.2);padding-bottom:2px}

/* Collection cards are not clickable as a whole tile — only "Send these
   words" is a hit target, to avoid an accidental-tap e-commerce feel. */
.coll-panel{display:grid;grid-template-columns:1fr 1fr;min-height:94vh;border-top:1px solid rgba(43,38,36,.08);scroll-margin-top:100px}
.coll-panel:last-child{border-bottom:1px solid rgba(43,38,36,.08)}
.coll-panel.flip{direction:rtl}
.coll-panel.flip>*{direction:ltr}
.coll-vis{position:relative;overflow:hidden;background:#1c140d;display:flex;align-items:center;justify-content:center}
.coll-vis img{width:100%;height:100%;object-fit:contain;display:block}
.coll-body{display:flex;flex-direction:column;justify-content:center;padding:5.5rem;background:var(--paper);border-left:1px solid rgba(43,38,36,.05)}
.coll-panel.flip .coll-body{border-left:none;border-right:1px solid rgba(43,38,36,.05)}
.coll-felt{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:.85rem;color:var(--garnet);opacity:.75;margin-bottom:1.4rem}
.coll-name{font-family:'Cormorant Garamond',serif;font-weight:300;font-size:clamp(2.4rem,4.2vw,3.8rem);color:var(--espresso);line-height:.95;margin-bottom:2.2rem}
.coll-name em{font-style:italic;color:var(--garnet)}
.coll-verse{font-family:'Cormorant Garamond',serif;font-style:italic;font-weight:300;font-size:1.2rem;line-height:1.95;color:var(--taupe);max-width:380px;margin-bottom:2.6rem}
/* verse is primary; price + CTA are secondary — smaller, quieter, but never hidden here */
.coll-commerce{display:flex;align-items:baseline;gap:2.2rem;flex-wrap:wrap}
.coll-price{font-size:.55rem;letter-spacing:.15em;color:var(--ghost)}
.coll-price strong{font-family:'Cormorant Garamond',serif;font-size:1rem;font-weight:400;color:var(--charcoal);letter-spacing:0}
.coll-send{font-size:.5rem;letter-spacing:.28em;text-transform:uppercase;color:var(--charcoal);text-decoration:none;border-bottom:1px solid rgba(43,38,36,.22);padding-bottom:3px;transition:opacity .3s var(--ease)}
.coll-send:hover{opacity:.7}

/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */
#contact{padding:11rem 2.5rem;max-width:680px;margin:0 auto;background:var(--pearl);position:relative}
#contact::before{content:'';position:absolute;left:2rem;top:7rem;bottom:7rem;width:1px;background:linear-gradient(to bottom,transparent,rgba(122,31,43,.1) 18%,rgba(122,31,43,.1) 82%,transparent)}
.contact-mark{width:44px;margin-bottom:2.5rem;margin-left:2rem;display:block}
.contact-mark svg{width:100%;height:auto;display:block}
.contact-lead{font-family:'Cormorant Garamond',serif;font-style:italic;font-weight:300;font-size:1.15rem;color:var(--ghost);margin-bottom:2.6rem;padding-left:2rem}
.contact-head{font-family:'Cormorant Garamond',serif;font-weight:300;font-size:clamp(1.2rem,2.4vw,1.6rem);line-height:1.85;color:var(--charcoal);margin-bottom:4rem;padding-left:2rem;max-width:560px}
.contact-head em{font-style:italic;color:var(--garnet)}

.contact-form{padding-left:2rem;display:flex;flex-direction:column;gap:2.2rem;max-width:460px}
.contact-field{display:flex;flex-direction:column}
.contact-field label{font-size:.5rem;letter-spacing:.3em;text-transform:uppercase;color:var(--ghost);margin-bottom:.8rem}
.contact-field input,.contact-field textarea{
  font-family:'Cormorant Garamond',serif;font-style:italic;font-size:1.3rem;color:var(--charcoal);
  background:none;border:none;border-bottom:1px solid rgba(43,38,36,.2);padding:0 0 .6rem;
  outline:none;resize:none;width:100%;transition:border-color .3s var(--ease);
}
.contact-field input:focus,.contact-field textarea:focus{border-color:var(--garnet)}
.contact-field textarea{padding-bottom:2.4rem;line-height:1.6}
.contact-submit{
  display:inline-flex;align-items:center;gap:1rem;
  font-size:.55rem;letter-spacing:.28em;text-transform:uppercase;
  color:var(--pearl);background:var(--charcoal);border:none;cursor:pointer;
  padding:1.1rem 2.4rem;width:fit-content;margin-top:.6rem;
  transition:opacity .3s var(--ease),transform .3s var(--ease);
}
.contact-submit:hover{opacity:.85;transform:scale(1.03)}
.contact-foot{padding-left:2rem;margin-top:4.5rem;font-family:'Cormorant Garamond',serif;font-style:italic;font-weight:300;font-size:.95rem;color:var(--ghost);line-height:1.85;max-width:460px}
.contact-foot a{color:var(--garnet);border-bottom:1px solid rgba(122,31,43,.25)}

/* ── REVEAL (scroll) ── */
.r{opacity:0;transform:translateY(16px);transition:opacity 1.1s var(--ease),transform 1.1s var(--ease)}
.r.in{opacity:1;transform:translateY(0)}
.d1{transition-delay:.12s} .d2{transition-delay:.26s}
.d3{transition-delay:.38s} .d4{transition-delay:.5s}

@media (prefers-reduced-motion:reduce){
  .r{opacity:1!important;transform:none!important;transition:none!important}
  .hero-logo,.hero-sub,.hero-jacaranda,.hero-thread,.hero-tagline,.hero-descent{opacity:1!important;animation:none!important}
  .hero-descent-line{animation:none!important}
  .ticker-inner{animation:none!important}
}

/* ══════════════════════════
   CONTENT PROTECTION — casual-copying deterrents on card imagery and
   message text, not screenshot-blocking (impossible for any website).
   Right-click/drag/select disabled on protected elements only (js/main.js
   fires preventDefault; this is the visual/selection half of that).
   .hh-privacy-blur is toggled on <body> by js/main.js when the tab/
   window loses focus.
══════════════════════════ */
.disc-vis img,.coll-vis img{-webkit-user-drag:none;user-drag:none}
.disc-vis img,.coll-vis img,.disc-quote,.coll-verse{filter:blur(0);transition:filter .18s var(--ease)}
.disc-quote,.coll-verse{-webkit-user-select:none;user-select:none}
body.hh-privacy-blur .disc-vis img,
body.hh-privacy-blur .coll-vis img,
body.hh-privacy-blur .disc-quote,
body.hh-privacy-blur .coll-verse{filter:blur(24px)}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media(max-width:950px){
  #editorial{grid-template-columns:1fr;min-height:auto}
  .ed-image{min-height:72vw}
  .ed-caption{padding:3.5rem 2.5rem}
  .ed-caption::before{display:none}
  .manifesto-grid{grid-template-columns:1fr;gap:3.2rem}
  .keep-grid{grid-template-columns:1fr}
  .keep-obj{justify-content:flex-start}
}
@media(max-width:700px){
  #nav{padding:1.5rem 1.8rem}
  .nav-links{display:none}
  .nav-ham{display:flex}
  .disc-panel,.disc-panel.flip,.coll-panel,.coll-panel.flip{grid-template-columns:1fr;direction:ltr;min-height:auto}
  .disc-panel.flip .disc-vis,.coll-panel.flip .coll-vis{order:-1}
  .disc-vis,.coll-vis{min-height:62vw}
  .disc-body,.coll-body{padding:3.5rem 2rem;border-left:none;border-top:1px solid rgba(43,38,36,.05)}
  .disc-panel.flip .disc-body,.coll-panel.flip .coll-body{border-right:none;border-top:1px solid rgba(43,38,36,.05)}
  #letter::before,#contact::before{display:none}
  footer{grid-template-columns:1fr;text-align:center;gap:1.5rem}
  .foot-logo{margin:0 auto}
  .foot-bm{justify-content:center}
  #grandmother{padding:7rem 2rem}
  #stillness{padding:8rem 2rem}
  #contact{padding:7rem 1.8rem 5rem}
  .contact-submit{position:sticky;bottom:1rem;width:100%;justify-content:center}
}
@media(max-width:480px){
  .hero-logo{width:min(200px,58vw)}
  .hero-jacaranda{font-size:clamp(.95rem,4vw,1.3rem)}
  .disc-head,.felt-row{padding-left:1.5rem;padding-right:1.5rem}
  .letter-body{font-size:clamp(1.15rem,5vw,1.5rem);line-height:1.95}
  .gm-text{font-size:clamp(1.4rem,6vw,2.2rem)}
}

::-webkit-scrollbar{width:2px}
::-webkit-scrollbar-thumb{background:rgba(122,31,43,.14)}
