/* =========================================================
   WITH LOVE WELLNESS — Quiet Earth, Japanese-leaning
   Washi paper, hojicha tea, matcha sage, clay
   Kanso (simplicity) · Ma (negative space) · Shibui (subtle elegance)
   ========================================================= */

@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/cormorant-var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/cormorant-italic-var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-italic-var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Geist';
  src: url('../fonts/geist-var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/jetbrains-mono-var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Earth-tone palette — washi, kinari, matcha, hojicha, clay */
  --washi:        #FAF7F0;     /* paper white, slight warm cream */
  --kinari:       #F2EBDD;     /* unbleached cream — section breaks */
  --straw:        #E6DCC6;     /* deeper paper, warm */
  --reed:         #C4B89A;     /* mid neutral, like dried grass */
  --rule:         #D9CFB8;     /* hairline */
  --nezumi:       #8E8674;     /* warm grey */
  --ink:          #3D3933;     /* hojicha — primary text, never pure black */
  --ink-soft:     #5C5147;
  --matcha:       #7A8264;     /* muted sage — primary accent */
  --matcha-deep:  #565E45;
  --clay:         #A5694C;     /* terracotta — sparingly */
  --clay-soft:    #C28E73;

  /* Type */
  --serif:    'Cormorant', 'Iowan Old Style', Georgia, serif;
  --serif-alt:'Fraunces', Georgia, serif;
  --sans:     'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:     'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Spacing */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(5.5rem, 13vw, 10rem);   /* generous ma */
  --maxw: 1320px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================
   Base
   ========================================================= */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--washi);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 350;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle washi paper texture — softer than before */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.028 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.6;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--matcha); color: var(--washi); }

/* =========================================================
   Typography — quiet, light, generous
   ========================================================= */

.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--nezumi);
}
.eyebrow .dot { color: var(--matcha); }

h1, h2, h3, h4, .display {
  font-family: var(--serif);
  font-weight: 300;            /* light by default */
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 0.5em;
  text-wrap: balance;
}

.display-xl  { font-size: clamp(3rem, 9vw, 7.5rem); font-weight: 280; }
.display-lg  { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 300; }
.display-md  { font-size: clamp(1.75rem, 3.8vw, 2.85rem); font-weight: 320; }
.display-sm  { font-size: clamp(1.35rem, 2.2vw, 1.85rem); font-weight: 360; }

.serif-italic { font-style: italic; font-weight: 320; color: var(--matcha-deep); }

.lead {
  font-family: var(--serif);
  font-weight: 320;
  font-style: italic;
  font-size: clamp(1.15rem, 1.65vw, 1.5rem);
  line-height: 1.5;
  color: var(--ink-soft);
  text-wrap: balance;
}

p { margin: 0 0 1.1em; max-width: 62ch; font-weight: 350; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: var(--matcha);
}

/* =========================================================
   Layout
   ========================================================= */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); }
.section--cream { background: var(--kinari); }
.section--straw { background: var(--straw); }

/* Replaced dark sections — now light cream variants */
.section--ink {
  background: var(--kinari);
  color: var(--ink);
}
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--ink); }
.section--ink .eyebrow { color: var(--nezumi); }
.section--ink .lead { color: var(--ink-soft); }

.rule { display: block; height: 1px; background: var(--rule); border: 0; margin: 0; }

/* =========================================================
   Header / Nav — quiet, almost transparent
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  background: rgba(250, 247, 240, 0.78);
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 2rem;
}
.brand {
  font-family: var(--serif);
  font-weight: 360;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
/* Brand mark — small enso (Japanese ink circle) */
.brand-mark {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, transparent 38%, var(--matcha) 39%, var(--matcha) 50%, transparent 51%);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px 6px 7px 4px;
  border-radius: 50%;
  border: 1.4px solid var(--ink);
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(-25deg);
  opacity: 0.85;
}
.brand small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--nezumi);
  margin-top: 3px;
  line-height: 1;
}
.brand-text { line-height: 1.05; }

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--matcha);
  transition: right 0.5s var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.5rem;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  border-radius: 0;     /* sharp, paper-cut edges */
  cursor: pointer;
  transition: background 0.4s var(--ease-out), color 0.4s, border-color 0.4s, transform 0.4s var(--ease-out);
}
.btn:hover { background: var(--ink); color: var(--washi); border-color: var(--ink); }
.btn--ghost { border-color: var(--rule); color: var(--ink-soft); }
.btn--ghost:hover { background: var(--ink); color: var(--washi); border-color: var(--ink); }
.btn--paper { background: var(--washi); color: var(--ink); border-color: var(--ink); }
.btn--paper:hover { background: var(--ink); color: var(--washi); }
.btn--accent { background: var(--matcha); color: var(--washi); border-color: var(--matcha); }
.btn--accent:hover { background: var(--matcha-deep); border-color: var(--matcha-deep); }
.btn .arrow { width: 12px; height: 12px; transition: transform 0.4s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px; height: 40px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s, top 0.3s;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 24px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 80px 0 0;
    background: var(--washi);
    flex-direction: column;
    gap: 0;
    padding: 2rem var(--gutter);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--rule); }
  .nav-links a { display: block; padding: 1.5rem 0; font-size: 13px; }
}

/* =========================================================
   Hero — quieter, more breath, asymmetric
   ========================================================= */

.hero {
  position: relative;
  padding-top: clamp(4rem, 11vh, 7rem);
  padding-bottom: var(--section);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 10vw, 9rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  font-weight: 280;            /* very light */
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}
.hero-headline em {
  font-style: italic;
  color: var(--matcha-deep);
  font-weight: 300;
}
.hero-headline .ampersand {
  font-style: italic;
  color: var(--matcha-deep);
  font-weight: 280;
  display: inline-block;
  transform: translateY(-0.02em) scale(1.05);
  margin: 0 0.05em;
}
.hero-aside {
  padding-bottom: 1rem;
  position: relative;
}
.hero-aside .lead { margin-bottom: 1.75rem; }
.hero-cta { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hero-meta > div {
  padding: 1.75rem 1.75rem 1.75rem 0;
  border-right: 1px solid var(--rule);
}
.hero-meta > div:last-child { border-right: 0; padding-right: 0; }
.hero-meta .label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nezumi);
  margin-bottom: 0.65rem;
}
.hero-meta .value {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 360;
  line-height: 1.3;
  color: var(--ink);
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-headline { font-size: clamp(3rem, 14vw, 5.5rem); }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .hero-meta > div { padding: 1.25rem 1rem 1.25rem 0; }
  .hero-meta > div:nth-child(2n) { border-right: 0; padding-right: 0; }
  .hero-meta > div:nth-child(1), .hero-meta > div:nth-child(2) { border-bottom: 1px solid var(--rule); }
}

/* Hero ornament — repurposed as a quiet enso */
.hero-ornament {
  position: absolute;
  right: calc(var(--gutter) * -0.2);
  top: 2rem;
  width: clamp(110px, 16vw, 200px);
  height: auto;
  opacity: 0.7;
  pointer-events: none;
  animation: drift 18s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1.5deg); }
}

/* =========================================================
   Section header
   ========================================================= */

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}
.section-head .eyebrow { display: block; margin-bottom: 1.25rem; }
.section-head h2 { margin: 0; }
.section-head p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 320;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: var(--ink-soft);
  margin: 0;
  max-width: 54ch;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 1.25rem; padding-bottom: 1.25rem; }
}

/* =========================================================
   Two columns
   ========================================================= */

.cols-2 {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 880px) { .cols-2 { grid-template-columns: 1fr; } }

/* =========================================================
   Service cards / dossiers — paper cards
   ========================================================= */

.dossier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.dossier {
  padding: 2.5rem 2.25rem 2.5rem 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background 0.5s var(--ease-out);
}
.dossier:nth-child(2n) { padding-right: 0; padding-left: 2.25rem; border-right: 0; }
.dossier:hover { background: rgba(122, 130, 100, 0.045); }
.dossier .num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--matcha);
  margin-bottom: 1.25rem;
  display: block;
  text-transform: uppercase;
}
.dossier h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 320;
  margin-bottom: 0.6em;
}
.dossier p { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 1.5rem; line-height: 1.65; }
.dossier .meta-row {
  display: flex;
  gap: 1.75rem;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nezumi);
  border-top: 1px solid var(--rule);
  padding-top: 1.25rem;
}

@media (max-width: 760px) {
  .dossier-grid { grid-template-columns: 1fr; }
  .dossier, .dossier:nth-child(2n) {
    padding: 2rem 0;
    border-right: 0;
  }
}

/* Single accent dossier — sage */
.dossier--accent {
  background: var(--kinari);
}
.dossier--accent .num { color: var(--clay); }

/* =========================================================
   Venus showcase — LIGHT now, was dark
   ========================================================= */

.venus-hero {
  position: relative;
  background: var(--kinari);
  color: var(--ink);
  padding: clamp(5rem, 13vw, 10rem) 0;
  overflow: hidden;
}
.venus-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 40% at 80% 25%, rgba(122,130,100,0.10) 0%, transparent 60%),
    radial-gradient(45% 35% at 12% 85%, rgba(165,105,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.venus-hero .container { position: relative; }
.venus-hero h1 { color: var(--ink); }
.venus-hero .eyebrow { color: var(--nezumi); }
.venus-hero .lead { color: var(--ink-soft); }

.venus-spec {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.venus-spec > div {
  padding: 1.75rem 1.75rem 1.75rem 0;
  border-right: 1px solid var(--rule);
}
.venus-spec > div:last-child { border-right: 0; }
.venus-spec .label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--matcha);
  margin-bottom: 0.6rem;
}
.venus-spec .value {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: var(--ink);
  font-weight: 360;
  line-height: 1.35;
}

@media (max-width: 760px) {
  .venus-spec { grid-template-columns: repeat(2, 1fr); }
  .venus-spec > div:nth-child(2n) { border-right: 0; }
  .venus-spec > div:nth-child(1), .venus-spec > div:nth-child(2) { border-bottom: 1px solid var(--rule); }
}

.tech-diagram {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  height: auto;
}
.tech-pulse { animation: pulse 4s ease-in-out infinite; transform-origin: center; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.04); opacity: 1; }
}
.tech-wave {
  stroke-dasharray: 4 8;
  animation: dash 10s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -120; } }

/* =========================================================
   Treatment areas
   ========================================================= */

.treatment-areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.area {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.area:nth-child(3n) { border-right: 0; }
.area .num { font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em; color: var(--matcha); text-transform: uppercase; }
.area h4 { font-size: 1.35rem; font-weight: 340; margin: 1rem 0 0.5em; }
.area p { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.6; }
.area .icon {
  width: 44px; height: 44px;
  margin-bottom: 1rem;
  color: var(--matcha-deep);
  stroke-width: 1;
}
@media (max-width: 760px) {
  .treatment-areas { grid-template-columns: 1fr; }
  .area, .area:nth-child(3n) { border-right: 0; padding: 1.75rem 0; }
}

/* =========================================================
   Process — light cream, brush-stroke numbers
   ========================================================= */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding: 2rem 1.75rem 2rem 0;
  border-right: 1px solid var(--rule);
  position: relative;
}
.process-step:last-child { border-right: 0; padding-right: 0; }
.process-step .num {
  font-family: var(--serif);
  font-size: 3.25rem;
  font-weight: 280;
  font-style: italic;
  line-height: 1;
  color: var(--matcha);
  margin-bottom: 1.5rem;
  display: block;
}
.process-step h4 { font-size: 1.4rem; font-weight: 340; margin: 0 0 0.5em; }
.process-step p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }

@media (max-width: 760px) {
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--rule); padding-right: 0; }
  .process-step:last-child { border-bottom: 0; }
}

/* =========================================================
   Testimonials — open, no boxes
   ========================================================= */

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.testimonial {
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  background: transparent;
  border-top: 0;
}
.testimonial:nth-child(3n) { border-right: 0; }
.testimonial:nth-child(n+1) { padding-right: 2rem; }
.testimonial:nth-child(2) { padding-left: 2rem; }
.testimonial:nth-child(3) { padding-left: 2rem; padding-right: 0; }
.testimonial::before {
  content: "「";
  font-family: var(--serif);
  font-size: 2.4rem;
  font-style: normal;
  position: absolute;
  top: 1.5rem;
  left: -0.25rem;
  color: var(--matcha);
  line-height: 1;
  opacity: 0.7;
}
.testimonial:nth-child(2)::before, .testimonial:nth-child(3)::before { left: 1.6rem; }
.testimonial blockquote {
  margin: 1rem 0 1.75rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 320;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink);
}
.testimonial .attribution {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nezumi);
}
.testimonial .attribution strong { color: var(--ink); font-weight: 500; }

@media (max-width: 880px) {
  .testimonial-row { grid-template-columns: 1fr; }
  .testimonial, .testimonial:nth-child(3n) {
    border-right: 0;
    padding: 2rem 0;
  }
  .testimonial:nth-child(2), .testimonial:nth-child(3) { padding-left: 0; }
  .testimonial::before, .testimonial:nth-child(2)::before, .testimonial:nth-child(3)::before {
    left: -0.25rem;
  }
}

/* =========================================================
   Pull quote — quiet, centered, washi
   ========================================================= */
.pullquote {
  padding-block: var(--section);
  text-align: center;
  background: var(--straw);
  position: relative;
}
.pullquote blockquote {
  margin: 0 auto;
  max-width: 24ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.85rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-wrap: balance;
}
.pullquote blockquote em {
  color: var(--matcha-deep);
  font-weight: 320;
}
.pullquote cite {
  display: block;
  margin-top: 2rem;
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nezumi);
}

/* =========================================================
   CTA — LIGHT now, was dark
   ========================================================= */

.cta {
  padding-block: var(--section);
  background: var(--kinari);
  color: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: -10% -5%;
  background:
    radial-gradient(35% 28% at 50% 50%, rgba(122,130,100,0.10), transparent 70%);
  pointer-events: none;
}
.cta h2 { color: var(--ink); margin-bottom: 0.5em; }
.cta p { color: var(--ink-soft); margin: 0 auto 2.5rem; max-width: 52ch; }
.cta .eyebrow { color: var(--matcha); }

/* =========================================================
   Footer — quiet washi
   ========================================================= */

.site-footer {
  background: var(--kinari);
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
  border-top: 1px solid var(--rule);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}
.footer-grid h5 {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--matcha);
  margin: 0 0 1.5rem;
  font-weight: 400;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.7rem; font-size: 14.5px; color: var(--ink-soft); }
.footer-grid a:hover { color: var(--matcha-deep); border-bottom: 1px solid var(--matcha); }
.footer-mark {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 320;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.footer-grid .blurb { font-size: 14px; color: var(--ink-soft); max-width: 36ch; line-height: 1.65; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nezumi);
  flex-wrap: wrap;
  gap: 1rem;
}

.demo-note {
  background: var(--straw);
  color: var(--ink-soft);
  text-align: center;
  padding: 0.85rem var(--gutter);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rule);
}
.demo-note strong { color: var(--matcha-deep); font-weight: 500; }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

/* =========================================================
   Forms
   ========================================================= */

.field { display: flex; flex-direction: column; margin-bottom: 1.75rem; }
.field label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nezumi);
  margin-bottom: 0.6rem;
}
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 350;
  padding: 0.85rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.4s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-bottom-color: var(--matcha);
}
.field textarea { min-height: 130px; resize: vertical; padding-top: 0.85rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

/* =========================================================
   Reveal animations
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

.hero .reveal-init {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 1.2s var(--ease-out) forwards;
}
.hero .reveal-init[data-delay="1"] { animation-delay: 0.05s; }
.hero .reveal-init[data-delay="2"] { animation-delay: 0.2s; }
.hero .reveal-init[data-delay="3"] { animation-delay: 0.36s; }
.hero .reveal-init[data-delay="4"] { animation-delay: 0.55s; }
.hero .reveal-init[data-delay="5"] { animation-delay: 0.78s; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
