:root {
  --font-geist-sans: "Helvetica Neue";
  --font-geist-mono: "Courier New";
  --green: #4a4540;
  --green-deep: #2e2b28;
  --ivory: #fff8f1;
  --sand: #ead8c8;
  --paper: #fdfbf8;
  --graphite: #2d2b29;
  --blue: #a9430d;
  --blue-light: #f79749;
  --orange-soft: #ffd0ab;
  --brand-gray: #7b7b7b;
  --line: rgba(45, 43, 41, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--graphite);
  font-family: var(--font-geist-sans), Arial, sans-serif;
}

body,
a,
button,
summary {
  -webkit-font-smoothing: antialiased;
}

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

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

p {
  margin: 0;
  max-width: 70ch;
  font-size: clamp(1.1875rem, 1.1rem + 0.3vw, 1.375rem);
  line-height: 1.62;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-weight: 400;
}

h2 {
  font-size: clamp(2.75rem, 5vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.75rem, 2.4vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  width: 100%;
  height: 104px;
  min-height: 104px;
  padding: 8px clamp(38px, 3vw, 56px);
  border-bottom: 0;
  background: #302d2a;
  color: #fff8f1;
}

.brand {
  display: block;
  width: fit-content;
}

.brand-logo,
.custom-logo {
  width: 84px;
  height: 84px;
  border: 0;
  background: #fff;
  object-fit: contain;
}

.custom-logo-link {
  display: block;
  width: fit-content;
}

.desktop-nav {
  align-self: center;
  justify-self: center;
  font-size: 1.02rem;
}

.desktop-nav .menu,
.desktop-nav > ul {
  display: flex;
  align-items: center;
  gap: clamp(38px, 2.7vw, 54px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 228px;
  min-height: 56px;
  gap: 20px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  font-size: 1.125rem;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta span {
  font-size: 1.15rem;
  line-height: 1;
}

.header-cta:hover {
  background: var(--ivory);
  color: var(--green-deep);
}

.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 47% 53%;
  min-height: 930px;
  background: var(--green);
  color: var(--ivory);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 180px clamp(30px, 5.5vw, 88px) 92px;
}

.eyebrow-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 770px;
  font-size: clamp(4rem, 6.5vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.hero h1 em {
  display: block;
  margin-top: 14px;
  color: var(--orange-soft);
  font-weight: 400;
}

.hero-copy > p {
  max-width: 630px;
  margin-top: 38px;
  color: #f6f0e7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  gap: 24px;
  padding: 14px 20px;
  border: 1px solid currentColor;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--light {
  background: var(--ivory);
  color: var(--green-deep);
}

.button--light:hover {
  background: var(--blue-light);
  color: var(--graphite);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.94rem;
  font-weight: 650;
}

.text-link--light {
  color: var(--ivory);
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #c9c1b8;
}

.hero-visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(46, 43, 40, 0.3), transparent 18%);
  content: "";
  pointer-events: none;
}

.before-after {
  --comparison-position: 52%;
  position: absolute;
  inset: 0;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
}

.before-after__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.before-after__before {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0);
  filter: saturate(0.78) contrast(0.96);
}

.before-after__label {
  position: absolute;
  z-index: 4;
  top: 132px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(46, 43, 40, 0.8);
  color: #fff;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.before-after__label--before {
  left: 28px;
}

.before-after__label--after {
  right: 28px;
  background: rgba(169, 67, 13, 0.88);
}

.before-after__range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.before-after__divider {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(46, 43, 40, 0.16);
  pointer-events: none;
  transform: translateX(-1px);
}

.before-after__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  gap: 9px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 10px 26px rgba(46, 43, 40, 0.28);
  color: var(--graphite);
  font-size: 1.65rem;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.before-after__handle span {
  transform: translateY(-1px);
}

.before-after:has(.before-after__range:focus-visible) {
  outline: 3px solid var(--blue-light);
  outline-offset: -6px;
}

.hero-caption {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.74rem;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 12px rgba(46, 43, 40, 0.55);
  pointer-events: none;
}

.section-shell {
  padding: 130px clamp(24px, 6vw, 96px);
}

.section-kicker {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.intro {
  background: var(--ivory);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(50px, 10vw, 170px);
  margin-top: 64px;
}

.intro-grid h2 {
  max-width: 920px;
}

.intro-grid > div {
  padding-top: 12px;
}

.intro-grid > div p + p {
  margin-top: 26px;
}

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

.values-line span {
  padding: 24px;
  border-right: 1px solid var(--line);
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  text-align: center;
}

.values-line span:last-child {
  border-right: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: clamp(44px, 9vw, 150px);
  margin-bottom: 80px;
}

.section-heading h2 {
  max-width: 900px;
  margin-top: 22px;
}

.section-heading > p {
  padding-bottom: 8px;
}

.project-feature {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  min-height: 700px;
  background: var(--sand);
}

.project-image {
  min-height: 620px;
  overflow: hidden;
}

.project-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-feature:hover .project-image img {
  transform: scale(1.025);
}

.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 92px);
}

.project-code {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-copy h3 {
  margin-top: 32px;
  font-size: clamp(2.5rem, 4.4vw, 5.4rem);
}

.project-copy p {
  margin: 34px 0;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
  gap: 24px;
}

.project-card {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.project-card--image img {
  height: 100%;
  object-fit: cover;
}

.project-card--image > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 40px 34px;
  background: linear-gradient(transparent, rgba(15, 28, 23, 0.88));
  color: var(--ivory);
}

.project-card--image span {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card--image h3 {
  margin-top: 12px;
}

.project-card--quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(40px, 6vw, 80px);
  background: var(--blue);
  color: var(--ivory);
}

.quote-mark {
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-size: 8rem;
  line-height: 0.5;
}

.project-card blockquote {
  max-width: 760px;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.services {
  background: var(--green-deep);
  color: var(--ivory);
}

.section-heading--light > p {
  color: #fff8f1;
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 38px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 220ms ease, padding 220ms ease;
}

.service-row:hover,
.service-row:focus-visible {
  padding-right: 34px;
  padding-left: 34px;
  background: #453f3a;
}

.service-number {
  font-family: var(--font-geist-mono), monospace;
  color: var(--blue-light);
  font-size: 0.75rem;
}

.service-row > div {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 40px;
}

.service-row p {
  color: #fff8f1;
}

.service-row > span:last-child {
  font-size: 1.6rem;
}

.process {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 10vw, 170px);
  background: var(--paper);
}

.process-intro {
  position: sticky;
  top: 80px;
  align-self: start;
}

.process-intro h2 {
  margin: 28px 0 38px;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 64px 0.7fr 1fr;
  align-items: start;
  gap: 30px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.process-steps span {
  padding-top: 7px;
  font-family: var(--font-geist-mono), monospace;
  color: var(--blue);
  font-size: 0.72rem;
}

.testimonial {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 620px;
  background: var(--blue-light);
  color: var(--graphite);
}

.testimonial-art {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 220px));
  grid-template-rows: repeat(2, minmax(100px, 220px));
  place-content: center;
  gap: 12px;
  padding: 60px;
  background: var(--blue);
}

.testimonial-art span {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50% 0 0;
  background: rgba(255, 248, 241, 0.1);
}

.testimonial-art span:nth-child(2),
.testimonial-art span:nth-child(3) {
  transform: rotate(180deg);
}

.testimonial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 130px);
}

.testimonial-copy blockquote {
  max-width: 1100px;
  margin: 44px 0;
  font-size: clamp(2.6rem, 4.6vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.testimonial-credit {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio {
  background: var(--ivory);
}

.studio-heading {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  align-items: start;
  gap: 50px;
}

.studio-heading h2 {
  max-width: 1100px;
}

.studio-content {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 9vw, 150px);
  margin-top: 100px;
}

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

.studio-copy .text-link {
  margin-top: 36px;
}

.team-showcase {
  min-width: 0;
}

.team-portrait {
  position: relative;
  aspect-ratio: 1.568 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--sand);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.team-portrait:hover .team-photo {
  transform: scale(1.018);
}

.team-identities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 34px 0 0;
}

.team-person {
  min-width: 0;
  padding: 0 clamp(18px, 2.3vw, 38px);
}

.team-person + .team-person {
  border-left: 1px solid var(--line);
}

.team-person h3 {
  margin-bottom: 8px;
  color: var(--ink);
}

.team-person p {
  color: var(--ink-soft);
  font-size: 1.1875rem;
  line-height: 1.45;
}

.faq {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(60px, 10vw, 160px);
}

.faq h2 {
  margin-top: 24px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 32px 60px 32px 0;
  cursor: pointer;
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-size: clamp(1.6rem, 2.3vw, 2.35rem);
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  content: "+";
  font-family: var(--font-geist-sans), sans-serif;
  transform: translateY(-50%);
}

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

.faq-list details p {
  padding: 0 60px 32px 0;
}

.contact {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(50px, 10vw, 160px);
  padding: 130px clamp(24px, 7vw, 112px);
  background: var(--green-deep);
  color: var(--ivory);
}

.contact-logo {
  width: 150px;
  height: 150px;
  margin-bottom: 70px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #fff;
  object-fit: contain;
}

.contact-copy h2 {
  max-width: 1000px;
  margin: 34px 0;
  font-size: clamp(3.6rem, 7vw, 8.2rem);
}

.contact-copy > p:not(.section-kicker) {
  color: #fff8f1;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 46px;
}

.contact-card {
  align-self: end;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(15, 14, 13, 0.28);
}

.contact-card > span {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card ul {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.contact-card li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-size: 1.35rem;
}

.contact-card a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  font-weight: 650;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 40px;
  padding: 60px clamp(24px, 6vw, 96px);
  background: var(--green-deep);
  color: var(--ivory);
}

.brand--footer {
  color: var(--ivory);
}

.footer-logo {
  width: 116px;
  height: 116px;
  background: #fff;
  object-fit: contain;
}

.site-footer p {
  font-size: 1.1875rem;
}

.site-footer > div,
.footer-links {
  display: flex;
  gap: 26px;
  font-size: 0.9rem;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 48px;
    height: 48px;
    gap: 8px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 30px;
    height: 1px;
    background: currentColor;
  }

  .mobile-menu nav {
    position: absolute;
    top: 58px;
    right: 0;
    display: flex;
    flex-direction: column;
    width: min(340px, calc(100vw - 40px));
    padding: 18px;
    background: var(--ivory);
    color: var(--green-deep);
    box-shadow: 0 20px 50px rgba(46, 43, 40, 0.25);
  }

  .mobile-menu nav a {
    padding: 15px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

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

  .hero-copy {
    min-height: 760px;
  }

  .hero-visual {
    min-height: 720px;
  }

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

  .process-intro {
    position: static;
  }

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

@media (max-width: 820px) {
  .site-header {
    min-height: 88px;
  }

  .hero-copy {
    min-height: 720px;
    padding-top: 150px;
    padding-bottom: 65px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 15vw, 6rem);
  }

  .eyebrow-row {
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 560px;
  }

  .before-after__label {
    top: 24px;
  }

  .before-after__handle {
    width: 56px;
    height: 56px;
  }

  .section-shell {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .intro-grid,
  .section-heading,
  .project-feature,
  .project-grid,
  .testimonial,
  .studio-heading,
  .studio-content,
  .faq {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .section-heading,
  .studio-heading,
  .studio-content,
  .faq {
    gap: 38px;
  }

  .values-line {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 70px;
  }

  .values-line span:nth-child(2) {
    border-right: 0;
  }

  .values-line span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .project-feature {
    min-height: 0;
  }

  .project-image {
    min-height: 500px;
  }

  .project-copy {
    padding: 42px 28px 50px;
  }

  .project-card {
    min-height: 520px;
  }

  .service-row {
    grid-template-columns: 46px 1fr auto;
    align-items: start;
    padding: 30px 0;
  }

  .service-row:hover,
  .service-row:focus-visible {
    padding-right: 10px;
    padding-left: 10px;
  }

  .service-row > div {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-steps li {
    grid-template-columns: 44px 1fr;
  }

  .process-steps li p {
    grid-column: 2;
  }

  .testimonial-art {
    min-height: 430px;
    grid-template-columns: repeat(2, minmax(80px, 140px));
    grid-template-rows: repeat(2, minmax(80px, 140px));
  }

  .team-portrait {
    aspect-ratio: 1.568 / 1;
  }

  .team-identities {
    gap: 0;
    padding-inline: 0;
  }

  .team-person {
    padding-inline: 18px;
  }

  .contact {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 520px) {
  .team-identities {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 26px;
  }

  .team-person {
    padding-inline: 0;
  }

  .team-person + .team-person {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 22px;
  }

  .team-portrait {
    aspect-ratio: 1.35 / 1;
  }

  .brand-logo,
  .custom-logo {
    width: 66px;
    height: 66px;
  }

  .hero-copy {
    min-height: 680px;
  }

  .hero-caption {
    right: 20px;
    bottom: 20px;
    left: 90px;
  }

  .values-line span {
    padding: 20px 10px;
  }

  .project-image {
    min-height: 410px;
  }

  .project-card {
    min-height: 450px;
  }

  .project-card--image > div,
  .project-card--quote {
    padding: 30px 24px;
  }

  .service-row {
    grid-template-columns: 36px 1fr;
  }

  .service-row > span:last-child {
    display: none;
  }

  .process-steps li {
    grid-template-columns: 34px 1fr;
    gap: 18px;
  }

  .testimonial-copy {
    padding: 60px 24px;
  }

  .team-initial {
    font-size: 7rem;
  }

  .faq-list summary {
    padding-right: 42px;
  }

  .contact-card {
    padding: 30px 24px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Header compact correction */
@media (min-width: 901px) {
  .site-header { height: 104px !important; min-height: 104px !important; padding-top: 8px !important; padding-bottom: 8px !important; }
  .brand-logo, .custom-logo { width: 84px !important; height: 84px !important; }
  .header-cta { width: 228px !important; min-height: 56px !important; }
}
