:root {
  color-scheme: light;
  --graphite-950: #101216;
  --graphite-900: #171a1f;
  --graphite-800: #24282e;
  --graphite-700: #343940;
  --graphite-500: #646970;
  --paper: #fff9f0;
  --paper-deep: #f2e7d8;
  --white: #fffdf8;
  --forge-700: #973309;
  --forge-600: #b94312;
  --forge-500: #dd5721;
  --teal-700: #084d4c;
  --teal-600: #0d6967;
  --teal-500: #16807d;
  --line: rgb(23 26 31 / 15%);
  --line-dark: rgb(255 249 240 / 16%);
  --shadow-sm: 0 0.25rem 0 var(--graphite-900);
  --shadow-lg: 0 1.5rem 4rem rgb(16 18 22 / 18%);
  --radius-sm: 0.75rem;
  --radius-md: 1.125rem;
  --radius-lg: 1.75rem;
  --shell: 76rem;
  --header-height: 5rem;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Trebuchet MS", "Arial Narrow", ui-sans-serif, system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  color: var(--graphite-900);
  background: var(--paper);
  font-size: 1rem;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  text-wrap: balance;
}

h1,
h2 {
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 7vw, 4.75rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

::selection {
  color: var(--white);
  background: var(--teal-600);
}

:focus-visible {
  outline: 0.18rem solid var(--white);
  outline-offset: 0.15rem;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--graphite-900);
  border-radius: 0.5rem;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  position: relative;
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

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

.section-dark {
  color: var(--paper);
  background: var(--graphite-900);
}

.eyebrow {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--teal-700);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.75rem;
  height: 0.2rem;
  background: var(--forge-600);
}

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

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading > p,
.section-heading-row > p,
.section-heading-centered > p {
  max-width: 40rem;
  margin-bottom: 0;
  color: var(--graphite-500);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.7;
}

.section-heading-row {
  display: grid;
  gap: 1.25rem;
}

.section-heading-row h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.section-heading-centered {
  max-width: 49rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered .eyebrow {
  justify-content: center;
}

.section-heading-centered > p {
  margin-inline: auto;
}

.section-heading-light > p {
  color: rgb(255 249 240 / 70%);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border: 0.125rem solid transparent;
  border-radius: 0.7rem;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button svg,
.text-link svg,
.mobile-contact-cta svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-0.15rem);
}

.button:hover svg,
.button:focus-visible svg,
.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translateX(0.22rem);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 0.18rem solid var(--white);
  outline-offset: 0.15rem;
  box-shadow: 0 0 0 0.36rem var(--graphite-900) !important;
}

.button-primary {
  color: var(--white);
  background: var(--graphite-900);
  border-color: var(--graphite-900);
  box-shadow: 0 0.25rem 0 var(--teal-700);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-700);
  border-color: var(--teal-700);
  box-shadow: 0 0.4rem 0 var(--graphite-900);
}

.button-bright {
  color: var(--graphite-950);
  background: var(--forge-500);
  border-color: var(--forge-500);
  box-shadow: 0 0.3rem 0 var(--paper);
}

.button-bright:hover,
.button-bright:focus-visible {
  color: var(--white);
  background: var(--forge-600);
  border-color: var(--forge-600);
  box-shadow: 0 0.45rem 0 var(--paper);
}

.button-secondary {
  color: var(--white);
  background: var(--teal-700);
  border-color: var(--teal-700);
  box-shadow: 0 0.25rem 0 var(--graphite-900);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--graphite-900);
  border-color: var(--graphite-900);
}

.button-ghost-light {
  color: var(--paper);
  background: transparent;
  border-color: rgb(255 249 240 / 52%);
}

.button-ghost-light:hover,
.button-ghost-light:focus-visible {
  color: var(--graphite-900);
  background: var(--paper);
  border-color: var(--paper);
}

.button-small {
  min-height: 2.75rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.84rem;
}

.button-large {
  min-height: 3.7rem;
  padding-inline: 1.4rem;
}

[data-whatsapp-intent][data-channel-status="pending"] {
  cursor: pointer;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  gap: 0.45rem;
  align-items: center;
  color: inherit;
  font-weight: 850;
  text-underline-offset: 0.24rem;
}

.text-link-dark {
  color: var(--graphite-900);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgb(255 249 240 / 92%);
  border-bottom: 1px solid transparent;
  transition:
    height 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgb(255 249 240 / 97%);
  border-color: var(--line);
  box-shadow: 0 0.5rem 2rem rgb(16 18 22 / 8%);
  -webkit-backdrop-filter: blur(0.8rem);
  backdrop-filter: blur(0.8rem);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: block;
  width: min(13.5rem, 65vw);
}

.brand img {
  width: 100%;
}

.menu-toggle {
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  place-items: center;
  color: var(--graphite-900);
  background: transparent;
  border: 0.125rem solid var(--graphite-900);
  border-radius: 0.7rem;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 1.3rem;
  height: 0.125rem;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

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

.menu-toggle-lines::before {
  transform: translateY(-0.42rem);
}

.menu-toggle-lines::after {
  transform: translateY(0.42rem);
}

.menu-toggle[data-state="open"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[data-state="open"] .menu-toggle-lines::before {
  transform: rotate(45deg);
}

.menu-toggle[data-state="open"] .menu-toggle-lines::after {
  transform: rotate(-45deg);
}

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

.site-nav > a:not(.button) {
  position: relative;
  padding-block: 0.8rem;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 0.15rem;
  background: var(--forge-600);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.hero {
  position: relative;
  min-height: max(46rem, 100svh);
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: 3rem;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 30%, rgb(13 105 103 / 28%), transparent 28rem),
    var(--graphite-900);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgb(255 255 255 / 8%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 8%) 1px, transparent 1px);
  background-size: 4rem 4rem;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 88%);
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-layout {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height) - 5.5rem);
  gap: 2.25rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-block: 1.5rem;
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.1rem, 12vw, 6.8rem);
  line-height: 0.9;
}

.hero h1 em {
  display: block;
  color: var(--forge-500);
  font-style: normal;
}

.hero-lead {
  max-width: 40rem;
  margin-bottom: 1.8rem;
  color: rgb(255 249 240 / 78%);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: stretch;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  padding: 1.5rem 0 0;
  margin: 0;
  color: rgb(255 249 240 / 72%);
  font-size: 0.83rem;
  list-style: none;
}

.hero-points li {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.hero-points svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: var(--forge-500);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  aspect-ratio: 4 / 5;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgb(255 249 240 / 22%);
  border-radius: var(--radius-lg);
  box-shadow: 1rem 1rem 0 rgb(13 105 103 / 45%);
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-visual img {
  object-fit: cover;
}

.image-badge,
.concept-label {
  position: absolute;
  z-index: 2;
  top: 0.8rem;
  right: 0.8rem;
  padding: 0.38rem 0.62rem;
  margin: 0;
  color: var(--graphite-900);
  background: rgb(255 249 240 / 90%);
  border-radius: 0.35rem;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(0.45rem);
  backdrop-filter: blur(0.45rem);
}

.hero-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: var(--paper);
  background: linear-gradient(transparent, rgb(16 18 22 / 90%));
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-caption svg {
  width: 3.4rem;
  fill: none;
  stroke: var(--forge-500);
  stroke-width: 1.5;
}

.project-entry {
  position: relative;
  z-index: 2;
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background: var(--paper);
}

.entry-grid {
  display: grid;
  gap: 1rem;
}

.entry-card {
  position: relative;
  min-height: 23rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  overflow: hidden;
  border: 0.125rem solid var(--graphite-900);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.entry-card::after {
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 12rem;
  height: 12rem;
  border: 1.5rem solid rgb(255 249 240 / 7%);
  border-radius: 50%;
  content: "";
}

.entry-card-dark {
  color: var(--paper);
  background: var(--teal-700);
}

.entry-card-warm {
  color: var(--graphite-900);
  background: var(--forge-500);
}

.entry-icon {
  display: grid;
  width: 4.3rem;
  height: 4.3rem;
  margin-bottom: 2.7rem;
  place-items: center;
  color: currentColor;
  border: 0.125rem solid currentColor;
  border-radius: 50%;
}

.entry-icon svg {
  width: 2.3rem;
  height: 2.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-kicker {
  margin-bottom: 0.7rem;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.entry-card h3 {
  max-width: 15ch;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.entry-card > p:not(.card-kicker) {
  max-width: 33rem;
  margin-bottom: 1.2rem;
  opacity: 1;
}

.entry-card-dark > p:not(.card-kicker) {
  color: var(--paper);
}

.entry-card-warm > p:not(.card-kicker) {
  color: var(--graphite-900);
}

.possibilities {
  background:
    radial-gradient(circle at 100% 30%, rgb(185 67 18 / 9%), transparent 25rem),
    var(--white);
}

.possibility-grid {
  display: grid;
  gap: 1rem;
}

.possibility-card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 0.5rem 1.5rem rgb(16 18 22 / 6%);
  transition: box-shadow 200ms ease, transform 200ms var(--ease-out);
}

.possibility-card:hover {
  box-shadow: 0 1rem 2.5rem rgb(16 18 22 / 13%);
  transform: translateY(-0.35rem);
}

.possibility-card picture {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--paper-deep);
}

.possibility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.possibility-card:hover img {
  transform: scale(1.035);
}

.possibility-content {
  position: relative;
  min-height: 14rem;
  padding: 1.5rem;
  border-top: 0.35rem solid var(--forge-600);
}

.possibility-card:nth-child(even) .possibility-content {
  border-top-color: var(--teal-600);
}

.card-number {
  color: var(--forge-600);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.possibility-content p:last-child {
  margin-bottom: 0;
  color: var(--graphite-500);
}

.portfolio-note {
  display: flex;
  max-width: 50rem;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 2rem auto 0;
  color: var(--graphite-500);
  font-size: 0.82rem;
  line-height: 1.6;
  text-align: left;
}

.portfolio-note svg {
  flex: 0 0 auto;
  width: 1.2rem;
  margin-top: 0.1rem;
  fill: none;
  stroke: var(--teal-600);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services {
  overflow: hidden;
}

.layer-lines {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: repeating-radial-gradient(ellipse at 100% 50%, transparent 0 2.5rem, var(--forge-500) 2.55rem 2.65rem);
  pointer-events: none;
}

.services .shell {
  position: relative;
}

.services-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 23rem;
  padding: 1.5rem;
  background: var(--graphite-800);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
}

.service-card-featured {
  color: var(--graphite-900);
  background: var(--forge-500);
  border-color: var(--forge-500);
}

.service-index {
  margin-bottom: 2rem;
  color: currentColor;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.service-icon {
  display: grid;
  width: 4.3rem;
  height: 4.3rem;
  margin-bottom: 3rem;
  place-items: center;
  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.service-icon svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  max-width: 14ch;
  font-size: 1.55rem;
}

.service-card p:last-child {
  margin-bottom: 0;
  color: var(--paper);
}

.service-card-featured p:last-child {
  color: var(--graphite-900);
}

.process {
  background: var(--white);
}

.process-list {
  position: relative;
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 1px;
  background: var(--line);
  content: "";
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding-bottom: 2.2rem;
}

.process-list li:last-child {
  padding-bottom: 0;
}

.process-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: var(--white);
  background: var(--graphite-900);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.process-list li:nth-child(even) .process-number {
  background: var(--teal-600);
}

.process-list li:nth-child(3) .process-number {
  color: var(--graphite-900);
  background: var(--forge-500);
}

.process-list h3 {
  margin-top: 0.3rem;
}

.process-list p {
  max-width: 32rem;
  margin-bottom: 0;
  color: var(--graphite-500);
}

.process-cta {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
  margin-top: 3.5rem;
  background: var(--paper-deep);
  border-left: 0.4rem solid var(--forge-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.process-cta p {
  margin-bottom: 0;
}

.materials-layout {
  display: grid;
  gap: 3rem;
}

.materials-intro h2 {
  max-width: 10ch;
}

.materials-intro > p:not(.eyebrow) {
  max-width: 38rem;
  color: var(--graphite-500);
  font-size: 1.08rem;
  line-height: 1.7;
}

.material-list {
  display: grid;
  gap: 0;
}

.material-list article {
  display: grid;
  grid-template-columns: 3.3rem 1fr;
  gap: 1rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.material-list article:first-child {
  border-top: 1px solid var(--line);
}

.material-list p {
  margin-bottom: 0;
  color: var(--graphite-500);
}

.material-mark {
  display: block;
  width: 3rem;
  height: 3rem;
  background: currentColor;
  border: 0.25rem solid var(--paper-deep);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--graphite-900);
}

.material-mark-orange {
  color: var(--forge-600);
}

.material-mark-teal {
  color: var(--teal-600);
}

.material-mark-graphite {
  color: var(--graphite-900);
}

.differentials {
  background: var(--paper);
}

.differential-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.differential-grid article {
  min-height: 18rem;
  padding: 1.5rem;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, background-color 180ms ease;
}

.differential-grid article:hover {
  color: var(--paper);
  background: var(--teal-700);
}

.differential-grid span {
  display: block;
  margin-bottom: 4rem;
  color: var(--forge-600);
  font-size: 0.72rem;
  font-weight: 900;
}

.differential-grid article:hover span {
  color: var(--paper);
}

.differential-grid p {
  margin-bottom: 0;
  color: var(--graphite-500);
}

.differential-grid article:hover p {
  color: var(--paper);
}

.faq {
  color: var(--paper);
  background:
    radial-gradient(circle at 15% 25%, rgb(13 105 103 / 30%), transparent 24rem),
    var(--graphite-900);
}

.faq-layout {
  display: grid;
  gap: 3rem;
}

.faq-intro {
  align-self: start;
}

.faq-intro h2 {
  max-width: 9ch;
}

.faq-intro > p:last-child {
  max-width: 30rem;
  color: rgb(255 249 240 / 66%);
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  min-height: 4.5rem;
  padding: 1.3rem 3rem 1.3rem 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 0.3rem;
  width: 1.1rem;
  height: 0.12rem;
  background: var(--forge-500);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 43rem;
  padding: 0 2.5rem 1.4rem 0;
  margin-bottom: 0;
  color: rgb(255 249 240 / 67%);
  line-height: 1.7;
}

.contact {
  overflow: hidden;
  background: var(--forge-500);
}

.contact-shape {
  position: absolute;
  border: 2rem solid rgb(23 26 31 / 9%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-shape-one {
  top: -8rem;
  right: -6rem;
  width: 24rem;
  height: 24rem;
}

.contact-shape-two {
  bottom: -12rem;
  left: -9rem;
  width: 28rem;
  height: 28rem;
}

.contact-layout {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.contact-copy h2 {
  max-width: 9ch;
  font-size: clamp(3.3rem, 11vw, 6.2rem);
}

.contact-copy > p:not(.eyebrow, .contact-status) {
  max-width: 39rem;
  color: var(--graphite-900);
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-status {
  max-width: 34rem;
  margin: 1.2rem 0 0;
  color: var(--graphite-900);
  font-size: 0.78rem;
}

.privacy-note {
  max-width: 35rem;
  margin: 1.1rem 0 0;
  color: var(--graphite-900);
  font-size: 0.73rem;
  line-height: 1.55;
}

.contact-panel {
  padding: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--paper);
  background: var(--graphite-900);
  border-radius: var(--radius-lg);
  box-shadow: 1rem 1rem 0 var(--teal-700);
}

.contact-panel-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-dark);
}

.contact-panel-header img {
  width: 3.5rem;
  padding: 0.25rem;
  background: var(--paper);
  border-radius: 0.5rem;
}

.contact-panel-header p {
  margin-bottom: 0.1rem;
  font-family: var(--font-display);
  font-weight: 850;
}

.contact-panel-header span {
  color: rgb(255 249 240 / 60%);
  font-size: 0.8rem;
}

.contact-list {
  margin: 0;
}

.contact-list > div {
  display: grid;
  gap: 0.25rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line-dark);
}

.contact-list dt {
  color: rgb(255 249 240 / 52%);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-list a[data-configured="false"] {
  color: rgb(255 249 240 / 64%);
  text-decoration: none;
}

.configuration-note {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 1.2rem 0 0;
  color: rgb(255 249 240 / 54%);
  font-size: 0.75rem;
}

.configuration-note svg {
  flex: 0 0 auto;
  width: 1.1rem;
  fill: none;
  stroke: var(--forge-500);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact .eyebrow {
  color: var(--graphite-900);
}

.contact .eyebrow > span {
  background: var(--graphite-900);
}

.site-footer {
  padding-block: 3rem 6rem;
  color: var(--paper);
  background: var(--graphite-950);
}

.footer-main {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 2rem;
}

.footer-brand {
  display: block;
  width: min(16rem, 70vw);
  padding: 0.5rem;
  background: var(--paper);
  border-radius: 0.45rem;
}

.footer-main > p {
  max-width: 24rem;
  margin-bottom: 0;
  color: rgb(255 249 240 / 55%);
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.footer-main nav a {
  color: rgb(255 249 240 / 78%);
  font-size: 0.85rem;
  font-weight: 700;
  text-underline-offset: 0.3rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.5rem;
  color: rgb(255 249 240 / 62%);
  border-top: 1px solid var(--line-dark);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-contact-cta {
  position: fixed;
  z-index: 80;
  right: max(0.75rem, env(safe-area-inset-right));
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  left: max(0.75rem, env(safe-area-inset-left));
  display: flex;
  min-height: 3.2rem;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--teal-700);
  border: 0.125rem solid var(--paper);
  border-radius: 0.7rem;
  box-shadow: 0 0.5rem 2rem rgb(16 18 22 / 35%);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}

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

.no-js .site-nav[hidden] {
  display: flex !important;
}

@media (max-width: 55.99rem) {
  .js .site-nav {
    position: fixed;
    z-index: 90;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    align-items: stretch;
    padding: 1rem;
    max-height: calc(100vh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1.5rem 2.5rem rgb(16 18 22 / 16%);
  }

  .js .site-nav[hidden] {
    display: none;
  }

  .js .site-nav > a:not(.button) {
    min-height: 3rem;
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--line);
  }

  .js .nav-cta {
    margin-top: 1rem;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .no-js .site-header {
    position: static;
    height: auto;
  }

  .no-js .header-inner,
  .no-js .site-nav {
    flex-wrap: wrap;
  }

  .no-js .site-nav {
    width: 100%;
    justify-content: center;
  }

}

@media (min-width: 40rem) {
  .shell {
    width: min(var(--shell), calc(100% - 3rem));
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .entry-grid,
  .possibility-grid,
  .services-grid,
  .differential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-cta {
    grid-template-columns: 1fr auto;
    padding: 1.75rem 2rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 56rem) {
  :root {
    --header-height: 5.5rem;
  }

  .brand {
    width: 15rem;
  }

  .hero {
    min-height: 51rem;
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 4rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 1.08fr);
    min-height: calc(100svh - var(--header-height) - 7rem);
    gap: clamp(2rem, 5vw, 5rem);
  }

  .hero h1 {
    font-size: clamp(4rem, 7vw, 6.8rem);
  }

  .hero-visual {
    max-height: 44rem;
    align-self: center;
    aspect-ratio: 16 / 10;
  }

  .section-heading-row {
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
    gap: 3rem;
    align-items: end;
  }

  .entry-grid {
    gap: 1.5rem;
  }

  .entry-card {
    min-height: 26rem;
  }

  .materials-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
  }

  .faq-layout {
    grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(3rem, 8vw, 7rem);
  }

  .faq-intro {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(24rem, 0.85fr);
    gap: clamp(3rem, 8vw, 7rem);
  }

  .footer-main {
    grid-template-columns: 1fr 0.8fr 1fr;
    gap: 3rem;
  }

  .footer-main nav {
    justify-content: flex-end;
  }

  .mobile-contact-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 3rem;
  }
}

@media (min-width: 64rem) {
  .possibility-grid,
  .services-grid,
  .differential-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .possibility-grid,
  .services-grid {
    gap: 1.15rem;
  }

  .service-card {
    min-height: 27rem;
    padding: 1.6rem;
  }

  .process-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .process-list::before {
    top: 1.5rem;
    right: 1.5rem;
    bottom: auto;
    left: 1.5rem;
    width: auto;
    height: 1px;
  }

  .process-list li {
    display: block;
    padding: 0 2rem 0 0;
  }

  .process-number {
    margin-bottom: 1.7rem;
  }
}

@media (min-width: 80rem) {
  .site-nav {
    gap: 1.6rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(34rem, 1.14fr);
  }
}

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

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

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

@media (forced-colors: active) {
  .button,
  .menu-toggle,
  .entry-card,
  .possibility-card,
  .service-card,
  .contact-panel {
    border: 2px solid CanvasText;
    box-shadow: none;
  }

  .eyebrow > span,
  .faq-list summary span,
  .faq-list summary span::after {
    background: CanvasText;
  }
}

@media print {
  .site-header,
  .mobile-contact-cta,
  .hero-grid-overlay {
    display: none !important;
  }

  .hero,
  .section-dark,
  .faq,
  .contact {
    color: #000;
    background: #fff;
  }

  .section,
  .project-entry {
    padding-block: 2rem;
  }

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