:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --ink: #080707;
  --black: #050405;
  --soft-black: #0f0c0d;
  --wine: #6f071d;
  --wine-2: #8e1029;
  --wine-dark: #390512;
  --yellow: #d6bd35;
  --cream: #f7f3ea;
  --cream-2: #efe7d8;
  --muted: #b6ada3;
  --muted-dark: #625a53;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(77, 49, 45, 0.17);
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--black);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

button,
input,
textarea {
  border: 0;
}

button {
  cursor: pointer;
}

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

[hidden] {
  display: none !important;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(111, 7, 29, 0.32), transparent 35%),
    linear-gradient(180deg, #050405 0%, #0a0708 38%, #050405 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(178px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(5, 4, 5, 0.88);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--wine-2);
  border: 1px solid rgba(214, 189, 53, 0.3);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1;
}

.brand-name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-sub {
  display: block;
  margin-top: 5px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 44px);
  color: #ddd5cb;
  font-size: 14px;
}

.desktop-nav a {
  position: relative;
  padding: 34px 0;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff;
}

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

.nav-cta,
.primary-button,
.secondary-button,
.outline-button,
.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav-cta {
  justify-self: end;
  background: linear-gradient(135deg, var(--wine), var(--wine-2));
  color: #fff7ee;
}

.nav-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.outline-button:hover,
.mobile-nav-cta:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border: 1px solid var(--line-dark);
}

.mobile-nav {
  position: fixed;
  top: 92px;
  right: 16px;
  left: 16px;
  z-index: 30;
  display: grid;
  gap: 4px;
  padding: 18px;
  background: rgba(10, 7, 8, 0.98);
  border: 1px solid var(--line-dark);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
}

.mobile-nav a {
  padding: 16px;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-cta {
  margin-top: 8px;
  background: var(--wine);
  color: #fff;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(440px, 0.82fr);
  min-height: 700px;
  padding: clamp(44px, 5vw, 76px) clamp(20px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--line-dark);
}

.hero-section::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 189, 53, 0.45), transparent);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 790px;
  padding: 0 0 clamp(44px, 5vw, 76px);
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.eyebrow span {
  width: 28px;
  height: 3px;
  background: var(--yellow);
}

.hero-copy h1,
.section-heading h2,
.about-copy h2,
.contact-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 850px;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.98;
}

.hero-copy h1 span {
  color: var(--wine-2);
}

.hero-summary {
  max-width: 560px;
  margin: 28px 0 0;
  color: #e2d8ce;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
}

.primary-button {
  background: linear-gradient(135deg, var(--wine), var(--wine-2));
  color: #fff7ee;
}

.secondary-button,
.outline-button {
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(214, 189, 53, 0.74);
}

.secondary-button:hover,
.outline-button:hover {
  background: rgba(214, 189, 53, 0.1);
}

.hero-visual {
  position: relative;
  align-self: end;
  min-height: 620px;
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 10% 0 0;
  background: linear-gradient(90deg, transparent, rgba(111, 7, 29, 0.55), transparent);
  content: "";
}

.hero-visual img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(780px, 58vw);
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  mix-blend-mode: normal;
  filter: saturate(1.02) contrast(1.04);
}

.hero-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(5, 4, 5, 0.94), transparent);
  content: "";
}

.hero-proof {
  position: absolute;
  right: 28px;
  bottom: 34px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 345px;
  padding: 14px 16px;
  color: var(--cream);
  background: rgba(5, 4, 5, 0.78);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}

.hero-proof svg {
  color: var(--yellow);
  flex: 0 0 auto;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  background: linear-gradient(90deg, var(--wine-dark), var(--wine), var(--wine-dark));
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.status-strip article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 24px clamp(20px, 4vw, 54px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.status-strip article:last-child {
  border-right: 0;
}

.status-strip svg {
  flex: 0 0 auto;
}

.status-strip strong {
  display: block;
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-strip span {
  display: block;
  margin-top: 5px;
  color: #f5ece2;
  line-height: 1.35;
}

.light-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent 28%),
    var(--cream);
  color: var(--ink);
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.dark-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(111, 7, 29, 0.22), transparent 28%),
    var(--black);
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  max-width: var(--max);
  margin: 0 auto 48px;
}

.section-heading h2,
.about-copy h2,
.contact-intro h2 {
  margin-top: 14px;
  color: inherit;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.04;
}

.section-heading p:not(.section-kicker) {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.6;
}

.dark-heading p:not(.section-kicker) {
  color: var(--muted);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.filter-tabs button {
  min-height: 42px;
  padding: 0 18px;
  color: #6d625a;
  background: transparent;
  border: 1px solid var(--line-light);
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.dark-section .filter-tabs button {
  color: #d8cbc0;
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-tabs button.active,
.filter-tabs button:hover,
.filter-tabs button:focus-visible {
  color: #fff;
  background: var(--wine);
  border-color: var(--wine);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.expertise-card {
  min-height: 248px;
  padding: clamp(22px, 2.5vw, 34px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition:
    background 170ms ease,
    transform 170ms ease;
}

.expertise-card:hover {
  background: rgba(111, 7, 29, 0.05);
  transform: translateY(-3px);
}

.expertise-card svg {
  color: var(--wine);
}

.expertise-card h3 {
  margin: 28px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
}

.expertise-card p {
  margin: 16px 0 0;
  color: #5d5550;
  font-size: 15px;
  line-height: 1.55;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.case-study-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 100%;
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(180deg, rgba(247, 243, 234, 0.08), rgba(247, 243, 234, 0.035)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.case-study-card-wide {
  grid-column: 1 / -1;
}

.case-card-header {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.case-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--yellow);
  border: 1px solid rgba(214, 189, 53, 0.48);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1;
}

.case-client {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.case-card-header h3 {
  margin: 0;
  color: #fff8ee;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.05;
}

.case-summary,
.case-lede {
  max-width: 980px;
  margin: 0;
  color: #d8cbc0;
  font-size: 16px;
  line-height: 1.65;
}

.case-details {
  display: grid;
  gap: 0;
  margin: 0;
}

.case-details div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.case-details div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.case-details dt {
  color: #fff2c6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.case-details dd {
  margin: 0;
  color: #d0c2b7;
  font-size: 15px;
  line-height: 1.62;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: #e7d7cc;
  border: 1px solid rgba(142, 16, 41, 0.82);
  font-size: 12px;
}

.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.case-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  color: #fff5cf;
  border: 1px solid rgba(214, 189, 53, 0.38);
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  transition:
    background 170ms ease,
    color 170ms ease,
    transform 170ms ease,
    border-color 170ms ease;
}

.case-actions a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
}

.resource-list {
  display: grid;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.resource-list a {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    color 170ms ease,
    padding-left 170ms ease;
}

.resource-list a:hover {
  color: var(--yellow);
  padding-left: 10px;
}

.resource-list strong {
  color: #fff8ee;
  font-size: 16px;
  line-height: 1.35;
}

.resource-list span {
  color: #cbbdb1;
  font-size: 14px;
  line-height: 1.5;
}

.case-button {
  width: fit-content;
  margin: 34px auto 0;
}

.stack-heading {
  align-items: center;
}

.compact {
  min-height: 50px;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto;
}

.stack-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid var(--line-light);
  font-weight: 800;
  text-align: center;
}

.logo-stack .tool-card {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 112px;
  padding: 18px 12px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--line-light);
  text-align: center;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.logo-stack .tool-card:hover {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(111, 7, 29, 0.28);
  transform: translateY(-2px);
}

.logo-stack .tool-card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.logo-stack .tool-card span {
  display: block;
  min-height: 0;
  padding: 0;
  color: #1d1716;
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.22;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
  gap: clamp(48px, 7vw, 110px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.about-copy p:not(.section-kicker) {
  max-width: 720px;
  margin: 22px 0 0;
  color: #d5cac1;
  font-size: 18px;
  line-height: 1.7;
}

.experience-list {
  padding-top: 8px;
}

.experience-list article {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.experience-list span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-list strong {
  display: block;
  margin-top: 12px;
  font-size: 20px;
}

.experience-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.54fr);
  gap: clamp(34px, 6vw, 86px);
  padding: clamp(56px, 7vw, 90px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, var(--wine-dark), var(--wine), var(--wine-dark)),
    var(--wine);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-intro {
  display: flex;
  gap: 28px;
  max-width: 760px;
}

.contact-intro > svg {
  flex: 0 0 auto;
  margin-top: 10px;
}

.contact-intro p:not(.section-kicker) {
  max-width: 620px;
  margin: 16px 0 0;
  color: #f2e5d9;
  font-size: 18px;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 14px;
  align-self: center;
}

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

.contact-form span {
  color: #f4dfd7;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  color: var(--cream);
  background: rgba(5, 4, 5, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.22);
  outline: none;
}

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

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

.form-button {
  justify-self: start;
  min-width: 190px;
  margin-top: 6px;
  background: var(--yellow);
  color: var(--ink);
}

.form-status {
  margin: 0;
  color: #fff5c2;
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(210px, 0.55fr) minmax(240px, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: #050405;
  border-top: 1px solid var(--line-dark);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: #e2d6cc;
}

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

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

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

  .menu-button {
    display: inline-flex;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 56px;
  }

  .hero-copy {
    padding-bottom: 40px;
  }

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

  .hero-visual img {
    left: 50%;
    width: min(840px, 100vw);
    object-position: center 38%;
    transform: translateX(-50%);
  }

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

  .case-study-grid {
    grid-template-columns: 1fr;
  }

  .case-study-card-wide {
    grid-column: auto;
  }

  .resource-list a {
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 78px;
    padding-inline: 18px;
  }

  .mobile-nav {
    top: 78px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 32px;
  }

  .brand-name {
    font-size: 16px;
  }

  .hero-section {
    padding-inline: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 13vw, 68px);
  }

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

  .primary-button,
  .secondary-button,
  .outline-button {
    width: 100%;
  }

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

  .hero-proof {
    right: 14px;
    bottom: 18px;
    left: 14px;
    max-width: none;
  }

  .status-strip {
    grid-template-columns: 1fr;
  }

  .status-strip article {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .light-section,
  .dark-section,
  .contact-band {
    padding-inline: 18px;
  }

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

  .filter-tabs {
    justify-content: flex-start;
  }

  .filter-tabs button {
    flex: 1 1 auto;
  }

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

  .expertise-card {
    min-height: 0;
  }

  .case-card-header,
  .case-details div,
  .resource-list a {
    grid-template-columns: 1fr;
  }

  .case-details div {
    gap: 8px;
  }

  .case-actions a {
    width: 100%;
    white-space: normal;
  }

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

  .about-section,
  .contact-band {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 10px;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-sub {
    letter-spacing: 0.2em;
  }

  .hero-summary,
  .about-copy p:not(.section-kicker),
  .contact-intro p:not(.section-kicker) {
    font-size: 16px;
  }

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

  .hero-visual img {
    width: 122vw;
    object-position: center 35%;
  }

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