:root {
  --ink: #121315;
  --ink-2: #1b1c1f;
  --paper: #f1ece2;
  --paper-2: #fbf8f0;
  --gold: #fab207;
  --gold-deep: #9d7418;
  --sage: #8a9681;
  --clay: #b66d51;
  --line: rgba(18, 19, 21, 0.14);
  --line-light: rgba(255, 255, 255, 0.14);
  --soft: rgba(18, 19, 21, 0.68);
  --shell: min(1180px, calc(100% - 40px));
  --section: clamp(76px, 10vw, 140px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

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

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--ink);
}

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

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(241, 236, 226, 0.92);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1;
}

.brand img {
  width: 34px;
  height: 34px;
}

.dot {
  color: var(--gold);
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu a {
  font-size: 0.92rem;
  text-decoration: none;
}

.menu a:not(.nav-cta) {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: color 200ms ease, background-size 200ms ease;
}

.menu a:hover {
  color: var(--gold);
}

.menu a:not(.nav-cta):hover {
  background-size: 100% 1px;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-bg,
.hero-overlay,
.noise {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background: linear-gradient(to top, rgba(18, 19, 21, 0.9), rgba(18, 19, 21, 0.32) 56%, rgba(18, 19, 21, 0.58));
}

.noise {
  opacity: 0.12;
  mix-blend-mode: screen;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px);
  background-size: 22px 22px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 136px 0 86px;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(241, 236, 226, 0.66);
  font-family: "Courier New", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-deep);
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 26px;
  font-size: clamp(3.4rem, 10vw, 8.8rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: 0.95;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero-copy {
  max-width: 610px;
  color: rgba(241, 236, 226, 0.78);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

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

.button.ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.42);
}

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

.scroll-note {
  position: absolute;
  right: 34px;
  bottom: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(241, 236, 226, 0.55);
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-note i {
  width: 1px;
  height: 58px;
  background: linear-gradient(var(--gold), rgba(255, 255, 255, 0.15));
}

.section {
  padding: var(--section) 0;
}

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

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

.section-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 1fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 54px;
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.section-head > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--soft);
  font-size: 1.04rem;
}

.section-head.dark > p:not(.eyebrow) {
  color: rgba(241, 236, 226, 0.68);
}

.expertise-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.expertise-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: var(--paper-2);
}

.expertise-card img,
.card-shade {
  position: absolute;
  inset: 0;
}

.expertise-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 450ms ease, transform 600ms ease;
}

.expertise-card:hover img {
  opacity: 1;
  transform: scale(1);
}

.card-shade {
  opacity: 0;
  background: linear-gradient(to top, rgba(18, 19, 21, 0.9), rgba(18, 19, 21, 0.2));
  transition: opacity 450ms ease;
}

.expertise-card:hover .card-shade {
  opacity: 1;
}

.expertise-card > span,
.expertise-card > div {
  position: relative;
  z-index: 1;
}

.expertise-card > span {
  color: var(--gold-deep);
  font-family: "Courier New", monospace;
}

.expertise-card h3 {
  margin-bottom: 8px;
  font-size: 1.65rem;
}

.expertise-card p {
  margin-bottom: 0;
  color: var(--soft);
}

.expertise-card:hover {
  color: var(--paper);
}

.expertise-card:hover p,
.expertise-card:hover span {
  color: rgba(241, 236, 226, 0.82);
}

.service-card {
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.service-card > span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.service-card p {
  color: rgba(241, 236, 226, 0.68);
}

.service-card ul {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.service-card li {
  display: flex;
  gap: 10px;
  color: rgba(241, 236, 226, 0.66);
  font-size: 0.9rem;
}

.service-card li::before {
  content: "";
  width: 18px;
  height: 1px;
  margin-top: 12px;
  background: var(--gold);
  flex: 0 0 auto;
}

.work {
  overflow: hidden;
  background: var(--paper-2);
}

.work-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 520px);
  gap: 18px;
  overflow-x: auto;
  padding: 0 max(20px, calc((100vw - 1180px) / 2)) 10px;
  scroll-snap-type: x mandatory;
}

.project-card {
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 18px;
  background: var(--ink);
  color: var(--paper);
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-body {
  padding: 24px;
}

.project-body p {
  margin-bottom: 10px;
  color: var(--gold);
  font-family: "Courier New", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-body h3 {
  margin-bottom: 10px;
  font-size: 1.75rem;
}

.project-body span {
  color: rgba(241, 236, 226, 0.72);
}

.process {
  background: linear-gradient(90deg, var(--paper) 0 55%, #e3dfd5 55% 100%);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 58px;
}

.timeline {
  border-top: 1px solid var(--line);
}

.timeline article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.timeline span {
  color: var(--gold-deep);
  font-family: "Courier New", monospace;
}

.timeline h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.timeline p {
  margin-bottom: 0;
  color: var(--soft);
}

.studio {
  background: var(--ink);
  color: var(--paper);
}

.studio-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.studio-images {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
  align-items: end;
}

.studio-images img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 18px;
}

.studio-images img:nth-child(2) {
  height: 390px;
}

.studio-copy p:not(.eyebrow) {
  color: rgba(241, 236, 226, 0.72);
  font-size: 1.05rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.stats div {
  border-top: 1px solid var(--line-light);
  padding-top: 18px;
}

.stats strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.stats span {
  color: rgba(241, 236, 226, 0.68);
  font-size: 0.9rem;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 58px;
}

.contact-grid > div > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--soft);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper-2);
}

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

.contact-form span {
  color: var(--soft);
  font-size: 0.86rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 19, 21, 0.18);
  border-radius: 10px;
  padding: 13px 14px;
  background: #fffef9;
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 34px;
}

.footer h2 {
  margin-bottom: 14px;
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer p,
.footer a {
  display: block;
  color: rgba(241, 236, 226, 0.68);
  text-decoration: none;
}

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

.footer-brand {
  margin-bottom: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  color: rgba(241, 236, 226, 0.52);
  font-size: 0.88rem;
}

.response-page {
  padding-top: 76px;
}

.response-box {
  max-width: 720px;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, 1%, 0);
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-block;
  }

  .menu {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px;
    color: var(--paper);
    background: var(--ink);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
  }

  .nav-cta {
    margin-top: 14px;
    text-align: center;
  }

  .section-head,
  .expertise-grid,
  .service-grid,
  .split,
  .studio-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head .eyebrow {
    margin-bottom: 0;
  }

  .studio-images img {
    height: 420px;
  }

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

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  .hero-content {
    padding-bottom: 68px;
  }

  .hero-meta,
  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .expertise-card {
    min-height: 280px;
  }

  .work-track {
    grid-auto-columns: minmax(280px, 86vw);
  }

  .timeline article {
    grid-template-columns: 44px 1fr;
  }

  .studio-images,
  .stats,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .studio-images img,
  .studio-images img:nth-child(2) {
    height: 320px;
  }

  .full {
    grid-column: auto;
  }
}
