/* ============================================================
   VERDE — botanical wellness. Bright, airy, GREEN + earth (never
   pink). Newsreader serif + DM Sans, slow organic motion. The
   flowing green "ribbon" is a fixed canvas behind; content stays
   readable if WebGL/Three fail (pale-sage gradient + leaf glow
   remain). A bright, living world, distinct from the others.
   ============================================================ */
:root {
  --paper: #f3f5ec;
  --paper-2: #eaf0df;
  --ink: #23332a;          /* deep green-ink */
  --ink-soft: #6f8073;     /* muted sage-grey */
  --forest: #1f3d2b;
  --leaf: #4f7a52;
  --sage: #a9c98f;
  --clay: #c0714a;         /* terracotta accent */
  --line: rgba(35, 51, 42, 0.14);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  background: radial-gradient(130% 120% at 72% 6%, #f8faf2 0%, var(--paper) 50%, var(--paper-2) 100%);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.62;
  overflow-x: hidden;
}
body.ready, body.ready * { cursor: none; }
@media (hover: none) { body.ready, body.ready * { cursor: auto; } .cursor { display: none; } }
em { font-style: italic; color: var(--clay); }
a { color: inherit; text-decoration: none; }

#scene { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 1; display: block; pointer-events: none; }
.leaf-glow {
  position: fixed; z-index: 0; top: -8%; right: -6%; width: 66vmax; height: 66vmax; pointer-events: none;
  background: radial-gradient(circle at center, rgba(169,201,143,0.5) 0%, rgba(79,122,82,0.16) 40%, transparent 66%);
  filter: blur(8px);
}

.cursor {
  position: fixed; top: 0; left: 0; z-index: 90; width: 32px; height: 32px; margin: -16px 0 0 -16px;
  border: 1px solid var(--leaf); border-radius: 50%; pointer-events: none;
  transition: width .35s var(--ease), height .35s var(--ease), background .35s, border-color .35s;
}
.cursor.hov { width: 60px; height: 60px; margin: -30px 0 0 -30px; background: rgba(79,122,82,0.14); border-color: transparent; }

#preloader { position: fixed; inset: 0; z-index: 100; background: var(--paper); display: grid; place-items: center; }
.pre-word { font-family: var(--serif); font-size: clamp(2.2rem, 8vw, 4rem); font-weight: 400; letter-spacing: 0.28em; color: var(--forest); padding-left: 0.28em; }

.nav, main, .foot { position: relative; z-index: 3; }
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px clamp(22px, 6vw, 84px); position: fixed; top: 0; left: 0; width: 100%; z-index: 40;
}
.brand { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; letter-spacing: 0.16em; color: var(--forest); }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 3vw, 38px); }
.nav-links a { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); transition: color .3s; }
.nav-links a:hover { color: var(--forest); }
.nav-cta { border: 1px solid var(--line); border-radius: 100px; padding: 10px 22px !important; color: var(--forest) !important; transition: background .35s var(--ease), color .35s; }
.nav-cta:hover { background: var(--forest); color: var(--paper) !important; }
@media (max-width: 700px){ .nav-links a:not(.nav-cta){ display:none; } }

/* hero */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: clamp(96px, 13vh, 140px) clamp(22px, 6vw, 84px) 48px; max-width: 1040px; }
.eyebrow { font-size: 0.78rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--clay); margin-bottom: 26px; }
.title { font-family: var(--serif); font-weight: 400; font-size: clamp(3.2rem, 13vw, 10.5rem); line-height: 0.94; letter-spacing: -0.01em; }
.ln { display: block; overflow: hidden; }
.ln > span { display: block; }
.sub { margin-top: clamp(26px, 4vw, 40px); max-width: 52ch; color: var(--ink-soft); font-size: clamp(1.04rem, 1.4vw, 1.22rem); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: clamp(32px, 4vw, 46px); }

.btn { display: inline-block; font-family: var(--sans); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 100px; padding: 16px 34px; transition: transform .4s var(--ease), background .4s, color .4s, border-color .4s; }
.btn-fill { background: var(--forest); color: var(--paper); }
.btn-fill:hover { background: var(--clay); }
.btn-line { border: 1px solid var(--line); color: var(--forest); }
.btn-line:hover { border-color: var(--forest); }
.btn.big { padding: 19px 46px; }

.cue { display: inline-flex; align-items: center; gap: 12px; margin-top: 52px; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); }
.cue i { width: 50px; height: 1px; background: var(--clay); transform-origin: left; animation: cue 2.5s var(--ease) infinite; }
@keyframes cue { 0%,100%{transform:scaleX(.3);opacity:.5} 50%{transform:scaleX(1);opacity:1} }

/* shared */
.sec-tag { font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--clay); margin-bottom: 26px; }
.sec-tag.light { color: rgba(243,245,236,0.7); }
.sec-head { margin-bottom: clamp(40px, 6vw, 70px); }
.sec-title { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 5vw, 3.7rem); line-height: 1.06; }

.ethos { padding: clamp(90px, 14vw, 180px) clamp(22px, 6vw, 84px); max-width: 1040px; }
.stmt { font-family: var(--serif); font-weight: 400; font-size: clamp(1.7rem, 4.4vw, 3.7rem); line-height: 1.24; }

/* rituals */
.rituals { padding: clamp(40px, 6vw, 80px) clamp(22px, 6vw, 84px) clamp(90px, 12vw, 150px); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.card { background: rgba(248,250,242,0.74); backdrop-filter: blur(4px); padding: clamp(30px, 3vw, 48px); min-height: 290px; display: flex; flex-direction: column; transition: background .5s var(--ease); }
.card:hover { background: rgba(248,250,242,0.96); }
.card-no { font-family: var(--serif); color: var(--clay); letter-spacing: 0.08em; font-size: 1.05rem; }
.card h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.5rem, 2.4vw, 2rem); margin-top: 22px; }
.card p { color: var(--ink-soft); margin-top: 14px; flex-grow: 1; font-size: 0.97rem; }
.from { margin-top: 24px; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--forest); }

/* garden */
.garden { padding: clamp(60px, 9vw, 120px) clamp(22px, 6vw, 84px); border-top: 1px solid var(--line); }
.garden-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(34px, 4vw, 60px); margin-top: 12px; }
.gn { font-family: var(--serif); color: var(--clay); font-size: 1.1rem; }
.garden-item h4 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.4rem, 2vw, 1.85rem); margin: 14px 0 12px; }
.garden-item p { color: var(--ink-soft); font-size: 0.96rem; max-width: 32ch; }

/* quote */
.words { padding: clamp(70px, 11vw, 150px) clamp(22px, 6vw, 84px); max-width: 1020px; }
.quote { margin-top: clamp(30px, 5vw, 56px); }
.quote blockquote { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(1.5rem, 3.6vw, 2.8rem); line-height: 1.3; }
.quote figcaption { margin-top: 18px; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }

/* begin band (deep forest) */
.begin { background: linear-gradient(180deg, var(--forest), #16291d); color: var(--paper); border-radius: 28px 28px 0 0; margin-top: clamp(40px, 6vw, 70px); }
.begin-inner { padding: clamp(80px, 13vw, 170px) clamp(22px, 6vw, 84px); max-width: 900px; }
.begin-title { font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 7vw, 5.4rem); line-height: 1; }
.begin-title em { color: var(--sage); }
.begin-sub { margin: 28px 0 40px; max-width: 46ch; color: rgba(243,245,236,0.74); font-size: clamp(1rem, 1.4vw, 1.16rem); }
.begin .btn-fill { background: var(--sage); color: var(--forest); }
.begin .btn-fill:hover { background: var(--paper); }
.begin-meta { display: flex; gap: clamp(20px, 4vw, 50px); flex-wrap: wrap; margin-top: 56px; padding-top: 30px; border-top: 1px solid rgba(243,245,236,0.18); font-size: 0.82rem; letter-spacing: 0.06em; color: rgba(243,245,236,0.68); }

.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 36px clamp(22px, 6vw, 84px); }
.foot-brand { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; letter-spacing: 0.14em; color: var(--forest); }
.foot-note { font-size: 0.74rem; color: var(--ink-soft); letter-spacing: 0.03em; align-self: center; }

@media (prefers-reduced-motion: reduce) { * { animation: none !important; scroll-behavior: auto; } }
