:root {
  color-scheme: dark;
  --bg: #070708;
  --bg-2: #0c0c0e;
  --bg-3: #121216;
  --bg-rgb: 7, 7, 8;
  --ink-rgb: 236, 232, 225;
  --ivory: #ece8e1;
  --ivory-soft: rgba(var(--ink-rgb), 0.72);
  --ivory-mute: rgba(var(--ink-rgb), 0.46);
  --stone: #8a857c;
  --gold: #c9b08a;
  --gold-2: #e2c9a4;
  --gold-rgb: 201, 176, 138;
  --ember: #c95a3c;
  --ember-rgb: 201, 90, 60;
  --btn-hover: #111;
  --btn-hover-ink: #fff;
  --line: rgba(var(--ink-rgb), 0.09);
  --line-2: rgba(var(--ink-rgb), 0.16);
  --field-alpha: 1;
  --noise-alpha: 0.09;
  --glow-alpha: 1;
  --font-d: "Syne", system-ui, sans-serif;
  --font-b: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --nav-h: 4.5rem;
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #e6d8c6;
  --bg-2: #f3ebe0;
  --bg-3: #d6c3ab;
  --bg-rgb: 230, 216, 198;
  --ink-rgb: 46, 30, 20;
  --ivory: #2e1e14;
  --ivory-soft: rgba(var(--ink-rgb), 0.86);
  --ivory-mute: rgba(var(--ink-rgb), 0.7);
  --stone: #6b5243;
  --gold: #7a4a24;
  --gold-2: #5a361a;
  --gold-rgb: 122, 74, 36;
  --ember: #94492a;
  --ember-rgb: 148, 73, 42;
  --btn-hover: #2e1e14;
  --btn-hover-ink: #f3ebe0;
  --line: rgba(var(--ink-rgb), 0.22);
  --line-2: rgba(var(--ink-rgb), 0.32);
  --field-alpha: 0.6;
  --noise-alpha: 0.035;
  --glow-alpha: 1;
  --card: #f5eee3;
  --card-line: rgba(var(--ink-rgb), 0.16);
  --shadow:
    0 1px 2px rgba(60, 38, 20, 0.05),
    0 10px 30px -14px rgba(60, 38, 20, 0.22);
  --shadow-lg:
    0 2px 4px rgba(60, 38, 20, 0.05),
    0 24px 60px -24px rgba(60, 38, 20, 0.3);
}

html.theme-switching,
html.theme-switching body,
html.theme-switching .nav,
html.theme-switching main,
html.theme-switching .footer {
  transition: background-color 0.6s var(--ease), color 0.6s var(--ease);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--font-b);
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

body.has-cursor {
  cursor: none;
}

body.has-cursor a,
body.has-cursor button,
body.has-cursor input,
body.has-cursor textarea,
body.has-cursor label {
  cursor: none;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

img {
  max-width: 100%;
}

.noise,
.field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.noise {
  opacity: var(--noise-alpha);
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.field {
  z-index: 1;
  opacity: calc(0.55 * var(--field-alpha));
}

.cursor {
  display: none;
}

body.has-cursor .cursor {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor-ring,
.cursor-dot {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(var(--ink-rgb), 0.7);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--ivory);
}

.cursor.is-hover .cursor-ring {
  width: 72px;
  height: 72px;
  background: rgba(var(--ink-rgb), 0.08);
  border-color: transparent;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 1s var(--ease), visibility 1s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Page enter */
.nav,
main,
.footer {
  transition: opacity 1.3s var(--ease);
}

.hero-center {
  transition: transform 1.6s var(--ease);
}

body.is-loading .nav,
body.is-loading main,
body.is-loading .footer {
  opacity: 0;
}

body.is-loading .hero-center {
  transform: translateY(28px);
}

.loader-inner {
  text-align: center;
}

.loader-kicker,
.loader-sub {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--stone);
}

.loader-mark {
  width: min(72vw, 320px);
  margin: 1.4rem auto 1rem;
  color: var(--gold);
}

.loader-path {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: draw 1.4s var(--ease) 0.15s forwards;
}

.loader-word {
  margin: 0;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  letter-spacing: 0.22em;
  animation: rise 0.9s var(--ease) 0.35s both;
}

.loader-sub {
  margin-top: 0.7rem;
  animation: rise 0.9s var(--ease) 0.55s both;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  color: var(--ivory);
  background: linear-gradient(to bottom, rgba(var(--bg-rgb), 0.88), rgba(var(--bg-rgb), 0));
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-mono {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid currentColor;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links a {
  opacity: 0.7;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-status {
  display: none;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7dba6a;
  box-shadow: 0 0 0 0 rgba(125, 186, 106, 0.6);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px transparent;
  }
}

/* Theme toggle */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.2rem;
  border: 0;
  background: none;
  color: var(--ivory);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.theme-toggle:hover {
  opacity: 1;
}

.theme-toggle-track {
  position: relative;
  width: 2.1rem;
  height: 1.1rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(var(--ink-rgb), 0.06);
  transition: background 0.45s var(--ease), border-color 0.45s;
}

.theme-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(1.1rem - 6px);
  height: calc(1.1rem - 6px);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset -3px -2px 0 0 var(--bg);
  transition: transform 0.55s var(--ease), background 0.45s, box-shadow 0.45s;
}

[data-theme="light"] .theme-toggle-track {
  background: rgba(var(--gold-rgb), 0.18);
  border-color: rgba(var(--gold-rgb), 0.5);
}

[data-theme="light"] .theme-toggle-thumb {
  transform: translateX(1rem);
  box-shadow: inset 0 0 0 0 var(--bg);
}

.theme-toggle-label {
  display: grid;
  min-width: 4.4em;
  text-align: left;
}

.theme-toggle-label > span,
.menu-theme > span {
  grid-area: 1 / 1;
  transition: opacity 0.35s var(--ease), transform 0.45s var(--ease);
}

.theme-toggle-light,
[data-theme="light"] .theme-toggle-dark {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

[data-theme="light"] .theme-toggle-light {
  opacity: 1;
  transform: none;
}

.menu-theme {
  display: grid;
  justify-content: center;
  margin-top: 0.4rem;
  padding: 0.5rem 0;
  border: 0;
  background: none;
  color: var(--stone);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav-burger {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: none;
  position: relative;
}

.nav-burger span {
  position: absolute;
  left: 0.45rem;
  right: 0.45rem;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.35s var(--ease);
}

.nav-burger span:first-child {
  top: 0.95rem;
}

.nav-burger span:last-child {
  top: 1.3rem;
}

.nav-burger[aria-expanded="true"] span:first-child {
  transform: translateY(2.8px) rotate(45deg);
}

.nav-burger[aria-expanded="true"] span:last-child {
  transform: translateY(-2.8px) rotate(-45deg);
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(var(--bg-rgb), 0.96);
  display: grid;
  place-items: center;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: 0.45s var(--ease);
}

.menu.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.menu-inner {
  display: grid;
  gap: 1.1rem;
  text-align: center;
}

.menu-inner a {
  font-family: var(--font-d);
  font-size: clamp(2rem, 8vw, 3.4rem);
  font-weight: 700;
}

.menu-kicker,
.menu-cta {
  font-family: var(--font-b) !important;
}

.menu-kicker {
  font-size: 0.72rem !important;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
}

.menu-cta {
  margin-top: 1rem;
  font-size: 0.9rem !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0 1.5rem;
  border: 1px solid var(--ivory);
  background: var(--ivory);
  color: var(--bg);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  overflow: hidden;
  transition: color 0.4s var(--ease), background 0.4s, border-color 0.4s;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn:hover {
  color: var(--ivory);
}

.btn:hover::after {
  transform: none;
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
}

.btn-ghost::after {
  background: var(--ivory);
}

.btn-ghost:hover {
  color: var(--bg);
}

.btn-sm {
  min-height: 2.4rem;
  padding: 0 1rem;
  font-size: 0.68rem;
}

.nav .btn {
  background: var(--ivory);
  color: var(--bg);
  border-color: var(--ivory);
}

.nav .btn::after {
  background: var(--btn-hover);
}

.nav .btn:hover {
  color: var(--btn-hover-ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + 2rem) var(--pad) 6rem;
  overflow: hidden;
}

.hero-rail {
  position: absolute;
  left: var(--pad);
  top: calc(var(--nav-h) + 1.2rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-center {
  position: relative;
  z-index: 3;
  width: min(100%, 1180px);
  text-align: center;
}

.hero-kicker {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.4rem;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-kicker .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-title {
  position: relative;
  margin: 0;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(3.4rem, 14.5vw, 12.5rem);
  line-height: 0.86;
  letter-spacing: -0.045em;
  user-select: none;
}

.hero-outline,
.hero-fill {
  display: flex;
  justify-content: center;
  white-space: nowrap;
}

.hero-outline b,
.hero-fill b {
  font-weight: inherit;
}

.hero-outline b:last-child {
  -webkit-text-stroke-color: rgba(var(--gold-rgb), 0.95);
}

.hero-fill b:last-child {
  color: var(--gold-2);
}

.hero-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--ink-rgb), 0.82);
}

.hero-fill {
  position: absolute;
  inset: 0;
  color: var(--ivory);
  clip-path: circle(28% at 50% 42%);
  will-change: clip-path;
}

.hero-lead {
  max-width: 42rem;
  margin: 1.6rem auto 2rem;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--ivory-soft);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-meta {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 2.2rem;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 1.5rem;
}

.hero-meta small {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.hero-meta p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ivory-soft);
}

.horizon {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  pointer-events: none;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, #000 28%, #000 70%, transparent);
}

.horizon-grid {
  position: absolute;
  left: 50%;
  bottom: -20%;
  width: 180%;
  height: 140%;
  transform: translateX(-50%) perspective(520px) rotateX(68deg);
  background-image:
    linear-gradient(90deg, rgba(var(--gold-rgb), 0.16) 1px, transparent 1px),
    linear-gradient(rgba(var(--gold-rgb), 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: grid-drift 22s linear infinite;
}

.horizon-glow {
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: 42vw;
  height: 18vw;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(var(--gold-rgb), 0.22), transparent 68%);
  filter: blur(8px);
  opacity: var(--glow-alpha);
}

@keyframes grid-drift {
  to {
    background-position: 0 72px;
  }
}

.scroll-hint {
  position: absolute;
  right: var(--pad);
  bottom: 2.2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
}

.scroll-hint i {
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: drop 1.8s var(--ease) infinite;
}

@keyframes drop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* Marquee */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 0.95rem 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-d);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-mute);
}

.marquee-track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Shared */
.section-index {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
}

.section-index.light {
  color: var(--ivory-mute);
}

.display {
  margin: 0;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(2.1rem, 5.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.reveal,
.reveal-words {
  --d: 0;
}

/* Approach */
.approach,
.services,
.atelier,
.contact {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  position: relative;
  z-index: 3;
}

.approach-grid,
.atelier-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.approach-text {
  max-width: 38rem;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ivory-soft);
}

.approach-panel {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.panel-card,
.panel-stat {
  padding: 1.4rem 1.35rem;
  background: var(--bg-2);
}

.panel-num {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.panel-card h3,
.atelier-points strong {
  margin: 0 0 0.45rem;
  font-family: var(--font-d);
  font-size: 1.15rem;
}

.panel-card p,
.atelier-points span {
  margin: 0;
  color: var(--ivory-mute);
  font-weight: 300;
  line-height: 1.55;
}

.panel-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.panel-stat strong {
  font-family: var(--font-d);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--gold);
}

.panel-stat span {
  color: var(--ivory-soft);
  font-size: 0.92rem;
}

/* Path */
.path {
  height: 320vh;
  position: relative;
}

.path-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 0.5rem) 0 2rem;
  background:
    radial-gradient(900px 380px at 80% 20%, rgba(var(--gold-rgb), 0.07), transparent 60%),
    var(--bg-2);
  overflow: hidden;
}

.path-intro,
.section-index {
  padding-inline: var(--pad);
}

.path-intro {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.path-intro p {
  max-width: 22rem;
  margin: 0;
  color: var(--ivory-mute);
  font-weight: 300;
}

.path-viewport {
  overflow: hidden;
}

.path-track {
  display: flex;
  gap: 1.2rem;
  padding-inline: var(--pad);
  will-change: transform;
}

.step {
  flex: 0 0 min(78vw, 380px);
  min-height: 320px;
  padding: 1.6rem;
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(var(--ink-rgb), 0.03), transparent 42%), var(--bg);
  position: relative;
}

.step::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.step-no {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-b);
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.step-no::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--gold-rgb), 0.7), transparent);
}

.step-tag {
  margin: 0.4rem 0 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.step-tag.optional {
  color: var(--stone);
}

.step h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-d);
  font-size: 1.7rem;
}

.step p:last-child {
  margin: 0;
  color: var(--ivory-mute);
  font-weight: 300;
  line-height: 1.6;
}

.path-progress {
  margin: 2rem var(--pad) 0;
  height: 1px;
  background: var(--line-2);
}

.path-progress-bar {
  width: 0%;
  height: 100%;
  background: var(--gold);
}

/* Services */
.services-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.services-head p,
.atelier-copy p,
.contact-copy p {
  margin: 0;
  color: var(--ivory-soft);
  font-weight: 300;
  line-height: 1.7;
  max-width: 36rem;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.service-list li {
  border-bottom: 1px solid var(--line);
}

.service-row {
  width: 100%;
  display: grid;
  grid-template-columns: 4rem 1fr auto 2rem;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 0;
  border: 0;
  background: none;
  text-align: left;
}

.service-no {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.service-name {
  font-family: var(--font-d);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 650;
  transition: color 0.35s var(--ease);
}

.service-row:hover .service-name {
  color: var(--gold-2);
}

.service-hint {
  color: var(--stone);
  font-size: 0.85rem;
}

.service-plus {
  justify-self: end;
  width: 12px;
  height: 12px;
  position: relative;
}

.service-plus::before,
.service-plus::after {
  content: "";
  position: absolute;
  background: var(--ivory);
  transition: transform 0.35s var(--ease), opacity 0.35s;
}

.service-plus::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
}

.service-plus::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.service-row[aria-expanded="true"] .service-plus::after {
  transform: scaleY(0);
}

.service-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.service-row[aria-expanded="true"] + .service-body {
  grid-template-rows: 1fr;
}

.service-body p {
  overflow: hidden;
  margin: 0 0 1.4rem 4rem;
  max-width: 36rem;
  color: var(--ivory-mute);
  font-weight: 300;
  line-height: 1.7;
}

/* Atelier */
.atelier-visual {
  margin: 0;
  position: relative;
  min-height: 420px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
}

.orb-a {
  width: 220px;
  height: 220px;
  left: 12%;
  top: 18%;
  background: rgba(var(--gold-rgb), 0.22);
  animation: float 8s ease-in-out infinite;
}

.orb-b {
  width: 160px;
  height: 160px;
  right: 10%;
  bottom: 16%;
  background: rgba(var(--ember-rgb), 0.12);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  50% {
    transform: translate3d(18px, -22px, 0);
  }
}

.atelier-frame {
  position: relative;
  z-index: 1;
  padding: 1.4rem;
  color: var(--gold);
  height: 100%;
}

.atelier-frame svg {
  width: 100%;
  height: auto;
  display: block;
}

.atelier-copy .display {
  margin-bottom: 1.2rem;
}

.atelier-points {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.3rem;
}

.atelier-points li {
  padding-left: 1rem;
  border-left: 1px solid var(--gold);
}

/* Contact */
.contact {
  background:
    linear-gradient(180deg, transparent, rgba(var(--gold-rgb), 0.04)),
    var(--bg);
}

.contact-copy .display {
  margin-bottom: 1.1rem;
}

.contact-links {
  display: grid;
  gap: 1.1rem;
  margin-top: 2.4rem;
}

.contact-links a,
.contact-links div {
  display: grid;
  gap: 0.2rem;
  font-family: var(--font-d);
  font-size: 1.25rem;
}

.contact-links small {
  font-family: var(--font-b);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

.form {
  display: grid;
  gap: 1.1rem;
  padding: 1.6rem;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
}

.form label {
  display: grid;
  gap: 0.45rem;
}

.form label span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.form label em {
  font-style: normal;
  color: var(--ivory-mute);
  letter-spacing: 0.08em;
}

.form input,
.form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  background: transparent;
  padding: 0.75rem 0;
  outline: none;
  transition: border-color 0.3s;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--gold);
}

.form textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-foot {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.82rem;
  color: var(--stone);
  max-width: 16rem;
}

.form-status.is-ok {
  color: var(--gold);
}

.form-status.is-err {
  color: var(--ember);
}

/* Footer */
.footer {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem var(--pad) 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--stone);
}

.footer-brand {
  display: grid;
}

.footer-brand strong {
  font-family: var(--font-d);
  font-size: 1.1rem;
  color: var(--ivory);
  letter-spacing: 0.16em;
}

.footer-meta {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

/* Responsive */
@media (min-width: 1100px) {
  .nav-status {
    display: flex;
  }
}

@media (max-width: 980px) {
  .approach-grid,
  .atelier-grid,
  .contact-grid,
  .services-head,
  .path-intro {
    grid-template-columns: 1fr;
  }

  .path-intro {
    display: grid;
  }

  .hero-rail {
    display: none;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .service-row {
    grid-template-columns: 2.4rem 1fr 2rem;
  }

  .service-hint {
    display: none;
  }

  .service-body p {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .hero-title {
    font-size: clamp(3.2rem, 22vw, 5.6rem);
    line-height: 0.84;
  }

  .hero-fill {
    clip-path: none;
    position: static;
    color: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    white-space: normal;
  }

  .hero-outline {
    display: none;
  }

  body.has-cursor {
    cursor: auto;
  }

  body.has-cursor .cursor {
    display: none;
  }

  .nav-links,
  .nav .btn-sm,
  .theme-toggle-label {
    display: none;
  }

  .nav-burger {
    display: block;
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    place-items: unset;
    text-align: left;
    padding-bottom: 1.6rem;
    gap: 1.4rem;
  }

  .hero-center {
    text-align: left;
    width: 100%;
  }

  .hero-kicker {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-lead {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-meta,
  .scroll-hint {
    position: static;
  }

  .hero-meta {
    left: auto;
    right: auto;
    bottom: auto;
  }

  .scroll-hint {
    display: none;
  }

  .footer,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .path {
    height: auto;
  }

  .path-sticky {
    position: relative;
    height: auto;
    padding-bottom: 4rem;
  }

  .path-track {
    flex-direction: column;
  }

  .step {
    flex-basis: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-fill {
    clip-path: none;
    position: static;
    color: var(--ivory);
  }

  .hero-outline {
    display: none;
  }
}

/* Light theme — paper & amber */
[data-theme="light"] body {
  background:
    radial-gradient(1100px 620px at 78% -12%, rgba(var(--gold-rgb), 0.16), transparent 62%),
    radial-gradient(900px 520px at -8% 24%, rgba(var(--ember-rgb), 0.07), transparent 60%),
    var(--bg);
  background-attachment: fixed;
}

[data-theme="light"] .noise {
  mix-blend-mode: multiply;
}

[data-theme="light"] .nav {
  background: linear-gradient(to bottom, rgba(var(--bg-rgb), 0.92), rgba(var(--bg-rgb), 0));
}

[data-theme="light"] .nav-links a {
  opacity: 0.85;
  font-weight: 500;
}

[data-theme="light"] :is(p, li, small, em, label, dd, figcaption) {
  font-weight: 400;
}

[data-theme="light"] .step p:last-child,
[data-theme="light"] .service-body p {
  font-weight: 400;
}

[data-theme="light"] :is(.kicker, .section-head, .step-tag, .service-no, .service-hint, .hero-meta, .hero-tags, .marquee-track, .footer, .scroll-hint, .loader-kicker, .loader-sub, .contact-meta small, .form label) {
  font-weight: 500;
}

[data-theme="light"] .service-list,
[data-theme="light"] .service-list li,
[data-theme="light"] .panel-card + .panel-card,
[data-theme="light"] .panel-stat,
[data-theme="light"] .footer {
  border-width: 2px;
}

[data-theme="light"] .atelier-points li {
  border-left-width: 3px;
}

[data-theme="light"] .form input,
[data-theme="light"] .form textarea {
  border-bottom-width: 2px;
}

[data-theme="light"] .path-progress {
  height: 2px;
}

[data-theme="light"] .service-hint,
[data-theme="light"] .step-tag.optional {
  color: var(--stone);
}

[data-theme="light"] .theme-toggle-track {
  background: var(--gold);
  border-color: var(--gold);
}

[data-theme="light"] .theme-toggle-thumb {
  background: #fff;
}

[data-theme="light"] .hero-outline {
  -webkit-text-stroke: 2px rgba(var(--ink-rgb), 0.55);
}

[data-theme="light"] .hero-outline b:last-child {
  -webkit-text-stroke-color: rgba(var(--gold-rgb), 0.95);
}

[data-theme="light"] .hero-fill b:last-child {
  color: var(--gold);
}

[data-theme="light"] .hero-fill {
  text-shadow: 0 24px 60px rgba(var(--ink-rgb), 0.12);
}

[data-theme="light"] .horizon {
  mask-image: linear-gradient(to bottom, transparent, #000 26%);
  background: linear-gradient(to bottom, transparent, rgba(var(--gold-rgb), 0.12) 40%, rgba(var(--gold-rgb), 0.3));
}

[data-theme="light"] .horizon-grid {
  background-image:
    linear-gradient(90deg, rgba(var(--gold-rgb), 0.55) 2px, transparent 2px),
    linear-gradient(rgba(var(--gold-rgb), 0.55) 2px, transparent 2px);
}

[data-theme="light"] .horizon-glow {
  width: 56vw;
  height: 22vw;
  background: radial-gradient(ellipse, rgba(var(--gold-rgb), 0.45), rgba(var(--ember-rgb), 0.14) 45%, transparent 70%);
  filter: blur(14px);
}

[data-theme="light"] body.has-cursor .cursor {
  mix-blend-mode: normal;
}

[data-theme="light"] .cursor-ring {
  border-color: rgba(var(--gold-rgb), 0.85);
}

[data-theme="light"] .cursor-dot {
  background: var(--gold);
}

[data-theme="light"] .cursor.is-hover .cursor-ring {
  background: rgba(var(--gold-rgb), 0.16);
}

[data-theme="light"] .btn {
  box-shadow: 0 8px 20px -10px rgba(var(--ink-rgb), 0.45);
}

[data-theme="light"] .btn-ghost {
  box-shadow: none;
  border-color: rgba(var(--ink-rgb), 0.28);
}

[data-theme="light"] .marquee {
  background: rgba(255, 255, 255, 0.42);
}

[data-theme="light"] .marquee-track {
  color: rgba(var(--ink-rgb), 0.58);
}

[data-theme="light"] .approach-panel {
  gap: 0;
  background: var(--card);
  border-color: var(--card-line);
  box-shadow: var(--shadow-lg);
}

[data-theme="light"] .panel-card,
[data-theme="light"] .panel-stat {
  background: transparent;
}

[data-theme="light"] .panel-card + .panel-card,
[data-theme="light"] .panel-stat {
  border-top: 1px solid var(--card-line);
}

[data-theme="light"] .panel-stat {
  background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.02));
}

[data-theme="light"] .path-sticky {
  background:
    radial-gradient(900px 420px at 82% 18%, rgba(var(--gold-rgb), 0.16), transparent 60%),
    linear-gradient(180deg, var(--bg-3), var(--bg));
}

[data-theme="light"] .step {
  background: var(--card);
  border-color: var(--card-line);
  box-shadow: var(--shadow);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

[data-theme="light"] .step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

[data-theme="light"] .step::before {
  height: 2px;
}

[data-theme="light"] .path-progress {
  background: rgba(var(--ink-rgb), 0.12);
}

[data-theme="light"] .service-row {
  transition: padding-left 0.4s var(--ease);
}

[data-theme="light"] .service-row:hover {
  padding-left: 0.4rem;
}

[data-theme="light"] .service-row:hover .service-name {
  color: var(--gold);
}

[data-theme="light"] .atelier-visual {
  background: var(--card);
  border-color: var(--card-line);
  box-shadow: var(--shadow-lg);
}

[data-theme="light"] .orb-a {
  background: rgba(var(--gold-rgb), 0.38);
}

[data-theme="light"] .orb-b {
  background: rgba(var(--ember-rgb), 0.22);
}

[data-theme="light"] .atelier-points li {
  border-left-width: 2px;
}

[data-theme="light"] .contact {
  background:
    radial-gradient(800px 400px at 90% 100%, rgba(var(--gold-rgb), 0.16), transparent 62%),
    linear-gradient(180deg, transparent, rgba(var(--gold-rgb), 0.05));
}

[data-theme="light"] .form {
  background: var(--card);
  border-color: var(--card-line);
  box-shadow: var(--shadow-lg);
}

[data-theme="light"] .form input,
[data-theme="light"] .form textarea {
  border-bottom-color: rgba(var(--ink-rgb), 0.2);
}

[data-theme="light"] .form input::placeholder,
[data-theme="light"] .form textarea::placeholder {
  color: rgba(var(--ink-rgb), 0.38);
}

[data-theme="light"] .footer {
  background: var(--bg-3);
  border-top-color: var(--card-line);
}

[data-theme="light"] .menu {
  background: rgba(var(--bg-rgb), 0.97);
}

[data-theme="light"] .loader-word {
  color: var(--ivory);
}

html.shot-mode .nav,
html.shot-mode .menu,
html.shot-mode .loader,
html.shot-mode .cursor,
html.shot-mode .field,
html.shot-mode .hero,
html.shot-mode .marquee,
html.shot-mode .footer,
html.shot-mode section {
  display: none !important;
}

html.shot-mode section.shot-target {
  display: block !important;
  min-height: 100vh;
  height: auto !important;
}

html.shot-mode .path-sticky {
  position: relative;
  height: auto;
}

html.shot-mode .path-track {
  transform: none !important;
}
