:root {
  --ink: #19201d;
  --ink-strong: #121c2a;
  --muted: #5e6962;
  --paper: #f8f6ef;
  --stone: #ebe7dc;
  --stone-strong: #d5ded7;
  --teal: #08766e;
  --teal-bright: #0fa69a;
  --gold: #a46a12;
  --gold-soft: #edd69c;
  --clay: #a9542f;
  --blue: #315a7f;
  --white: #fffdf8;
  --border: rgba(24, 42, 37, 0.16);
  --border-strong: rgba(24, 42, 37, 0.24);
  --shadow: 0 24px 70px rgba(31, 49, 43, 0.16);
  --shadow-soft: 0 14px 36px rgba(31, 49, 43, 0.11);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(25, 32, 29, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(25, 32, 29, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.inline-external,
.card-title-link,
.footer-link {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(90deg, rgba(8, 118, 110, 0.46), rgba(164, 106, 18, 0.34)) left
    calc(100% - 0.02em) / 100% 0.08em no-repeat;
  transition: background-size 180ms ease, color 180ms ease;
}

.inline-external:hover,
.inline-external:focus-visible,
.card-title-link:hover,
.card-title-link:focus-visible,
.footer-link:hover,
.footer-link:focus-visible {
  color: var(--teal);
  background-size: 100% 0.14em;
}

.heading-link,
.nav-external,
.external-link,
.card-title-link {
  position: relative;
}

.heading-link {
  display: inline-flex;
  align-items: baseline;
  color: inherit;
  text-decoration: none;
}

.heading-link::after,
.nav-external::after,
.external-link::after,
.card-title-link::after {
  content: "";
  display: inline-block;
  width: 0.38em;
  height: 0.38em;
  margin-left: 0.36rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.58;
  transform: translateY(-0.18em) rotate(45deg);
  transition: opacity 180ms ease, transform 180ms ease;
}

.heading-link:hover::after,
.heading-link:focus-visible::after,
.nav-external:hover::after,
.nav-external:focus-visible::after,
.external-link:hover::after,
.external-link:focus-visible::after,
.card-title-link:hover::after,
.card-title-link:focus-visible::after {
  opacity: 0.9;
  transform: translate(0.1rem, -0.28em) rotate(45deg);
}

img {
  display: block;
  max-width: 100%;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink-strong);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: 6px;
  text-decoration: none;
}

.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;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  right: auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 36px));
  padding: 0.62rem 0.76rem 0.62rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 14px 42px rgba(25, 45, 40, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.9);
  border-color: rgba(164, 106, 18, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
  text-decoration: none;
}

.brand-copy {
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  border: 1px solid rgba(8, 118, 110, 0.26);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(213, 222, 215, 0.68)),
    linear-gradient(160deg, rgba(237, 214, 156, 0.34), transparent 62%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 8px 20px rgba(8, 118, 110, 0.12);
  overflow: hidden;
}

.brand-mark img {
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
}

.brand-name {
  display: block;
  overflow: hidden;
  color: var(--ink-strong);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-name span:first-child {
  color: var(--ink-strong);
}

.brand-name span:last-child {
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.brand-kicker {
  display: block;
  position: relative;
  width: fit-content;
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.brand-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.32rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(8, 118, 110, 0.55), rgba(164, 106, 18, 0));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.24rem;
}

.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.65rem 0.82rem;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(8, 118, 110, 0.08);
  color: var(--teal);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 2.65rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.8);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  transform: translateY(-6px);
}

.menu-icon::after {
  transform: translateY(6px);
}

.menu-button[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-icon::before {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon::after {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  padding: 9.5rem 1.25rem 1.25rem;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(120deg, rgba(248, 246, 239, 0.98) 0%, rgba(248, 246, 239, 0.9) 42%, rgba(213, 222, 215, 0.72) 100%),
    linear-gradient(135deg, rgba(8, 118, 110, 0.09), rgba(49, 90, 127, 0.05) 48%, rgba(164, 106, 18, 0.08));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 7rem -13rem auto auto;
  width: 40rem;
  height: 40rem;
  border: 1px solid rgba(8, 118, 110, 0.15);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(8, 118, 110, 0.16) 50%, transparent 50.3%),
    linear-gradient(0deg, transparent 49.7%, rgba(8, 118, 110, 0.1) 50%, transparent 50.3%);
  opacity: 0.68;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10rem;
  background: linear-gradient(180deg, transparent, rgba(248, 246, 239, 0.78));
  z-index: -1;
}

.hero-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(350px, 0.78fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy,
.section-copy,
.product-heading {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--gold-soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.15rem;
  max-width: 780px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 5.55rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 1rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: 3rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 1.65rem;
  color: #36413c;
  font-size: 1.18rem;
  line-height: 1.72;
}

.hero-actions,
.console-actions,
.product-pill-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  border: 1px solid rgba(164, 106, 18, 0.52);
  background: linear-gradient(135deg, var(--teal), var(--teal-bright));
  color: white;
  padding: 0.75rem 1.05rem;
  box-shadow: 0 14px 30px rgba(8, 118, 110, 0.22);
}

.button-secondary {
  border: 1px solid rgba(25, 32, 29, 0.16);
  background: rgba(255, 253, 248, 0.76);
  color: var(--ink);
  padding: 0.75rem 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.95rem;
  color: var(--teal);
  font-weight: 800;
  text-decoration-color: rgba(8, 118, 110, 0.34);
  text-underline-offset: 0.25rem;
}

.hero-visual {
  min-width: 0;
}

.brand-stage {
  position: relative;
  display: grid;
  min-height: 30rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.82), rgba(213, 222, 215, 0.52)),
    linear-gradient(135deg, rgba(8, 118, 110, 0.1), rgba(164, 106, 18, 0.09));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stage-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 118, 110, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(164, 106, 18, 0.09) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, transparent, black 15%, black 85%, transparent);
  opacity: 0.42;
  pointer-events: none;
  z-index: 1;
}

.stage-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(0.98);
  transform: scale(1.01);
}

.stage-note {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(16px);
  z-index: 2;
}

.stage-note span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stage-note strong {
  max-width: 16rem;
  color: #27342f;
  font-size: 0.92rem;
  line-height: 1.35;
  text-align: right;
}

.hero-rail {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), calc(100vw - 2.5rem));
  margin: 3rem auto 0;
  border: 1px solid rgba(24, 42, 37, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(24, 42, 37, 0.1);
  box-shadow: var(--shadow-soft);
}

.hero-rail span {
  min-height: 5.8rem;
  padding: 1.05rem;
  background: rgba(255, 253, 248, 0.78);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-rail strong {
  display: block;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.section {
  padding: 6.5rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 3rem;
  align-items: center;
}

.section-copy p:not(.eyebrow),
.product-heading p,
.contact-panel p,
.portfolio-panel p,
.product-story p {
  color: var(--muted);
  font-size: 1.04rem;
}

.narrow {
  max-width: 760px;
}

.vision-section {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.7), rgba(235, 231, 220, 0.44));
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.vision-card,
.loop-card,
.operating-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.86), rgba(255, 253, 248, 0.66)),
    linear-gradient(135deg, rgba(8, 118, 110, 0.08), rgba(164, 106, 18, 0.07));
  box-shadow: 0 12px 28px rgba(25, 45, 40, 0.08);
}

.vision-card {
  min-height: 15rem;
  padding: 1.25rem;
}

.vision-card-wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.card-tag,
.loop-number {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--gold);
  font-family: "Newsreader", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.vision-card p,
.loop-card p,
.operating-item p,
.proof-item p,
.portfolio-list p {
  color: var(--muted);
}

.product-section {
  color: rgba(255, 253, 248, 0.9);
  background:
    linear-gradient(135deg, rgba(18, 28, 42, 0.98), rgba(19, 45, 47, 0.96) 52%, rgba(45, 50, 42, 0.98)),
    linear-gradient(90deg, rgba(164, 106, 18, 0.12), transparent 52%, rgba(8, 118, 110, 0.18));
}

.product-inner {
  position: relative;
}

.product-heading {
  max-width: 850px;
  margin-bottom: 2.35rem;
}

.product-heading h2 {
  color: white;
}

.product-heading p {
  color: rgba(255, 253, 248, 0.72);
}

.product-section .inline-external {
  color: var(--gold-soft);
  background-image: linear-gradient(
    90deg,
    rgba(237, 214, 156, 0.6),
    rgba(15, 166, 154, 0.5)
  );
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(350px, 0.76fr);
  gap: 1.25rem;
  align-items: stretch;
}

.product-story {
  align-self: center;
}

.product-story p {
  color: rgba(255, 253, 248, 0.72);
  max-width: 690px;
}

.product-lockup {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.35rem;
}

.product-lockup img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(15, 166, 154, 0.2));
}

.product-lockup span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-lockup h3 {
  margin: 0;
  color: white;
  font-family: "Newsreader", Georgia, serif;
  font-size: 2rem;
  line-height: 1.08;
}

.product-pill-row {
  margin-top: 1.45rem;
}

.product-pill-row span {
  border: 1px solid rgba(237, 214, 156, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.08);
  color: rgba(255, 253, 248, 0.82);
  padding: 0.48rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.approval-console {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.94), rgba(213, 222, 215, 0.78)),
    linear-gradient(135deg, rgba(8, 118, 110, 0.1), rgba(164, 106, 18, 0.08));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  color: var(--ink);
}

.console-topbar {
  display: flex;
  gap: 0.35rem;
}

.console-topbar span {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: var(--stone-strong);
}

.console-topbar span:first-child {
  background: var(--clay);
}

.console-topbar span:nth-child(2) {
  background: var(--gold-soft);
}

.console-topbar span:nth-child(3) {
  background: var(--teal-bright);
}

.console-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.65rem;
}

.console-header p,
.draft-snippet p {
  margin: 0 0 0.25rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.console-header strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.45rem;
}

.review-snippet,
.draft-snippet {
  border: 1px solid rgba(24, 42, 37, 0.12);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.82);
  padding: 1rem;
}

.review-snippet p {
  margin-bottom: 0.7rem;
}

.review-snippet small {
  color: var(--muted);
  font-weight: 700;
}

.draft-snippet strong {
  display: block;
  color: #2a3530;
  font-size: 0.96rem;
  line-height: 1.55;
}

.rating-row {
  display: flex;
  gap: 0.23rem;
  margin-bottom: 0.65rem;
}

.rating-row span {
  width: 0.8rem;
  height: 0.8rem;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
  background: var(--gold);
}

.console-actions span {
  min-height: 2.35rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 118, 110, 0.18);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--teal);
  padding: 0.45rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.proof-item {
  min-height: 8.25rem;
  padding: 1rem;
  background: rgba(255, 253, 248, 0.08);
}

.proof-item span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-item p {
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
}

.loops-section {
  background: rgba(255, 253, 248, 0.72);
}

.loop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.loop-card {
  min-height: 16rem;
  padding: 1.25rem;
}

.operating-section {
  background:
    linear-gradient(180deg, rgba(235, 231, 220, 0.34), rgba(248, 246, 239, 0.92)),
    linear-gradient(90deg, rgba(49, 90, 127, 0.06), transparent 55%);
}

.operating-stack {
  display: grid;
  gap: 0.85rem;
}

.operating-item {
  padding: 1.1rem 1.15rem;
}

.operating-item span {
  display: block;
  color: var(--teal);
  font-weight: 800;
  line-height: 1.25;
}

.operating-item p {
  margin: 0.4rem 0 0;
}

.portfolio-section {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(213, 222, 215, 0.45));
}

.portfolio-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1fr);
  gap: 2rem;
  align-items: start;
  padding: 1.5rem;
  border: 1px solid rgba(24, 42, 37, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.68)),
    linear-gradient(135deg, rgba(8, 118, 110, 0.08), rgba(164, 106, 18, 0.08));
  box-shadow: var(--shadow-soft);
}

.portfolio-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(24, 42, 37, 0.1);
}

.portfolio-list article {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.1rem;
  background: rgba(255, 253, 248, 0.78);
}

.portfolio-list span {
  color: var(--gold);
  font-family: "Newsreader", Georgia, serif;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1;
}

.portfolio-list h3 {
  margin-bottom: 0.35rem;
}

.portfolio-list p {
  margin-bottom: 0;
}

.contact-section {
  background: var(--paper);
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(24, 42, 37, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.88), rgba(255, 253, 248, 0.66)),
    linear-gradient(135deg, rgba(8, 118, 110, 0.08), rgba(164, 106, 18, 0.08));
  box-shadow: var(--shadow-soft);
}

.contact-copy {
  max-width: 710px;
}

.contact-copy p:last-child {
  margin-bottom: 0;
}

.contact-actions {
  justify-content: flex-end;
  min-width: 16rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem max(1.25rem, calc((100vw - var(--max)) / 2));
  background: #17211d;
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.88rem;
}

.site-footer div {
  display: grid;
  gap: 0.1rem;
}

.site-footer strong {
  color: white;
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .site-header {
    top: 12px;
    left: 12px;
    right: auto;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    gap: 0.5rem;
    padding-right: 3.8rem;
    transform: none;
  }

  .menu-button {
    display: inline-flex;
    position: fixed;
    top: 23px;
    right: 22px;
    z-index: 70;
  }

  .site-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 82px;
    display: grid;
    gap: 0.25rem;
    padding: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.95);
    box-shadow: var(--shadow-soft);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    border-radius: 6px;
    padding: 0.85rem;
  }

  .hero {
    min-height: auto;
    padding-top: 9.25rem;
  }

  .hero-inner,
  .two-column,
  .product-layout,
  .product-proof,
  .loop-grid,
  .portfolio-panel {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .brand-stage {
    min-height: 26rem;
  }

  .hero-rail {
    grid-template-columns: 1fr;
  }

  .hero-rail span {
    min-height: auto;
  }

  .contact-panel,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: flex-start;
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 4rem);
  }

  .brand-kicker {
    display: none;
  }

  .brand-name {
    font-size: 1rem;
  }

  .hero {
    padding: 8.6rem 1rem 1.1rem;
  }

  .hero-inner {
    gap: 2rem;
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
  }

  .hero-copy,
  .hero-visual,
  .hero-actions {
    max-width: calc(100vw - 2rem);
  }

  .hero-lede {
    max-width: 19.5rem;
  }

  .hero-actions .button,
  .brand-stage {
    max-width: 22rem;
  }

  h1 {
    font-size: 2.85rem;
    line-height: 0.98;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .section {
    padding: 2.75rem 1rem;
  }

  .hero-rail {
    display: none;
  }

  .brand-stage {
    min-height: 18rem;
  }

  .stage-image {
    object-position: 50% 50%;
  }

  .stage-note {
    display: grid;
    align-items: start;
  }

  .stage-note strong {
    max-width: none;
    text-align: left;
  }

  .vision-grid,
  .product-lockup,
  .portfolio-list article {
    grid-template-columns: 1fr;
  }

  .product-lockup img {
    width: 4.4rem;
    height: 4.4rem;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
