/* Shared brand tokens and accessible defaults. */
:root {
  color-scheme: dark;
  --background: #101010;
  --surface: #181818;
  --text: #f3f0e8;
  --muted: #aaa7a1;
  --accent: #ff663d;
  --line: #ffffff24;
  --gutter: clamp(24px, 6vw, 100px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
p {
  line-height: 1.75;
}
em {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
::selection {
  background: var(--accent);
  color: var(--background);
}
.skip-link {
  position: fixed;
  z-index: 50;
  top: 12px;
  left: 12px;
  padding: 12px;
  background: var(--text);
  color: var(--background);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px var(--gutter);
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand > span {
  font: 18px Georgia, serif;
  letter-spacing: 2px;
}
.brand small {
  display: block;
  font: 6px "Segoe UI", sans-serif;
  letter-spacing: 3px;
  margin-top: 5px;
}
nav {
  display: flex;
  gap: 32px;
  font-size: 12px;
}
nav a {
  padding: 12px 0;
}
nav a:hover,
.text-link:hover {
  color: var(--accent);
}
.eyebrow,
.section-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--accent);
}
.text-link {
  display: inline-flex;
  gap: 40px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

/* The mark assembles automatically inside the first screen. */
.opening {
  position: relative;
}
.opening-stage {
  min-height: 800px;
  height: 100svh;
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  align-items: center;
  gap: 65px;
  padding: 110px var(--gutter);
  overflow: hidden;
  isolation: isolate;
}
.opening-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-left: 12px solid var(--accent);
  background: #101010;
}
.opening-brand {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.opening-symbol {
  position: relative;
  width: 108px;
  height: 144px;
}
.opening-symbol img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.symbol-fragment {
  display: none;
}
.ears {
  clip-path: inset(0 0 65.1515%);
}
.face {
  clip-path: inset(34.8485% 0 31.8182%);
}
.neck {
  clip-path: inset(68.1818% 0 0);
}
.opening-wordmark {
  width: min(300px, 70vw);
  height: auto;
}
.opening-descriptor {
  width: 186px;
  height: auto;
}
.opening-copy h1 {
  font-size: clamp(64px, 7.7vw, 120px);
  letter-spacing: -0.045em;
  line-height: 0.9;
  font-weight: 900;
  margin: 32px 0;
}
.opening-copy h1 em {
  color: var(--accent);
}
.opening-description {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 340px;
}
.opening-bottom {
  position: absolute;
  bottom: 30px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}
.scroll-cue {
  font-size: 9px;
  letter-spacing: 2px;
}
.scroll-cue span {
  display: inline-block;
  margin-left: 25px;
  font-size: 18px;
}
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}
.automatic-opening .opening {
  height: auto;
}
.automatic-opening .opening-stage {
  position: relative;
  top: 0;
  min-height: 620px;
}
.automatic-opening .symbol-fragment {
  display: block;
}

/* The story changes scale: a large statement, then a compact editorial column. */
.section {
  padding: 100px var(--gutter);
  scroll-margin-top: 24px;
}
.studio {
  background: #191919;
  color: #f3f0e8;
}
.section-label {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--accent);
  padding-bottom: 34px;
  border-bottom: 1px solid #ffffff24;
}
.studio h2 {
  font-size: clamp(44px, 5.8vw, 86px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.07;
  margin: 65px 0;
}
.studio h2 span {
  color: var(--accent);
}
.studio-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
}
.studio-lead {
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.5;
  max-width: 530px;
}
.studio-detail {
  max-width: 460px;
  font-size: 15px;
  color: var(--muted);
}
.studio-detail p + p {
  margin-top: 18px;
}
.project-status {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #ffffff24;
  margin-top: 65px;
  padding-top: 25px;
  font-size: 12px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.status-note {
  margin-left: auto;
  color: var(--accent);
}
.approach {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 12%;
  padding-top: 125px;
  padding-bottom: 125px;
}
.approach-heading h2 {
  font-size: clamp(44px, 5.7vw, 82px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 28px 0;
}
.approach-heading h2 em {
  color: var(--accent);
}
.approach-copy {
  padding-top: 35px;
  border-top: 3px solid var(--accent);
}
.approach-copy p {
  font-size: 16px;
  color: var(--muted);
  max-width: 460px;
}
.approach-copy p + p {
  margin-top: 24px;
}
.approach-copy .approach-statement {
  font-size: clamp(23px, 2.5vw, 35px);
  line-height: 1.35;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 35px;
}
.contact {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 8%;
  align-items: end;
  background: var(--accent);
  color: #101010;
}
.contact .eyebrow {
  color: currentColor;
  margin-bottom: 22px;
}
.contact-heading > p:last-child {
  max-width: 210px;
  font-size: 14px;
}
.contact h2 {
  font-size: clamp(38px, 5.4vw, 82px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.06em;
}
.contact h2 a {
  position: relative;
  display: inline-block;
}
.contact h2 span {
  position: absolute;
  top: 4px;
  right: -48px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
}
.contact h2 a:hover {
  color: var(--text);
}
.footer {
  padding: 70px var(--gutter) 25px;
  background: var(--surface);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 65px;
}
.footer-top p {
  font-size: clamp(25px, 4vw, 60px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
}
.footer-top p em {
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
}
@media (max-width: 700px) {
  .header {
    padding-top: 20px;
  }
  .brand > span {
    font-size: 14px;
  }
  nav {
    gap: 18px;
    font-size: 11px;
  }
  .opening-stage {
    grid-template-columns: 1fr;
    gap: 32px;
    align-content: center;
    min-height: 760px;
    padding-top: 110px;
    padding-bottom: 95px;
  }
  .automatic-opening .opening-stage {
    min-height: 650px;
  }
  .opening-brand {
    gap: 12px;
  }
  .opening-symbol {
    width: 60px;
    height: 80px;
  }
  .opening-wordmark {
    width: 190px;
  }
  .opening-descriptor {
    width: 120px;
  }
  .opening-copy h1 {
    font-size: clamp(58px, 16vw, 88px);
    margin: 18px 0;
  }
  .opening-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .opening-description {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .opening-bottom {
    font-size: 10px;
    bottom: 22px;
  }
  .scroll-cue {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .scroll-cue span {
    margin-left: 8px;
  }
  .section {
    padding: 60px var(--gutter);
  }
  .section-label {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .section-label span:last-child {
    max-width: 100px;
    text-align: right;
  }
  .studio h2 {
    font-size: clamp(37px, 10vw, 49px);
    margin: 40px 0;
  }
  .studio-bottom,
  .approach {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .studio-lead {
    font-size: 23px;
  }
  .project-status {
    margin-top: 40px;
    flex-wrap: wrap;
    font-size: 11px;
  }
  .status-note {
    margin-left: 20px;
    width: 100%;
  }
  .approach {
    gap: 40px;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .contact h2 {
    font-size: clamp(30px, 9vw, 42px);
  }
  .contact h2 span {
    right: 0;
    top: -34px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 35px;
    padding-bottom: 40px;
  }
  .footer-top img {
    width: 120px;
    height: auto;
  }
  .footer-top p {
    font-size: 25px;
  }
  .footer-top .text-link {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 360px) {
  .header {
    gap: 14px;
  }
  .header .brand > span {
    display: none;
  }
  nav {
    gap: 14px;
  }
  .contact > * {
    min-width: 0;
  }
  .contact h2 {
    font-size: 8.5vw;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* The CSS fallback also reacts immediately when the OS preference changes. */
@media (prefers-reduced-motion: reduce) {
  .automatic-opening .opening {
    height: auto;
  }
  .automatic-opening .opening-stage {
    position: relative;
  }
  .opening-copy,
  .opening-brand,
  .opening-wordmark,
  .opening-descriptor,
  .symbol-whole {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
  .automatic-opening .symbol-fragment {
    display: none;
  }
  .scroll-progress {
    display: none;
  }
}
