@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@400;500;600&display=swap");

:root {
  --paper: #fbfaf6;
  --paper-2: #f5f3ec;
  --ink: #171712;
  --olive: #3f4c20;
  --line: rgba(23, 23, 18, 0.16);
  --muted: rgba(23, 23, 18, 0.74);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --shell: 1480px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
p{
  font-size: 12px !important;
}
small {
  font-size: 11px;
}
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
}
.site-shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
}
.section-pad {
  padding: 64px 58px;
}
.section-pad-sm {
  padding: 38px 58px;
}
.hairline {
  border-color: var(--line) !important;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  margin: 0 0 25px;
}
.eyebrow:after {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(23, 23, 18, 0.48);
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin: 0;
}
.lead {
  color: var(--muted);
  line-height: 1.8;
  margin: 24px 0 0;
  max-width: 550px;
}
.rule {
  width: 38px;
  height: 1px;
  background: rgba(23, 23, 18, 0.65);
  margin: 22px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 47px;
  padding: 0 20px;
  border: 1px solid rgba(23, 23, 18, 0.34);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  transition: 0.2s ease;
}
.btn:hover {
  background: #efede5;
}
.btn--olive {
  background: var(--olive);
  color: #fff;
  border-color: var(--olive);
}
.btn--olive:hover {
  background: #303b18;
}
.kicker-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.kicker-center:before,
.kicker-center:after {
  content: "";
  height: 1px;
  width: 29px;
  background: rgba(23, 23, 18, 0.38);
}

/* Header */
.site-header {
  height: 106px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.98);
  position: relative;
  z-index: 50;
  overflow: hidden;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 1;
  max-width: 260px;
}
.brand-logo {
  display: block;
  width: auto !important;
  height: 74px !important;
  max-width: 260px !important;
  max-height: 74px !important;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.brand-main {
  font-family: var(--serif);
  font-size: 42px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  white-space: nowrap;
}
.brand-sub {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.53em;
  text-transform: uppercase;
}
.brand-sub:after {
  content: "";
  height: 1px;
  width: 68px;
  background: rgba(23, 23, 18, 0.62);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 54px;
  height: 100%;
}
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 0;
  height: 2px;
  background: var(--olive);
  transition: 0.2s ease;
}
.nav-link:hover:after,
.nav-link.active:after {
  width: 46px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--line);
  padding: 0;
  place-items: center;
}
.menu-toggle span,
.menu-toggle span:before,
.menu-toggle span:after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ink);
  position: relative;
}
.menu-toggle span:before {
  position: absolute;
  top: -6px;
  left: 0;
}
.menu-toggle span:after {
  position: absolute;
  top: 6px;
  left: 0;
}
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 20px 24px;
  background: var(--paper);
}
.mobile-nav.open {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Shared footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.footer-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  font-size: 11px;
}
.footer-links {
  display: flex;
  gap: 42px;
}
.social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social b {
  font-size: 15px;
}

/* Home */
.home-hero {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 390px;
  background: var(--paper);
}
.home-copy {
  padding: 58px 38px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-copy .display {
  font-size: 54px;
  max-width: 570px;
}
.home-visual {
  min-height: 390px;
  background: url("../images/home-hero.webp?v=4") center/cover no-repeat;
}
.home-industries {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 38px 45px;
}
.home-industries .title {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.icon-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.icon-cell {
  padding: 14px 10px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.icon-cell:last-child {
  border-right: 0;
}
.line-icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  stroke: var(--ink);
  stroke-width: 1.35;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 18px 31px;
  border-bottom: 1px solid var(--line);
}
.value-card {
  padding: 20px 20px 18px;
  border-right: 1px solid var(--line);
}
.value-card:last-child {
  border-right: 0;
}
.value-card .line-icon {
  margin: 0 0 15px;
  width: 28px;
  height: 28px;
}
.value-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 23px;
  line-height: 1.05;
  margin: 0 0 11px;
}
.value-card p {
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.create-section {
  padding: 40px 30px 45px;
}
.create-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.create-card {
  border: 1px solid var(--line);
  background: var(--paper);
}
.create-card img {
  width: 100%;
  aspect-ratio: 1.28/1;
  object-fit: cover;
}
.create-body {
  min-height: 115px;
  padding: 11px 12px;
  display: flex;
  flex-direction: column;
}
.create-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}
.create-body p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  margin: 4px 0;
}
.create-body .arrow {
  margin-top: auto;
  font-size: 18px;
}
.process-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
  padding: 40px 35px 45px;
}
.process-strip-title {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 17px;
}
.mini-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.mini-step {
  padding: 0 18px;
  position: relative;
}
.mini-step:not(:last-child) {
  border-right: 1px solid var(--line);
}
.mini-step .n {
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1;
}
.mini-step .t {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 7px;
}
.mini-step p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  margin: 7px 0 0;
}
.home-cta {
  display: grid;
  grid-template-columns: 41% 59%;
  min-height: 205px;
}
.home-cta-copy {
  padding: 34px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-cta-copy .display {
  font-size: 42px;
}
.home-cta-copy p {
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 450px;
}
.home-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 205px;
}

/* Work */
.page-hero {
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: 350px;
}
.page-hero-copy {
  padding: 50px 47px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero-copy .display {
  font-size: 54px;
}
.page-hero-image {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}
.work-tabs {
  display: flex;
  align-items: center;
  gap: 49px;
  padding: 24px 45px 21px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  white-space: nowrap;
}
.work-tab {
  position: relative;
  background: none;
  border: 0;
  padding: 0 0 11px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.work-tab.active:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 114px;
  max-width: 100%;
  height: 2px;
  background: var(--olive);
}
.work-filter {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
}
.work-grid {
  padding: 25px 44px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
.work-card {
  border: 1px solid var(--line);
  background: var(--paper);
}
.work-card img {
  width: 100%;
  aspect-ratio: 1.72/1;
  object-fit: cover;
}
.work-card-body {
  padding: 11px 12px 13px;
  min-height: 70px;
  position: relative;
}
.work-card-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.work-card-cat {
  font-size: 12px;
  margin-top: 7px;
  color: var(--muted);
}
.work-card-arrow {
  position: absolute;
  right: 13px;
  bottom: 10px;
  font-size: 18px;
}

/* Process */
.process-hero {
  display: grid;
  grid-template-columns: 39.5% 60.5%;
  min-height: 328px;
}
.process-hero .page-hero-copy {
  padding-left: 44px;
}
.process-hero .display {
  font-size: 55px;
}
.process-list {
  padding: 0 43px;
}
.process-row {
  display: grid;
  grid-template-columns: 120px 310px 355px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 154px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
}
.process-number {
  position: relative;
  padding-left: 53px;
}
.process-number:before {
  content: "";
  position: absolute;
  left: 8px;
  top: -77px;
  bottom: -77px;
  width: 1px;
  background: rgba(63, 76, 32, 0.28);
}
.process-row:first-child .process-number:before {
  top: 22px;
}
.process-row:last-child .process-number:before {
  bottom: 22px;
}
.process-number:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--olive);
  border-radius: 50%;
  left: 2.5px;
  top: 6px;
}
.process-number .num {
  font-family: var(--serif);
  font-size: 43px;
  line-height: 0.9;
}
.process-number .line-icon {
  margin: 20px 0 0;
  width: 42px;
  height: 42px;
}
.process-copy h3 {
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin: 0 0 11px;
}
.process-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.process-img {
  width: 100%;
  height: 136px;
  object-fit: cover;
}
.process-points {
  font-size: 12px;
  line-height: 2.1;
  color: var(--muted);
  margin: 0;
  padding-left: 18px;
}
.process-bottom {
  display: grid;
  grid-template-columns: 36% 32% 32%;
  align-items: center;
  padding: 36px 54px;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}
.process-bottom .display {
  font-size: 39px;
}
.process-bottom p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  padding-right: 35px;
}
.talk-box {
  border-left: 1px solid var(--line);
  padding-left: 43px;
  font-size: 11px;
}
.talk-box strong {
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.talk-link {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 17px;
}

/* Studio */
.studio-hero {
  display: grid;
  grid-template-columns: 41% 59%;
  min-height: 336px;
}
.studio-hero .page-hero-copy {
  padding-left: 42px;
}
.studio-hero .display {
  font-size: 48px;
}
.beliefs {
  display: grid;
  grid-template-columns: 29% repeat(5, 1fr);
  padding: 34px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.belief-intro {
  padding-right: 30px;
}
.belief-intro .display {
  font-size: 31px;
  line-height: 1.06;
}
.belief-card {
  border-left: 1px solid var(--line);
  padding: 0 24px;
  text-align: left;
}
.belief-card .line-icon {
  width: 39px;
  height: 39px;
  margin: 0 auto 15px;
}
.belief-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin: 0 0 10px;
}
.belief-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  text-align: center;
  margin: 0;
}
.team-section {
  padding: 34px 41px;
}
.team-grid {
  display: grid;
  grid-template-columns: 22% repeat(4, 1fr);
  gap: 10px;
}
.team-intro {
  padding-right: 28px;
}
.team-intro .display {
  font-size: 33px;
  line-height: 1;
}
.team-intro p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.team-card img {
  width: 100%;
  aspect-ratio: 1.04/1;
  object-fit: cover;
  filter: saturate(0.45);
}
.team-card h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 11px 0 6px;
}
.team-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.environment {
  display: grid;
  grid-template-columns: 56% 44%;
  border-top: 1px solid var(--line);
}
.env-collage {
  display: grid;
  grid-template-columns: 44% 56%;
  grid-template-rows: 1fr 1.15fr;
  gap: 7px;
  padding: 16px 8px 16px 39px;
}
.env-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.env-copy {
  padding: 38px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.env-copy .display {
  font-size: 39px;
}
.env-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
}
.stat {
  border-right: 1px solid var(--line);
  padding: 0 17px;
}
.stat:first-child {
  padding-left: 0;
}
.stat:last-child {
  border-right: 0;
}
.stat .n {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}
.stat .l {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 8px;
}
.studio-bottom {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 170px;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.studio-bottom-copy {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  padding: 27px 41px;
  gap: 30px;
}
.studio-bottom-copy .display {
  font-size: 37px;
}
.studio-bottom-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.studio-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact */
.contact-top {
  display: grid;
  grid-template-columns: 43.3% 56.7%;
  min-height: 438px;
}
.contact-info {
  padding: 38px 42px;
}
.contact-info .display {
  font-size: 45px;
}
.contact-info .display em {
  font-style: italic;
}
.contact-info .lead {
  font-size: 16px;
  max-width: 360px;
  margin-top: 24px;
}
.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}
.contact-line {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  font-size: 12px;
  line-height: 1.5;
}
.contact-line svg {
  width: 20px;
  height: 20px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.2;
}
.contact-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 438px;
}
.contact-middle {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 477px;
}
.studio-photo-wrap {
  position: relative;
}
.studio-photo-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-card {
  position: absolute;
  left: 23px;
  top: 24px;
  width: 230px;
  background: #4a5733;
  color: #fff;
  padding: 22px 20px;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.35;
}
.quote-card .small-rule {
  width: 28px;
  height: 1px;
  background: #fff;
  margin: 16px 0;
}
.contact-form-wrap {
  padding: 39px 44px 25px;
      display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-form-wrap .eyebrow {
  margin-bottom: 16px;
}
.contact-form-wrap > p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 25px;
}
.contact-form {
  display: grid;
  gap: 10px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.field {
  width: 100%;
  height: 38px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0 12px;
  font-size: 12px;
  outline: none;
}
.field:focus {
  border-color: var(--olive);
}
textarea.field {
  height: 84px;
  padding-top: 11px;
  resize: vertical;
}
.send-btn {
  height: 39px;
  border: 0;
  background: var(--olive);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.work-with {
  padding: 26px 24px 29px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.work-with .title {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.29em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 23px;
}
.ww-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.ww-card {
  text-align: center;
  border-right: 1px solid var(--line);
  padding: 0 18px;
}
.ww-card:last-child {
  border-right: 0;
}
.ww-card .line-icon {
  width: 37px;
  height: 37px;
}
.ww-card h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  margin: 9px 0 4px;
}
.ww-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.contact-bottom {
  display: grid;
  grid-template-columns: 28% 34% 38%;
  min-height: 247px;
  background: var(--paper-2);
}
.contact-bottom > div {
  padding: 32px 42px;
}
.contact-bottom .display {
  font-size: 40px;
}
.contact-bottom p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 31px;
  margin-top: 26px;
}
.sig-sub {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 1px;
}
.contact-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .site-header {
    height: 92px;
  }
  .brand-main {
    font-size: 34px;
  }
  .main-nav {
    gap: 34px;
  }
  .header-inner {
    padding: 0 28px;
  }
  .home-copy .display,
  .page-hero-copy .display,
  .process-hero .display {
    font-size: 45px;
  }
  .studio-hero .display {
    font-size: 42px;
  }
  .process-row {
    grid-template-columns: 100px 260px 310px 1fr;
  }
  .process-img {
    height: 125px;
  }
  .beliefs {
    grid-template-columns: 30% repeat(5, 1fr);
    padding-inline: 25px;
  }
  .belief-card {
    padding-inline: 14px;
  }
  .team-grid {
    grid-template-columns: 23% repeat(4, 1fr);
  }
}

@media (max-width: 850px) {
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: grid;
  }
  .site-header {
    height: auto;
    min-height: 84px;
  }
  .header-inner {
    height: 84px;
  }
  .brand-logo {
    height: 62px !important;
    max-width: 220px !important;
    max-height: 62px !important;
  }
  .brand-main {
    font-size: 30px;
  }
  .brand-sub {
    font-size: 11px;
  }
  .brand-sub:after {
    width: 45px;
  }
  .home-hero,
  .page-hero,
  .process-hero,
  .studio-hero,
  .contact-top,
  .contact-middle,
  .home-cta,
  .studio-bottom {
    grid-template-columns: 1fr;
  }
  .home-visual,
  .page-hero-image,
  .contact-photo {
    order: -1;
    min-height: 360px;
  }
  .home-copy,
  .page-hero-copy,
  .contact-info {
    padding: 46px 30px;
  }
  .home-copy .display,
  .page-hero-copy .display,
  .process-hero .display,
  .studio-hero .display,
  .contact-info .display {
    font-size: 47px;
  }
  .icon-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .icon-cell {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .value-grid {
    grid-template-columns: 1fr 1fr;
        
  }
  .value-card:nth-child(2) {
    border-right: 0;
  }
  .value-card {
    border-bottom: 1px solid var(--line);
  }
  .create-grid,
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mini-process {
    grid-template-columns: 1fr 1fr;
  }
  .mini-step {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
    padding: 16px;
  }
  .work-tabs {
    gap: 28px;
    padding-inline: 25px;
  }
  .work-grid {
    padding-inline: 25px;
  }
  .process-list {
    padding: 0 28px;
  }
  .process-row {
    grid-template-columns: 85px 1fr;
    gap: 18px;
    padding: 24px 0;
  }
  .process-img {
    grid-column: 2;
    height: 210px;
  }
  .process-points {
    grid-column: 2;
  }
  .process-number {
    grid-row: 1/4;
    padding-left: 35px;
  }
  .process-number:before {
    left: 6px;
  }
  .process-number:after {
    left: 0.5px;
  }
  .process-bottom {
    grid-template-columns: 1fr;
    padding: 34px 30px;
    gap: 24px;
  }
  .talk-box {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 24px 0 0;
  }
  .beliefs {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .belief-intro {
    grid-column: 1/-1;
    padding: 0 0 28px;
  }
  .belief-card {
    padding: 18px;
    border-top: 1px solid var(--line);
  }
  .belief-card:nth-last-child(-n + 2) {
    grid-column: span 1;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-intro {
    grid-column: 1/-1;
  }
  .environment {
    grid-template-columns: 1fr;
  }
  .env-collage {
    padding: 15px 25px;
  }
  .studio-bottom-copy {
    padding: 35px 30px;
  }
  .contact-middle .studio-photo-wrap {
    min-height: 430px;
  }
  .work-with {
    padding-inline: 15px;
  }
  .ww-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .ww-card {
    padding: 15px;
    border-bottom: 1px solid var(--line);
  }
  .contact-bottom {
    grid-template-columns: 1fr 1fr;
  }
  .contact-bottom img {
    grid-column: 1/-1;
    max-height: 280px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    padding: 0 18px;
  }
  .brand-logo {
    height: 54px !important;
    max-width: 175px !important;
    max-height: 54px !important;
  }
  .brand-main {
    font-size: 25px;
  }
  .brand-sub {
    letter-spacing: 0.38em;
  }
  .footer-inner {
    padding: 15px 20px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-links {
    gap: 20px;
  }
  .home-copy,
  .page-hero-copy,
  .contact-info {
    padding: 38px 22px;
  }
  .home-copy .display,
  .page-hero-copy .display,
  .process-hero .display,
  .studio-hero .display,
  .contact-info .display {
    font-size: 39px;
  }
  .home-visual,
  .page-hero-image,
  .contact-photo {
    min-height: 280px;
  }
  .icon-row,
  .value-grid,
  .create-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }
  .icon-cell {
    padding: 18px;
  }
  .value-card {
    border-right: 0;
  }
  .create-section {
    padding-inline: 18px;
  }
  .work-grid {
    padding: 18px;
  }
  .work-tabs {
    padding-inline: 18px;
  }
  .home-industries {
    padding-inline: 18px;
  }
  .mini-process {
    grid-template-columns: 1fr;
  }
  .home-cta-copy {
    padding: 36px 24px;
  }
  .home-cta-copy .display {
    font-size: 36px;
  }
  .process-list {
    padding-inline: 20px;
  }
  .process-row {
    grid-template-columns: 62px 1fr;
  }
  .process-number {
    padding-left: 26px;
  }
  .process-number .num {
    font-size: 35px;
  }
  .process-number .line-icon {
    width: 32px;
    height: 32px;
  }
  .process-img,
  .process-points {
    grid-column: 2;
  }
  .process-img {
    height: 170px;
  }
  .process-bottom .display {
    font-size: 34px;
  }
  .beliefs {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }
  .belief-card {
    border-left: 0;
  }
  .belief-intro .display {
    font-size: 28px;
  }
  .team-section {
    padding: 28px 20px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .env-collage {
    grid-template-columns: 1fr 1fr;
    padding: 12px;
  }
  .env-copy {
    padding: 32px 22px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
  }
  .studio-bottom-copy {
    grid-template-columns: 1fr;
    padding: 30px 22px;
  }
  .studio-bottom img {
    min-height: 230px;
  }
  .contact-middle .studio-photo-wrap {
    min-height: 380px;
  }
  .quote-card {
    left: 15px;
    top: 15px;
    width: 210px;
    font-size: 17px;
  }
  .contact-form-wrap {
    padding: 34px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .ww-grid {
    grid-template-columns: 1fr;
  }
  .ww-card {
    border-right: 0;
  }
  .contact-bottom {
    grid-template-columns: 1fr;
  }
  .contact-bottom > div {
    padding: 30px 22px;
  }
  .contact-bottom img {
    grid-column: auto;
  }
  .contact-bottom .display {
    font-size: 35px;
  }
}

/* Keep the raster logo constrained even when browser/cache styles fight the base rule. */
.site-header .brand,
.site-header .brand-logo {
  flex-shrink: 0;
}

.site-header .brand > img.brand-logo {
  display: block !important;
  width: auto !important;
  height: 74px !important;
  max-width: 260px !important;
  max-height: 74px !important;
  object-fit: contain !important;
}

@media (max-width: 850px) {
  .site-header .brand > img.brand-logo {
    height: 62px !important;
    max-width: 220px !important;
    max-height: 62px !important;
  }
}

@media (max-width: 560px) {
  .site-header .brand > img.brand-logo {
    height: 54px !important;
    max-width: 175px !important;
    max-height: 54px !important;
  }


  .value-card {
  padding: 20px 00px 18px;
 }

 .process-strip-title {
  text-align: left;
}
.mini-step{
  padding-left: 0;
  padding-right: 0;
}

.process-hero .page-hero-copy {
    padding-left: 25px;
}

.studio-hero .page-hero-copy {
    padding-left: 25px;
}

}
