/* ==========================================================================
   Dream Store Enterprise — Akari light-sculpture design system

   The world: washi paper under one warm bulb. Bamboo rib structure bands
   the page. The DS monogram sits on illuminated paper. One vermilion stamp
   is the active WhatsApp mark. The volume is "shipping flat" on mobile
   and "unfolded" on desktop.

   A clean detection and catalog-current run rewrote this file from the
   dark-aurora version. The home page, the privacy page, and the 404 all
   share this design system.
   ========================================================================== */

:root {
  /* Washi / paper / light */
  --paper-0:  #0B0A09;   /* ink-washed night behind the paper */
  --paper-1:  #131110;   /* deepest shadow under a fold */
  --paper-2:  #1C1815;   /* paper plane when lit dimly */
  --paper-3:  #2A231C;   /* paper under warm glow */
  --paper-4:  #3D3127;   /* brighter paper */

  --paper-light:   #F2E6CE;  /* diffuse washi surface in the dark */
  --paper-light-2: #E7D7B8;  /* shadow side of lit paper */

  /* Bamboo ribs */
  --bamboo:  #8B6A45;
  --bamboo-2:#A8865C;

  /* Charcoal ink for body text */
  --ink:        #F0E2C5;
  --ink-soft:   #C8B894;
  --ink-muted:  #8E7E60;

  /* Gold DS — the brand mark */
  --gold:        #C9A24B;
  --gold-bright: #E8C679;
  --gold-deep:   #8A6D2E;

  /* Single vermilion stamp — the active WhatsApp action */
  --vermilion:        #C0411C;
  --vermilion-bright: #E1532A;

  /* Type */
  --type-display: "Cormorant Garamond", "Cormorant", "Times New Roman", Georgia, serif;
  --type-body:    "Newsreader", "Source Serif Pro", "Charter", Georgia, "Times New Roman", serif;
  --type-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Fluid scale */
  --t-poster:  clamp(4.5rem, 1.5rem + 13vw, 11rem);
  --t-h1:      clamp(2.8rem, 1.4rem + 6.2vw, 6.4rem);
  --t-h2:      clamp(2.0rem, 1.2rem + 3.2vw, 3.4rem);
  --t-h3:      clamp(1.15rem, .95rem + .8vw, 1.5rem);
  --t-lead:    clamp(1.05rem, .95rem + .5vw, 1.3rem);
  --t-body:    1rem;
  --t-small:   .875rem;
  --t-micro:   .72rem;

  /* Spacing */
  --gap-xs: .5rem;
  --gap-sm: .875rem;
  --gap:    1.5rem;
  --gap-lg: 2.5rem;
  --gap-xl: clamp(4rem, 9vw, 8rem);

  /* Radii — bamboo and paper are soft, not sharp */
  --r-sm: 6px;
  --r:    14px;
  --r-lg: 24px;
  --r-pill: 999px;

  --shell: 1180px;
  --shell-narrow: 720px;
  --nav-h: 78px;

  /* Motion */
  --ease:      cubic-bezier(.22, .8, .32, 1);
  --ease-out:  cubic-bezier(.16, 1, .3, 1);
  --fast:  .18s;
  --med:   .38s;
  --slow:  .72s;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1.5rem);
}

body {
  background: var(--paper-0);
  color: var(--ink);
  font-family: var(--type-body);
  font-size: var(--t-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--type-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.015em;
  text-wrap: balance;
  color: var(--paper-light);
}

p { text-wrap: pretty; }

::selection { background: var(--gold); color: var(--paper-0); }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: .8rem 1.4rem;
  background: var(--gold);
  color: var(--paper-0);
  font-weight: 700;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   The paper surface — the only "card" in the system
   -------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}

.section { padding-block: var(--gap-xl); position: relative; }

.sheet {
  background: var(--paper-light);
  color: var(--paper-0);
  border-radius: var(--r-lg);
  position: relative;
  box-shadow:
    0 1px 0 rgba(255, 240, 200, .06) inset,                 /* paper top edge */
    0 -1px 0 rgba(0, 0, 0, .55) inset,                          /* ink under-paper */
    0 30px 60px -20px rgba(0, 0, 0, .75),                      /* paper depth */
    0 80px 160px -40px rgba(201, 162, 75, .08);                 /* warm glow */
  border: 1px solid rgba(255, 230, 190, .08);
}
.sheet--ink {
  background: var(--paper-2);
  color: var(--ink);
  border-color: rgba(255, 230, 190, .04);
}
.sheet--ink h1, .sheet--ink h2, .sheet--ink h3 { color: var(--paper-light); }

.sheet--inset {
  border-radius: var(--r);
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
}

/* Bamboo rib — the structural rule across the page */
.rib {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0,
    var(--bamboo) 14%,
    var(--bamboo-2) 50%,
    var(--bamboo) 86%,
    transparent 100%
  );
  opacity: .55;
  border: 0;
  display: block;
  width: 100%;
  margin-block: clamp(2.5rem, 5vw, 4rem);
}
.rib--tall { height: 2px; opacity: .4; }

/* Warm light glow that the bulb "casts" on a sheet */
.glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 70% 90% at 50% 35%,
    rgba(232, 198, 121, .22),
    rgba(232, 198, 121, 0) 60%
  );
  border-radius: inherit;
  mix-blend-mode: screen;
}

/* --------------------------------------------------------------------------
   Headlines & links
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--type-mono);
  font-size: var(--t-micro);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--gold);
  opacity: .7;
}

.lead {
  font-size: var(--t-lead);
  color: var(--ink-soft);
  line-height: 1.72;
  max-width: 62ch;
}

.section__head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head h2 {
  font-size: var(--t-h2);
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.section__head .lead { margin-inline: 0; }
.section__head--center .lead { margin-inline: auto; }

a { transition: color var(--fast) var(--ease); }
a:hover { color: var(--gold-bright); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .92rem 1.7rem;
  border-radius: var(--r-pill);
  font-family: var(--type-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.005em;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--fast) var(--ease),
              box-shadow var(--med) var(--ease),
              background var(--med) var(--ease),
              color var(--med) var(--ease);
}

.btn:active { transform: scale(.97); }

.btn__icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform var(--med) var(--ease);
}
.btn:hover .btn__icon--arrow { transform: translateX(4px); }

/* Vermilion stamp — the only "saturated" button in the design */
.btn--stamp {
  background: var(--vermilion);
  color: #FFFFFF;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .15) inset,
    0 -1px 0 rgba(0, 0, 0, .25) inset,
    0 10px 24px -10px rgba(192, 65, 28, .55);
}
.btn--stamp:hover {
  background: var(--vermilion-bright);
  color: #FFF;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .2) inset,
    0 -1px 0 rgba(0, 0, 0, .25) inset,
    0 14px 30px -10px rgba(225, 83, 42, .7);
}

/* Gold ink — secondary CTA */
.btn--ink {
  background: var(--gold);
  color: var(--paper-0);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .15) inset,
    0 -1px 0 rgba(0, 0, 0, .25) inset,
    0 10px 24px -10px rgba(201, 162, 75, .5);
}
.btn--ink:hover {
  background: var(--gold-bright);
  color: var(--paper-0);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .22) inset,
    0 -1px 0 rgba(0, 0, 0, .25) inset,
    0 14px 30px -10px rgba(232, 198, 121, .65);
}

/* Washi outline — ghost button on dark backgrounds */
.btn--washi {
  background: transparent;
  color: var(--paper-light);
  border: 1px solid rgba(242, 230, 206, .35);
}
.btn--washi:hover {
  background: rgba(242, 230, 206, .06);
  border-color: rgba(242, 230, 206, .55);
  color: var(--paper-light);
}

/* On a paper sheet, the cream outline disappears. Use a dark ink variant. */
.hero__poster .btn--washi,
.sheet .btn--washi,
.fiber .btn--washi {
  color: var(--paper-0);
  border-color: rgba(11, 10, 9, .35);
}
.hero__poster .btn--washi:hover,
.sheet .btn--washi:hover,
.fiber .btn--washi:hover {
  background: rgba(11, 10, 9, .06);
  border-color: rgba(11, 10, 9, .55);
  color: var(--paper-0);
}

/* The "contact us" stamp is round — the ink pad itself */
.btn--round {
  width: 56px; height: 56px;
  padding: 0;
  border-radius: 50%;
}

.btn--sm { padding: .6rem 1.15rem; font-size: .85rem; letter-spacing: 0; }
.btn--lg { padding: 1.08rem 2.1rem; font-size: 1.12rem; }
.btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: height var(--med) var(--ease),
              background var(--med) var(--ease),
              border-color var(--med) var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-stuck {
  height: 64px;
  background: rgba(11, 10, 9, .85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(242, 230, 206, .08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  width: 100%;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.nav__link {
  position: relative;
  padding: .5rem .9rem;
  font-family: var(--type-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--r-sm);
  transition: color var(--fast) var(--ease), background var(--fast) var(--ease);
}
.nav__link:hover, .nav__link.is-active {
  color: var(--paper-light);
  background: rgba(242, 230, 206, .04);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: .9rem; right: .9rem;
  bottom: .28rem;
  height: 1.5px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--med) var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

/* Logo — the actual brand mark */
.logo {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
}
.logo__mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  transition: transform var(--slow) var(--ease);
}
.logo:hover .logo__mark { transform: rotate(-3deg); }
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--type-display);
  color: var(--paper-light);
}
.logo__name {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -.005em;
}
.logo__sub {
  font-family: var(--type-mono);
  font-size: .58rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .3rem;
  font-weight: 500;
}

/* Burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  border: 1px solid rgba(242, 230, 206, .2);
  background: transparent;
}
.burger__box { width: 20px; height: 14px; position: relative; }
.burger__bar {
  position: absolute;
  left: 0;
  width: 100%; height: 1.8px;
  border-radius: 2px;
  background: var(--paper-light);
  transition: transform var(--med) var(--ease), opacity var(--fast) var(--ease);
}
.burger__bar:nth-child(1) { top: 0; }
.burger__bar:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger__bar:nth-child(3) { bottom: 0; }

.burger[aria-expanded="true"] .burger__bar:nth-child(1) { transform: translateY(6.1px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bar:nth-child(3) { transform: translateY(-6.1px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--gap);
  padding: calc(var(--nav-h) + 2rem) clamp(1.5rem, 7vw, 3rem) 3rem;
  background: rgba(11, 10, 9, .96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--med) var(--ease),
              transform var(--med) var(--ease),
              visibility var(--med);
}
.drawer.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

.drawer__link {
  font-family: var(--type-display);
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--paper-light);
  padding-block: .4rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--med) var(--ease), transform var(--med) var(--ease);
}
.drawer.is-open .drawer__link { opacity: 1; transform: translateY(0); }
.drawer.is-open .drawer__link:nth-child(1) { transition-delay: .06s; }
.drawer.is-open .drawer__link:nth-child(2) { transition-delay: .11s; }
.drawer.is-open .drawer__link:nth-child(3) { transition-delay: .16s; }
.drawer.is-open .drawer__link:nth-child(4) { transition-delay: .21s; }
.drawer.is-open .drawer__link:nth-child(5) { transition-delay: .26s; }
.drawer.is-open .drawer__link:nth-child(6) { transition-delay: .31s; }
.drawer__link .num {
  font-family: var(--type-mono);
  font-size: .68rem;
  color: var(--gold);
  margin-right: 1rem;
  vertical-align: super;
  letter-spacing: .1em;
}
.drawer__foot { margin-top: var(--gap-lg); }

body.is-locked { overflow: hidden; }

/* --------------------------------------------------------------------------
   Hero — the unfolded Akari volume
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(2rem, 5vw, 4rem));
  padding-bottom: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
}

.hero__shell {
  position: relative;
}

/* The hero is a sheet of paper, lit from above */
.hero__poster {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  border-radius: var(--r-lg);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232, 198, 121, .32) 0%, transparent 60%),
    linear-gradient(180deg, var(--paper-light) 0%, var(--paper-light-2) 100%);
  color: var(--paper-0);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .55) inset,
    0 -2px 0 rgba(0, 0, 0, .35) inset,
    0 40px 90px -25px rgba(0, 0, 0, .8),
    0 0 0 1px rgba(255, 230, 190, .1);
  isolation: isolate;
}

/* Bamboo rib structure visible across the poster */
.hero__poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(139, 106, 69, .15) calc(100% - 1px), rgba(139, 106, 69, .15) 100%);
  background-size: 25% 100%;
  border-radius: inherit;
  pointer-events: none;
  opacity: .5;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  z-index: 1;
}
@media (min-width: 920px) {
  .hero__inner { grid-template-columns: 1.15fr .85fr; gap: clamp(2.5rem, 5vw, 4rem); }
}

.hero__title {
  font-family: var(--type-display);
  font-size: var(--t-h1);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--paper-0);
  margin-bottom: 1.4rem;
  max-width: 14ch;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}

.hero__lead { margin-bottom: 2.2rem; color: rgba(11, 10, 9, .72); max-width: 50ch; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
}

/* The brand mark — the DS monogram stamped on the hero sheet */
.hero__mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: var(--r);
  background: var(--paper-0);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .06) inset,
    0 30px 60px -20px rgba(0, 0, 0, .5),
    0 0 0 1px rgba(201, 162, 75, .3);
}
.hero__mark svg { width: 100%; height: auto; max-width: 280px; }

/* Floating bamboo chips: pillars (services) hanging under the hero */
.hero__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-sm);
  margin-top: clamp(2rem, 4vw, 2.8rem);
}
@media (min-width: 720px) {
  .hero__pillars { grid-template-columns: repeat(4, 1fr); }
}

.pillar-chip {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1.1rem;
  border-radius: var(--r);
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid rgba(242, 230, 206, .06);
  transition: background var(--med) var(--ease),
              border-color var(--med) var(--ease),
              transform var(--med) var(--ease);
}
.pillar-chip:hover {
  background: var(--paper-3);
  border-color: rgba(242, 230, 206, .15);
  transform: translateY(-2px);
}
.pillar-chip svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.pillar-chip span { font-family: var(--type-display); font-weight: 500; font-size: .95rem; }

/* --------------------------------------------------------------------------
   Marquee — paper tags drifting across
   -------------------------------------------------------------------------- */
.tags {
  position: relative;
  padding-block: 1.4rem;
  border-block: 1px solid rgba(242, 230, 206, .07);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.tags__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: drift 40s linear infinite;
}
.tags:hover .tags__track { animation-play-state: paused; }
.tags__item {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--type-mono);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
}
.tags__item .bamboo {
  width: 18px; height: 1px;
  background: var(--bamboo);
  flex-shrink: 0;
}
@keyframes drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   Services — the four lit volumes
   -------------------------------------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap);
}

.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border-radius: var(--r);
  background: var(--paper-2);
  border: 1px solid rgba(242, 230, 206, .06);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, .6);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--med) var(--ease),
              border-color var(--med) var(--ease),
              background var(--med) var(--ease);
  min-height: 100%;
}

.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 50% at 50% 0%, rgba(232, 198, 121, .14) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--med) var(--ease);
  z-index: -1;
}
.svc:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 230, 206, .18);
  background: var(--paper-3);
}
.svc:hover::before { opacity: 1; }

.svc__icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--paper-0);
  color: var(--gold);
  border: 1px solid rgba(201, 162, 75, .25);
  margin-bottom: 1.4rem;
  transition: color var(--med) var(--ease), border-color var(--med) var(--ease);
}
.svc:hover .svc__icon { color: var(--gold-bright); border-color: var(--gold); }
.svc__icon svg { width: 22px; height: 22px; }

.svc__title {
  font-family: var(--type-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--paper-light);
  margin-bottom: .65rem;
  letter-spacing: -.01em;
}

.svc__text {
  color: var(--ink-soft);
  font-size: .95rem;
  margin-bottom: 1.4rem;
  line-height: 1.65;
}

.svc__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.6rem; }
.tag {
  padding: .28rem .65rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(242, 230, 206, .12);
  background: rgba(242, 230, 206, .03);
  font-size: .72rem;
  color: var(--ink-soft);
  white-space: nowrap;
  font-family: var(--type-mono);
  letter-spacing: .05em;
}

.svc__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--type-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--vermilion);
  transition: gap var(--med) var(--ease), color var(--med) var(--ease);
}
.svc__link:hover { gap: .85rem; color: var(--vermilion-bright); }
.svc__link svg { width: 15px; height: 15px; }

/* --------------------------------------------------------------------------
   Fiber — single lit sheet
   -------------------------------------------------------------------------- */
.fiber {
  padding: clamp(1.8rem, 4vw, 3.4rem);
  border-radius: var(--r-lg);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(232, 198, 121, .18) 0%, transparent 65%),
    var(--paper-light);
  color: var(--paper-0);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.fiber__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .fiber__grid { grid-template-columns: 1.05fr .95fr; }
}

.fiber__title {
  font-size: var(--t-h2);
  margin-bottom: 1rem;
  color: var(--paper-0);
  letter-spacing: -.02em;
}
.fiber__text { color: rgba(11, 10, 9, .72); margin-bottom: 1.6rem; }

.fiber__providers { display: flex; flex-wrap: wrap; gap: .7rem; margin-block: 1.5rem 1.9rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.05rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(11, 10, 9, .15);
  background: rgba(255, 255, 255, .4);
  font-family: var(--type-display);
  font-weight: 600;
  font-size: .88rem;
  color: var(--paper-0);
}
.chip__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--paper-0);
  position: relative;
}
.chip__dot--unifi { background: #F5A623; }
.chip__dot--maxis { background: #00A551; }

/* Light bands — fiber strands as the page's horizon line */
.bands {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: 1.6rem;
  border-radius: var(--r);
  background: var(--paper-0);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .04) inset, 0 20px 40px -15px rgba(0, 0, 0, .4);
}
.bands__row {
  height: 12px;
  border-radius: var(--r-pill);
  background: rgba(242, 230, 206, .08);
  position: relative;
  overflow: hidden;
}
.bands__row i {
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: inherit;
  transition: width 1.2s var(--ease-out);
}
.is-visible .bands__row i { width: var(--w, 60%); }
.bands__row:nth-child(1) i { transition-delay: .05s; }
.bands__row:nth-child(2) i { transition-delay: .15s; }
.bands__row:nth-child(3) i { transition-delay: .25s; }
.bands__row:nth-child(4) i { transition-delay: .35s; }
.bands__row:nth-child(5) i { transition-delay: .45s; }

.bands__legend {
  display: flex;
  justify-content: space-between;
  margin-top: .9rem;
  font-family: var(--type-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* --------------------------------------------------------------------------
   Process — bamboo cross-section
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.7rem 1.5rem 1.7rem 4rem;
  border-radius: var(--r);
  background: var(--paper-2);
  border: 1px solid rgba(242, 230, 206, .06);
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1.5rem;
  top: 1.7rem;
  font-family: var(--type-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -.02em;
}

.step__title {
  font-family: var(--type-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--paper-light);
  margin-bottom: .5rem;
  letter-spacing: -.005em;
}

.step__text {
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.2rem, 5vw, 4rem);
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (min-width: 940px) {
  .about__grid { grid-template-columns: 1fr 1fr; }
}

.about__title {
  font-size: var(--t-h2);
  margin-bottom: 1rem;
  color: var(--paper-0);
  letter-spacing: -.02em;
}
.about__title em { font-style: italic; color: var(--gold-deep); }
.about__lead { color: rgba(11, 10, 9, .72); margin-bottom: 1.8rem; }

.pull {
  padding: 1.6rem 1.8rem;
  border-radius: var(--r);
  border-left: 2px solid var(--gold);
  background: rgba(242, 230, 206, .6);
  font-family: var(--type-display);
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--paper-0);
  letter-spacing: -.005em;
  margin-bottom: 1.8rem;
}

.pillars { display: grid; gap: var(--gap-sm); }
.pillar {
  display: flex;
  gap: 1.1rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--r);
  background: var(--paper-2);
  border: 1px solid rgba(242, 230, 206, .05);
  transition: background var(--med) var(--ease), border-color var(--med) var(--ease);
}
.pillar:hover { background: var(--paper-3); border-color: rgba(242, 230, 206, .12); }
.pillar__icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--paper-0);
  border: 1px solid rgba(201, 162, 75, .25);
  color: var(--gold);
}
.pillar__icon svg { width: 19px; height: 19px; }
.pillar h3 {
  font-family: var(--type-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--paper-light);
  margin-bottom: .3rem;
}
.pillar p { font-size: .88rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { max-width: var(--shell-narrow); margin-inline: auto; display: grid; gap: .8rem; }

.qa {
  border-radius: var(--r);
  background: var(--paper-2);
  border: 1px solid rgba(242, 230, 206, .06);
  overflow: hidden;
  transition: border-color var(--med) var(--ease);
}
.qa:hover { border-color: rgba(242, 230, 206, .14); }

.qa__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--type-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--paper-light);
  transition: color var(--fast) var(--ease);
}
.qa__q:hover { color: var(--gold-bright); }

.qa__sign {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.qa__sign::before, .qa__sign::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--gold);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform var(--med) var(--ease), opacity var(--fast) var(--ease);
}
.qa__sign::before { width: 13px; height: 1.8px; }
.qa__sign::after  { width: 1.8px; height: 13px; }
.qa__q[aria-expanded="true"] .qa__sign::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.qa__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--med) var(--ease);
}
.qa__q[aria-expanded="true"] + .qa__a { grid-template-rows: 1fr; }
.qa__a > div { overflow: hidden; }
.qa__a p {
  padding: 0 1.5rem 1.4rem;
  color: var(--ink-soft);
  font-size: .94rem;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--r-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.contact__inner { position: relative; z-index: 1; max-width: 580px; margin-inline: auto; }

.contact__title {
  font-size: var(--t-h2);
  margin-bottom: 1rem;
  color: var(--paper-0);
}

.contact__seal {
  display: inline-block;
  padding: 14px;
  border-radius: var(--r);
  background: #fff;
  margin-block: 1rem .6rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .5);
  line-height: 0;
}
.contact__seal svg { width: 144px; height: 144px; }
.contact__seal-note {
  font-family: var(--type-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.8rem;
}
@media (max-width: 640px) { .qr-wrap { display: none; } }

.contact__action {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--type-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--paper-0);
  margin-bottom: 1.6rem;
  transition: color var(--med) var(--ease);
}
.contact__action:hover { color: var(--vermilion-bright); }
.contact__action svg { width: 1.2em; height: 1.2em; color: var(--vermilion); flex-shrink: 0; }

.contact__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 1.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(11, 10, 9, .15);
  font-size: .88rem;
  color: rgba(11, 10, 9, .65);
}
.contact__meta div { display: flex; align-items: center; gap: .5rem; }
.contact__meta svg { width: 16px; height: 16px; color: var(--gold-deep); flex-shrink: 0; }

/* Floating WhatsApp stamp */
.stamp-fab {
  position: fixed;
  right: clamp(1rem, 3vw, 1.9rem);
  bottom: clamp(1rem, 3vw, 1.9rem);
  z-index: 90;
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--vermilion);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .15) inset,
    0 -1px 0 rgba(0, 0, 0, .25) inset,
    0 14px 32px -8px rgba(192, 65, 28, .55);
  transform: rotate(-8deg) scale(0);
  transition: transform var(--med) var(--ease-out), box-shadow var(--med) var(--ease), background var(--fast) var(--ease);
}
.stamp-fab.is-shown { transform: rotate(-8deg) scale(1); }
.stamp-fab:hover {
  transform: rotate(-8deg) scale(1.08);
  background: var(--vermilion-bright);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .2) inset,
    0 -1px 0 rgba(0, 0, 0, .25) inset,
    0 18px 38px -8px rgba(225, 83, 42, .7);
}
.stamp-fab svg { width: 28px; height: 28px; transform: rotate(8deg); }

.stamp-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--vermilion);
  animation: stamp-ring 2.8s var(--ease-out) infinite;
}
@keyframes stamp-ring {
  0%   { transform: scale(.6); opacity: .9; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

.stamp-fab__label {
  position: absolute;
  right: calc(100% + .7rem);
  white-space: nowrap;
  padding: .45rem .8rem;
  border-radius: var(--r-sm);
  background: rgba(11, 10, 9, .92);
  border: 1px solid rgba(242, 230, 206, .12);
  color: var(--paper-light);
  font-size: .8rem;
  font-weight: 500;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity var(--fast) var(--ease), transform var(--fast) var(--ease);
}
.stamp-fab:hover .stamp-fab__label { opacity: 1; transform: translateX(0); }
@media (max-width: 640px) { .stamp-fab__label { display: none; } }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid rgba(242, 230, 206, .07);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  margin-top: var(--gap-xl);
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
  margin-bottom: 3rem;
}
@media (min-width: 760px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
}

.footer__about {
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: .92rem;
  margin-top: 1.1rem;
}

.footer__h {
  font-family: var(--type-mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  font-weight: 500;
}

.footer__list { display: grid; gap: .65rem; }
.footer__list a {
  font-family: var(--type-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--fast) var(--ease);
  display: inline-block;
}
.footer__list a:hover { color: var(--gold-bright); }

.socials { display: flex; gap: .6rem; margin-top: 1.5rem; }
.social {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  border: 1px solid rgba(242, 230, 206, .12);
  background: rgba(242, 230, 206, .03);
  color: var(--ink-soft);
  transition: color var(--fast) var(--ease),
              border-color var(--fast) var(--ease),
              transform var(--fast) var(--ease),
              background var(--fast) var(--ease);
}
.social:hover {
  color: var(--paper-light);
  border-color: rgba(242, 230, 206, .3);
  background: rgba(242, 230, 206, .08);
  transform: translateY(-2px);
}
.social svg { width: 17px; height: 17px; }

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(242, 230, 206, .07);
  font-size: .84rem;
  color: var(--ink-muted);
}
.footer__bar nav { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.footer__bar a:hover { color: var(--gold-bright); }

/* --------------------------------------------------------------------------
   Legal / privacy page
   -------------------------------------------------------------------------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  z-index: 101;
  height: 2.5px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width .08s linear;
}

.legal-hero {
  padding-top: calc(var(--nav-h) + clamp(3.5rem, 8vw, 6rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.legal-hero h1 {
  font-size: clamp(2.4rem, 1.5rem + 4vw, 4.5rem);
  margin-bottom: 1.2rem;
  letter-spacing: -.02em;
}
.legal-hero h1 em { font-style: italic; color: var(--gold); }

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1.8rem;
  font-family: var(--type-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.legal-meta div { display: flex; align-items: center; gap: .45rem; }
.legal-meta svg { width: 14px; height: 14px; color: var(--gold); }

.legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  padding-bottom: var(--gap-xl);
}
@media (min-width: 1000px) {
  .legal-layout { grid-template-columns: 240px 1fr; }
}

/* Table of contents */
.toc { display: none; }
@media (min-width: 1000px) {
  .toc {
    display: block;
    position: sticky;
    top: calc(var(--nav-h) + 1.6rem);
    max-height: calc(100vh - var(--nav-h) - 3.5rem);
    overflow-y: auto;
    padding: 1.4rem;
    border-radius: var(--r);
    background: var(--paper-2);
    border: 1px solid rgba(242, 230, 206, .06);
    scrollbar-width: thin;
  }
}
.toc__h {
  font-family: var(--type-mono);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.toc__list { display: grid; gap: .1rem; }
.toc__link {
  display: block;
  padding: .42rem .7rem;
  border-left: 2px solid rgba(242, 230, 206, .12);
  font-family: var(--type-display);
  font-size: .92rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color var(--fast) var(--ease),
              border-color var(--fast) var(--ease),
              background var(--fast) var(--ease);
}
.toc__link:hover { color: var(--ink-soft); background: rgba(242, 230, 206, .03); }
.toc__link.is-active {
  color: var(--gold-bright);
  border-left-color: var(--gold);
  background: rgba(201, 162, 75, .08);
}

/* Prose */
.prose { max-width: 72ch; }
.prose section { scroll-margin-top: calc(var(--nav-h) + 1.8rem); }
.prose section + section { margin-top: clamp(2.4rem, 5vw, 3.6rem); }

.prose h2 {
  font-family: var(--type-display);
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.95rem);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -.015em;
  color: var(--paper-light);
  display: flex;
  align-items: baseline;
  gap: .8rem;
}
.prose h2 .n {
  font-family: var(--type-mono);
  font-size: .68rem;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: .08em;
}
.prose h3 {
  font-family: var(--type-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-block: 1.6rem .7rem;
  color: var(--paper-light);
}
.prose p { color: var(--ink-soft); margin-bottom: 1.05rem; line-height: 1.78; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--paper-light); font-weight: 600; }
.prose a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(201, 162, 75, .35); }
.prose a:hover { color: var(--gold); text-decoration-color: var(--gold); }

.prose ul {
  display: grid;
  gap: .7rem;
  margin-bottom: 1.05rem;
  padding-left: 0;
}
.prose li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.prose li::before {
  content: "";
  position: absolute;
  left: .3rem; top: .68em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.callout {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--r);
  background: rgba(201, 162, 75, .08);
  border: 1px solid rgba(201, 162, 75, .25);
  margin-block: 1.5rem;
}
.callout svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; margin-top: .18rem; }
.callout p { color: var(--ink-soft); font-size: .92rem; margin: 0; }
.callout p + p { margin-top: .6rem; }

/* Back to top */
.totop {
  position: fixed;
  left: clamp(1rem, 3vw, 1.9rem);
  bottom: clamp(1rem, 3vw, 1.9rem);
  z-index: 90;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(242, 230, 206, .15);
  background: rgba(11, 10, 9, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--med) var(--ease),
              transform var(--med) var(--ease),
              visibility var(--med),
              color var(--fast) var(--ease),
              border-color var(--fast) var(--ease);
}
.totop.is-shown { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { color: var(--gold); border-color: rgba(242, 230, 206, .35); }
.totop svg { width: 17px; height: 17px; }

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */
.nf {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.25rem 3rem;
}
.nf__code {
  font-family: var(--type-display);
  font-size: clamp(7rem, 4rem + 18vw, 16rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -.04em;
  line-height: .88;
  margin-bottom: 1.2rem;
  color: var(--gold);
}
.nf__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
  justify-content: center;
  margin-top: 2.2rem;
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .82s var(--ease-out), transform .82s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }

.js .reveal[data-delay="1"] { transition-delay: .09s; }
.js .reveal[data-delay="2"] { transition-delay: .18s; }
.js .reveal[data-delay="3"] { transition-delay: .27s; }
.js .reveal[data-delay="4"] { transition-delay: .36s; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .burger { display: flex; }
}

@media (max-width: 520px) {
  .btn { padding: .85rem 1.4rem; font-size: 1rem; }
  .hero__actions .btn { flex: 1 1 100%; }
  .contact__meta { flex-direction: column; align-items: center; gap: .9rem; }
}

/* --------------------------------------------------------------------------
   Accessibility
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .tags__track { animation: none; }
  .stamp-fab::before { animation: none; }
  .bands__row i { width: var(--w, 60%); }
}

@media (prefers-contrast: more) {
  :root {
    --ink-soft: #D4C19A;
    --ink-muted: #A89A78;
  }
}

@media print {
  .nav, .stamp-fab, .totop, .toc, .progress, .footer__bar nav, .reveal { display: none !important; }
  body { background: #fff; color: #000; }
  .prose p, .prose li { color: #222; }
  h1, h2, h3 { color: #000; }
  a { color: #000; text-decoration: underline; }
  .sheet, .svc, .qa, .pillar { border: 1px solid #ccc; background: none; box-shadow: none; }
}
