:root {
  --forest: #0a2218;
  --forest-soft: #123428;
  --gold: #dca134;
  --gold-pale: #efc871;
  --paper: #f9f9f6;
  --paper-deep: #efeee7;
  --charcoal: #141414;
  --ink: #171a18;
  --muted: #6f746f;
  --line: rgba(10, 34, 24, 0.11);
  --light-line: rgba(255, 255, 255, 0.11);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --mono: "DM Mono", monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.shell {
  width: min(1320px, calc(100% - 64px));
  margin-inline: auto;
}

.mono {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: #fff;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.site-header.is-scrolled {
  color: var(--forest);
  background: rgba(249, 249, 246, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  font-family: var(--serif);
  font-size: .9rem;
  font-style: italic;
  transform: rotate(-3deg);
  transition: transform .4s var(--ease), background .3s ease;
}

.brand:hover .brand-mark {
  transform: rotate(0) scale(1.04);
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: .84rem;
  letter-spacing: .16em;
}

.brand-copy span {
  margin-top: 5px;
  font-family: var(--mono);
  font-size: .57rem;
  letter-spacing: .08em;
  opacity: .54;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  position: relative;
  font-size: .82rem;
  font-weight: 500;
}

.nav-menu a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.nav-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, .28);
  transition: background .25s ease, color .25s ease, transform .25s var(--ease);
}

.is-scrolled .nav-contact { border-color: var(--line); }

.nav-contact:hover {
  background: var(--gold);
  color: var(--forest);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle i {
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .3s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  color: #fff;
  background: var(--forest);
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 24%, rgba(220, 161, 52, .27), transparent 27%),
    radial-gradient(circle at 72% 92%, rgba(83, 137, 109, .2), transparent 32%),
    linear-gradient(130deg, transparent 42%, rgba(255, 255, 255, .025) 43%, transparent 63%);
}

.hero-grid {
  position: absolute;
  width: 64vw;
  height: 125%;
  right: -18vw;
  top: -12%;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255, 255, 255, .45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .45) 1px, transparent 1px);
  background-size: 62px 62px;
  transform: perspective(600px) rotateY(-14deg) rotateZ(-8deg);
  mask-image: linear-gradient(to left, #000 45%, transparent 96%);
}

.hero-inner {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 150px 50px;
}

.hero-index {
  position: absolute;
  top: 124px;
  left: 0;
  color: rgba(255, 255, 255, .45);
}

.hero-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5.2rem, 11.5vw, 10.4rem);
  font-weight: 600;
  line-height: .82;
  letter-spacing: -.065em;
}

.hero-title em {
  display: inline-block;
  margin-left: 8vw;
  color: var(--gold-pale);
  font-weight: 600;
}

.hero-lower {
  display: grid;
  grid-template-columns: minmax(280px, 530px) 120px;
  gap: 60px;
  align-items: end;
  margin: 55px 0 80px auto;
  width: min(690px, 62%);
}

.hero-lead {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}

.circle-link {
  width: 106px;
  height: 106px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: .66rem;
  text-transform: uppercase;
  transition: background .3s ease, border-color .3s ease, color .3s ease, transform .35s var(--ease);
}

.circle-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
  transform: rotate(-8deg) scale(1.05);
}

.hero-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .4);
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 20px;
}

/* Light sections */
.section-light { background: var(--paper); }

.section-label {
  margin: 0;
  color: var(--forest);
}

.section-label--light { color: var(--gold-pale); }

.intro { padding: 150px 0 170px; }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 45px;
}

.intro-copy { max-width: 1040px; }

.statement {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.25vw, 5rem);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.statement span {
  color: rgba(23, 26, 24, .28);
  font-style: italic;
}

.intro-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.intro-notes p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

.text-link {
  align-self: end;
  justify-self: end;
  display: flex;
  gap: 36px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--forest);
  font-size: .9rem;
  transition: gap .3s var(--ease), color .2s ease;
}

.text-link:hover { gap: 48px; color: #97660c; }

.services { padding: 40px 0 180px; }

.section-heading {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 45px;
  margin-bottom: 75px;
}

.section-heading h2,
.process-head h2,
.manifesto-copy h2,
.contact-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 7vw, 6.7rem);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 600;
}

.section-heading h2 em,
.process-head h2 em,
.contact-intro h2 em {
  color: var(--gold);
  font-weight: 600;
}

/* Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: 16px;
}

.bento-card {
  position: relative;
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(10, 34, 24, .07);
  transition: transform .4s var(--ease), box-shadow .4s ease;
}

.bento-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(10, 34, 24, .11);
}

.bento-card--feature {
  grid-column: span 8;
  grid-row: span 2;
  min-height: 560px;
  background: var(--paper-deep);
}

.bento-card--dark {
  grid-column: span 4;
  color: #fff;
  background:
    radial-gradient(circle at 80% 100%, rgba(58, 118, 88, .3), transparent 48%),
    var(--charcoal);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .09),
    0 0 40px rgba(48, 187, 120, .04);
}

.bento-card--gold {
  grid-column: span 4;
  color: var(--forest);
  background: var(--gold);
}

.bento-card--wide {
  grid-column: span 6;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  background: var(--forest);
  color: #fff;
}

.bento-card--wide .card-copy {
  position: static;
  margin-top: auto;
  max-width: min(420px, 62%);
  right: auto;
}

.bento-card--wide .metric {
  position: absolute;
  top: 28px;
  right: 30px;
  bottom: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 2;
}

.bento-card--small {
  grid-column: span 3;
  min-height: 300px;
}

.card-index {
  display: block;
  opacity: .47;
}

.card-copy {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.bento-card:not(.bento-card--feature) .card-copy {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
}

.card-copy h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 600;
}

.card-copy p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.bento-card--dark .card-copy p,
.bento-card--wide .card-copy p { color: rgba(255, 255, 255, .55); }

.bento-card--feature .card-copy {
  position: absolute;
  z-index: 3;
  left: 34px;
  bottom: 34px;
  max-width: 360px;
}

.interface-art {
  position: absolute;
  inset: 70px 35px 165px 34%;
  background: var(--forest);
  box-shadow: 0 35px 70px rgba(10, 34, 24, .22);
  transform: rotate(2deg);
  transition: transform .6s var(--ease);
}

.bento-card--feature:hover .interface-art { transform: rotate(0) scale(1.015); }

.interface-top {
  display: flex;
  gap: 6px;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.interface-top span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
}

.interface-body {
  position: relative;
  height: calc(100% - 35px);
  padding: 35px;
  overflow: hidden;
  color: #fff;
}

.interface-body::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image:
    linear-gradient(rgba(255, 255, 255, .35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .35) 1px, transparent 1px);
  background-size: 35px 35px;
  transform: skewY(-7deg);
}

.interface-body i {
  position: relative;
  display: block;
  width: 60%;
  height: 6px;
  margin-bottom: 13px;
  background: var(--gold);
}

.interface-body i:nth-child(2) { width: 32%; opacity: .45; }
.interface-body i:nth-child(3) { width: 44%; opacity: .2; }

.interface-body strong {
  position: absolute;
  left: 35px;
  bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .9;
  letter-spacing: -.05em;
}

.code-tag {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #81d3a6;
  text-shadow: 0 0 18px rgba(129, 211, 166, .35);
}

.type-sample {
  position: absolute;
  top: 5px;
  right: 20px;
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 1;
  color: rgba(10, 34, 24, .13);
}

.metric {
  position: absolute;
  top: 28px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.metric strong {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  line-height: .8;
  font-weight: 600;
}

.metric strong span { color: var(--gold); }
.metric small { margin-top: 10px; color: rgba(255, 255, 255, .42); }

/* Process */
.process {
  position: relative;
  padding: 170px 0 150px;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.process-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  top: -280px;
  right: -120px;
  border-radius: 50%;
  background: rgba(37, 124, 82, .18);
  filter: blur(90px);
}

.process-head {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 45px;
  align-items: end;
  padding-bottom: 85px;
}

.process-head h2 { color: #fff; }

.process-head > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .52);
  font-size: .92rem;
}

.process-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--light-line);
}

.process-list li {
  display: grid;
  grid-template-columns: .55fr 1.2fr 2fr 1fr;
  gap: 35px;
  align-items: center;
  min-height: 150px;
  border-bottom: 1px solid var(--light-line);
  transition: padding .35s var(--ease), background .25s ease;
}

.process-list li:hover {
  padding-inline: 22px;
  background: rgba(255, 255, 255, .025);
}

.process-number { color: var(--gold); }

.process-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 600;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: .9rem;
}

.process-status {
  justify-self: end;
  color: rgba(255, 255, 255, .3);
}

/* Manifesto */
.manifesto { padding: 180px 0; }

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  align-items: center;
}

.manifesto-visual {
  position: relative;
  min-height: 650px;
  background:
    linear-gradient(145deg, rgba(220, 161, 52, .05), rgba(10, 34, 24, .08)),
    var(--paper-deep);
}

.manifesto-visual::before,
.manifesto-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(10, 34, 24, .12);
  border-radius: 50%;
}

.manifesto-visual::before { width: 370px; height: 370px; top: 8%; left: -10%; }
.manifesto-visual::after { width: 240px; height: 240px; right: -6%; bottom: 5%; }

.poster {
  position: absolute;
  inset: 11% 10% 9% 14%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 38px;
  color: #fff;
  background: var(--forest);
  box-shadow: 35px 45px 80px rgba(10, 34, 24, .22);
  transform: rotate(-4deg);
  transition: transform .7s var(--ease);
}

.manifesto-visual:hover .poster { transform: rotate(-1deg) translateY(-7px); }

.poster > span { color: rgba(255, 255, 255, .4); }

.poster strong {
  margin-top: auto;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5.7rem);
  line-height: .86;
  letter-spacing: -.06em;
}

.poster strong em { color: var(--gold-pale); font-weight: 600; }
.poster-line { height: 6px; margin-top: 35px; background: var(--gold); }

.manifesto-copy h2 { margin: 28px 0 35px; }

.manifesto-copy > p:not(.section-label) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.06rem;
}

.manifesto-copy ul {
  margin: 55px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.manifesto-copy li {
  display: flex;
  gap: 25px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}

.manifesto-copy li span { color: var(--gold); }

/* Shop */
.shop {
  padding: 160px 0 170px;
  border-top: 1px solid var(--line);
}

.shop-products {
  display: grid;
  gap: 120px;
}

.shop-feature {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 5vw;
  align-items: center;
}

.shop-feature:nth-child(even) {
  grid-template-columns: .9fr 1.1fr;
}

.shop-feature:nth-child(even) .shop-media { order: 2; }
.shop-feature:nth-child(even) .shop-copy { order: 1; }

.shop-media {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
  aspect-ratio: 1;
}

.shop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}

.shop-feature:hover .shop-media img {
  transform: scale(1.03);
}

.shop-copy {
  max-width: 480px;
}

.shop-tag {
  margin: 0 0 18px;
  color: var(--muted);
}

.shop-copy h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 600;
}

.shop-price {
  margin: 0 0 24px;
  font-family: var(--mono);
  font-size: .9rem;
  letter-spacing: .08em;
  color: var(--gold);
}

.shop-copy > p:not(.shop-tag):not(.shop-price) {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.shop-notes {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.shop-notes li {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}

.shop-notes span { color: var(--gold); }

.shop-buy {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-top: 40px;
  padding: 16px 22px;
  background: var(--forest);
  color: #fff;
  font-weight: 600;
  transition: transform .25s var(--ease), background .25s ease, box-shadow .25s ease;
}

.shop-buy:hover {
  background: var(--gold);
  color: var(--forest);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(220, 161, 52, .22);
}

/* Contact */
.contact {
  color: #fff;
  background:
    radial-gradient(circle at 0 100%, rgba(220, 161, 52, .12), transparent 27%),
    var(--forest);
  padding: 170px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 9vw;
  align-items: start;
}

.contact-intro h2 {
  margin: 35px 0;
  color: #fff;
}

.contact-intro > p:not(.section-label) {
  max-width: 510px;
  color: rgba(255, 255, 255, .55);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 50px;
}

.contact-details a {
  display: inline-block;
  width: fit-content;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, .42);
  font-size: .9rem;
  transition: color .2s ease, border-color .2s ease;
}

.contact-details a:hover {
  color: var(--gold-pale);
  border-color: var(--gold);
}

.contact-form {
  padding: 35px;
  background: rgba(255, 255, 255, .055);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .1),
    0 0 60px rgba(70, 203, 133, .035);
  backdrop-filter: blur(10px);
}

.hidden-field { display: none; }

.field {
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-pale);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px 0 17px;
  border: 0;
  outline: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, .3); }

.field select { color-scheme: dark; }
.field:focus-within { border-color: var(--gold); }

.submit-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 34px;
  padding: 17px 20px;
  border: 0;
  color: var(--forest);
  background: var(--gold);
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(220, 161, 52, .2);
}

.submit-button:disabled { opacity: .6; cursor: wait; }

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--gold-pale);
  font-size: .8rem;
}

.form-status.is-error { color: #ffaaa2; }

/* Footer */
.site-footer {
  color: #fff;
  background: var(--charcoal);
  padding: 75px 0 35px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 70px;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.footer-brand-mark {
  width: clamp(48px, 7vw, 84px);
  height: clamp(48px, 7vw, 84px);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid currentColor;
  font-family: var(--serif);
  font-size: clamp(.95rem, 1.6vw, 1.5rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .08em;
  transform: rotate(-3deg);
  transform-origin: center;
  transition: transform .4s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
}

.footer-brand:hover .footer-brand-mark {
  transform: rotate(0) scale(1.04);
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}

.footer-brand-text {
  display: inline-flex;
  align-items: flex-start;
  line-height: 1;
}

.footer-brand sup {
  margin-left: 8px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: 0;
}

.footer-tagline {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--gold-pale);
  opacity: .78;
}

.back-top {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--light-line);
  color: rgba(255, 255, 255, .35);
}

/* Responsive */
@media (max-width: 1050px) {
  .hero-title { font-size: clamp(4.5rem, 12vw, 8rem); }
  .hero-lower { width: 75%; }
  .bento-card--feature { grid-column: span 7; }
  .bento-card--dark,
  .bento-card--gold { grid-column: span 5; }
  .bento-card--wide { grid-column: span 6; }
  .bento-card--small { grid-column: span 3; }
  .process-head { grid-template-columns: 1fr 2.5fr; }
  .process-head > p:last-child { grid-column: 2; }
  .process-list li { grid-template-columns: .4fr 1fr 1.6fr; }
  .process-status { display: none; }
}

@media (max-width: 780px) {
  .shell { width: min(100% - 36px, 1320px); }
  .nav { min-height: 74px; }
  .brand-copy span { display: none; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    inset: 74px 0 auto;
    min-height: calc(100svh - 74px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 40px 18px;
    color: #fff;
    background: var(--forest);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-menu li { border-bottom: 1px solid rgba(255, 255, 255, .14); }
  .nav-menu a {
    display: flex;
    padding: 22px 0;
    font-family: var(--serif);
    font-size: 2rem;
  }
  .nav-contact {
    margin-top: 24px;
    justify-content: space-between;
    padding-inline: 18px !important;
    border: 1px solid rgba(255, 255, 255, .2);
  }
  .nav-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(3px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-3px) rotate(-45deg); }

  .hero-inner { padding-block: 120px 40px; }
  .hero-index { top: 100px; }
  .hero-title {
    font-size: clamp(4rem, 19vw, 6.4rem);
    line-height: .86;
  }
  .hero-title em { margin-left: 0; }
  .hero-lower {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 45px 0 100px;
  }
  .circle-link { width: 88px; height: 88px; }
  .hero-foot {
    gap: 20px;
    overflow: hidden;
  }
  .hero-foot span { white-space: nowrap; }

  .intro { padding: 110px 0 130px; }
  .intro-grid,
  .section-heading,
  .manifesto-grid,
  .shop-feature,
  .contact-layout { grid-template-columns: 1fr; }
  .intro-grid,
  .section-heading { gap: 35px; }
  .intro-notes { grid-template-columns: 1fr; gap: 30px; }
  .text-link { justify-self: start; }
  .services { padding-bottom: 120px; }
  .shop { padding: 110px 0 120px; }
  .shop-products { gap: 90px; }
  .shop-copy { max-width: none; }
  .shop-feature:nth-child(even) .shop-media,
  .shop-feature:nth-child(even) .shop-copy { order: initial; }

  .bento { grid-template-columns: 1fr; }
  .bento-card,
  .bento-card--feature,
  .bento-card--dark,
  .bento-card--gold,
  .bento-card--wide,
  .bento-card--small {
    grid-column: 1;
    min-height: 320px;
  }
  .bento-card--feature { min-height: 570px; }
  .interface-art { inset: 75px 25px 190px; }

  .process { padding: 120px 0 100px; }
  .process-head { grid-template-columns: 1fr; padding-bottom: 55px; }
  .process-head > p:last-child { grid-column: 1; }
  .process-list li {
    grid-template-columns: 50px 1fr;
    gap: 10px 20px;
    padding: 28px 0;
  }
  .process-list h3 { font-size: 1.75rem; }
  .process-list p { grid-column: 2; }
  .process-list li:hover { padding-inline: 12px; }

  .manifesto { padding: 120px 0; }
  .manifesto-grid { gap: 90px; }
  .manifesto-visual { min-height: 530px; }
  .poster { inset: 8% 7% 7% 10%; padding: 28px; }

  .contact { padding: 120px 0; }
  .contact-layout { gap: 70px; }
  .contact-form { padding: 25px 20px; }

  .footer-top { align-items: flex-start; flex-direction: column; gap: 45px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
  .hero-title { font-size: 3.7rem; }
  .statement { font-size: 2.55rem; }
  .section-heading h2,
  .process-head h2,
  .manifesto-copy h2,
  .contact-intro h2 { font-size: 3.25rem; }
  .metric strong { font-size: 3.4rem; }
  .bento-card--wide .card-copy { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
