  :root {
    --paper: #F9F5EF;
    --paper-2: #F2EBDF;
    --card: #FFFDF8;
    --ink: #231E14;
    --ink-dim: #5B5140;
    --ink-faint: #A08E70;
    --line: rgba(35, 30, 20, 0.13);
    --tan: #C9B899;
    --sea: #3E9E8C;
    --sea-deep: #2C7A6B;
    --sea-ink: #10312B;
    --amber: #C47A1C;
    --amber-deep: #9E6014;
    --ember-glow: #E9A93F;
    --display: "Zen Old Mincho", "Hiragino Mincho ProN", "Songti SC", "Yu Mincho", Georgia, serif;
    --manuscript: "Cormorant Garamond", "Cochin", "Baskerville", Georgia, serif;
    --sans: "Inter", -apple-system, system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }
  body {
    background: var(--paper); color: var(--ink);
    font-family: var(--manuscript); font-size: 19px; line-height: 1.75;
    -webkit-font-smoothing: antialiased; overflow-x: hidden;
  }
  body::after {
    content: ""; position: fixed; inset: 0; z-index: 40; pointer-events: none; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  .label {
    font-family: var(--sans); font-size: 11px; font-weight: 600;
    letter-spacing: 0.34em; text-transform: uppercase; color: var(--ink-faint);
  }
  .label-amber { color: var(--amber-deep); }
  .label-sea { color: var(--sea-deep); }

  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal.in { opacity: 1; transform: none; }
  .d1 { transition-delay: 0.12s; } .d2 { transition-delay: 0.24s; } .d3 { transition-delay: 0.36s; }
  .rule {
    border: 0; height: 1px; max-width: 1096px; margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent);
    transform: scaleX(0); transition: transform 1.4s ease;
  }
  .rule.in { transform: scaleX(1); }
  @media (prefers-reduced-motion: reduce) {
    .reveal, .rule { opacity: 1 !important; transform: none !important; transition: none !important; }
  }

  /* ── Nav ── */
  .nav {
    position: relative; z-index: 3; display: flex; align-items: center;
    justify-content: space-between; max-width: 1160px; margin: 0 auto; padding: 28px 28px 0;
  }
  .nav-mark { display: flex; align-items: center; gap: 13px; text-decoration: none; }
  .nav-mark svg { width: 25px; height: 25px; }
  .nav-mark span {
    font-family: var(--display); font-size: 15px; font-weight: 500;
    letter-spacing: 0.38em; color: var(--ink);
  }
  .nav-links { display: flex; gap: 28px; }
  .nav-links a {
    font-family: var(--sans); font-size: 12px; font-weight: 500;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-dim); text-decoration: none; padding-bottom: 3px;
    border-bottom: 1px solid transparent;
  }
  .nav-links a:hover { color: var(--sea-deep); border-bottom-color: var(--sea); }
  .nav-links a.shop-link { color: var(--amber-deep); }
  @media (max-width: 560px) { .nav-links { gap: 18px; } .nav-mark span { display: none; } }

  /* ── Hero ── */
  .hero {
    position: relative; overflow: hidden; text-align: center;
    min-height: 92svh; display: flex; align-items: center; justify-content: center;
    padding: 60px 24px 80px;
  }
  #mist { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
  .hero-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }

  .enso-wrap { position: relative; width: 152px; height: 176px; margin: 0 auto 34px; }
  .enso {
    width: 152px; height: 152px;
    filter: drop-shadow(0 2px 16px rgba(62, 158, 140, 0.35));
    animation: breathe 12s ease-in-out 2.6s infinite;
  }
  .enso .stroke-main {
    stroke-dasharray: 262; stroke-dashoffset: 262;
    animation: draw 2.2s ease-out 0.3s forwards;
  }
  .enso .stroke-amber { opacity: 0; animation: fadein 1s ease 2.1s forwards; }
  @keyframes draw { to { stroke-dashoffset: 0; } }
  @keyframes fadein { to { opacity: 0.65; } }
  @keyframes breathe {
    0%   { transform: scale(0.92); filter: drop-shadow(0 2px 10px rgba(62,158,140,0.22)); }
    33%  { transform: scale(1.07); filter: drop-shadow(0 4px 26px rgba(62,158,140,0.45)); }
    100% { transform: scale(0.92); filter: drop-shadow(0 2px 10px rgba(62,158,140,0.22)); }
  }
  .breath-cue {
    position: absolute; left: 0; right: 0; bottom: 0; height: 18px;
    font-family: var(--sans); font-size: 10.5px; font-weight: 600;
    letter-spacing: 0.34em; text-transform: uppercase; color: var(--ink-faint);
    opacity: 0; animation: fadein 1s ease 2.8s forwards;
  }
  .breath-cue span { position: absolute; inset: 0; opacity: 0; }
  .breath-cue .in-cue  { animation: cueIn 12s linear 2.6s infinite; }
  .breath-cue .out-cue { animation: cueOut 12s linear 2.6s infinite; }
  @keyframes cueIn  { 0% { opacity: 0.9; } 30% { opacity: 0.9; } 33% { opacity: 0; } 100% { opacity: 0; } }
  @keyframes cueOut { 0% { opacity: 0; } 33% { opacity: 0; } 36% { opacity: 0.9; } 97% { opacity: 0.9; } 100% { opacity: 0; } }
  @media (prefers-reduced-motion: reduce) {
    .enso, .enso .stroke-main, .enso .stroke-amber, .breath-cue { animation: none !important; }
    .enso .stroke-main { stroke-dashoffset: 0; }
    .enso .stroke-amber { opacity: 0.65; }
    .breath-cue { opacity: 1; } .breath-cue .in-cue { opacity: 0.9; }
  }

  .rise { opacity: 0; transform: translateY(16px); animation: riseUp 1.1s ease forwards; }
  .r1 { animation-delay: 2.3s; } .r2 { animation-delay: 2.5s; } .r3 { animation-delay: 2.7s; }
  .r4 { animation-delay: 2.9s; } .r5 { animation-delay: 3.2s; }
  @keyframes riseUp { to { opacity: 1; transform: none; } }
  @media (prefers-reduced-motion: reduce) { .rise { animation: none; opacity: 1; transform: none; } }

  .hero h1 {
    font-family: var(--display); font-weight: 500;
    font-size: clamp(38px, 6.2vw, 72px); line-height: 1.06;
    letter-spacing: 0.26em; margin: 0 0 10px; padding-left: 0.26em;
    color: var(--ink);
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
  }
  .hero .tagline {
    font-style: italic; font-weight: 400; font-family: var(--manuscript);
    font-size: clamp(21px, 3vw, 29px); letter-spacing: 0.05em;
    color: var(--sea-deep); margin: 0 0 14px;
  }
  .hero .duality {
    font-family: var(--sans); font-size: 11.5px; font-weight: 500;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 36px;
  }
  .hero .duality b { color: var(--amber-deep); font-weight: 500; }
  .hero .duality i { color: var(--sea-deep); font-style: normal; }
  .hero .intro {
    max-width: 50ch; margin: 0 auto 42px; font-size: 20.5px; color: var(--ink-dim);
  }
  .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn {
    font-family: var(--sans); font-size: 13px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
    padding: 15px 32px; border-radius: 2px; display: inline-block;
    transition: box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  }
  .btn-ember {
    color: #FFF9EE; background: linear-gradient(160deg, var(--ember-glow), var(--amber));
    box-shadow: 0 6px 22px rgba(196, 122, 28, 0.32);
  }
  .btn-ember:hover { box-shadow: 0 8px 34px rgba(196, 122, 28, 0.5); }
  .btn-void {
    color: var(--sea-deep); border: 1px solid rgba(62, 158, 140, 0.5);
    background: rgba(62, 158, 140, 0.05);
  }
  .btn-void:hover { border-color: var(--sea); background: rgba(62, 158, 140, 0.11); }

  .social-row { display: flex; gap: 28px; justify-content: center; margin-top: 56px; flex-wrap: wrap; }
  .social-row a {
    font-family: var(--sans); font-size: 11px; font-weight: 600;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--ink-faint); text-decoration: none;
  }
  .social-row a:hover { color: var(--sea-deep); }

  /* ── Email capture (quiet, not a hero CTA) ── */
  .subscribe-line {
    margin-top: 22px; font-family: var(--sans); font-size: 11px;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint);
  }
  .subscribe-line a {
    margin-left: 8px; color: var(--sea-deep); text-decoration: underline;
    text-underline-offset: 3px; text-decoration-color: rgba(62, 158, 140, 0.4);
  }
  .subscribe-line a:hover { color: var(--sea); text-decoration-color: var(--sea); }
  .foot-subscribe { margin-top: 16px; }
  .foot-subscribe a {
    font-family: var(--sans); font-size: 12.5px; font-weight: 600;
    letter-spacing: 0.06em; color: #7FCBBC; text-decoration: none;
  }
  .foot-subscribe a:hover { color: #F9F5EF; }

  /* ── Frieze marquee ── */
  .frieze {
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    overflow: hidden; padding: 20px 0; position: relative; background: var(--paper-2);
  }
  .frieze-track { display: flex; width: max-content; animation: frieze 70s linear infinite; }
  .frieze:hover .frieze-track { animation-play-state: paused; }
  @keyframes frieze { to { transform: translateX(-50%); } }
  @media (prefers-reduced-motion: reduce) { .frieze-track { animation: none; } }
  .frieze span {
    font-family: var(--display); font-size: 15px; font-weight: 400;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--ink-faint); white-space: nowrap; padding: 0 28px;
    display: flex; align-items: center; gap: 56px;
  }
  .frieze .fd { color: var(--amber); font-size: 11px; }
  .frieze .fd.sea { color: var(--sea); }

  section { position: relative; max-width: 1160px; margin: 0 auto; padding: 96px 28px; }
  .section-head { text-align: center; margin-bottom: 58px; }
  .section-head h2 {
    font-family: var(--display); font-weight: 500;
    font-size: clamp(25px, 3.4vw, 37px); letter-spacing: 0.16em;
    margin: 18px 0 12px; padding-left: 0.16em; color: var(--ink);
  }
  .section-head p { color: var(--ink-faint); font-style: italic; font-size: 19px; margin: 0; }

  /* ── Tablets (paper cards) ── */
  .paths { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
  .tablet {
    position: relative; background: var(--card);
    border: 1px solid rgba(201, 184, 153, 0.5);
    box-shadow: 0 16px 36px rgba(35, 30, 20, 0.07);
    border-radius: 6px; padding: 42px 32px 34px;
    display: flex; flex-direction: column; gap: 12px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .tablet:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(35, 30, 20, 0.12); }
  .tablet .numeral {
    font-family: var(--display); font-size: 22px; color: var(--amber);
    line-height: 1; margin-bottom: 4px;
  }
  .tablet h3 {
    font-family: var(--display); font-weight: 500; font-size: 23px;
    letter-spacing: 0.12em; margin: 0; color: var(--ink);
  }
  .tablet p { font-size: 17.5px; color: var(--ink-dim); margin: 0; flex: 1; }
  .tablet .t-note {
    font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--ink-faint); margin-top: 6px;
  }
  .tablet a {
    font-family: var(--sans); font-size: 12.5px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
    margin-top: 18px; color: var(--sea-deep);
  }
  .tablet a.amber-link { color: var(--amber-deep); }

  /* ── Shop ── */
  .shelf { background: radial-gradient(90% 80% at 50% 0%, rgba(196, 122, 28, 0.06), transparent 60%); }
  .product {
    display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: center; padding: 20px 0;
  }
  @media (max-width: 760px) { .product { grid-template-columns: 1fr; gap: 40px; } .paper { max-width: 280px; margin: 0 auto; } }
  .paper-scene { perspective: 900px; }
  .paper {
    background: linear-gradient(165deg, #FFFEFB, #F3ECDE);
    border: 1px solid rgba(201, 184, 153, 0.55);
    border-radius: 6px; padding: 15px; position: relative; overflow: hidden;
    transform: rotate(-1.6deg);
    box-shadow: 0 26px 50px rgba(35, 30, 20, 0.16), 0 6px 16px rgba(35, 30, 20, 0.08);
    transition: transform 0.2s ease;
    animation: floaty 9s ease-in-out infinite;
    will-change: transform;
  }
  @keyframes floaty {
    0%, 100% { transform: rotate(-1.6deg) translateY(0); }
    50% { transform: rotate(-1.2deg) translateY(-8px); }
  }
  @media (prefers-reduced-motion: reduce) { .paper { animation: none; } }
  .paper .sheen {
    position: absolute; inset: -40%; pointer-events: none;
    background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,0.5) 50%, transparent 58%);
    transform: translateX(-70%);
    transition: transform 0.9s ease;
  }
  .paper:hover .sheen { transform: translateX(60%); }
  .card-face {
    aspect-ratio: 5 / 7; border-radius: 4px; padding: 26px 24px;
    background: linear-gradient(170deg, #47A18D, #35836F);
    color: #F9F5EF; display: flex; flex-direction: column;
  }
  .card-face .cat {
    font-family: var(--sans); font-size: 10px; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase; color: #FFDFAE;
  }
  .card-face .tname {
    font-family: var(--display); font-size: 25px; font-weight: 500;
    line-height: 1.3; margin-top: 12px;
  }
  .card-face .steps { margin-top: auto; font-size: 15px; line-height: 1.7; opacity: 0.95; }
  .product-info .eyebrow {
    font-family: var(--sans); font-size: 11px; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--amber-deep);
  }
  .product-info h3 {
    font-family: var(--display); font-weight: 500;
    font-size: clamp(25px, 3vw, 33px); letter-spacing: 0.06em;
    margin: 14px 0 14px; color: var(--ink);
  }
  .product-info p { font-size: 19px; color: var(--ink-dim); margin: 0 0 28px; max-width: 54ch; }
  .product-actions { display: flex; gap: 15px; flex-wrap: wrap; align-items: center; }
  .price { font-family: var(--sans); font-size: 13px; letter-spacing: 0.06em; color: var(--ink-faint); margin-top: 16px; }

  /* ── News ── */
  .news-row {
    display: flex; align-items: baseline; gap: 26px;
    padding: 24px 12px; border-bottom: 1px solid var(--line);
    text-decoration: none; color: var(--ink); transition: background 0.25s ease;
  }
  .news-row:first-of-type { border-top: 1px solid var(--line); }
  .news-row:hover { background: rgba(196, 122, 28, 0.05); }
  .news-date {
    font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--amber-deep); flex-shrink: 0; width: 92px;
  }
  .news-title { font-size: 22px; font-family: var(--display); font-weight: 400; flex: 1; }
  .news-title small { display: block; font-family: var(--manuscript); font-size: 17px; color: var(--ink-faint); margin-top: 4px; }
  .news-more { text-align: center; margin-top: 34px; }
  .news-more a {
    font-family: var(--sans); font-size: 12px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--amber-deep); text-decoration: none;
  }
  @media (max-width: 560px) { .news-row { flex-direction: column; gap: 6px; } .news-date { width: auto; } }

  /* ── Post article ── */
  .post-header { text-align: center; margin-bottom: 20px; }
  .post-title {
    font-family: var(--display); font-weight: 500;
    font-size: clamp(28px, 4.2vw, 44px); line-height: 1.2; letter-spacing: 0.06em;
    margin: 12px 0 0; padding-left: 0.06em; color: var(--ink);
  }
  .post-body { max-width: 68ch; margin: 48px auto 0; font-size: 19px; color: var(--ink-dim); }
  .post-body p { margin: 0 0 24px; }
  .post-body a { color: var(--sea-deep); }
  .post-body a:hover { color: var(--sea); }
  .post-body h2, .post-body h3 { font-family: var(--display); color: var(--ink); margin: 40px 0 16px; }
  .post-back { text-align: center; margin-top: 56px; }
  .post-back a {
    font-family: var(--sans); font-size: 12px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; color: var(--sea-deep);
  }
  .post-back a:hover { color: var(--sea); }

  /* ── Library ── */
  .media-row {
    display: flex; align-items: center; gap: 24px;
    padding: 25px 12px; border-bottom: 1px solid var(--line);
    text-decoration: none; color: var(--ink); transition: background 0.25s ease;
  }
  .media-row:first-of-type { border-top: 1px solid var(--line); }
  .media-row:hover { background: rgba(62, 158, 140, 0.06); }
  .media-kind {
    width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
    display: grid; place-items: center; color: var(--sea-deep);
    border: 1.5px solid rgba(62, 158, 140, 0.5);
    transition: background 0.3s ease, color 0.3s ease;
  }
  .media-row:hover .media-kind { background: var(--sea); color: #FFFDF8; }
  .media-kind svg { width: 16px; height: 16px; }
  .media-title { font-size: 21px; flex: 1; }
  .media-title small {
    display: block; font-family: var(--sans); font-size: 11px;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink-faint); margin-top: 4px;
  }
  .media-len { font-family: var(--sans); font-size: 12.5px; color: var(--ink-faint); }

  /* ── Quote ── */
  .quote-band { position: relative; text-align: center; padding: 120px 28px; overflow: hidden; background: var(--paper-2); }
  .quote-band .ghost {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -52%);
    font-family: var(--display); font-size: clamp(200px, 34vw, 380px); line-height: 1;
    color: rgba(35, 30, 20, 0.045);
    pointer-events: none; user-select: none;
    animation: ghostDrift 40s ease-in-out infinite alternate;
  }
  @keyframes ghostDrift {
    from { transform: translate(-52%, -52%) scale(0.98); }
    to   { transform: translate(-48%, -52%) scale(1.03); }
  }
  @media (prefers-reduced-motion: reduce) { .quote-band .ghost { animation: none; } }
  .quote-band blockquote {
    position: relative; font-style: italic; font-weight: 400;
    font-size: clamp(26px, 3.6vw, 38px); line-height: 1.55;
    max-width: 24ch; margin: 18px auto 22px; color: var(--sea-ink); text-wrap: balance;
  }
  .quote-band cite { font-style: normal; }

  /* ── Footer ── */
  footer { background: var(--sea-ink); color: rgba(249, 245, 239, 0.85); }
  .foot-inner {
    max-width: 1160px; margin: 0 auto; padding: 68px 28px 48px;
    display: flex; flex-wrap: wrap; gap: 44px; justify-content: space-between;
  }
  .foot-brand .mark-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
  .foot-brand svg { width: 32px; height: 32px; }
  .hanko {
    width: 30px; height: 30px; border-radius: 3px;
    background: var(--amber); color: #FFF6E4;
    font-family: var(--display); font-size: 17px; font-weight: 500;
    display: grid; place-items: center;
  }
  .foot-brand .wordmark {
    font-family: var(--display); font-size: 14px; font-weight: 500;
    letter-spacing: 0.38em; color: #F9F5EF;
  }
  .foot-brand p { font-style: italic; font-size: 17px; color: rgba(249, 245, 239, 0.55); margin: 8px 0 0; }
  .foot-col h4 {
    font-family: var(--sans); font-size: 10.5px; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase; color: rgba(249, 245, 239, 0.45); margin: 0 0 15px;
  }
  .foot-col a {
    display: block; font-family: var(--sans); font-size: 14px;
    color: rgba(249, 245, 239, 0.85); text-decoration: none; margin-bottom: 10px;
  }
  .foot-col a:hover { color: #7FCBBC; }
  .foot-note {
    background: var(--sea-ink);
    border-top: 1px solid rgba(249, 245, 239, 0.12);
    padding: 22px 28px 28px; text-align: center;
    font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.1em;
    color: rgba(249, 245, 239, 0.4);
  }
