:root {
  --page: #f7f7f4;
  --surface: #ffffff;
  --ink: #111111;
  --muted: #62625f;
  --line: #ddddda;
  --soft-line: #ebebe7;
  --soft: #eeeeea;
  --charcoal: #1b1b1a;
  --accent: #7d7668;
  --accent-dark: #3d3a33;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.92), transparent 36rem),
    linear-gradient(180deg, var(--page), #ffffff 36rem);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(calc(100% - 32px), var(--max));
  height: 74px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  height: 64px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(221, 221, 218, 0.82);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.07);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 650;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.brand-text {
  font-size: 0.94rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 9px 12px;
  color: #343432;
  border-radius: 999px;
  font-size: 0.9rem;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(17, 17, 17, 0.06);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  min-height: min(880px, 100svh);
  margin: 0 auto;
  padding: 128px 0 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7.2vw, 5.85rem);
  line-height: 0.98;
  font-weight: 720;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.45rem);
  line-height: 1;
  font-weight: 680;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 680;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.15;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--ink);
}

.button-primary:hover {
  background: #2a2a28;
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: #bebebb;
  background: #ffffff;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: 0 18px 54px rgba(17, 17, 17, 0.06);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  right: 34px;
  left: 34px;
  height: 1px;
  content: "";
  background: var(--soft-line);
  display: none;
}

.hero-visual::before {
  top: 74px;
}

.hero-visual::after {
  bottom: 96px;
}

.hero-visual img {
  position: absolute;
  inset: 28px 18px 120px;
  width: calc(100% - 36px);
  height: calc(100% - 148px);
  object-fit: contain;
}

.hero-visual img.is-photo {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.28) contrast(0.96) brightness(1.03);
}

.hero-visual img.is-photo + .visual-caption {
  display: none;
}

.visual-caption {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.visual-caption span {
  min-height: 50px;
  padding: 12px;
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  color: #343432;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.25;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-item {
  padding: 28px 28px 30px;
  border-right: 1px solid var(--line);
}

.signal-item:last-child {
  border-right: 0;
}

.signal-item span,
.service-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.signal-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.signal-item p,
.service-card p,
.mission-copy p,
.mission-note p,
.contact p,
.section-body p {
  color: var(--muted);
}

.signal-item p,
.service-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(84px, 12vw, 150px) 0;
}

.section-split,
.proof,
.mission {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(38px, 8vw, 108px);
  align-items: start;
}

.section-body {
  max-width: 680px;
  font-size: 1.08rem;
}

.section-body p:last-child {
  margin-bottom: 0;
}

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

.visual-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding-top: 0;
}

.visual-feature,
.visual-card,
.operating-panel {
  position: relative;
  overflow: visible;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

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

.visual-stack {
  display: grid;
  gap: clamp(30px, 5vw, 56px);
  padding-top: clamp(36px, 6vw, 74px);
}

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

.visual-feature img,
.visual-card img,
.operating-panel img {
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 4px;
  filter: saturate(0.26) contrast(0.94) brightness(1.04);
  object-fit: cover;
}

.visual-feature img {
  aspect-ratio: 4 / 5;
}

.visual-card img,
.operating-panel img {
  aspect-ratio: 16 / 10;
}

.visual-feature figcaption,
.visual-card figcaption {
  position: static;
  padding: 16px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.visual-feature span,
.visual-card span,
.operating-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-feature strong,
.visual-card strong,
.operating-panel strong {
  display: block;
  color: var(--ink);
  max-width: 560px;
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  line-height: 1.14;
  font-weight: 680;
}

.visual-feature p,
.visual-card p,
.operating-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 290px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
}

.service-card-wide {
  grid-column: span 3;
  min-height: 220px;
  display: grid;
  grid-template-columns: 90px minmax(240px, 0.45fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: start;
}

.service-card-wide span,
.service-card-wide h3,
.service-card-wide p {
  margin: 0;
}

.proof {
  align-items: stretch;
  padding-top: 0;
}

.proof-panel {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  color: #ffffff;
  background: var(--charcoal);
  border-radius: 8px;
}

.proof-panel .eyebrow {
  color: #c8c4b9;
}

.proof-panel h2 {
  max-width: 540px;
  font-size: clamp(2.1rem, 4.3vw, 4.1rem);
}

.proof-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.proof-list li {
  position: relative;
  min-height: 70px;
  padding: 22px 0 22px 34px;
  border-bottom: 1px solid var(--line);
  color: #2c2c2a;
  font-size: 1.04rem;
  font-weight: 560;
}

.proof-list li::before {
  position: absolute;
  top: 29px;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--ink);
  border-radius: 50%;
}

.mission {
  align-items: center;
  padding-top: 0;
}

.mission-copy {
  max-width: 720px;
}

.mission-copy h2 {
  margin-bottom: 24px;
}

.mission-copy p {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.mission-note {
  min-height: 300px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 247, 244, 0.92)),
    var(--surface);
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.06);
}

.mission-note span {
  display: block;
  margin-bottom: 74px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mission-note p {
  max-width: 330px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.5vw, 2.6rem);
  line-height: 1.04;
  font-weight: 680;
}

.industries {
  padding-top: 0;
}

.operating-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.operating-panel img {
  aspect-ratio: 16 / 10;
}

.operating-panel figcaption {
  padding: 16px 0 0;
  border-top: 0;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-list span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: #30302e;
  font-size: 0.94rem;
  font-weight: 620;
}

.contact {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 16px;
  padding: clamp(64px, 10vw, 110px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(48, 47, 43, 0.94)),
    var(--charcoal);
  border-radius: 8px;
}

.contact-inner {
  max-width: 760px;
}

.contact .eyebrow {
  color: #c8c4b9;
}

.contact h2 {
  margin-bottom: 20px;
}

.contact p {
  max-width: 680px;
  margin-bottom: 30px;
  color: #d8d7d0;
  font-size: 1.1rem;
}

.contact .button-primary {
  color: var(--ink);
  background: #ffffff;
}

.contact .button-primary:hover {
  background: #f0f0ea;
}

.site-footer {
  display: flex;
  width: min(calc(100% - 32px), var(--max));
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--ink);
  font-weight: 700;
}

.floating-actions {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.floating-contact,
.floating-top {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(221, 221, 218, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.1);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 720;
  line-height: 1;
  backdrop-filter: blur(18px);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.floating-contact {
  min-height: 30px;
  margin-bottom: 32px;
  padding: 0 9px;
}

.floating-top {
  width: 36px;
  min-height: 36px;
  font-size: 0.86rem;
}

.floating-contact:hover,
.floating-top:hover {
  transform: translateY(-1px);
  border-color: #c9c8c2;
  background: rgba(255, 255, 255, 0.96);
}

body.modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2vw, 18px);
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 17, 17, 0.42);
  cursor: default;
  backdrop-filter: blur(14px);
}

.contact-dialog {
  position: relative;
  display: grid;
  width: min(100%, 580px);
  max-height: calc(100dvh - 20px);
  overflow: hidden;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(221, 221, 218, 0.9);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 90px rgba(17, 17, 17, 0.24);
}

.contact-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.18rem;
  line-height: 1;
}

.contact-dialog h2 {
  max-width: 480px;
  margin-bottom: 10px;
  padding-right: 36px;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 0.96;
}

.contact-dialog-copy {
  max-width: 500px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

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

.contact-form label span {
  color: #343431;
  font-size: 0.78rem;
  font-weight: 720;
}

.contact-form small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 620;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input {
  min-height: 38px;
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 92px;
  padding: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #9a978c;
  box-shadow: 0 0 0 4px rgba(125, 118, 104, 0.14);
}

.contact-form .span-2 {
  grid-column: span 2;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.contact-form-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.3;
}

.contact-form-footer .button {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 0.84rem;
  white-space: nowrap;
}

.contact-form-status.is-error {
  color: #9f2d2d;
}

.contact-form-status.is-success {
  color: #276748;
}

.contact-form button[disabled] {
  cursor: progress;
  opacity: 0.72;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  .hero,
  .section-split,
  .proof,
  .mission,
  .visual-section,
  .operating-visuals {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 42px;
    padding-top: 118px;
  }

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

  .signal-band,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .signal-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-item:last-child {
    border-bottom: 0;
  }

  .service-card-wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .visual-feature,
  .visual-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 24px);
  }

  .site-header.is-scrolled {
    top: 8px;
  }

  .brand-text {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: grid;
    gap: 6px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(17, 17, 17, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
    backdrop-filter: blur(16px);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 14px;
  }

  h1 {
    font-size: clamp(2.65rem, 16vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero {
    width: calc(100% - 24px);
    min-height: auto;
    padding-bottom: 52px;
  }

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

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

  .visual-caption {
    grid-template-columns: 1fr;
  }

  .hero-visual::after {
    bottom: 210px;
  }

  .signal-band,
  .section,
  .contact,
  .site-footer {
    width: calc(100% - 24px);
  }

  .section {
    padding: 76px 0;
  }

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

  .service-card {
    min-height: 250px;
    padding: 26px;
  }

  .visual-section,
  .operating-visuals {
    gap: 12px;
  }

  .visual-feature,
  .visual-card {
    min-height: 0;
  }

  .visual-feature figcaption,
  .visual-card figcaption {
    padding-top: 14px;
  }

  .operating-panel figcaption {
    padding: 18px;
  }

  .proof-panel,
  .mission-note,
  .contact {
    padding: 26px;
  }

  .proof-panel {
    min-height: 360px;
  }

  .contact {
    margin-bottom: 0;
  }

  .site-footer {
    min-height: 120px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
    gap: 9px;
  }

  .floating-contact,
  .floating-top {
    min-height: 32px;
  }

  .floating-contact {
    min-height: 30px;
    margin-bottom: 24px;
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .floating-top {
    width: 34px;
    min-height: 34px;
  }

  .contact-dialog {
    width: min(100%, 430px);
    padding: 18px;
  }

  .contact-close {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }

  .contact-dialog h2 {
    margin-bottom: 8px;
    font-size: 1.72rem;
  }

  .contact-dialog-copy {
    display: none;
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .contact-form .span-2 {
    grid-column: span 2;
  }

  .contact-form input {
    min-height: 36px;
  }

  .contact-form textarea {
    min-height: 78px;
    padding: 10px 12px;
  }

  .contact-form-footer {
    align-items: center;
    flex-direction: row;
  }

  .contact-form-footer .button {
    width: auto;
    min-height: 36px;
    padding: 8px 12px;
  }
}

@media (max-height: 700px) {
  .contact-modal {
    padding: 8px;
  }

  .contact-dialog {
    max-height: calc(100dvh - 16px);
    padding: 14px;
  }

  .contact-dialog .eyebrow {
    margin-bottom: 6px;
  }

  .contact-dialog h2 {
    margin-bottom: 8px;
    font-size: 1.5rem;
  }

  .contact-dialog-copy {
    display: none;
  }

  .contact-form {
    gap: 8px;
  }

  .contact-form input {
    min-height: 34px;
  }

  .contact-form textarea {
    min-height: 64px;
    padding: 9px 10px;
  }

  .contact-form-footer .button {
    min-height: 34px;
    padding: 7px 11px;
  }
}
