:root {
  --paper: #f6f8fb;
  --paper-soft: #ffffff;
  --ink: #0a2c45;
  --ink-soft: #455d70;
  --orange: #f15d23;
  --orange-text: #b8141c;
  --green: #0b5b94;
  --lime: #f4a044;
  --line: rgba(10, 44, 69, 0.17);
  --line-light: rgba(255, 255, 255, 0.2);
  --shell: min(1320px, calc(100% - 48px));
  --header-height: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

::selection {
  background: var(--orange);
  color: #fff;
}

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



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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--ink);
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(96px, 11vw, 176px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  transition: background-color 250ms ease, border-color 250ms ease, height 250ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 248, 251, 0.96);
  backdrop-filter: blur(16px);
  
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.brand {
  position: relative;
  display: inline-flex;
  width: 160px;
  height: 72px;
  align-items: center;
  overflow: hidden;
}

.brand-logo {
  position: absolute;
  top: 50%;
  left: 30%;
  display: block;
  width: 75px;
  max-width: none;
  height: 176px;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 40px);
}

.primary-nav a,
.header-cta {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  border-radius: 16px;
}

.nav-contact {
  display: none;
}

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

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

.header-cta {
  justify-self: end;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  transition: background-color 250ms ease, color 250ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + clamp(44px, 6vw, 88px));
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.72fr);
  align-items: center;
  gap: clamp(52px, 7vw, 112px);
}

.hero-copy {
  padding-block: 36px 56px;
}




.section-index,
.project-type,
.art-kicker {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
}


.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 90, 31, 0.14);
}

.hero h1 {
  max-width: 810px;
  margin-bottom: 36px;
  font-size: clamp(64px, 7.3vw, 118px);
  font-weight: 700;
  letter-spacing: -0.072em;
  line-height: 0.85;
}

.hero h1 span {
  display: block;
  color: var(--orange-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.94em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 1;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-bottom: 52px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  transition: transform 250ms var(--ease), background-color 250ms ease;
  
}

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

.button-primary {
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 0 3px rgba(10, 44, 69, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-text);
}

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

.text-link span {
  transition: transform 250ms var(--ease);
}

.text-link:hover span {
  transform: translateY(4px);
}

.hero-disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-disciplines li:not(:last-child)::after {
  margin-left: 26px;
  color: var(--orange);
  content: "/";
}

.hero-visual {
  position: relative;
  min-height: min(720px, calc(100svh - 150px));
  overflow: hidden;
  background: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px), var(--ink);
  background-size: 42px 42px;
  color: #fff;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: -26%;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.hero-visual::after {
  position: absolute;
  z-index: -1;
  right: 14%;
  bottom: -11%;
  width: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green);
  content: "";
  mix-blend-mode: screen;
}

.visual-meta {
  position: absolute;
  top: 26px;
  right: 26px;
  left: 26px;
  display: flex;
  justify-content: space-between;
  font: 700 10px/1 Arial, sans-serif;
  letter-spacing: 0.16em;
}

.visual-orbit {
  position: absolute;
  top: 22%;
  left: 12%;
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: drift 10s var(--ease) infinite alternate;
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  transform: translate(-50%, -50%);
}

.orbit-line {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
}

.orbit-line-one {
  transform: rotateX(67deg);
}

.orbit-line-two {
  transform: rotateY(67deg);
}

.visual-word {
  position: absolute;
  right: -0.05em;
  bottom: 17%;
  margin: 0;
  color: transparent;
  font-size: clamp(78px, 10vw, 160px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.visual-logo {
  position: absolute;
  z-index: 2;
  top: 47%;
  left: 48%;
  width: min(66%, px);
  height: auto;
  border: 10px solid #fff;
  background: #fff;
  box-shadow: 20px 24px 0 rgba(10, 44, 69, 0.25);
  transform: translate(-50%, -50%);
}

.visual-statement {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.visual-statement span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
}

.visual-statement p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.25;
}

.visual-stripes {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 105px;
  height: 15px;
}

.visual-stripes span {
  flex: 1;
}

.visual-stripes span:nth-child(1) { background: var(--orange-text); }
.visual-stripes span:nth-child(2) { background: var(--orange); }
.visual-stripes span:nth-child(3) { background: var(--green); }

.hero-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-block: 22px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-foot-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.statement {
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 48px;
}

.section-index { margin-bottom: 28px; }

.statement h2 {
  max-width: 1050px;
  margin-bottom: 42px;
  font-size: clamp(42px, 5.7vw, 86px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.statement h2 em {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.statement-grid > div > p {
  max-width: 640px;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 22px);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 48px;
  margin-bottom: clamp(64px, 8vw, 116px);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 92px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

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

.service-row {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: 80px minmax(270px, 0.75fr) minmax(300px, 1fr);
  align-items: start;
  gap: 32px;
  padding-block: 54px;
  border-top: 1px solid var(--line);
  isolation: isolate;
}

.service-number {
  font-size: 12px;
  font-weight: 800;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 49px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.service-detail > p {
  max-width: 560px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 17px;
  transition: color 300ms ease;
}

.service-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.service-detail li {
  padding: 7px 10px;
  border: 1px solid currentColor;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.section-dark {
  background: var(--ink);
  color: #fff;
}

.section-heading-light .section-index { color: var(--lime); }

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 76px) clamp(24px, 3vw, 42px);
}

.project-wide { grid-column: 1 / -1; }

.project-art {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  margin-bottom: 28px;
  isolation: isolate;
}

.project-wide .project-art { min-height: 620px; }

.project-art-orange {
  background: var(--orange);
  color: var(--ink);
}

.project-art .art-kicker {
  position: absolute;
  z-index: 3;
  top: 25px;
  left: 25px;
}

.art-giant {
  position: absolute;
  z-index: 2;
  right: -0.045em;
  bottom: -0.06em;
  font-size: clamp(120px, 20vw, 330px);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.7;
}

.art-disc {
  position: absolute;
  top: 11%;
  left: 8%;
  width: 38%;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 18px 18px 0 var(--lime), 36px 36px 0 var(--green);
}

.art-rule {
  position: absolute;
  top: 25%;
  right: 7%;
  width: 26%;
  height: 2px;
  background: var(--ink);
  transform: rotate(-16deg);
  box-shadow: 0 15px 0 var(--ink), 0 30px 0 var(--ink), 0 45px 0 var(--ink);
}

.project-art-green {
  min-height: 560px;
  background: var(--green);
  color: #fff;
}

.art-coordinate {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  color: var(--lime);
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.85;
  text-align: right;
}

.art-sun {
  position: absolute;
  top: 17%;
  left: 12%;
  width: 36%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
}

.art-path {
  position: absolute;
  width: 130%;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  transform-origin: left;
}

.art-path-one {
  top: 55%;
  left: -15%;
  transform: rotate(-25deg);
}

.art-path-two {
  top: 72%;
  left: -10%;
  transform: rotate(17deg);
}

.project-art-paper {
  min-height: 560px;
  background: var(--paper);
  color: var(--ink);
}

.art-letter {
  position: absolute;
  right: -0.08em;
  bottom: -0.14em;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(340px, 39vw, 620px);
  font-style: italic;
  line-height: 0.75;
}

.art-caption {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 28px;
  max-width: 180px;
  color: var(--orange-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-style: italic;
  line-height: 1.05;
}

.project-copy {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr);
  gap: 20px 30px;
}

.project-copy .project-type {
  grid-row: 1 / span 2;
  color: rgba(255, 255, 255, 0.54);
  line-height: 1.7;
}

.project-copy h3 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(25px, 3vw, 43px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.project-copy > p:last-child {
  max-width: 600px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.project:not(.project-wide) .project-copy { grid-template-columns: 1fr; }
.project:not(.project-wide) .project-copy .project-type { grid-row: auto; }

.process { background: var(--paper-soft); }

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(60px, 10vw, 160px);
}

.process-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  height: fit-content;
}

.process-intro h2 {
  margin-bottom: 34px;
  font-size: clamp(45px, 5.8vw, 84px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.process-intro > p:last-child {
  max-width: 540px;
  color: var(--ink-soft);
  font-size: 18px;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding-block: 40px;
  border-top: 1px solid var(--line);
}

.process-list li > span {
  color: var(--orange-text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-list h3 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.2vw, 47px);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.process-list p {
  max-width: 540px;
  margin: 0;
  color: var(--ink-soft);
}

.about {
  background: var(--green);
  color: #fff;
  overflow: hidden;
}

.about .section-index { color: var(--lime); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(390px, 0.75fr);
  gap: clamp(60px, 10vw, 160px);
}

.about h2 {
  margin: 0;
  font-size: clamp(58px, 8vw, 120px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.84;
}

.about-lead {
  margin-bottom: 48px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.4vw, 35px);
  font-style: italic;
  line-height: 1.25;
}

.commitment-list { border-bottom: 1px solid var(--line-light); }

.commitment-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding-block: 18px;
  border-top: 1px solid var(--line-light);
}

.commitment-list span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
}

.founder-profile {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 48px;
  margin-top: clamp(70px, 9vw, 120px);
  padding-top: 34px;
  border-top: 1px solid var(--line-light);
}

.founder-label {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-profile h3 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

.founder-profile > div > p {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.expertise-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(90px, 12vw, 170px);
  white-space: nowrap;
}

.expertise-band p {
  margin: 0;
  font-size: clamp(55px, 10vw, 155px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.expertise-band span {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(35px, 5vw, 76px);
  font-style: italic;
}

.contact { background: var(--orange); }

.contact-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 48px;
}

.contact-main h2 {
  margin-bottom: 56px;
  font-size: clamp(60px, 9.5vw, 148px);
  font-weight: 700;
  letter-spacing: -0.085em;
  line-height: 0.83;
}

.contact-button {
  display: flex;
  width: 100%;
  max-width: 720px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 0;
  border: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: clamp(24px, 2.8vw, 42px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.contact-button span:last-child { transition: transform 350ms var(--ease); }

.contact-button:hover span:last-child,
.contact-button:focus-visible span:last-child { transform: rotate(45deg); }

.contact-details {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid rgba(17, 21, 16, 0.35);
}

.contact-details > p {
  max-width: 480px;
  margin: 0;
  font-size: 18px;
}

.contact-details address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
  font-weight: 700;
}

.contact-details a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
}

.contact-socials {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-socials a,
.contact-socials span {
  width: auto;
  padding: 8px 12px;
  border: 1px solid rgba(10, 44, 69, 0.45);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-socials span {
  opacity: 0.62;
}

.site-footer {
  padding-block: 58px 28px;
  background: var(--ink);
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) minmax(120px, 0.6fr) minmax(170px, 0.8fr) auto;
  align-items: start;
  gap: 36px;
  padding-bottom: 80px;
}



.brand-footer .brand-logo {
  width: 75px;
  height: auto;
  
}

.footer-brand-block > p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  
}

.footer-nav,
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-nav > p,
.footer-links > p {
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-links > a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-links > a:hover,
.footer-links > a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.pending-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pending-socials span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.back-top {
  justify-self: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 5px;
  font-size: 12px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom p { margin: 0; }

.contact-dialog {
  width: min(1120px, calc(100% - 32px));
  max-width: none;
  max-height: min(92dvh, 900px);
  overflow: auto;
  margin: auto;
  padding: 0;
  border: 0;
  background: var(--paper-soft);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(4, 25, 40, 0.38);
}

.contact-dialog::backdrop {
  background: rgba(5, 31, 50, 0.78);
  backdrop-filter: blur(6px);
}

.contact-dialog[open] {
  animation: dialog-in 320ms var(--ease) both;
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  min-height: 680px;
}

.dialog-intro {
  padding: clamp(42px, 6vw, 76px);
  background: var(--green);
  color: #fff;
}

.dialog-intro .section-index {
  color: var(--lime);
}

.dialog-intro h2 {
  margin-bottom: 28px;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.dialog-intro > p {
  color: rgba(255, 255, 255, 0.76);
}

.dialog-direct {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-top: 46px;
  font-size: 13px;
  font-weight: 700;
}

.dialog-direct a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.dialog-form-panel {
  position: relative;
  padding: clamp(46px, 6vw, 74px);
  background: #fff;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.contact-form {
  position: relative;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

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

.form-grid label,
.privacy-check {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-grid label > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(10, 44, 69, 0.34);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.form-grid input,
.form-grid select {
  min-height: 48px;
}

.form-grid textarea {
  min-height: 132px;
  padding-block: 12px;
  resize: vertical;
}

.form-grid input:focus-visible,
.form-grid select:focus-visible,
.form-grid textarea:focus-visible {
  border-color: var(--green);
  outline: 3px solid rgba(11, 91, 148, 0.18);
  outline-offset: 2px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.privacy-check {
  flex-direction: row;
  align-items: flex-start;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 12px;
}

.privacy-check input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.form-actions {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.form-submit {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 0;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.48;
}

.form-status {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.form-status.is-success {
  color: var(--green);
  font-weight: 700;
}

.form-status.is-error {
  color: var(--orange-text);
  font-weight: 700;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 850ms var(--ease), transform 850ms var(--ease);
  
}


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

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  background: var(--orange);
}

.error-inner {
  display: grid;
  min-height: calc(100svh - 48px);
  align-content: space-between;
  padding-block: 24px 54px;
}

.error-inner h1 {
  margin-bottom: 46px;
  font-size: clamp(68px, 13vw, 190px);
  letter-spacing: -0.085em;
  line-height: 0.79;
}

@keyframes drift {
  from { transform: translate3d(-10px, 4px, 0) rotate(-3deg); }
  to { transform: translate3d(15px, -12px, 0) rotate(5deg); }
}

@media (max-width: 1100px) {
  :root { --shell: min(100% - 36px, 960px); }

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

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

  .service-row {
    grid-template-columns: 50px minmax(220px, 0.7fr) 1fr;
    gap: 24px;
  }

  .project-wide .project-art { min-height: 520px; }

  .project-copy { grid-template-columns: 1fr; }
  .project-copy .project-type { grid-row: auto; }
  .expertise-band { gap: 18px; }

  .footer-top {
    grid-template-columns: 1.2fr 0.7fr 0.9fr;
  }

  .footer-top .back-top {
    grid-column: 3;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 720px);
    --header-height: 72px;
  }

  .header-inner { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }

  .js .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    justify-self: end;
    border: 1px solid var(--ink);
    border-radius: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 250ms var(--ease);
  }

  .menu-toggle span:first-child { transform: translateY(-4px); }
  .menu-toggle span:last-child { transform: translateY(4px); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
  .primary-nav { justify-self: end; }

  .js .primary-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 12vw;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    visibility: hidden;
    transition: opacity 250ms ease, transform 350ms var(--ease), visibility 250ms ease;
  }

  .js .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .js .primary-nav a {
    font-size: clamp(34px, 9vw, 64px);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 1;
  }

  .js .primary-nav .nav-contact {
    display: block;
    margin-top: 18px;
    color: var(--orange-text);
  }

  .hero { padding-top: calc(var(--header-height) + 38px); }

  .hero-grid,
  .statement-grid,
  .section-heading,
  .process-grid,
  .about-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy { padding-bottom: 18px; }
  .hero h1 { max-width: 720px; }
  .hero-visual { min-height: 610px; }
  .hero-foot { margin-top: 10px; }

  .statement-grid,
  .section-heading,
  .process-grid,
  .about-grid,
  .contact-inner { gap: 34px; }

  .statement-grid > div > p { margin-left: 0; }
  .section-heading { margin-bottom: 56px; }

  .service-row {
    grid-template-columns: 40px 1fr;
    gap: 18px;
  }

  .service-detail { grid-column: 2; }

  .project-grid { grid-template-columns: 1fr; }
  .project-wide { grid-column: auto; }

  .project-wide .project-art,
  .project-art,
  .project-art-green,
  .project-art-paper { min-height: 520px; }

  .process-intro { position: static; }
  .about-grid { gap: 64px; }

  .expertise-band {
    width: max-content;
    transform: translateX(-2%);
  }

  .contact-details { grid-column: 1; }

  .founder-profile {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dialog-layout {
    grid-template-columns: 1fr;
  }

  .dialog-intro {
    padding: 42px;
  }

  .dialog-intro h2 {
    max-width: 640px;
  }

  html:not(.js) .site-header {
    position: relative;
    height: auto;
  }

  html:not(.js) .header-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 16px;
  }

  html:not(.js) .primary-nav {
    flex-wrap: wrap;
    justify-self: start;
  }

  html:not(.js) .primary-nav .nav-contact {
    display: block;
  }

  html:not(.js) .hero {
    padding-top: 40px;
  }
}

@media (max-width: 580px) {
  :root { --shell: calc(100% - 28px); }
  .section { padding-block: 88px; }
  .brand-name { font-size: 13px; }

  .brand {
    width: 138px;
    height: 64px;
  }

  .brand-logo {
    width: 75px;
    height: auto;
  }
  .hero h1 { font-size: clamp(54px, 17vw, 82px); }
  .hero-intro { font-size: 17px; }

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

  .button,
  .text-link {
    width: 100%;
    justify-content: space-between;
  }

  .hero-disciplines { gap: 8px 12px; }
  .hero-disciplines li:not(:last-child)::after { margin-left: 12px; }
  .hero-visual { min-height: 500px; }

  .visual-word {
    right: 3px;
    font-size: 100px;
  }

  .hero-foot span:last-child { display: none; }

  .statement h2,
  .section-heading h2,
  .process-intro h2 { font-size: clamp(42px, 13vw, 64px); }

  .service-row { padding-block: 38px; }
  .service-detail > p { font-size: 15px; }

  .project-wide .project-art,
  .project-art,
  .project-art-green,
  .project-art-paper { min-height: 390px; }

  .art-coordinate { font-size: 39px; }
  .art-letter { font-size: 340px; }
  .process-list li { grid-template-columns: 38px 1fr; }
  .expertise-band { gap: 12px; }
  .expertise-band p { font-size: 56px; }
  .contact-main h2 { font-size: clamp(54px, 17vw, 84px); }

  .contact-details {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .form-grid,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .form-field-wide {
    grid-column: 1;
  }

  .contact-dialog {
    width: calc(100% - 18px);
    max-height: 96dvh;
  }

  .dialog-intro,
  .dialog-form-panel {
    padding: 36px 22px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding-bottom: 52px;
  }

  .back-top { justify-self: start; }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

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

@media (forced-colors: active) {
  .brand-mark,
  .button-primary,
  .hero-visual,
  .project-art,
  .about,
  .contact,
  .contact-dialog { border: 1px solid CanvasText; }
}
