:root {
  --ink: #11110f;
  --ink-soft: #2a2925;
  --paper: #f4f1ea;
  --paper-warm: #e8e2d8;
  --white: #ffffff;
  --muted: #77736a;
  --line: rgba(17, 17, 15, 0.14);
  --line-strong: rgba(17, 17, 15, 0.3);
  --dark-line: rgba(255, 255, 255, 0.18);
  --max: 1320px;
  --header: 78px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

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

.site-header {
  position: fixed;
  z-index: 70;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  min-height: var(--header);
  padding: 18px clamp(18px, 3.8vw, 56px);
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(244, 241, 234, 0.94);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.site-header > .brand,
.header-cta,
.menu-toggle {
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: 90px;
  height: 54px;
  filter: invert(1);
  object-fit: contain;
  transition:
    filter 180ms ease,
    opacity 180ms ease;
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  filter: none;
}

.brand-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
}

.brand-name {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-name strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-name small {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: end;
  min-width: 0;
}

.site-nav-inner {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  color: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav-inner a {
  position: relative;
  padding: 12px 0;
}

.site-nav-inner a span {
  display: none;
}

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

.site-nav-inner a:hover::after,
.site-nav-inner a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav-meta {
  display: none;
}

.header-cta,
.site-nav-cta,
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.header-cta {
  padding: 0 16px;
  border: 1px solid currentColor;
  color: inherit;
}

.site-header.is-scrolled .header-cta,
.site-header.is-open .header-cta {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.blog-page .site-header {
  background: rgba(244, 241, 234, 0.94);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.blog-page .site-header .brand-logo {
  filter: none;
}

.blog-page .seo-main {
  padding-top: calc(var(--header) + clamp(56px, 7vw, 96px));
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-toggle svg,
.button svg,
.text-link svg,
.header-cta svg,
.site-nav-cta svg,
.footer-cta svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
  object-fit: cover;
  object-position: 54% center;
  filter: grayscale(1);
}

.hero-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.13), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 38%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.06) 36%, rgba(0, 0, 0, 0.64));
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(28px, 5vw, 84px);
  align-items: end;
  min-height: 88svh;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(130px, 17svh, 190px) clamp(20px, 4vw, 56px) clamp(118px, 14svh, 168px);
}

.hero-copy-block {
  max-width: 900px;
}

.eyebrow,
.section-index,
.featured-caption span,
.project-item span,
.service-table span,
.process-line span {
  margin: 0;
  color: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 28px;
}

.hero h1,
.statement h2,
.section-top h2,
.studio-copy h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 6.8vw, 7.2rem);
}

.hero-copy-block p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.05vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

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

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: var(--white);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.hero-panel {
  display: grid;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.hero-panel span {
  display: flex;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--dark-line);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: 1.24rem;
  line-height: 1;
}

.hero-panel span:last-child {
  border-bottom: 0;
}

.hero-footer {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 28px;
  left: clamp(20px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--dark-line);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(78px, 9vw, 132px) clamp(20px, 4vw, 56px);
}

.statement,
.projects,
.blog,
.services,
.process,
.faq {
  max-width: var(--max);
  margin: 0 auto;
}

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

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(36px, 7vw, 108px);
  margin-top: 34px;
  align-items: start;
}

.statement h2 {
  max-width: 820px;
  font-size: clamp(2.45rem, 4.7vw, 5.1rem);
}

.statement-copy {
  display: grid;
  gap: 22px;
  padding-top: 12px;
}

.statement-copy p,
.section-top p,
.project-item p,
.featured-caption p,
.blog-card p,
.service-table p,
.studio-copy p,
.process-line p,
.faq-list p,
.contact p {
  margin: 0;
  color: var(--muted);
}

.statement-copy p,
.studio-copy p,
.contact p {
  font-size: clamp(1rem, 1.22vw, 1.15rem);
}

.section-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 70px);
}

.section-top-tight {
  align-items: start;
}

.section-top h2,
.studio-copy h2,
.contact h2 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(2.3rem, 4.25vw, 4.9rem);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 42px;
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.text-link span {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
}

.featured-project {
  border-top: 1px solid var(--line-strong);
  padding-top: 18px;
}

.project-trigger {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  padding: 0;
  text-align: left;
}

.featured-project .project-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.58fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: end;
}

.featured-project img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.featured-caption {
  display: grid;
  gap: 14px;
  padding-bottom: 10px;
}

.featured-caption h3,
.project-item h3,
.service-table h3,
.process-line h3 {
  margin: 0;
  font-size: clamp(1.16rem, 1.55vw, 1.62rem);
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.featured-caption span,
.project-item span {
  color: var(--muted);
}

.project-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
  margin-top: clamp(36px, 5vw, 72px);
}

.project-item {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.project-item .project-trigger {
  display: grid;
  gap: 18px;
}

.project-item img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  transition:
    opacity 200ms ease,
    transform 300ms ease;
}

.project-item .project-trigger:hover img,
.featured-project .project-trigger:hover img,
.project-item .project-trigger:focus-visible img,
.featured-project .project-trigger:focus-visible img {
  opacity: 0.82;
  transform: scale(1.01);
}

.project-trigger:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 8px;
}

.project-item div {
  display: grid;
  gap: 10px;
}

.blog[hidden] {
  display: none;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.blog-card {
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    transform 220ms ease;
}

.blog-card:hover,
.blog-card:focus-visible {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.blog-card:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

.blog-card-meta {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0;
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.project-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 44px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.project-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 15, 0.78);
  backdrop-filter: blur(16px);
}

.project-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(18px, 3vw, 34px);
  width: min(1280px, 100%);
  max-height: min(850px, calc(100svh - 48px));
  padding: clamp(16px, 2.2vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.project-modal-gallery {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.project-modal-figure {
  min-width: 0;
  margin: 0;
  aspect-ratio: 3 / 2;
  background: var(--ink);
}

.project-modal-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-modal-thumbs {
  display: grid;
  grid-auto-columns: minmax(86px, 112px);
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.project-modal-thumb {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.project-modal-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 0.58;
  transition: opacity 180ms ease;
}

.project-modal-thumb span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-modal-thumb:hover img,
.project-modal-thumb:focus-visible img,
.project-modal-thumb.is-active img {
  opacity: 1;
}

.project-modal-thumb:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

.project-modal-copy {
  display: grid;
  align-content: end;
  gap: 12px;
  min-width: 0;
  padding: 54px 6px 4px;
}

.project-modal-copy span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-modal-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  font-weight: 600;
  line-height: 1;
}

.project-modal-copy p {
  margin: 0;
  color: var(--muted);
}

.project-modal-details {
  display: grid;
  gap: 0;
  margin: 8px 0 0;
  border-top: 1px solid var(--line);
}

.project-modal-details[hidden] {
  display: none;
}

.project-modal-details div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.project-modal-details dt,
.project-modal-details dd {
  margin: 0;
}

.project-modal-details dt {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-modal-details dd {
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.45;
}

.modal-icon {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(244, 241, 234, 0.86);
  color: var(--ink);
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.modal-icon:hover,
.modal-icon:focus-visible {
  background: var(--white);
  transform: translateY(-1px);
}

.modal-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.modal-close {
  top: 18px;
  right: 18px;
}

.modal-prev,
.modal-next {
  top: 50%;
  transform: translateY(-50%);
}

.modal-prev:hover,
.modal-prev:focus-visible,
.modal-next:hover,
.modal-next:focus-visible {
  transform: translateY(calc(-50% - 1px));
}

.modal-prev {
  left: 18px;
}

.modal-next {
  right: 18px;
}

.service-table {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.service-table article {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.62fr) minmax(260px, 1fr);
  gap: clamp(20px, 4vw, 58px);
  align-items: start;
  padding: clamp(24px, 3vw, 38px) 0;
  border-bottom: 1px solid var(--line);
}

.service-table span,
.process-line span {
  color: var(--muted);
}

.studio {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 680px;
  background: var(--ink);
  color: var(--white);
}

.studio-image {
  min-height: 520px;
  background:
    linear-gradient(rgba(17, 17, 15, 0.08), rgba(17, 17, 15, 0.08)),
    url("assets/images/project-office.jpg?v=20260624-studio1") center / cover no-repeat;
}

.studio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(1);
  transition: opacity 180ms ease;
}

.studio-image img.is-loaded {
  opacity: 1;
}

.studio-copy {
  align-self: center;
  max-width: 760px;
}

.studio-copy .section-index,
.studio-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.studio-copy h2 {
  color: var(--white);
}

.studio-copy p {
  max-width: 610px;
  margin-top: 28px;
}

.studio-copy p + p {
  margin-top: 16px;
}

.studio-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(34px, 5vw, 64px);
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
}

.studio-values span {
  min-height: 74px;
  padding: 22px 16px;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.process-line article {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 290px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.references {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.references-inner {
  padding-bottom: clamp(32px, 4.5vw, 58px);
}

.references-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(28px, 5vw, 72px);
  max-width: var(--max);
  margin: 0 auto;
  align-items: end;
}

.references .section-index,
.references-head p {
  color: rgba(255, 255, 255, 0.66);
}

.references-head h2 {
  max-width: 760px;
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(2.3rem, 4.25vw, 4.9rem);
}

.references-head p {
  margin: 0;
}

.references-marquee {
  overflow: hidden;
  padding: 0 0 clamp(72px, 8vw, 116px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.references-track {
  display: flex;
  width: max-content;
  animation: references-marquee 70s linear infinite;
  will-change: transform;
}

.references-marquee:hover .references-track {
  animation-play-state: paused;
}

.references-set {
  display: flex;
  gap: clamp(14px, 1.6vw, 22px);
  padding-right: clamp(14px, 1.6vw, 22px);
}

.reference-card {
  --reference-card-width: clamp(176px, 13.5vw, 226px);
  --reference-logo-height: clamp(102px, 7.2vw, 132px);

  display: grid;
  flex: 0 0 var(--reference-card-width);
  gap: 10px;
  width: var(--reference-card-width);
  min-width: 0;
  margin: 0;
}

.reference-logo {
  display: grid;
  place-items: center;
  width: var(--reference-card-width);
  max-width: var(--reference-card-width);
  height: var(--reference-logo-height);
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.reference-logo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.reference-card figcaption {
  min-height: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

@keyframes references-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.faq {
  padding-top: 0;
}

.faq-list {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid var(--line-strong);
}

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
  font-weight: 600;
  overflow-wrap: anywhere;
}

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

.faq-list summary::after {
  display: inline-grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 720px;
  margin-bottom: 26px;
}

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

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 100px);
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.contact-copy p {
  max-width: 610px;
  margin-top: 28px;
}

.contact-info {
  display: grid;
  gap: 10px;
  margin-top: 36px;
  font-style: normal;
  font-weight: 700;
}

.contact-info a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line-strong);
  background: rgba(244, 241, 234, 0.52);
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.contact-form label span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
}

.contact-form input {
  min-height: 44px;
}

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

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

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
  padding: clamp(46px, 6vw, 82px) clamp(20px, 4vw, 56px) 28px;
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.footer-top,
.footer-grid,
.footer-bottom {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: auto minmax(260px, 520px) auto;
  gap: clamp(24px, 5vw, 90px);
  align-items: end;
}

.footer-statement {
  max-width: 520px;
}

.footer-cta {
  align-self: center;
  min-width: 178px;
  padding: 0 18px;
  background: var(--white);
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.footer-block {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 178px;
  padding: clamp(24px, 3vw, 34px);
  border-right: 1px solid var(--dark-line);
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}

.footer-block:last-child {
  border-right: 0;
}

.footer-label {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-block a {
  width: fit-content;
}

.footer-block a:hover,
.footer-block a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-bottom p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.footer-designed {
  color: var(--white);
  font-weight: 700;
}

.footer-designed:hover,
.footer-designed:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.brand-footer .brand-number {
  width: 38px;
  height: 38px;
}

.brand-footer .brand-logo {
  width: auto;
  height: clamp(58px, 5.4vw, 82px);
  filter: invert(1);
}

.brand-footer .brand-name strong {
  font-size: 1.35rem;
}

.brand-footer .brand-name small {
  font-size: 0.56rem;
}

.site-footer .text-link {
  color: var(--white);
}

html.js-enabled [data-reveal] {
  opacity: 1;
  transform: translateY(10px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

.statement-grid > *,
.section-top > *,
.project-list > *,
.featured-project > *,
.project-row > *,
.service-table article > *,
.studio > *,
.project-modal-gallery > *,
.references-head > *,
.contact-panel > *,
.process-line article > * {
  min-width: 0;
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    width: fit-content;
    border: 1px solid var(--dark-line);
  }

  .hero-panel span {
    min-height: 44px;
    padding: 0 16px;
    border-right: 1px solid var(--dark-line);
    border-bottom: 0;
    font-size: 1.18rem;
  }

  .hero-panel span:last-child {
    border-right: 0;
  }

  .statement-grid,
  .section-top,
  .featured-project .project-trigger,
  .studio,
  .references-head,
  .contact-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .studio-copy {
    max-width: none;
  }

  .service-table article {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .service-table article p {
    grid-column: 2;
  }

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

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

  .project-modal-panel {
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    overflow: auto;
  }

  .project-modal-copy {
    padding: 0 4px 4px;
  }

  .project-modal-thumbs {
    grid-auto-columns: minmax(78px, 96px);
  }

  .project-modal-figure img {
    height: 100%;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-header.is-open {
    backdrop-filter: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    background: rgba(244, 241, 234, 0.1);
    backdrop-filter: blur(12px);
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    justify-self: stretch;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 28px;
    width: min(100%, 520px);
    min-height: 100svh;
    max-height: 100svh;
    overflow-y: auto;
    padding: calc(var(--header) + 28px) clamp(22px, 6vw, 42px) 30px;
    background: var(--paper);
    color: var(--ink);
    border-left: 1px solid var(--line);
    box-shadow: -24px 0 80px rgba(0, 0, 0, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    visibility: hidden;
    transition:
      opacity 220ms ease,
      transform 260ms ease,
      visibility 220ms ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }

  .site-nav-inner {
    display: grid;
    align-content: center;
    gap: 0;
    width: 100%;
    font-family: var(--serif);
    font-size: clamp(2.45rem, 10vw, 4.2rem);
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav-inner a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    min-height: clamp(68px, 13vh, 96px);
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    line-height: 0.95;
  }

  .site-nav-inner a:first-child {
    border-top: 1px solid var(--line);
  }

  .site-nav-inner a span {
    display: inline-flex;
    order: 2;
    color: var(--muted);
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
  }

  .site-nav-inner a::after {
    display: none;
  }

  .site-nav-meta {
    display: grid;
    gap: 16px;
    align-self: end;
    padding-top: 24px;
    border-top: 1px solid var(--line-strong);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .site-nav-cta {
    width: fit-content;
    min-height: 46px;
    padding: 0 18px;
    background: var(--ink);
    color: var(--white);
  }
}

@media (max-width: 720px) {
  :root {
    --header: 68px;
  }

  .site-header {
    padding: 13px 18px;
  }

  .brand {
    gap: 0;
  }

  .brand-logo {
    width: 77px;
    height: 46px;
  }

  .brand-number {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .brand-name strong {
    font-size: 1.28rem;
  }

  .brand-name small {
    font-size: 0.54rem;
  }

  .menu-toggle {
    min-height: 38px;
    padding: 0 11px;
  }

  .menu-toggle span {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-media {
    object-position: 61% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.38)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.66));
  }

  .hero-layout {
    min-height: 86svh;
    padding: 110px 20px 96px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 11.2vw, 3.95rem);
  }

  .hero-copy-block p:not(.eyebrow) {
    max-width: 440px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    max-width: 320px;
  }

  .hero-panel {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    border: 0;
    gap: 12px 18px;
  }

  .hero-panel span {
    justify-content: flex-start;
    min-height: auto;
    padding: 0;
    border: 0;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .hero-panel span:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .hero-footer {
    display: none;
    left: 20px;
    right: 20px;
    bottom: 24px;
  }

  .section-pad {
    padding: 68px 20px;
  }

  .statement h2,
  .section-top h2,
  .studio-copy h2,
  .references-head h2,
  .contact h2 {
    font-size: clamp(2.05rem, 9.2vw, 3.1rem);
    line-height: 1.04;
  }

  .statement-grid,
  .section-top,
  .featured-project .project-trigger,
  .project-row,
  .blog-grid,
  .process-line,
  .studio-values {
    grid-template-columns: minmax(0, 1fr);
  }

  .featured-project img,
  .project-item img {
    aspect-ratio: 1 / 1;
  }

  .project-modal {
    padding: 12px;
  }

  .project-modal-panel {
    max-height: calc(100svh - 24px);
    padding: 12px;
    gap: 16px;
  }

  .project-modal-gallery {
    gap: 10px;
  }

  .project-modal-figure img {
    height: 100%;
  }

  .project-modal-thumbs {
    grid-auto-columns: 74px;
    gap: 8px;
  }

  .project-modal-thumb span {
    display: none;
  }

  .project-modal-copy h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.45rem);
  }

  .project-modal-details div {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    padding: 10px 0;
  }

  .modal-icon {
    width: 40px;
    height: 40px;
  }

  .modal-close {
    top: 14px;
    right: 14px;
  }

  .modal-prev,
  .modal-next {
    top: clamp(124px, 32vw, 236px);
  }

  .modal-prev {
    left: 14px;
  }

  .modal-next {
    right: 14px;
  }

  .service-table article {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .service-table article p {
    grid-column: auto;
  }

  .studio {
    min-height: auto;
  }

  .studio-image {
    min-height: 360px;
  }

  .process-line article {
    min-height: auto;
  }

  .references-marquee {
    padding-bottom: 68px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .reference-card {
    --reference-card-width: clamp(156px, 54vw, 202px);
    --reference-logo-height: clamp(88px, 30vw, 112px);
  }

  .reference-logo {
    padding: 10px;
  }

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    display: grid;
    gap: 30px;
    justify-items: start;
    padding: 46px 20px 24px;
  }

  .footer-top,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .footer-top {
    align-items: start;
    gap: 22px;
  }

  .footer-statement {
    max-width: 320px;
  }

  .footer-cta {
    width: 100%;
  }

  .footer-grid {
    display: grid;
  }

  .footer-block {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }

  .footer-block:last-child {
    border-bottom: 0;
  }

  .footer-bottom {
    display: grid;
    gap: 18px;
  }
}

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

  html.js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .references-track {
    animation: none;
  }
}
