@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --ink: #2b2b2b;
  --muted: #8a8a8a;
  --paper: #f5f2ee;
  --soft: #c0c6b9;
  --line: #d7d2cb;
  --charcoal: #2b2b2b;
  --olive: #8a8a8a;
  --terracotta: #c1405d;
  --champagne: #d9822b;
  --sage: #c0c6b9;
  --blush: #f5f2ee;
  --white: #ffffff;
  --magenta-soft: #f4d9e0;
  --gold-soft: #efe1cf;
  --slate-soft: #e0e0e0;
  --sage-soft: #e9ece3;
  --shadow: 0 24px 70px rgba(43, 43, 43, 0.12);
  --shadow-tight: 0 16px 36px rgba(43, 43, 43, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 64px);
  color: var(--ink);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.home-page .site-header {
  color: var(--white);
}

.home-page .site-header:not(.is-scrolled):not(.nav-open) .brand-logo-dark,
.projects-page .site-header:not(.is-scrolled):not(.nav-open) .brand-logo-dark {
  display: none;
}

.home-page .site-header:not(.is-scrolled):not(.nav-open) .brand-logo-light,
.projects-page .site-header:not(.is-scrolled):not(.nav-open) .brand-logo-light {
  display: block;
}

.home-page .site-header.is-scrolled .brand-logo-light,
.home-page .site-header.nav-open .brand-logo-light,
.projects-page .site-header.is-scrolled .brand-logo-light,
.projects-page .site-header.nav-open .brand-logo-light {
  display: none;
}

.home-page .site-header.is-scrolled .brand-logo-dark,
.home-page .site-header.nav-open .brand-logo-dark,
.projects-page .site-header.is-scrolled .brand-logo-dark,
.projects-page .site-header.nav-open .brand-logo-dark {
  display: block;
}

.site-header.is-scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(248, 245, 242, 0.94);
  box-shadow: 0 1px 0 rgba(36, 35, 38, 0.08);
  backdrop-filter: blur(18px);
}

.projects-page .site-header {
  color: var(--white);
}

.projects-page .site-header.is-scrolled,
.projects-page .site-header.nav-open {
  color: var(--ink);
}

.brand {
  display: inline-flex;
  position: relative;
  align-items: center;
  gap: 12px;
  min-width: 0;
  width: clamp(132px, 14vw, 176px);
  height: clamp(34px, 4vw, 48px);
}

.brand-logo {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.brand-logo-light {
  display: none;
}

.brand:hover .brand-logo {
  opacity: 0.86;
  transform: translateY(-1px);
}

.footer-logo {
  display: block;
  width: auto;
  height: 54px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.brand small {
  color: currentColor;
  font-size: 11px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  opacity: 0.78;
  transition: opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0 auto;
  background: currentColor;
  transition:
    transform 220ms ease,
    opacity 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.nav-toggle.is-open span:first-child {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(0) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--charcoal);
}

.hero img {
  position: absolute;
  inset: 0;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 35, 41, 0.58);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  width: min(760px, 100%);
  flex-direction: column;
  justify-content: center;
  padding: 122px clamp(20px, 6vw, 86px) 72px;
  color: var(--white);
}

.hero-meta {
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  bottom: clamp(22px, 4vw, 54px);
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  max-width: min(560px, calc(100% - 40px));
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-meta span {
  position: relative;
}

.hero-meta span + span::before {
  position: absolute;
  top: 50%;
  left: -11px;
  width: 4px;
  height: 4px;
  content: "";
  background: currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  color: var(--champagne);
}

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

h1,
h2 {
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(52px, 8vw, 118px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 68px);
}

h3 {
  margin-bottom: 10px;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.hero-content p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 23px);
}

.home-page .hero-content {
  width: min(1080px, 100%);
}

.home-page .hero-content h1 {
  max-width: 980px;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.05;
}

.home-page .hero-content h1 span {
  display: block;
}

.home-page .hero-content h1 span:first-child {
  white-space: nowrap;
}

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

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

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

.button-primary {
  color: var(--terracotta);
  border-color: var(--terracotta);
  background: var(--white);
}

.button-primary:hover {
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(209, 49, 90, 0.1);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.intro-section,
.page-hero,
.project-preview,
.process-band,
.contact-layout,
.service-grid,
.testimonial-band,
.founder-band,
.coverage-band {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 80px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: -1px;
  background: var(--line);
}

.trust-strip article {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-bottom: 4px solid transparent;
  background: var(--white);
}

.trust-strip article:nth-child(1) {
  border-bottom-color: var(--terracotta);
}

.trust-strip article:nth-child(2) {
  border-bottom-color: var(--champagne);
}

.trust-strip article:nth-child(3) {
  border-bottom-color: var(--olive);
}

.trust-strip article:nth-child(4) {
  border-bottom-color: var(--sage);
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
  padding-top: clamp(54px, 7vw, 88px);
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
}

.service-feature-card {
  position: relative;
  display: flex;
  min-height: 660px;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.service-feature-card > img {
  position: absolute;
  inset: 0;
}

.service-feature-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(35, 35, 41, 0.48);
}

.service-feature-card img,
.service-stack img {
  transition:
    transform 600ms ease,
    filter 600ms ease;
}

.service-feature-card:hover img,
.service-stack article:hover img {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.045);
}

.service-feature-copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  flex: 1;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 52px);
}

.service-feature-copy h3 {
  max-width: 480px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 58px);
}

.service-feature-copy p {
  max-width: 440px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.service-feature-copy span,
.service-stack span {
  display: inline-flex;
  width: max-content;
  margin-bottom: 14px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.service-stack {
  display: grid;
  gap: 16px;
}

.service-stack article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  grid-template-areas:
    "copy image"
    "body image";
  gap: 12px 22px;
  min-height: 208px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-stack article:nth-child(1) {
  border-left: 5px solid var(--terracotta);
}

.service-stack article:nth-child(2) {
  transform: translateX(-34px);
  border-left: 5px solid var(--champagne);
}

.service-stack article:nth-child(3) {
  border-left: 5px solid var(--olive);
}

.service-stack article:hover {
  border-color: color-mix(in srgb, var(--terracotta) 36%, var(--line));
  box-shadow: var(--shadow-tight);
  transform: translateY(-4px);
}

.service-stack article:nth-child(2):hover {
  transform: translate(-34px, -4px);
}

.service-stack article > div {
  grid-area: copy;
}

.service-stack img {
  grid-area: image;
  min-height: 100%;
  object-position: center;
}

.service-stack p {
  grid-area: body;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-stack h3 {
  margin-bottom: 0;
  font-size: clamp(24px, 2vw, 30px);
}

.testimonial-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 112px);
  padding-top: clamp(70px, 8vw, 110px);
  padding-bottom: clamp(70px, 8vw, 110px);
  color: var(--ink);
  background: var(--sage);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonial-intro {
  max-width: 520px;
}

.testimonial-intro h2 {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 58px);
}

.testimonial-carousel {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.testimonial-track {
  position: relative;
  min-height: 310px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 44px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-left: 6px solid var(--terracotta);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-tight);
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px) scale(0.985);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.testimonial-slide blockquote {
  max-width: 850px;
  margin: 0;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(34px, 4.4vw, 66px);
  font-weight: 500;
  line-height: 1.04;
}

.testimonial-slide strong {
  display: block;
  margin-bottom: 6px;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.testimonial-slide p {
  margin-bottom: 0;
  color: var(--muted);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.testimonial-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.testimonial-controls button:hover {
  border-color: color-mix(in srgb, var(--terracotta) 45%, var(--line));
  background: var(--paper);
  transform: translateY(-2px);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-dots span {
  display: block;
  width: 7px;
  height: 7px;
  border: 1px solid color-mix(in srgb, var(--line) 82%, var(--terracotta));
  background: transparent;
  border-radius: 50%;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.testimonial-dots span.is-active {
  background: transparent;
  border-color: var(--terracotta);
  transform: scale(1.35);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(120px, 0.18fr) minmax(300px, 0.44fr) minmax(320px, 0.38fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding-top: clamp(76px, 9vw, 118px);
  padding-bottom: clamp(58px, 7vw, 90px);
}

.section-label {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.intro-copy {
  max-width: 640px;
}

.home-page .intro-copy h2,
.home-page .section-heading h2 {
  font-size: clamp(38px, 4.6vw, 62px);
}

.intro-visual {
  position: relative;
  min-height: 520px;
}

.intro-image {
  position: absolute;
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.intro-image img {
  transition: transform 600ms ease;
}

.intro-visual:hover .intro-image img {
  transform: scale(1.04);
}

.intro-image-large {
  inset: 0 14% 12% 0;
}

.intro-image-small {
  right: 0;
  bottom: 0;
  width: 42%;
  aspect-ratio: 0.88;
  border: 10px solid var(--paper);
}

.intro-note {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 240px;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(247, 244, 238, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-tight);
  font-size: 15px;
  line-height: 1.5;
}

.intro-copy p,
.feature-copy p,
.page-hero > p,
.contact-details p {
  color: var(--muted);
  font-size: 18px;
}

.services-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--champagne);
  color: var(--ink);
}

.services-band article {
  min-height: 300px;
  padding: clamp(32px, 5vw, 64px);
  border-right: 1px solid var(--line);
  background: transparent;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.services-band article:hover {
  background: rgba(255, 255, 255, 0.38);
  transform: translateY(-2px);
}

.services-band article:last-child {
  border-right: 0;
}

.services-band span,
.process-list span {
  display: block;
  margin-bottom: 42px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
}

.services-band h3,
.services-band p,
.process-list p,
.portfolio-item span,
.project-card p,
.values-grid p {
  color: rgba(43, 43, 43, 0.84);
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 7vw, 110px);
  padding: clamp(76px, 9vw, 132px) clamp(20px, 5vw, 80px);
}

.about-split {
  padding-top: 0;
}

.feature-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.feature-image img,
.project-card img,
.portfolio-item img {
  transition: transform 500ms ease;
}

.feature-image:hover img,
.project-card:hover img,
.portfolio-item:hover img {
  transform: scale(1.035);
}

.feature-copy {
  max-width: 620px;
}

.text-link {
  position: relative;
  display: inline-flex;
  margin-top: 10px;
  color: var(--ink);
  font-weight: 700;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: scaleX(0.72);
}

.atelier-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(34px, 7vw, 110px);
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 80px);
  color: var(--paper);
  background: var(--charcoal);
}

.atelier-band h2 {
  color: var(--paper);
}

.atelier-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1px;
  background: rgba(247, 244, 238, 0.2);
}

.atelier-points article {
  display: grid;
  grid-template-columns: minmax(36px, 54px) 1fr;
  gap: 20px;
  padding: 26px;
  background: var(--charcoal);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.atelier-points article:hover {
  background: #333129;
  transform: translateY(-2px);
}

.atelier-points span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 700;
}

.atelier-points p {
  margin-bottom: 0;
  color: rgba(247, 244, 238, 0.78);
  font-size: 18px;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 0;
}

.founder-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  align-items: center;
  gap: 24px;
  padding-top: 0;
}

.founder-copy {
  max-width: 820px;
}

.founder-card {
  padding: 32px;
  background: var(--charcoal);
  color: var(--paper);
}

.founder-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.founder-card strong {
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
}

.coverage-band {
  padding-top: 0;
}

.coverage-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.coverage-points article {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.coverage-points article:nth-child(1) {
  border-top: 5px solid var(--terracotta);
}

.coverage-points article:nth-child(2) {
  border-top: 5px solid var(--champagne);
}

.coverage-points article:nth-child(3) {
  border-top: 5px solid var(--olive);
}

.coverage-points article:hover {
  border-color: color-mix(in srgb, var(--terracotta) 44%, var(--line));
  box-shadow: var(--shadow-tight);
  transform: translateY(-3px);
}

.project-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 clamp(20px, 5vw, 80px) 22px;
}

.project-chips span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--white);
  transition:
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.project-chips span:nth-child(3n + 1) {
  border-color: color-mix(in srgb, var(--terracotta) 42%, var(--line));
}

.project-chips span:nth-child(3n + 2) {
  border-color: color-mix(in srgb, var(--champagne) 46%, var(--line));
}

.project-chips span:nth-child(3n) {
  border-color: color-mix(in srgb, var(--olive) 46%, var(--line));
}

.project-chips span:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-2px);
}

.project-chips strong {
  color: var(--terracotta);
  font-size: 11px;
}

.project-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.92fr));
  gap: clamp(18px, 2vw, 28px);
}

.project-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--white);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.project-card:hover {
  box-shadow: var(--shadow-tight);
  transform: translateY(-4px);
}

.project-card img {
  aspect-ratio: 1 / 0.92;
}

.project-card-body {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  padding: 24px;
  color: var(--paper);
  background: rgba(35, 35, 41, 0.72);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.project-card:hover .project-card-body,
.project-card:focus-visible .project-card-body {
  opacity: 1;
  transform: translateY(0);
}

.project-card-body h3,
.project-card-body p {
  margin-bottom: 0;
  color: var(--paper);
}

.project-card-body h3 {
  font-size: 24px;
  line-height: 1.1;
}

.project-card-body p {
  color: rgba(247, 244, 238, 0.78);
  font-size: 14px;
}

.project-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.project-preview .section-heading {
  position: sticky;
  top: 110px;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 80px) clamp(60px, 8vw, 104px);
}

.project-gallery .project-card {
  border: 0;
  min-height: 420px;
  display: grid;
  overflow: hidden;
  background: var(--white);
}

.project-gallery .project-card:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}

.project-gallery .project-card-body {
  opacity: 1;
  transform: none;
}

.project-page main {
  padding-top: clamp(96px, 9vw, 120px);
}

.project-detail-panel {
  margin: 0 auto clamp(80px, 8vw, 104px);
  max-width: 1200px;
  padding: clamp(28px, 3vw, 42px);
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-tight);
}

.project-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.project-detail-close {
  appearance: none;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 14px 18px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 600;
}

.project-detail-close:hover,
.project-detail-close:focus-visible {
  background: var(--paper);
}

.project-detail-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.project-detail-meta div {
  padding: 20px;
  border-radius: 22px;
  background: var(--paper);
}

.project-detail-meta strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.project-detail-meta span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.project-detail-description {
  margin-top: 28px;
  font-size: 16px;
  color: var(--ink);
  max-width: 76ch;
}

.project-detail-gallery {
  margin-top: 32px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.project-detail-gallery img {
  min-height: 180px;
  border-radius: 18px;
  object-fit: cover;
}

.project-detail-panel.hidden {
  display: none;
}

@media (max-width: 980px) {
  .project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .project-gallery {
    grid-template-columns: 1fr;
  }

  .project-detail-header {
    flex-direction: column;
  }

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

.site-footer {
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-top {
  padding: 36px clamp(20px, 5vw, 80px) 48px;
  background: var(--charcoal);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.05fr 0.8fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.footer-columns h3 {
  margin: 0;
  color: var(--paper);
  font-size: 26px;
}

.footer-columns a,
.footer-columns p {
  display: block;
  color: rgba(245, 242, 238, 0.8);
  font-size: 15px;
}

.footer-columns a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-columns a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-columns section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 6px;
}

.footer-brand-stack .footer-logo {
  height: 60px;
}

.footer-contact-panel {
  max-width: 320px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 28px clamp(20px, 5vw, 80px);
  color: var(--paper);
  font-size: 15px;
  background: var(--terracotta);
}

.footer-bottom a {
  color: inherit;
  transition: color 180ms ease;
}

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

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: clamp(32px, 7vw, 110px);
  padding-top: clamp(140px, 18vw, 220px);
  background: var(--terracotta);
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(42px, 6.2vw, 88px);
}

.page-hero > p {
  align-self: end;
  margin-bottom: 12px;
  color: var(--white);
}

.page-hero .eyebrow {
  color: var(--white);
}

.about-hero,
.about-studio,
.about-editorial,
.choose-band,
.about-gallery,
.brand-band,
.career-cta {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 80px);
}

.about-hero {
  padding-top: clamp(148px, 18vw, 220px);
  padding-bottom: clamp(52px, 7vw, 92px);
  background: var(--paper);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.84fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

.about-hero-copy {
  max-width: 740px;
}

.about-hero h1 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 88px);
}

.about-subtitle {
  margin-bottom: 28px;
  color: var(--terracotta);
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 500;
}

.about-hero-copy p:not(.about-subtitle),
.about-studio-copy p,
.about-editorial p,
.choose-list,
.brand-band .text-link {
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
}

.about-hero-copy p:not(.about-subtitle) {
  max-width: 1020px;
  margin-bottom: 18px;
}

.about-hero-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.about-hero-visual img {
  transition: transform 600ms ease;
}

.about-hero-visual:hover img {
  transform: scale(1.04);
}

.about-hero-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  max-width: 360px;
  padding: 20px 22px;
  color: var(--ink);
  border-left: 5px solid var(--terracotta);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-tight);
}

.about-hero-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-hero-card strong {
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.1;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(28px, 4vw, 48px);
  border-top: 1px solid var(--line);
  background: var(--line);
}

.about-highlights article {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-top-width: 4px;
  background: var(--white);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.about-highlights article:nth-child(1) {
  border-top-color: var(--terracotta);
}

.about-highlights article:nth-child(2) {
  border-top-color: var(--champagne);
}

.about-highlights article:nth-child(3) {
  border-top-color: var(--olive);
}

.about-highlights article:hover {
  border-color: color-mix(in srgb, var(--terracotta) 40%, var(--line));
  transform: translateY(-2px);
  box-shadow: var(--shadow-tight);
}

.about-highlights span {
  display: block;
  margin-bottom: 34px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 700;
}

.about-highlights strong {
  display: block;
  margin-bottom: 8px;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.08;
}

.about-highlights p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.about-studio {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.82fr);
  gap: clamp(36px, 7vw, 112px);
  align-items: center;
  padding-top: clamp(28px, 4vw, 52px);
}

.about-studio-image {
  min-height: 620px;
  overflow: hidden;
  background: var(--sage);
  box-shadow: var(--shadow);
}

.about-studio-copy {
  max-width: 720px;
}

.about-studio-copy h2,
.about-editorial h2,
.choose-intro h2,
.brand-band h2,
.career-cta h2 {
  font-size: clamp(34px, 4.4vw, 64px);
}

.about-editorial {
  display: grid;
  gap: 18px;
  padding-top: clamp(32px, 5vw, 72px);
}

.editorial-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  grid-template-areas: "media copy";
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 6px solid var(--terracotta);
  background: var(--white);
  box-shadow: 0 20px 56px rgba(36, 35, 38, 0.06);
}

.editorial-card-reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 0.95fr);
  grid-template-areas: "copy media";
  border-top-color: var(--champagne);
}

.editorial-card:nth-child(3) {
  border-top-color: var(--olive);
}

.editorial-media {
  position: relative;
  grid-area: media;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.editorial-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(35, 35, 41, 0.18);
  pointer-events: none;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 620ms ease,
    filter 620ms ease;
}

.editorial-card:hover .editorial-media img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.04);
}

.editorial-copy {
  position: relative;
  grid-area: copy;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: clamp(28px, 4vw, 50px);
}

.editorial-number {
  display: inline-flex;
  width: max-content;
  padding: 8px 12px;
  border: 1px solid currentColor;
  color: var(--terracotta);
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.editorial-card-reverse .editorial-number {
  color: var(--champagne);
}

.editorial-card:nth-child(3) .editorial-number {
  color: var(--olive);
}

.editorial-copy h2 {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 50px);
  line-height: 1.02;
}

.editorial-copy p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 18px);
}

.editorial-copy p + p {
  max-width: 680px;
}

.choose-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.choose-intro {
  position: sticky;
  top: 118px;
}

.choose-intro h2 {
  color: var(--ink);
}

.choose-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  background: var(--line);
}

.choose-list li {
  min-height: 92px;
  padding: 22px 24px;
  background: var(--white);
}

.choose-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  vertical-align: 0.12em;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--terracotta);
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-right: 0;
  padding-left: 0;
  background: var(--paper);
}

.about-gallery article {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: var(--paper);
  background: var(--charcoal);
}

.about-gallery article::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(35, 35, 41, 0.36);
}

.about-gallery img {
  transition:
    filter 500ms ease,
    transform 500ms ease;
}

.about-gallery article:hover img {
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.045);
}

.about-gallery a {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.08;
}

.brand-band {
  display: grid;
  gap: 30px;
  text-align: center;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-band h2 {
  margin-bottom: 8px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.brand-grid span {
  display: grid;
  min-height: 110px;
  place-items: center;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.15;
}

.brand-band .text-link {
  justify-self: center;
  color: var(--ink);
}

.career-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.career-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.values-grid article {
  padding: clamp(30px, 4vw, 52px);
  border-right: 1px solid var(--line);
  border-top: 4px solid transparent;
  background: var(--white);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.values-grid article:nth-child(3n + 1) {
  border-top-color: var(--terracotta);
}

.values-grid article:nth-child(3n + 2) {
  border-top-color: var(--champagne);
}

.values-grid article:nth-child(3n) {
  border-top-color: var(--olive);
}

.values-grid article:hover {
  border-color: color-mix(in srgb, var(--terracotta) 36%, var(--line));
  transform: translateY(-2px);
  box-shadow: var(--shadow-tight);
}

.values-grid article:last-child {
  border-right: 0;
}

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

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.process-list li {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-top-width: 4px;
  background: var(--white);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.process-list li:nth-child(3n + 1) {
  border-top-color: var(--terracotta);
}

.process-list li:nth-child(3n + 2) {
  border-top-color: var(--champagne);
}

.process-list li:nth-child(3n) {
  border-top-color: var(--olive);
}

.process-list li:hover {
  border-color: color-mix(in srgb, var(--terracotta) 36%, var(--line));
  transform: translateY(-2px);
  box-shadow: var(--shadow-tight);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 80px) clamp(60px, 8vw, 104px);
}

.portfolio-item {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.portfolio-item:hover img {
  filter: saturate(1.04) contrast(1.03);
}

.portfolio-item.large {
  grid-column: span 2;
  min-height: 440px;
}

.portfolio-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(35, 35, 41, 0.42);
}

.portfolio-item div {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(20px, 3.5vw, 34px);
}

.portfolio-item p {
  margin-bottom: 10px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-item h2 {
  max-width: 720px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(24px, 3.6vw, 48px);
}

.portfolio-item span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.26fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 92px 0 0;
}

.contact-page {
  background: var(--white);
}

.contact-page .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(36, 35, 38, 0.09);
}

.contact-rail {
  position: sticky;
  top: 92px;
  min-height: calc(100vh - 92px);
  overflow: hidden;
  background: var(--charcoal);
}

.contact-rail img {
  position: absolute;
  inset: 0;
}

.contact-rail::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(35, 35, 41, 0.2);
}

.contact-rail-label {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  max-width: calc(100% - 48px);
  padding: 14px 16px;
  color: var(--white);
  background: rgba(17, 16, 13, 0.48);
  backdrop-filter: blur(14px);
}

.contact-rail-label strong {
  display: block;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 500;
  line-height: 1.05;
}

.contact-rail-label span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.8;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: clamp(32px, 4vw, 48px) clamp(28px, 4vw, 56px) clamp(48px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.contact-hero-copy {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-hero-copy h1 {
  max-width: 1200px;
  margin-bottom: 20px;
  color: var(--ink);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(34px, 3.4vw, 66px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-transform: none;
}

.contact-hero-copy p {
  max-width: 1220px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(17px, 1.4vw, 24px);
  line-height: 1.5;
}

.contact-meta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 4px 0 10px;
  border-bottom: 1px solid var(--line);
}

.contact-meta-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-size: 18px;
}

.contact-meta-address {
  grid-template-columns: 52px minmax(0, 1fr);
}

.contact-meta-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 18px;
}

.contact-meta-item:nth-child(1) .contact-meta-icon {
  color: var(--terracotta);
  border-color: color-mix(in srgb, var(--terracotta) 42%, var(--line));
}

.contact-meta-item:nth-child(2) .contact-meta-icon {
  color: var(--champagne);
  border-color: color-mix(in srgb, var(--champagne) 42%, var(--line));
}

.contact-meta-item:nth-child(3) .contact-meta-icon {
  color: var(--olive);
  border-color: color-mix(in srgb, var(--olive) 42%, var(--line));
}

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

.contact-form-kicker {
  color: var(--muted);
  font-size: 24px;
  font-weight: 400;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.office-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.office-grid article:nth-child(3n + 1) {
  border-top: 5px solid var(--terracotta);
}

.office-grid article:nth-child(3n + 2) {
  border-top: 5px solid var(--champagne);
}

.office-grid article:nth-child(3n) {
  border-top: 5px solid var(--sage);
}

.office-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.office-grid strong {
  display: block;
  margin-bottom: 8px;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.office-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-list a {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.contact-list a:hover {
  border-color: color-mix(in srgb, var(--terracotta) 52%, var(--line));
  color: var(--terracotta);
  transform: translateX(4px);
}

.contact-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-page .contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 22px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.contact-page .contact-form label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}

.contact-page .contact-form input,
.contact-page .contact-form select,
.contact-page .contact-form textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid color-mix(in srgb, var(--line) 88%, var(--charcoal));
  border-radius: 4px;
  padding: 16px 22px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-page .contact-form input::placeholder,
.contact-page .contact-form textarea::placeholder {
  color: transparent;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form select:focus,
.contact-page .contact-form textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(193, 64, 93, 0.08);
}

.contact-page .contact-form textarea {
  resize: vertical;
}

.contact-page .contact-form .full-field,
.contact-page .contact-form .form-note {
  grid-column: 1 / -1;
}

.contact-page .contact-form .form-note {
  margin: 0;
  color: var(--olive);
  font-size: 14px;
}

.contact-form .button {
  justify-self: center;
  min-width: 220px;
  border-radius: 4px;
  font-size: 15px;
  text-transform: none;
  color: var(--terracotta);
  background: var(--white);
  border-color: var(--terracotta);
}

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

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
    flex: 0 0 auto;
    position: relative;
    z-index: 31;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 clamp(20px, 4vw, 64px);
    color: var(--ink);
    background: var(--paper);
    border: 1px solid rgba(36, 35, 38, 0.08);
    border-radius: 0;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px) scale(0.985);
    transform-origin: top center;
    pointer-events: none;
    transition:
      max-height 320ms ease,
      opacity 220ms ease,
      transform 320ms ease,
      padding 220ms ease;
  }

  .site-nav.is-open {
    max-height: 360px;
    padding: 12px clamp(20px, 4vw, 64px);
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    min-height: 44px;
    padding: 14px 10px;
  }

  .brand {
    max-width: calc(100vw - 96px);
  }

  .intro-section,
  .page-hero,
  .feature-split,
  .contact-layout,
  .atelier-band,
  .service-grid,
  .project-preview,
  .about-studio,
  .choose-band {
    grid-template-columns: 1fr;
  }

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

  .about-editorial {
    grid-template-columns: 1fr;
  }

  .editorial-card,
  .editorial-card-reverse {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "copy";
  }

  .editorial-card {
    grid-column: auto;
    margin-top: 0;
  }

  .service-grid,
  .project-preview {
    gap: 28px;
  }

  .intro-visual {
    min-height: 380px;
  }

  .section-heading {
    max-width: 760px;
  }

  .project-preview .section-heading {
    position: static;
  }

  .services-band,
  .service-showcase,
  .values-grid,
  .trust-strip,
  .testimonial-band,
  .founder-band,
  .coverage-points,
  .process-list,
  .project-grid,
  .about-gallery,
  .brand-grid {
    grid-template-columns: 1fr;
  }

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

  .choose-intro {
    position: static;
  }

  .choose-list {
    grid-template-columns: 1fr;
  }

  .about-studio-image {
    min-height: 440px;
  }

  .about-gallery article {
    min-height: 360px;
  }

  .service-feature-card {
    min-height: 520px;
  }

  .service-stack article:nth-child(2),
  .service-stack article:nth-child(2):hover {
    transform: none;
  }

  .testimonial-track {
    min-height: 360px;
  }

  .services-band article,
  .values-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .portfolio-item.large {
    grid-column: auto;
  }

  .portfolio-item,
  .portfolio-item.large {
    min-height: 340px;
  }

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

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

  .footer-contact-panel {
    max-width: none;
  }

  .contact-page .site-header {
    backdrop-filter: blur(12px);
  }

  .contact-layout {
    min-height: auto;
    padding: 0;
  }

  .contact-rail {
    position: relative;
    top: auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: 300px;
  }

  .contact-content {
    padding: 28px 18px 40px;
    border-top: 0;
  }

  .contact-hero-copy h1 {
    max-width: 18ch;
    margin-bottom: 18px;
    font-size: clamp(32px, 8.2vw, 48px);
    line-height: 1.02;
  }

  .contact-hero-copy p {
    max-width: 32ch;
    font-size: 15px;
    line-height: 1.55;
  }

  .contact-meta-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .contact-meta-item {
    align-items: start;
    font-size: 15px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-form .button {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand-logo {
    height: 34px;
  }

  .hero,
  .hero-content {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero img {
    object-position: 58% center;
  }

  .hero-overlay {
    background: rgba(35, 35, 41, 0.62);
  }

  .hero-content {
    justify-content: flex-end;
    padding: 112px 18px 44px;
  }

  .hero-meta {
    display: none;
  }

  h1 {
    font-size: clamp(40px, 14vw, 56px);
  }

  .home-page .hero-content h1 {
    font-size: clamp(30px, 8.8vw, 44px);
    max-width: none;
  }

  .home-page .hero-content h1 span:first-child {
    white-space: normal;
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .home-page .intro-copy h2,
  .home-page .section-heading h2,
  .testimonial-intro h2 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .intro-visual {
    min-height: 320px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-content p:not(.eyebrow),
  .intro-copy p,
  .feature-copy p,
  .page-hero > p,
  .contact-details p {
    font-size: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-strip article,
  .testimonial-slide,
  .founder-card,
  .coverage-points article,
  .office-grid article {
    padding: 22px;
  }

  .intro-section,
  .page-hero,
  .about-hero,
  .about-studio,
  .about-editorial,
  .choose-band,
  .brand-band,
  .career-cta,
  .project-preview,
  .process-band,
  .contact-layout,
  .service-grid,
  .testimonial-band,
  .founder-band,
  .coverage-band,
  .feature-split,
  .atelier-band {
    padding-right: 18px;
    padding-left: 18px;
  }

  .about-gallery {
    padding-right: 0;
    padding-left: 0;
  }

  .contact-page .contact-layout {
    padding-right: 0;
    padding-left: 0;
  }

  .page-hero {
    gap: 10px;
    padding-top: 116px;
    padding-bottom: 54px;
  }

  .page-hero h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .about-hero {
    padding-top: 116px;
  }

  .about-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .about-subtitle {
    font-size: 18px;
  }

  .about-hero-copy p:not(.about-subtitle),
  .about-studio-copy p,
  .about-editorial p,
  .choose-list {
    font-size: 16px;
  }

  .about-hero-visual {
    min-height: 460px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-highlights article {
    padding: 20px;
  }

  .about-studio-image {
    min-height: 330px;
  }

  .about-studio-copy h2,
  .about-editorial h2,
  .choose-intro h2,
  .brand-band h2,
  .career-cta h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .about-editorial h2 {
    padding-top: 0;
  }

  .editorial-media {
    min-height: 320px;
  }

  .editorial-copy {
    gap: 14px;
    padding: 22px;
  }

  .editorial-number {
    padding: 7px 10px;
    font-size: 11px;
  }

  .choose-list li {
    min-height: 0;
    padding: 18px;
  }

  .about-gallery article {
    min-height: 320px;
  }

  .about-gallery a {
    right: 18px;
    bottom: 18px;
    left: 18px;
    font-size: clamp(25px, 8vw, 34px);
  }

  .brand-grid span {
    min-height: 86px;
    font-size: 21px;
  }

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

  .trust-strip strong {
    font-size: 25px;
  }

  .service-feature-copy span,
  .service-stack span,
  .services-band span,
  .process-list span {
    margin-bottom: 24px;
  }

  .service-feature-card {
    min-height: 460px;
  }

  .service-feature-copy {
    padding: 24px;
  }

  .service-feature-copy h3 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .service-stack {
    gap: 14px;
  }

  .service-stack article {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "copy"
      "body";
    gap: 14px;
    min-height: auto;
    padding: 18px;
  }

  .service-stack img {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
  }

  .testimonial-track {
    min-height: 430px;
  }

  .testimonial-slide blockquote {
    font-size: clamp(30px, 9vw, 42px);
  }

  .testimonial-controls {
    justify-content: space-between;
  }

  .testimonial-controls button {
    width: 44px;
    height: 44px;
  }

  .services-band article,
  .values-grid article,
  .process-list li {
    padding: 26px 18px;
  }

  .atelier-band {
    gap: 26px;
  }

  .atelier-points article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .atelier-points p {
    font-size: 16px;
  }

  .feature-image {
    aspect-ratio: 1 / 1.18;
  }

  .project-chips {
    gap: 8px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .project-chips span {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
  }

  .project-grid,
  .portfolio-grid {
    gap: 14px;
  }

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

  .project-card-body {
    opacity: 1;
    transform: none;
    padding: 18px;
  }

  .project-card img {
    aspect-ratio: 1 / 0.86;
  }

  .portfolio-grid {
    padding-right: 18px;
    padding-left: 18px;
  }

  .portfolio-item,
  .portfolio-item.large {
    min-height: 320px;
  }

  .portfolio-item.large {
    grid-column: auto;
  }

  .portfolio-item div {
    padding: 18px;
  }

  .portfolio-item h2 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .portfolio-item span {
    font-size: 14px;
  }

  .contact-details {
    gap: 34px;
  }

  .contact-list a,
  .footer-columns a,
  .footer-bottom a {
    min-height: 44px;
  }

  .contact-list a {
    overflow-wrap: anywhere;
  }

  .contact-page .contact-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-page .contact-form label.form-field {
    gap: 0;
    padding: 0;
    border: 0;
    background: transparent;
    min-height: auto;
  }

  .contact-page .contact-form label.form-field.full-field {
    min-height: auto;
  }

  .contact-page .contact-form .form-label {
    display: none;
  }

  .contact-page .contact-form input,
  .contact-page .contact-form select,
  .contact-page .contact-form textarea {
    font-size: 14px;
    min-height: 58px;
    padding: 16px 18px;
    border: 1px solid color-mix(in srgb, var(--line) 88%, var(--charcoal));
    border-radius: 4px;
    background: var(--white);
    box-shadow: none;
    font-weight: 400;
  }

  .contact-page .contact-form input::placeholder,
  .contact-page .contact-form textarea::placeholder {
    color: var(--muted);
    font-weight: 400;
    opacity: 1;
  }

  .contact-page .contact-form select {
    color: var(--muted);
    font-weight: 400;
  }

  .contact-page .contact-form select:valid {
    color: var(--ink);
  }

  .contact-page .contact-form textarea {
    min-height: 110px;
    resize: vertical;
  }

  .contact-rail-label {
    top: 18px;
    left: 18px;
    max-width: calc(100% - 36px);
  }

  .contact-layout {
    padding-top: 0;
  }

  .contact-rail {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: 240px;
    aspect-ratio: 16 / 11;
  }

  .contact-page .site-header {
    background: rgba(255, 255, 255, 0.98);
  }

  .contact-content {
    padding: 24px 16px 34px;
    gap: 24px;
  }

  .contact-hero-copy h1 {
    margin-bottom: 18px;
    letter-spacing: -0.03em;
    font-size: clamp(30px, 8vw, 42px);
  }

  .contact-hero-copy p {
    font-size: 15px;
  }

  .contact-meta-item {
    gap: 14px;
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .contact-meta-icon {
    width: 40px;
    height: 40px;
  }

  .contact-form-shell {
    gap: 18px;
  }

  .contact-form-kicker {
    font-size: 18px;
  }

  .contact-page .contact-form .button {
    min-height: 54px;
    border-color: var(--terracotta);
    color: var(--white);
    background: var(--terracotta);
  }

  .contact-page .contact-form .button:hover {
    background: color-mix(in srgb, var(--terracotta) 92%, black);
  }

  .contact-page .contact-form input,
  .contact-page .contact-form select,
  .contact-page .contact-form textarea {
    border-radius: 4px;
  }

  .footer-top {
    padding: 30px 18px 36px;
  }

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

  .footer-columns h3 {
    font-size: 22px;
  }

  .footer-columns a,
  .footer-columns p {
    overflow-wrap: anywhere;
  }

  .footer-columns a {
    display: flex;
    align-items: center;
  }

  .footer-brand-stack {
    gap: 14px;
  }

  .footer-brand-stack .footer-logo {
    height: 48px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 18px;
  }
}
