:root {
  --ink: #111315;
  --panel: #202427;
  --muted: #5d6265;
  --paper: #f7f8f6;
  --white: #ffffff;
  --line: #d9ddda;
  --gold: #d7ad57;
  --gold-light: #f0d99f;
  --ice: #dbe7e8;
  --sage: #d9e6dc;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  max-width: 100%;
  overflow-x: clip;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 2000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.language-button:focus-visible,
.menu-toggle:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

body.menu-open {
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.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 {
  min-height: 76px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  background: rgba(247, 248, 246, 0.96);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #050505;
  border: 1px solid rgba(17, 19, 21, 0.18);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-name {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.6vw, 38px);
}

.site-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 180ms ease;
}

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

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.header-actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 14px;
}

.language-switcher {
  border: 1px solid var(--line);
  padding: 3px;
}

.language-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 5px 7px;
  font-size: 11px;
  font-weight: 700;
}

.language-button.active {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

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

.button-small {
  min-height: 38px;
  padding: 0 15px;
  font-size: 11px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

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

.button-light {
  border-color: rgba(17, 19, 21, 0.18);
  background: var(--white);
  color: var(--ink);
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  align-items: stretch;
}

.hero-copy {
  padding: clamp(44px, 5vw, 82px) clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
  text-wrap: pretty;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

p,
li,
dd {
  overflow-wrap: break-word;
}

h1 {
  max-width: 840px;
  margin-top: 18px;
  font-size: clamp(48px, 6.3vw, 96px);
  line-height: 0.98;
  font-weight: 600;
}

.hero-text {
  max-width: 580px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 18px);
}

.hero-pills {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pills span {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 700;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-secondary-link {
  margin-top: 18px;
}

.hero-trust-line {
  max-width: min(640px, 100%);
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.premium-hero {
  background:
    radial-gradient(circle at 14% 18%, rgba(215, 173, 87, 0.12), transparent 26%),
    linear-gradient(90deg, var(--paper) 0%, #f4f2ec 100%);
}

.premium-hero h1 {
  max-width: 680px;
  font-size: clamp(46px, 4.4vw, 70px);
  line-height: 0.98;
}

.premium-hero .hero-trust-line,
.premium-hero .hero-facts {
  display: none;
}

.hero-proof-list {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof-row {
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}

.hero-proof-list span {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(17, 19, 21, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
}

.hero-proof-list span::before {
  content: none;
}

.hero-proof-row span {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.01em;
}

.hero-proof-row span + span::before {
  content: "\00b7";
  margin-right: 10px;
  color: var(--gold);
}

.portfolio-spread {
  position: relative;
  min-height: 100%;
  padding: clamp(28px, 5vw, 72px);
  display: grid;
  align-content: center;
  gap: 18px;
  background: var(--ink);
  overflow: hidden;
}

.portfolio-spread::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(215, 173, 87, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 58%);
  pointer-events: none;
}

.portfolio-spread-main,
.portfolio-spread-secondary,
.portfolio-spread-caption {
  position: relative;
  z-index: 1;
}

.portfolio-spread-main {
  min-height: clamp(300px, 42vw, 560px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.36);
}

.portfolio-spread-secondary {
  width: min(48%, 360px);
  margin-left: auto;
  margin-top: -90px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--white);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.portfolio-spread-secondary img {
  width: 100%;
  display: block;
}

.portfolio-spread-caption {
  max-width: 520px;
  color: var(--white);
}

.portfolio-spread-caption span {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-spread-caption strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.08;
}

.form-privacy {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
}

.hero-facts {
  margin-top: clamp(42px, 7vh, 78px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.hero-facts div {
  display: grid;
  gap: 4px;
}

.hero-facts dt,
.contact-meta span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-facts dd {
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  background: radial-gradient(circle at 24% 18%, rgba(215, 173, 87, 0.18), transparent 28%),
    linear-gradient(135deg, #080909 0%, #1c1f21 58%, #292419 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 5vw, 68px);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(240, 217, 159, 0.18);
  pointer-events: none;
}

.hero-visual::before {
  width: 70%;
  aspect-ratio: 1;
  transform: rotate(28deg);
}

.hero-visual::after {
  inset: 44px;
  border-color: rgba(255, 255, 255, 0.08);
}

/* Portfolio hero overrides the generic flex-based hero visual. */
.hero-visual.portfolio-spread {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  align-items: stretch;
  justify-items: stretch;
  gap: clamp(18px, 2vw, 28px);
  min-height: calc(100svh - 76px);
  padding: clamp(24px, 3.5vw, 52px);
}

.hero-visual.portfolio-spread::before,
.hero-visual.portfolio-spread::after {
  z-index: 0;
}

.hero-visual.portfolio-spread .portfolio-spread-main {
  width: 100%;
  min-width: 0;
  min-height: 0;
  height: min(54vh, 520px);
  max-height: 520px;
  align-self: center;
  border-radius: 14px;
  overflow: hidden;
}

.hero-visual.portfolio-spread .polychem-preview-product {
  object-position: top center;
}

.hero-visual.portfolio-spread .polychem-preview-logo {
  width: min(48%, 360px);
}

.hero-visual.portfolio-spread .polychem-preview-panel {
  max-width: 440px;
  padding: clamp(18px, 2.2vw, 28px);
}

.hero-visual.portfolio-spread .polychem-website-screenshot {
  z-index: 0;
  object-fit: cover;
}

.hero-visual.portfolio-spread .polychem-home-preview::after {
  background: linear-gradient(180deg, rgba(17, 19, 21, 0.1), rgba(17, 19, 21, 0.28));
}

.hero-visual.portfolio-spread .portfolio-spread-secondary {
  position: absolute;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(98px, 10vw, 150px);
  width: min(34%, 320px);
  aspect-ratio: 16 / 10;
  margin: 0;
  border-radius: 12px;
  z-index: 3;
}

.hero-visual.portfolio-spread .portfolio-spread-caption {
  max-width: 420px;
  align-self: end;
  z-index: 4;
}

.hero-visual.portfolio-spread .portfolio-spread-caption strong {
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.12;
}












.founder-led-strip {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 7vw, 112px);
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.founder-led-photo {
  min-height: 360px;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 18%, rgba(215, 173, 87, 0.16), transparent 28%),
    var(--paper);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(17, 19, 21, 0.1);
}

.founder-led-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.founder-led-copy h2 {
  max-width: 820px;
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.02;
}

.founder-led-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
}

.founder-led-copy .button {
  margin-top: 30px;
}

.audit-section {
  padding: clamp(60px, 8vw, 110px) clamp(20px, 7vw, 112px);
  background: var(--sage);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.audit-copy h2,
.trust-section h2,
.founder-card-large h2,
.cta-strip h2 {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.04;
}

.audit-copy p:not(.eyebrow),
.trust-section > div:first-child p,
.founder-card-large p {
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
}

.audit-form {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(17, 19, 21, 0.14);
  border-radius: 10px;
  background: var(--ink);
}

.studio-showcase {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 7vw, 112px);
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}

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

.studio-showcase-copy h2 {
  max-width: 720px;
  margin-top: 14px;
  font-size: clamp(36px, 5.5vw, 78px);
  line-height: 1;
}

.studio-showcase-copy p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 22px;
  color: #c8cdcd;
  font-size: 15px;
}

.studio-wall {
  min-height: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.studio-card {
  min-height: clamp(220px, 22vw, 300px);
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(240, 217, 159, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.studio-card:nth-child(1) {
  grid-column: auto;
  grid-row: auto;
}

.studio-card:nth-child(2) {
  grid-column: auto;
  grid-row: auto;
}

.studio-card:nth-child(3) {
  grid-column: auto;
  grid-row: auto;
}

.studio-card:nth-child(4) {
  grid-column: auto;
  grid-row: auto;
}

.studio-card-large {
  background:
    radial-gradient(circle at 82% 18%, rgba(215, 173, 87, 0.38), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
}

.studio-card-accent {
  background:
    linear-gradient(135deg, rgba(217, 230, 220, 0.2), rgba(240, 217, 159, 0.1)),
    rgba(255, 255, 255, 0.06);
}

.studio-card span {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.studio-card strong {
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.25vw, 36px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.outcome-section {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 7vw, 112px);
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}

.outcome-copy {
  position: sticky;
  top: 116px;
}

.outcome-copy h2 {
  max-width: 720px;
  margin-top: 14px;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.02;
}

.outcome-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
}

.outcome-grid {
  display: grid;
  gap: 16px;
}

.outcome-grid article {
  min-height: 178px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  display: grid;
  grid-template-columns: minmax(190px, 0.62fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.outcome-grid article > * {
  min-width: 0;
}

.outcome-grid span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.outcome-grid h3 {
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.12;
  overflow-wrap: break-word;
}

.outcome-grid p {
  color: var(--muted);
  font-size: 14px;
}

.engagement-section {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 7vw, 112px);
  background:
    linear-gradient(90deg, rgba(217, 230, 220, 0.34), rgba(247, 248, 246, 0)),
    var(--paper);
}

.engagement-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 18px;
}

.engagement-grid article {
  min-height: 360px;
  padding: 30px 26px;
  border: 1px solid rgba(17, 19, 21, 0.13);
  border-radius: 10px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.engagement-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(17, 19, 21, 0.1);
}

.engagement-grid span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.engagement-grid h3 {
  margin-top: 18px;
  font-size: clamp(28px, 2.7vw, 40px);
  line-height: 1.04;
}

.engagement-grid p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.engagement-grid a {
  margin-top: auto;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  font-size: 13px;
  font-weight: 800;
}

.home-service-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 18px;
}

.home-service-grid article {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 28px 24px;
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  overflow: hidden;
}

.hero-visual.portfolio-spread .portfolio-spread-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.home-service-grid ul {
  display: grid;
  gap: 9px;
  list-style: none;
}

.home-service-grid li {
  color: var(--muted);
  font-size: 13px;
}

.home-service-grid li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--gold);
  display: inline-block;
}

.home-service-grid a {
  margin-top: auto;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  width: max-content;
  font-size: 13px;
  font-weight: 800;
}

.service-section-action {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

.home-service-grid span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.home-service-grid h3 {
  font-size: clamp(22px, 1.65vw, 28px);
  line-height: 1.18;
  overflow-wrap: break-word;
  hyphens: auto;
}

.home-service-grid h3[data-i18n="serviceEcommerceTitle"],
.service-item h3[data-i18n="serviceEcommerceTitle"] {
  white-space: nowrap;
}

.home-service-grid p,
.case-preview-copy p,
.home-cta p {
  color: var(--muted);
  font-size: 14px;
}

.studio-card > span,
.outcome-grid article > span,
.engagement-grid article > span,
.home-service-grid article > span,
.working-with-grid article > span,
.trust-card-grid article > span,
.next-steps-grid li > span,
.home-process li > span,
.service-item > span,
.process-grid li > span,
.about-card-grid article > span,
.about-process-timeline li > span,
.case-solution div > span {
  display: none !important;
}

.trust-section,
.founder-section {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 7vw, 112px);
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-card-grid article,
.founder-card-large {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.trust-card-grid article {
  min-height: 230px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 22px;
  align-items: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.trust-card-grid article::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215, 173, 87, 0.18), transparent 70%);
}

.trust-card-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 173, 87, 0.42);
  box-shadow: 0 24px 70px rgba(17, 19, 21, 0.1);
}

.trust-card-grid article > span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.trust-card-grid h3 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
  overflow-wrap: break-word;
}

.trust-card-grid p {
  margin-top: 0;
  color: var(--muted);
  font-size: 14px;
}

.founder-section {
  grid-template-columns: 1fr;
  background: var(--paper);
}

.founder-card-large {
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
}

.founder-card-large .button {
  margin-top: 28px;
}

.founder-portrait {
  min-height: 360px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 24%, rgba(240, 217, 159, 0.34), transparent 24%),
    linear-gradient(145deg, #111315, #292116);
  border: 1px solid rgba(215, 173, 87, 0.22);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.founder-portrait::before,
.founder-portrait::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(240, 217, 159, 0.18);
}

.founder-portrait::before {
  inset: 32px;
  border-radius: 999px 999px 18px 18px;
}

.founder-portrait::after {
  width: 68%;
  height: 46%;
  bottom: -12%;
  border-radius: 999px 999px 0 0;
  background: rgba(255, 255, 255, 0.05);
}

.founder-portrait span {
  z-index: 1;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(240, 217, 159, 0.42);
  border-radius: 999px;
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.28);
}

.cta-strip {
  padding: clamp(48px, 7vw, 82px) clamp(20px, 7vw, 112px);
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-strip h2 {
  max-width: 760px;
}

.cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.boutique-section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 7vw, 112px);
  background:
    linear-gradient(90deg, rgba(217, 230, 220, 0.34), rgba(247, 248, 246, 0)),
    var(--paper);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
}

.boutique-section > *,
.boutique-benefits,
.section-heading > *,
.service-item,
.service-item div,
.service-item h3,
.service-item p,
.service-item ul {
  min-width: 0;
}

.boutique-section h2 {
  max-width: 820px;
  margin-top: 14px;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.08;
  overflow-wrap: break-word;
}

.boutique-benefits {
  display: grid;
  gap: 22px;
}

.boutique-benefits p {
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
}

.boutique-benefits ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.boutique-benefits li {
  min-height: 42px;
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  white-space: normal;
}

.working-with-section {
  padding: clamp(70px, 9vw, 126px) clamp(20px, 7vw, 112px);
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.working-with-section .eyebrow {
  color: var(--gold-light);
}

.working-with-section h2 {
  max-width: 780px;
  margin-top: 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}

.working-with-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 18px;
  align-items: stretch;
}

.working-with-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(240, 217, 159, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.working-with-grid article:last-child {
  grid-column: auto;
}

.working-with-grid span {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.working-with-grid h3 {
  margin-top: 0;
  color: var(--white);
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.12;
  overflow-wrap: break-word;
  hyphens: auto;
}

.working-with-grid p {
  margin-top: 16px;
  color: #b9bfc0;
  font-size: 14px;
  line-height: 1.58;
}

@media (max-width: 1180px) {
  .working-with-section,
  .boutique-section {
    grid-template-columns: 1fr;
  }

  .working-with-section h2,
  .boutique-section h2 {
    max-width: 760px;
  }
}

.fit-section {
  padding: clamp(70px, 9vw, 126px) clamp(20px, 7vw, 112px);
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.fit-section h2 {
  max-width: 720px;
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.04;
}

.fit-section > div:first-child p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fit-grid article {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.fit-grid h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}

.fit-grid ul {
  margin-top: 22px;
  padding-left: 18px;
  display: grid;
  gap: 12px;
}

.fit-grid li {
  color: var(--muted);
  font-size: 14px;
}

.profile-mini-section {
  padding: clamp(40px, 6vw, 72px) clamp(20px, 7vw, 112px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(240, 217, 159, 0.14), rgba(247, 248, 246, 0)),
    var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.profile-mini-section h2 {
  max-width: 720px;
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
}

.profile-mini-section p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.next-steps-section {
  padding: clamp(70px, 9vw, 126px) clamp(20px, 7vw, 112px);
  background: var(--white);
}

.next-steps-grid {
  margin-top: 50px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 18px;
  align-items: stretch;
}

.next-steps-grid li {
  min-height: 220px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  overflow: hidden;
}

.next-steps-grid li::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(215, 173, 87, 0));
}

.next-steps-grid span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.next-steps-grid strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.12;
  align-self: start;
}

.next-steps-grid p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
  align-self: start;
}

.founder-portrait-photo {
  padding: 0;
  background: var(--paper);
}

.founder-portrait-photo::before,
.founder-portrait-photo::after {
  display: none;
}

.founder-portrait-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.showcase-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.showcase-grid article {
  min-height: 520px;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
  display: grid;
  grid-template-rows: 260px auto auto 1fr;
}

.showcase-grid article > .eyebrow,
.showcase-grid article > h3,
.showcase-grid article > p:not(.eyebrow) {
  margin-left: 24px;
  margin-right: 24px;
}

.showcase-grid article > .eyebrow {
  margin-top: 24px;
  color: var(--gold);
}

.showcase-grid h3 {
  margin-top: 10px;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.08;
}

.showcase-grid article > p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.showcase-visual {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}

.showcase-visual::before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(240, 217, 159, 0.22);
  border-radius: 8px;
}

.showcase-visual span {
  position: absolute;
  display: block;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
}

.restaurant-visual {
  background:
    radial-gradient(circle at 70% 28%, rgba(215, 173, 87, 0.32), transparent 26%),
    linear-gradient(135deg, #111315, #282116);
}

.restaurant-visual span:nth-child(1) {
  left: 54px;
  top: 60px;
  width: 54%;
  height: 28px;
  background: var(--gold);
}

.restaurant-visual span:nth-child(2) {
  left: 54px;
  top: 112px;
  width: 68%;
  height: 70px;
}

.restaurant-visual span:nth-child(3) {
  right: 54px;
  bottom: 44px;
  width: 112px;
  height: 38px;
  background: rgba(240, 217, 159, 0.78);
}

.shop-visual {
  background:
    linear-gradient(90deg, rgba(217, 230, 220, 0.14), transparent),
    #111315;
}

.shop-visual span:nth-child(1),
.shop-visual span:nth-child(2),
.shop-visual span:nth-child(3),
.shop-visual span:nth-child(4) {
  width: 34%;
  height: 72px;
}

.shop-visual span:nth-child(1) { left: 52px; top: 58px; background: rgba(240, 217, 159, 0.78); }
.shop-visual span:nth-child(2) { right: 52px; top: 58px; }
.shop-visual span:nth-child(3) { left: 52px; bottom: 54px; }
.shop-visual span:nth-child(4) { right: 52px; bottom: 54px; background: rgba(217, 230, 220, 0.62); }

.app-visual {
  background:
    radial-gradient(circle at 30% 70%, rgba(217, 230, 220, 0.18), transparent 30%),
    #111315;
}

.app-visual span:nth-child(1) {
  left: 52px;
  top: 52px;
  width: calc(100% - 104px);
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
}

.app-visual span:nth-child(2) {
  left: 52px;
  top: 136px;
  width: 32%;
  height: 86px;
  background: rgba(240, 217, 159, 0.72);
}

.app-visual span:nth-child(3) {
  right: 52px;
  top: 136px;
  width: 42%;
  height: 86px;
}

.home-process {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 7vw, 112px);
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 120px);
}

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

.home-process h2,
.case-preview-copy h2,
.home-cta h2 {
  max-width: 720px;
  margin-top: 14px;
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.06;
}

.home-process ol {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.home-process li {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  grid-template-columns: minmax(130px, 0.32fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.home-process li span {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.home-process li strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 26px);
  line-height: 1.15;
  overflow-wrap: break-word;
  hyphens: auto;
}

.home-process li p {
  color: #bdc1c2;
  font-size: 14px;
  line-height: 1.58;
}

.case-preview-section {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 7vw, 112px);
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.case-preview-media {
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--ink);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(17, 19, 21, 0.14);
}

.case-preview-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top left;
}

.case-preview-copy h2 {
  max-width: 720px;
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
}

.case-preview-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.case-preview-points {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.case-preview-points span {
  padding: 13px 15px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.case-preview-copy .text-link {
  margin-top: 32px;
}

.premium-timeline {
  position: relative;
}

.premium-timeline::before {
  display: none;
}

.home-process .premium-timeline li {
  position: relative;
  padding: 26px 0;
  grid-template-columns: minmax(130px, 0.32fr) minmax(0, 1fr);
  border-bottom-color: rgba(240, 217, 159, 0.14);
}

.home-process .premium-timeline li span {
  position: absolute;
  left: 0;
  top: 28px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(240, 217, 159, 0.36);
  border-radius: 999px;
  background: var(--ink);
  display: grid;
  place-items: center;
}

.home-process .premium-timeline li:hover span {
  background: var(--gold);
  color: var(--ink);
}

.premium-cases {
  display: block;
  background:
    linear-gradient(180deg, var(--white), #f0f1ee);
}

.premium-cases .section-heading {
  margin-bottom: 54px;
}

.premium-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.premium-case-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(340px, 0.95fr) auto;
  box-shadow: 0 26px 80px rgba(17, 19, 21, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.premium-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 100px rgba(17, 19, 21, 0.13);
}

.premium-case-media {
  min-height: 360px;
  background: var(--ink);
  overflow: hidden;
  display: block;
}

.premium-case-media img:not(.polychem-preview-logo) {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top left;
}

.premium-case-content {
  padding: clamp(24px, 4vw, 38px);
}

.premium-case-content h3 {
  margin-top: 10px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
}

.premium-case-content dl {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.premium-case-content div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.premium-case-content dt {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.premium-case-content dd {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.premium-case-content .text-link {
  margin-top: 28px;
}

.faq-section {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 7vw, 112px);
  background: #ecefed;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.faq-section h2 {
  max-width: 620px;
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article {
  padding: 24px;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.faq-list h3 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.12;
}

.faq-list p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.home-cta {
  margin: clamp(20px, 5vw, 72px) clamp(20px, 7vw, 112px) clamp(70px, 9vw, 130px);
  padding: clamp(34px, 5vw, 64px);
  border-radius: 10px;
  background: var(--sage);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
}

.home-cta h2 {
  max-width: 850px;
}

.home-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.page-hero {
  padding: clamp(78px, 11vw, 150px) clamp(20px, 7vw, 112px)
    clamp(42px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1,
.about-page h1,
.contact-page h1 {
  max-width: 920px;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
}

.service-detail-grid {
  padding: clamp(48px, 7vw, 92px) clamp(20px, 6vw, 96px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-detail-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  padding: clamp(24px, 3vw, 36px);
}

.service-detail-grid h2 {
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.1;
}

.service-detail-grid p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.service-page-section {
  padding: clamp(34px, 5vw, 72px) clamp(20px, 7vw, 112px);
  border-top: 1px solid var(--line);
}

.service-page-section h2 {
  max-width: 760px;
  margin-top: 10px;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.03;
}

.service-page-section > p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.service-mini-process {
  max-width: 900px;
  margin-top: 28px;
  display: grid;
  gap: 0;
  list-style: none;
  counter-reset: service-step;
}

.service-mini-process li {
  counter-increment: service-step;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  color: var(--muted);
  font-size: 17px;
}

.service-mini-process li::before {
  content: counter(service-step, decimal-leading-zero);
  color: var(--gold);
  font-weight: 800;
}

.legal-content {
  max-width: 860px;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 7vw, 112px);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.1;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.not-found-page {
  min-height: 100svh;
  padding: clamp(24px, 5vw, 64px);
  display: grid;
  align-content: center;
  gap: clamp(52px, 8vw, 120px);
  background: var(--ink);
  color: var(--white);
}

.not-found-page .brand-name,
.not-found-page .eyebrow {
  color: var(--gold-light);
}

.not-found-page h1 {
  max-width: 820px;
}

.not-found-page p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.6vw, 21px);
}

.page-section-tight {
  padding-top: clamp(34px, 5vw, 70px);
}

.page-service-list {
  margin-top: 0;
}

.standalone-placeholder {
  margin-top: 0;
}

.process-page-hero {
  background: var(--ice);
}

.page-process-grid {
  margin-top: 0;
}

.about-hero-media {
  position: relative;
  height: clamp(340px, 48vw, 620px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--ink);
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 19, 21, 0.78) 0%,
    rgba(17, 19, 21, 0.36) 42%,
    rgba(17, 19, 21, 0.08) 100%
  );
}

.about-hero-caption {
  position: absolute;
  left: clamp(20px, 7vw, 112px);
  bottom: clamp(28px, 6vw, 76px);
  z-index: 1;
  max-width: 620px;
  color: var(--white);
}

.about-hero-caption .eyebrow {
  color: var(--gold-light);
}

.about-hero-caption p:last-child {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 58px);
  line-height: 1.06;
}

.about-page {
  min-height: auto;
  align-items: center;
}

.about-premium-hero {
  height: clamp(420px, 52vw, 720px);
}

.about-profile-section {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 7vw, 112px);
}

.founder-story-section {
  background: var(--paper);
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 118px);
  align-items: center;
}

.about-founder-visual {
  min-height: clamp(390px, 42vw, 620px);
  border: 1px solid rgba(215, 173, 87, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 18%, rgba(240, 217, 159, 0.28), transparent 26%),
    linear-gradient(145deg, #090a0b, #272116);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.about-founder-visual::before,
.about-founder-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(240, 217, 159, 0.16);
  pointer-events: none;
}

.about-founder-visual::before {
  inset: 34px;
  border-radius: 999px 999px 24px 24px;
}

.about-founder-visual::after {
  width: 72%;
  height: 46%;
  bottom: -12%;
  border-radius: 999px 999px 0 0;
  background: rgba(255, 255, 255, 0.05);
}

.about-founder-frame {
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 24px;
}

.about-founder-frame img {
  width: clamp(124px, 16vw, 210px);
  height: clamp(124px, 16vw, 210px);
  border: 1px solid rgba(240, 217, 159, 0.42);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  object-fit: cover;
  object-position: center top;
  padding: 0;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.about-founder-frame span {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700;
}

.about-profile-copy h1,
.about-profile-section h2 {
  max-width: 880px;
  margin-top: 14px;
  font-size: clamp(36px, 5.6vw, 82px);
  line-height: 0.98;
}

.about-profile-copy p:not(.eyebrow),
.about-profile-section .section-heading > p,
.about-contact-section p,
.company-profile-download p {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
}

.why-droom-section,
.about-faq-section {
  background: var(--white);
}

.values-section,
.about-process-section {
  background: #ecefed;
}

.about-card-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
}

.about-card-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about-card-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 173, 87, 0.42);
  box-shadow: 0 28px 80px rgba(17, 19, 21, 0.1);
}

.about-card-grid span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.about-card-grid h3 {
  margin-top: 0;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.12;
  overflow-wrap: break-word;
}

.about-card-grid p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.values-list,
.about-faq-list {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.values-list article,
.about-faq-list article {
  padding: 26px;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 10px;
  background: var(--white);
}

.values-list strong,
.about-faq-list h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.05;
}

.values-list p,
.about-faq-list p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.about-process-section {
  background: var(--ink);
  color: var(--white);
}

.about-process-section .eyebrow {
  color: var(--gold-light);
}

.about-process-timeline {
  margin-top: 56px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 18px;
  border-top: 0;
}

.about-process-timeline li {
  min-height: 220px;
  padding: 32px;
  border: 1px solid rgba(240, 217, 159, 0.18);
  border-top: 4px solid var(--gold);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-process-timeline li:last-child {
  border-right: 1px solid rgba(240, 217, 159, 0.18);
}

.about-process-timeline span {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.about-process-timeline strong {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.14;
  overflow-wrap: break-word;
}

.about-process-timeline p {
  margin-top: 12px;
  color: #bdc1c2;
  font-size: 13px;
}

.about-contact-section,
.company-profile-download {
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 173, 87, 0.16), transparent 28%),
    var(--ink);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(28px, 7vw, 90px);
}

.about-contact-section .eyebrow,
.company-profile-download .eyebrow {
  color: var(--gold-light);
}

.about-contact-section p,
.company-profile-download p {
  color: #bdc1c2;
}

.about-contact-actions {
  display: grid;
  justify-items: start;
  gap: 20px;
}

.about-contact-actions .text-link {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.company-profile-download {
  padding: clamp(48px, 7vw, 88px) clamp(20px, 7vw, 112px);
  border-top: 1px solid rgba(240, 217, 159, 0.18);
  border-bottom: 1px solid rgba(240, 217, 159, 0.18);
  background:
    linear-gradient(135deg, rgba(240, 217, 159, 0.12), transparent 42%),
    #101214;
}

.company-profile-download > div {
  min-width: 0;
}

.company-profile-download h2 {
  max-width: 680px;
  margin-top: 12px;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.04;
}

.company-profile-download p {
  max-width: 520px;
  margin-top: 14px;
}

.company-profile-download .button {
  flex: 0 0 auto;
  min-width: 176px;
}

.contact-page {
  min-height: calc(100vh - 176px);
  align-items: center;
}

.intro-band {
  padding: clamp(38px, 5vw, 72px) clamp(24px, 8vw, 128px);
  background: var(--ink);
  color: var(--white);
}

.intro-band p {
  max-width: 1120px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 58px);
  line-height: 1.08;
}

.section {
  padding: clamp(70px, 10vw, 150px) clamp(20px, 7vw, 112px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: 40px;
  align-items: end;
}

.section-heading h2,
.about h2,
.contact-section h2 {
  max-width: 780px;
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.04;
}

.section-heading > p {
  color: var(--muted);
  font-size: 15px;
}

.service-list {
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

.service-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-item > span,
.process-grid li > span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.service-item div {
  display: grid;
  grid-template-columns: minmax(200px, 0.7fr) minmax(280px, 1fr);
  gap: 40px;
}

.service-item h3 {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.16;
  min-width: 0;
  width: 100%;
}

.service-item p,
.process-grid p,
.about-copy > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 14px;
}

.service-bullets {
  margin-top: 16px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.service-bullets li {
  color: var(--muted);
  font-size: 13px;
}

.service-bullets li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--gold);
  display: inline-block;
}

.service-item .text-link {
  margin-top: 20px;
  width: max-content;
}

.work-section {
  background: var(--white);
}

.featured-case-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
}

.featured-case-card + .featured-case-card {
  margin-top: 28px;
}

.case-media {
  min-height: 520px;
  background: var(--ink);
  display: block;
  overflow: hidden;
}

.case-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top left;
}

.polychem-home-preview {
  position: relative;
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(17, 19, 21, 0.18), rgba(17, 19, 21, 0.72)),
    #111315;
  display: block;
  isolation: isolate;
}

.polychem-home-preview-large {
  min-height: clamp(430px, 54vw, 720px);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(17, 19, 21, 0.14);
}

.polychem-preview-product {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.polychem-home-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.82) 0%, rgba(17, 19, 21, 0.32) 58%, rgba(17, 19, 21, 0.18) 100%);
}

.polychem-preview-logo {
  --polychem-preview-inset: clamp(26px, 4vw, 54px);
  position: absolute;
  top: var(--polychem-preview-inset);
  left: var(--polychem-preview-inset);
  width: min(54%, 440px);
  max-width: calc(100% - (var(--polychem-preview-inset) * 2));
  height: auto;
  display: block;
  object-fit: contain;
}

.polychem-preview-panel {
  position: absolute;
  left: clamp(26px, 4vw, 54px);
  right: clamp(26px, 4vw, 54px);
  bottom: clamp(26px, 4vw, 54px);
  max-width: 620px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(17, 19, 21, 0.72);
  color: var(--white);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 12px;
}

.polychem-preview-panel .eyebrow {
  color: var(--gold-light);
}

.polychem-preview-panel strong {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.04;
}

.case-card-content {
  padding: clamp(30px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-card-content h2 {
  margin-top: 12px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.96;
}

.case-card-content > p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
}

.case-facts,
.case-story-list {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.case-facts div,
.case-story-list div,
.case-summary div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px;
}

.case-facts dt,
.case-story-list dt,
.case-summary dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.case-facts dd,
.case-story-list dd,
.case-summary dd {
  font-size: 14px;
  font-weight: 700;
}

.case-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.work-placeholder {
  min-height: 360px;
  margin-top: 62px;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  background: var(--paper);
}

.placeholder-mark {
  width: clamp(88px, 12vw, 160px);
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 90px);
}

.work-placeholder h3 {
  max-width: 560px;
  margin-top: 12px;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.1;
}

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

.case-study {
  background: var(--paper);
}

.case-hero {
  padding: clamp(78px, 11vw, 150px) clamp(20px, 7vw, 112px)
    clamp(48px, 8vw, 112px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(40px, 9vw, 140px);
  align-items: end;
}

.case-hero h1 {
  max-width: 900px;
}

.case-hero p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
}

.case-summary {
  display: grid;
  gap: 18px;
}

.case-image-band {
  padding: 0 clamp(20px, 7vw, 112px) clamp(70px, 9vw, 130px);
}

.case-image-band img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 26px 80px rgba(17, 19, 21, 0.14);
}

.case-detail-grid {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 7vw, 112px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}

.case-detail-grid h2 {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.04;
}

.case-detail-grid > p {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
}

.case-solution {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 7vw, 112px);
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.case-solution div {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(240, 217, 159, 0.18);
  display: grid;
  align-content: start;
  gap: 16px;
}

.case-solution span {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.case-solution h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}

.case-solution p {
  color: #bdc1c2;
  font-size: 14px;
}

.case-result {
  background: var(--white);
}

.process-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  list-style: none;
  gap: 16px;
  border-top: 0;
}

.process-grid li {
  min-height: 220px;
  padding: 30px 26px;
  border: 1px solid rgba(17, 19, 21, 0.16);
  border-top: 4px solid var(--gold);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-grid li:first-child {
  padding-left: 26px;
}

.process-grid li:last-child {
  border-right: 1px solid rgba(17, 19, 21, 0.16);
}

.process-grid h3 {
  margin-top: 0;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.14;
  overflow-wrap: break-word;
}

.process-grid p {
  margin-top: 12px;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
  gap: clamp(50px, 10vw, 160px);
  align-items: end;
}

.about-copy {
  display: grid;
  gap: 36px;
}

.founder-row {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
}

.founder-initials {
  width: 50px;
  height: 50px;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}

.founder-row div:last-child {
  display: grid;
  gap: 3px;
}

.founder-row span {
  color: var(--muted);
  font-size: 12px;
}

.contact-section {
  padding: clamp(70px, 10vw, 150px) clamp(20px, 7vw, 112px);
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(50px, 10vw, 150px);
}

.contact-section .eyebrow,
.contact-copy > p,
.contact-meta span {
  color: #aeb4b5;
}

.contact-copy > p {
  max-width: 620px;
  margin-top: 24px;
}

.contact-email {
  display: inline-block;
  margin-top: 34px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 36px);
}

.contact-founder-mini {
  margin-top: 30px;
  padding: 14px;
  border: 1px solid rgba(240, 217, 159, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.contact-founder-mini img {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center top;
}

.contact-founder-mini div {
  display: grid;
  gap: 3px;
}

.contact-founder-mini strong {
  color: var(--white);
  font-size: 14px;
}

.contact-founder-mini span {
  color: #aeb4b5;
  font-size: 12px;
}

.contact-meta {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid #3a3d3f;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-meta div {
  display: grid;
  gap: 5px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: #bdc1c2;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #4a4e50;
  border-radius: 0;
  background: #1a1c1e;
  color: var(--white);
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  border: 0;
  margin-top: 4px;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-status {
  min-height: 22px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
}

.form-status.error {
  color: #ffb4a8;
}

.site-footer {
  padding: clamp(48px, 7vw, 86px) clamp(20px, 7vw, 112px) 28px;
  background: #101214;
  color: var(--white);
  border-top: 1px solid rgba(240, 217, 159, 0.18);
}

.footer-conversion {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}

.footer-brand-panel,
.footer-contact-panel {
  border: 1px solid rgba(240, 217, 159, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  padding: clamp(24px, 4vw, 38px);
}

.footer-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.footer-logo-lockup span {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(240, 217, 159, 0.26);
  background: rgba(0, 0, 0, 0.28);
  display: grid;
  place-items: center;
}

.footer-logo-lockup img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.footer-logo-lockup strong {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.95;
}

.footer-brand-panel p {
  max-width: 620px;
  margin-top: 22px;
  color: #b9bfc0;
  font-size: clamp(15px, 1.25vw, 18px);
}

.footer-cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-contact-panel .eyebrow {
  color: var(--gold-light);
}

.footer-contact-panel ul {
  margin-top: 18px;
  list-style: none;
  display: grid;
  gap: 14px;
}

.footer-contact-panel li {
  display: grid;
  gap: 4px;
}

.footer-contact-panel span {
  color: #8f9697;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact-panel a {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease;
}

.footer-contact-panel a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  margin-top: clamp(44px, 6vw, 76px);
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #aeb4b5;
  font-size: 12px;
}

.footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-legal a {
  color: #c6cbca;
}

.footer-legal a:hover {
  color: var(--gold-light);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: clamp(16px, 4vw, 36px);
    width: min(300px, calc(100vw - 32px));
    background: var(--ink);
    border: 1px solid rgba(215, 173, 87, 0.38);
    box-shadow: 0 24px 60px rgba(17, 19, 21, 0.22);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 10px;
    z-index: 40;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 18px;
    width: 12px;
    height: 12px;
    background: var(--ink);
    border-left: 1px solid rgba(215, 173, 87, 0.38);
    border-top: 1px solid rgba(215, 173, 87, 0.38);
    transform: rotate(45deg);
  }

  .site-nav a {
    min-height: 44px;
    padding: 0 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    color: rgba(247, 248, 246, 0.82);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.2;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: rgba(215, 173, 87, 0.16);
    color: var(--gold-light);
  }

  .menu-toggle {
    justify-self: end;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: transparent;
    display: grid;
    place-content: center;
    gap: 6px;
  }

  .menu-toggle[aria-expanded="true"] {
    background: var(--ink);
    border-color: var(--ink);
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: var(--ink);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only) {
    background: var(--white);
  }

  .header-actions .button {
    display: none;
  }

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

  .premium-hero {
    background: var(--paper);
  }

  .hero-copy {
    padding: 70px 32px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-visual.portfolio-spread {
    min-height: 560px;
    padding: 32px;
  }

  .hero-visual.portfolio-spread .portfolio-spread-main {
    height: 420px;
  }

  .hero-visual.portfolio-spread .portfolio-spread-secondary {
    right: 32px;
    bottom: 96px;
    width: min(36%, 280px);
  }

  .home-service-grid,
  .showcase-grid,
  .about-card-grid,
  .about-process-timeline,
  .premium-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-process,
  .studio-showcase,
  .audit-section,
  .trust-section,
  .working-with-section,
  .fit-section,
  .founder-led-strip,
  .boutique-section,
  .about-contact-section,
  .case-preview-section,
  .faq-section,
  .home-cta,
  .outcome-section {
    grid-template-columns: 1fr;
  }

  .outcome-copy {
    position: static;
  }

  .home-cta .button,
  .case-preview-copy .text-link {
    justify-self: start;
  }

  .section-heading,
  .about,
  .founder-story-section,
  .founder-card-large,
  .contact-section,
  .featured-case-card,
  .case-hero,
  .case-detail-grid {
    grid-template-columns: 1fr;
  }

  .founder-portrait {
    min-height: 300px;
  }

  .about-process-timeline li:nth-child(2),
  .about-process-timeline li:nth-child(4) {
    border-right: 0;
  }

  .about-contact-section,
  .company-profile-download {
    align-items: flex-start;
    flex-direction: column;
  }

  .next-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-solution {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero-media::after {
    background: linear-gradient(
      180deg,
      rgba(17, 19, 21, 0.16) 0%,
      rgba(17, 19, 21, 0.78) 100%
    );
  }

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

  .about-card-grid,
  .about-process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-process-timeline li:nth-child(2),
  .about-process-timeline li:nth-child(4) {
    border-right: 0;
  }

  .about-contact-section,
  .company-profile-download {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-grid li:nth-child(2) {
    border-right: 0;
  }

  .footer-conversion {
    grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-name {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .site-nav {
    right: clamp(70px, 27vw, 88px);
    width: min(280px, calc(100vw - 110px));
  }

  .language-button {
    padding: 4px 5px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: calc(100svh - 68px);
    padding: 54px 20px 38px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-proof-list {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-proof-list span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }

  .hero-proof-row span + span::before {
    content: none;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .hero-visual {
    min-height: 460px;
    padding: 22px;
    align-items: center;
  }

  .hero-visual.portfolio-spread {
    min-height: auto;
    padding: 22px;
    gap: 16px;
  }

  .hero-visual.portfolio-spread .portfolio-spread-main {
    height: 320px;
  }

  .hero-visual.portfolio-spread .portfolio-spread-secondary {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(74%, 280px);
    justify-self: end;
  }

  .hero-visual.portfolio-spread .portfolio-spread-caption {
    max-width: 100%;
  }




  .home-service-grid,
  .showcase-grid,
  .engagement-grid,
  .next-steps-grid,
  .about-card-grid,
  .values-list,
  .about-faq-list,
  .about-process-timeline,
  .premium-case-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 20px;
  }

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

  .about-profile-section {
    padding: 64px 20px;
  }

  .about-founder-visual {
    min-height: 360px;
  }

  .about-card-grid article {
    min-height: auto;
  }

  .about-process-timeline li,
  .about-process-timeline li:nth-child(2),
  .about-process-timeline li:nth-child(4) {
    min-height: auto;
    border-right: 1px solid rgba(240, 217, 159, 0.18);
    border-bottom: 1px solid rgba(240, 217, 159, 0.18);
  }

  .about-process-timeline strong {
    margin-top: 0;
  }

  .company-profile-download .button,
  .about-contact-actions,
  .about-contact-actions .button,
  .service-section-action,
  .service-section-action .button {
    width: 100%;
  }

  .founder-led-photo {
    min-height: 330px;
  }

  .next-steps-grid li {
    min-height: auto;
  }

  .home-service-grid {
    margin-top: 34px;
  }

  .home-service-grid article {
    min-height: auto;
    padding: 24px 20px;
  }

  .outcome-section,
  .studio-showcase,
  .audit-section,
  .trust-section,
  .founder-section,
  .founder-led-strip,
  .boutique-section,
  .next-steps-section,
  .engagement-section,
  .faq-section {
    padding: 64px 20px;
  }

  .outcome-grid article {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 20px;
  }

  .trust-card-grid {
    grid-template-columns: 1fr;
  }

  .trust-card-grid article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .founder-card-large {
    grid-template-columns: 1fr;
  }

  .founder-portrait {
    min-height: 260px;
  }

  .cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-mini-section {
    align-items: flex-start;
    flex-direction: column;
    padding: 46px 20px;
  }

  .cta-strip-actions,
  .cta-strip-actions .button,
  .profile-mini-section .button {
    width: 100%;
  }

  .showcase-grid {
    margin-top: 34px;
  }

  .showcase-grid article {
    min-height: auto;
    grid-template-rows: 230px auto auto auto;
  }

  .showcase-grid article > .eyebrow,
  .showcase-grid article > h3,
  .showcase-grid article > p:not(.eyebrow) {
    margin-left: 20px;
    margin-right: 20px;
  }

  .showcase-grid article > p:not(.eyebrow) {
    margin-bottom: 26px;
  }

  .home-process {
    padding: 64px 20px;
    grid-template-columns: 1fr;
  }

  .home-process li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-process .premium-timeline li {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .home-process li strong {
    font-size: 24px;
  }

  .engagement-grid article {
    min-height: auto;
  }

  .engagement-grid h3 {
    margin-top: 42px;
  }

  .case-preview-section {
    grid-template-columns: 1fr;
    padding: 64px 20px;
  }

  .premium-cases {
    padding: 64px 20px;
  }

  .case-preview-media {
    min-height: 320px;
  }

  .premium-case-card {
    grid-template-rows: minmax(280px, auto) auto;
  }

  .premium-case-media {
    min-height: 280px;
  }

  .studio-wall {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .working-with-grid {
    grid-template-columns: 1fr;
  }

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

  .working-with-grid article:last-child {
    grid-column: auto;
  }

  .studio-card,
  .studio-card:nth-child(1),
  .studio-card:nth-child(2),
  .studio-card:nth-child(3),
  .studio-card:nth-child(4) {
    min-height: 170px;
    grid-column: auto;
    grid-row: auto;
  }

  .home-cta {
    margin: 20px 20px 70px;
    padding: 28px 22px;
    grid-template-columns: 1fr;
  }

  .home-cta .button {
    width: 100%;
  }

  .about-hero-media {
    height: 420px;
  }

  .about-hero-caption {
    right: 20px;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-item div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .work-placeholder {
    grid-template-columns: 1fr;
  }

  .case-media {
    min-height: 330px;
  }

  .polychem-home-preview,
  .polychem-home-preview-large {
    min-height: 360px;
  }

  .case-card-content {
    padding: 28px 22px;
  }

  .case-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-hero,
  .case-detail-grid,
  .case-solution {
    padding: 64px 20px;
  }

  .case-hero,
  .case-detail-grid {
    grid-template-columns: 1fr;
  }

  .case-detail-grid > * {
    min-width: 0;
  }

  .case-image-band {
    padding: 0 20px 64px;
  }

  .case-image-band img {
    border-radius: 10px;
  }

  .case-solution {
    grid-template-columns: 1fr;
  }

  .case-solution div {
    min-height: auto;
    padding: 24px 20px;
  }

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

  .process-grid li,
  .process-grid li:first-child {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 19, 21, 0.22);
  }

  .process-grid h3 {
    margin-top: 36px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-meta {
    grid-template-columns: 1fr;
  }

  .footer-conversion {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-logo-lockup strong {
    font-size: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-spread {
    padding: 28px 20px 42px;
  }

  .portfolio-spread-main {
    min-height: 280px;
  }

  .portfolio-spread-secondary {
    width: min(76%, 340px);
    margin-top: -36px;
  }
}

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