:root {
  --ink: #f5f1e8;
  --ink-muted: #b6afa2;
  --ink-faint: #7f786e;
  --canvas: #12110f;
  --canvas-raised: #191714;
  --canvas-soft: #211e1a;
  --line: rgba(245, 241, 232, 0.12);
  --line-strong: rgba(245, 241, 232, 0.22);
  --ember: #df7c45;
  --ember-bright: #f39a61;
  --ember-soft: rgba(223, 124, 69, 0.13);
  --sage: #aeba9f;
  --shell: 1180px;
  --radius-large: 30px;
  --radius-medium: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -20%, rgba(223, 124, 69, 0.08), transparent 35%),
    var(--canvas);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--canvas);
  background: var(--ember-bright);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--canvas);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(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;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(18, 17, 15, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  line-height: 1;
}

.brand-mark {
  width: 34px;
  height: 34px;
  fill: var(--ink);
}

.brand-mark-cut {
  fill: var(--canvas);
}

.brand-mark-spark {
  fill: var(--ember);
}

.brand-copy {
  display: grid;
  gap: 4px;
  letter-spacing: 0.045em;
}

.brand-copy strong {
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0.15em;
}

.brand-copy span {
  color: var(--ink-muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 620;
  letter-spacing: 0.035em;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--ember);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 152px 0 42px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(245, 241, 232, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 232, 0.028) 1px, transparent 1px);
  background-size: 78px 78px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.13;
  pointer-events: none;
}

.hero-glow-one {
  top: -330px;
  left: -260px;
  background: var(--ember);
}

.hero-glow-two {
  right: -390px;
  bottom: -410px;
  background: var(--sage);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.96fr);
  align-items: center;
  gap: 80px;
}

.eyebrow,
.section-number {
  margin: 0 0 24px;
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
}

.eyebrow > span {
  width: 20px;
  height: 1px;
  background: var(--ember);
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(55px, 6.25vw, 93px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero h1 em {
  color: var(--ember-bright);
  font-weight: 400;
}

.hero-lede {
  max-width: 620px;
  margin: 31px 0 0;
  color: var(--ink-muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.025em;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--ember-bright);
  outline-offset: 5px;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--ease);
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.button-primary {
  color: var(--canvas);
  background: var(--ink);
}

.button-primary:hover {
  background: #fffdf7;
}

.button-secondary {
  color: var(--ink);
  background: rgba(245, 241, 232, 0.035);
  border-color: var(--line-strong);
}

.button-secondary:hover {
  background: rgba(245, 241, 232, 0.08);
  border-color: rgba(245, 241, 232, 0.34);
}

.hero-disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  padding: 0;
  margin: 41px 0 0;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  list-style: none;
  text-transform: uppercase;
}

.hero-disciplines li {
  position: relative;
}

.hero-disciplines li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -15px;
  width: 3px;
  height: 3px;
  background: var(--ember);
  border-radius: 50%;
  content: "";
}

.forge-visual {
  position: relative;
  aspect-ratio: 1;
  width: min(100%, 520px);
  margin-inline: auto;
}

.forge-grid {
  position: absolute;
  inset: 7%;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background:
    linear-gradient(rgba(245, 241, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 232, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, rgba(245, 241, 232, 0.025), transparent 65%);
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow:
    inset 0 0 50px rgba(245, 241, 232, 0.025),
    0 40px 80px rgba(0, 0, 0, 0.22);
  transform: rotate(3deg);
}

.forge-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.forge-ring-outer {
  width: 65%;
  height: 65%;
  border-style: dashed;
  animation: orbit 42s linear infinite;
}

.forge-ring-inner {
  width: 42%;
  height: 42%;
  border-color: rgba(223, 124, 69, 0.25);
}

.forge-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-content: center;
  width: 38%;
  height: 38%;
  padding: 20px;
  background:
    radial-gradient(circle at 35% 25%, rgba(243, 154, 97, 0.18), transparent 38%),
    var(--canvas-soft);
  border: 1px solid rgba(243, 154, 97, 0.3);
  border-radius: 50%;
  box-shadow:
    0 0 90px rgba(223, 124, 69, 0.16),
    inset 0 0 35px rgba(223, 124, 69, 0.06);
  text-align: center;
  transform: translate(-50%, -50%);
}

.forge-core-kicker {
  margin-bottom: 8px;
  color: var(--ember-bright);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.2em;
}

.forge-core strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.7vw, 38px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.forge-node {
  position: absolute;
  display: grid;
  min-width: 126px;
  padding: 13px 16px;
  background: rgba(25, 23, 20, 0.9);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.forge-node span {
  color: var(--ember-bright);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.forge-node strong {
  margin-top: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}

.forge-node-one {
  top: 8%;
  left: 7%;
  transform: rotate(-3deg);
}

.forge-node-two {
  top: 25%;
  right: 0;
  transform: rotate(2deg);
}

.forge-node-three {
  right: 12%;
  bottom: 4%;
  transform: rotate(-2deg);
}

.forge-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--ember-bright);
  box-shadow: 0 0 14px var(--ember);
  transform: rotate(45deg);
}

.forge-spark-one {
  top: 30%;
  left: 24%;
}

.forge-spark-two {
  right: 20%;
  bottom: 30%;
  width: 4px;
  height: 4px;
}

.forge-spark-three {
  bottom: 18%;
  left: 25%;
  width: 3px;
  height: 3px;
}

.hero-foot {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 78px;
  color: var(--ink-faint);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.08em;
}

.hero-foot div {
  width: 54px;
  height: 1px;
  background: var(--line-strong);
}

.section {
  padding: 132px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 60px;
  margin-bottom: 68px;
}

.section-heading h2,
.process-intro h2,
.now-copy h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-heading h2 span,
.process-intro h2 span {
  color: var(--ember-bright);
  font-style: italic;
}

.section-heading > div > p {
  max-width: 760px;
  margin: 27px 0 0;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.8;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.principle-card {
  position: relative;
  min-height: 330px;
  padding: 31px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(245, 241, 232, 0.047), rgba(245, 241, 232, 0.018));
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  transition:
    border-color 220ms ease,
    transform 260ms var(--ease),
    background 220ms ease;
}

.principle-card::after {
  position: absolute;
  right: -72px;
  bottom: -72px;
  width: 160px;
  height: 160px;
  background: var(--ember-soft);
  border-radius: 50%;
  content: "";
  filter: blur(35px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.principle-card:hover {
  background: linear-gradient(145deg, rgba(245, 241, 232, 0.065), rgba(245, 241, 232, 0.024));
  border-color: rgba(223, 124, 69, 0.28);
  transform: translateY(-5px);
}

.principle-card:hover::after {
  opacity: 1;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--ember-bright);
  background: var(--ember-soft);
  border: 1px solid rgba(223, 124, 69, 0.2);
  border-radius: 50%;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-number {
  margin: 43px 0 12px;
  color: var(--ink-faint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.principle-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.principle-card > p:last-child {
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.75;
}

.process {
  background: #e9e3d8;
  color: #1c1916;
}

.process .section-number {
  color: #777067;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 110px;
}

.process-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-intro > p:last-child {
  max-width: 470px;
  margin: 27px 0 0;
  color: #6f675e;
  font-size: 16px;
  line-height: 1.8;
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 23px;
  padding: 39px 0;
  border-top: 1px solid rgba(28, 25, 22, 0.17);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(28, 25, 22, 0.17);
}

.process-list li > span {
  padding-top: 7px;
  color: #a15c38;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.17em;
}

.process-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.process-list p {
  max-width: 520px;
  margin: 9px 0 0;
  color: #6f675e;
  font-size: 15px;
  line-height: 1.7;
}

.now {
  padding-bottom: 0;
}

.now-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  padding: 68px;
  background:
    radial-gradient(circle at 0 0, rgba(223, 124, 69, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(245, 241, 232, 0.055), rgba(245, 241, 232, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
}

.now-copy h2 {
  font-size: clamp(39px, 4.5vw, 62px);
}

.now-copy > p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.8;
}

.now-status {
  display: grid;
  gap: 12px;
}

.now-status > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 20px;
  color: var(--ink-muted);
  background: rgba(18, 17, 15, 0.42);
  border: 1px solid var(--line);
  border-radius: 13px;
  font-size: 13px;
  font-weight: 620;
}

.now-status span {
  width: 7px;
  height: 7px;
  background: var(--ember-bright);
  border-radius: 50%;
  box-shadow: 0 0 13px rgba(243, 154, 97, 0.45);
}

.contact {
  padding-top: 150px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: end;
  padding-bottom: 126px;
  border-bottom: 1px solid var(--line);
}

.contact h2 {
  max-width: 720px;
  font-size: clamp(43px, 5.5vw, 74px);
}

.contact-action p {
  max-width: 440px;
  margin: 0 0 29px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ember);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 650;
}

.site-footer {
  padding: 42px 0 48px;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.brand-footer .brand-mark {
  width: 31px;
  height: 31px;
}

.footer-inner > p {
  margin: 0;
  color: var(--ink-faint);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  text-align: center;
}

.footer-meta {
  display: grid;
  gap: 4px;
  color: var(--ink-faint);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-align: right;
  text-transform: uppercase;
}

.footer-meta a {
  transition: color 180ms ease;
}

.footer-meta a:hover {
  color: var(--ink);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 750ms var(--ease),
    transform 750ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbit {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 138px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .forge-visual {
    width: min(100%, 540px);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: 265px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .process-intro {
    position: static;
  }

  .now-panel,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 58px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .site-header.is-open {
    background: var(--canvas);
    border-color: var(--line);
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 38px 21px;
    background: rgba(18, 17, 15, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 21px 4px;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 400;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 34px;
  }

  .hero h1 {
    font-size: clamp(50px, 16.3vw, 72px);
  }

  .hero-lede {
    margin-top: 25px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-disciplines {
    gap: 12px 20px;
  }

  .hero-disciplines li:not(:last-child)::after {
    right: -12px;
  }

  .hero-grid {
    gap: 62px;
  }

  .forge-visual {
    width: 100%;
  }

  .forge-node {
    min-width: 103px;
    padding: 10px 12px;
  }

  .forge-node strong {
    font-size: 15px;
  }

  .hero-foot {
    margin-top: 46px;
  }

  .section {
    padding: 92px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .process-intro h2,
  .now-copy h2,
  .contact h2 {
    font-size: clamp(39px, 12vw, 57px);
  }

  .section-heading > div > p {
    font-size: 16px;
  }

  .principle-card {
    min-height: 290px;
    padding: 26px;
  }

  .process-list li {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 31px 0;
  }

  .now-panel {
    gap: 41px;
    padding: 34px 25px;
    border-radius: 22px;
  }

  .contact {
    padding-top: 100px;
  }

  .contact-inner {
    gap: 44px;
    padding-bottom: 90px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 26px;
  }

  .footer-inner > p {
    text-align: left;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
