/*
 * Contact Readability Pass 0.2.18.
 * Bricks uses html { font-size: 62.5%; }, so content sizes use explicit px/clamp(px)
 * instead of rem values that would otherwise render at 7-10px.
 */
.oh-contact-experience {
  --oh-contact-ink: #111719;
  --oh-contact-deep: #151c1f;
  --oh-contact-deep-soft: #20292c;
  --oh-contact-cream: #f3efe7;
  --oh-contact-paper: #fbf8f2;
  --oh-contact-gold: #d7b15b;
  --oh-contact-copper: #bb6f43;
  --oh-contact-line: rgba(19, 25, 27, 0.14);
  --oh-contact-shell: min(1180px, calc(100vw - 48px));
  background: var(--oh-contact-paper);
  color: var(--oh-contact-ink);
}

.oh-contact-experience #brx-content {
  overflow: hidden;
}

.oh-contact-page,
.oh-contact-page * {
  box-sizing: border-box;
}

.oh-contact-page a {
  text-decoration: none;
}

.oh-contact-shell {
  width: var(--oh-contact-shell);
  margin-inline: auto;
}

.oh-contact-kicker {
  margin: 0;
  color: #934f2e;
  font-size: clamp(12px, 0.72vw, 14px);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.oh-contact-hero {
  position: relative;
  isolation: isolate;
  min-height: max(700px, calc(100svh - 77px));
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(12, 18, 20, 0.99) 0%, rgba(18, 25, 28, 0.96) 54%, rgba(28, 35, 36, 0.92) 100%);
  color: #fff;
}

.oh-contact-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 86px 86px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.oh-contact-hero__glow {
  position: absolute;
  top: 5%;
  right: 7%;
  z-index: -1;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(215, 177, 91, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 177, 91, 0.14), transparent 67%);
  box-shadow: 0 0 120px rgba(215, 177, 91, 0.07);
}

.oh-contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: clamp(48px, 7vw, 108px);
  align-items: center;
  min-height: inherit;
  padding-block: clamp(72px, 9vh, 112px);
}

.oh-contact-hero__copy {
  max-width: 720px;
}

.oh-contact-hero h1 {
  max-width: 760px;
  margin: 22px 0 24px;
  color: #fff;
  font-size: clamp(58px, 4.8vw, 76px);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}

.oh-contact-hero__lead {
  max-width: 660px;
  margin: 0;
  color: rgba(255,255,255,0.74);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.68;
}

.oh-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.oh-contact-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  transition: transform 190ms ease, background-color 190ms ease, border-color 190ms ease, color 190ms ease;
}

.oh-contact-button:hover,
.oh-contact-button:focus-visible {
  transform: translateY(-2px);
}

.oh-contact-button:focus-visible,
.oh-contact-channel:focus-visible,
.oh-contact-text-link:focus-visible,
.oh-contact-company__emails a:focus-visible {
  outline: 3px solid rgba(215, 177, 91, 0.6);
  outline-offset: 4px;
}

.oh-contact-button--gold {
  background: var(--oh-contact-gold);
  color: #191b19;
  box-shadow: 0 14px 36px rgba(215, 177, 91, 0.19);
}

.oh-contact-button--gold:hover,
.oh-contact-button--gold:focus-visible {
  background: #e2bf70;
  color: #111;
}

.oh-contact-button--outline {
  border-color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.035);
  color: #fff;
}

.oh-contact-button--outline:hover,
.oh-contact-button--outline:focus-visible {
  border-color: rgba(255,255,255,0.66);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.oh-contact-hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0 0;
  padding: 0;
  color: rgba(255,255,255,0.67);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.oh-contact-hero__signals li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.oh-contact-hero__signals span {
  color: var(--oh-contact-gold);
}

.oh-contact-portrait {
  position: relative;
  width: min(100%, 390px);
  margin: 0 auto;
}

.oh-contact-portrait__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 180px 180px 24px 24px;
  background: #090d0f;
  box-shadow: 0 30px 90px rgba(0,0,0,0.4);
}

.oh-contact-portrait__frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(11,16,18,0.34));
  content: "";
  pointer-events: none;
}

.oh-contact-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 360 / 470;
  object-fit: cover;
}

.oh-contact-portrait figcaption {
  position: relative;
  width: calc(100% - 34px);
  margin: -38px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(25, 32, 34, 0.94);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
  backdrop-filter: blur(14px);
}

.oh-contact-portrait figcaption span,
.oh-contact-portrait figcaption small {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.oh-contact-portrait figcaption strong {
  display: block;
  margin: 7px 0 4px;
  color: #fff;
  font-size: 16px;
}

.oh-contact-channels {
  padding-block: clamp(76px, 9vw, 120px);
  background: var(--oh-contact-paper);
}

.oh-contact-section-heading {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.oh-contact-section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 3.2vw, 58px);
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.oh-contact-channels__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--oh-contact-line);
  border-bottom: 1px solid var(--oh-contact-line);
}

.oh-contact-channel {
  min-width: 0;
  padding: 30px 22px 34px;
  border-right: 1px solid var(--oh-contact-line);
  color: var(--oh-contact-ink);
  transition: background-color 190ms ease, transform 190ms ease;
}

.oh-contact-channel:last-child {
  border-right: 0;
}

.oh-contact-channel:hover,
.oh-contact-channel:focus-visible {
  background: #fff;
  transform: translateY(-4px);
}

.oh-contact-channel span,
.oh-contact-channel small {
  display: block;
  color: #566164;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.oh-contact-channel strong {
  display: block;
  overflow-wrap: anywhere;
  margin: 18px 0 12px;
  font-size: clamp(17px, 1.05vw, 20px);
  line-height: 1.18;
}

.oh-contact-form-section {
  padding-block: clamp(80px, 10vw, 140px);
  background:
    radial-gradient(circle at 8% 24%, rgba(215, 177, 91, 0.12), transparent 24%),
    var(--oh-contact-cream);
}

.oh-contact-form-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.oh-contact-form-section__copy {
  position: sticky;
  top: 120px;
}

.oh-contact-form-section h2 {
  margin: 18px 0 24px;
  font-size: clamp(42px, 3.4vw, 62px);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.oh-contact-form-section__copy > p:not(.oh-contact-kicker) {
  max-width: 570px;
  margin: 0;
  color: #505a5c;
  font-size: 17px;
  line-height: 1.75;
}

.oh-contact-form-note {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  padding: 22px 0 22px 24px;
  border-left: 3px solid var(--oh-contact-gold);
}

.oh-contact-form-note strong {
  font-size: 16px;
}

.oh-contact-form-note span {
  color: #4f5a5c;
  font-size: 16px;
  line-height: 1.65;
}

.oh-contact-form-card {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(21, 28, 31, 0.09);
  border-radius: 22px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 26px 70px rgba(27, 34, 36, 0.1);
}

.oh-contact-form-card .ff-el-group {
  margin-bottom: 22px;
}

.oh-contact-form-card .ff-el-input--label label {
  color: var(--oh-contact-ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.oh-contact-form-card input:not([type="checkbox"]),
.oh-contact-form-card select,
.oh-contact-form-card textarea {
  min-height: 54px;
  border: 1px solid rgba(17, 23, 25, 0.18) !important;
  border-radius: 9px !important;
  background: #fff !important;
  color: var(--oh-contact-ink) !important;
  box-shadow: none !important;
  font-size: 16px;
}

.oh-contact-form-card textarea {
  min-height: 150px;
}

.oh-contact-form-card input:focus,
.oh-contact-form-card select:focus,
.oh-contact-form-card textarea:focus {
  border-color: var(--oh-contact-copper) !important;
  outline: 3px solid rgba(187, 111, 67, 0.14) !important;
}

.oh-contact-form-card .ff-btn-submit {
  min-height: 56px;
  width: 100%;
  border: 0 !important;
  border-radius: 9px !important;
  background: var(--oh-contact-deep) !important;
  color: #fff !important;
  font-size: 16px;
  font-weight: 800 !important;
}

.oh-contact-form-card .ff-btn-submit:hover,
.oh-contact-form-card .ff-btn-submit:focus-visible {
  background: #293336 !important;
}

.oh-contact-next {
  padding-block: clamp(80px, 10vw, 132px);
  background: var(--oh-contact-deep);
  color: #fff;
}

.oh-contact-section-heading--light h2 {
  color: #fff;
}

.oh-contact-next__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  list-style: none;
}

.oh-contact-next__steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 32px 28px 12px 0;
  border-right: 1px solid rgba(255,255,255,0.14);
}

.oh-contact-next__steps li + li {
  padding-left: 28px;
}

.oh-contact-next__steps li:last-child {
  border-right: 0;
}

.oh-contact-next__steps > li > span {
  color: var(--oh-contact-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.oh-contact-next__steps h3 {
  margin: -4px 0 12px;
  color: #fff;
  font-size: 18px;
}

.oh-contact-next__steps p {
  margin: 0;
  color: rgba(255,255,255,0.64);
  font-size: 17px;
  line-height: 1.7;
}

.oh-contact-company {
  padding-block: clamp(80px, 10vw, 132px);
  background: var(--oh-contact-paper);
}

.oh-contact-company__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: clamp(54px, 9vw, 124px);
  align-items: start;
}

.oh-contact-company h2 {
  margin: 18px 0 24px;
  font-size: clamp(42px, 3.2vw, 60px);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1;
}

.oh-contact-company__lead {
  max-width: 520px;
  color: #566163;
  font-size: 17px;
  line-height: 1.75;
}

.oh-contact-company__emails {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 30px;
}

.oh-contact-company__emails a,
.oh-contact-text-link {
  color: #934f2e;
  font-size: 16px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.oh-contact-company__data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--oh-contact-line);
  border-left: 1px solid var(--oh-contact-line);
}

.oh-contact-company__data div {
  min-height: 128px;
  padding: 24px;
  border-right: 1px solid var(--oh-contact-line);
  border-bottom: 1px solid var(--oh-contact-line);
}

.oh-contact-company__data dt {
  margin-bottom: 14px;
  color: #566164;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.oh-contact-company__data dd {
  margin: 0;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.5;
}

.oh-contact-final {
  padding-block: clamp(62px, 8vw, 96px);
  background: #0f1517;
  color: #fff;
}

.oh-contact-final__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.oh-contact-final h2 {
  max-width: 760px;
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(40px, 2.8vw, 56px);
  font-weight: 740;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.oh-contact-final__actions {
  display: grid;
  gap: 18px;
  min-width: 260px;
  text-align: center;
}

.oh-contact-hero .oh-contact-kicker,
.oh-contact-next .oh-contact-kicker,
.oh-contact-final .oh-contact-kicker {
  color: #dd9565;
}

.oh-contact-form-card .oh-form-field--privacy label,
.oh-contact-form-card .oh-form-field--privacy a {
  font-size: 15px;
}

@media (min-width: 1800px) {
  .oh-contact-experience {
    --oh-contact-shell: min(1480px, calc(100vw - 128px));
  }

  .oh-contact-hero__grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(420px, 0.84fr);
  }

  .oh-contact-hero__copy,
  .oh-contact-hero h1 {
    max-width: 880px;
  }

  .oh-contact-hero__lead {
    max-width: 720px;
  }

  .oh-contact-portrait {
    width: min(100%, 460px);
  }

  .oh-contact-channel {
    padding: 36px 28px 40px;
  }

  .oh-contact-company__data div {
    min-height: 144px;
    padding: 30px;
  }
}

@media (min-width: 2800px) {
  .oh-contact-experience {
    --oh-contact-shell: min(1680px, calc(100vw - 180px));
  }

  .oh-contact-hero__grid {
    gap: 140px;
  }

  .oh-contact-portrait {
    width: min(100%, 500px);
  }
}

@media (max-width: 1000px) {
  .oh-contact-hero__grid,
  .oh-contact-form-section__grid,
  .oh-contact-company__grid {
    grid-template-columns: 1fr;
  }

  .oh-contact-hero__grid {
    gap: 60px;
    padding-block: 80px;
  }

  .oh-contact-hero__copy {
    max-width: 820px;
  }

  .oh-contact-portrait {
    width: min(72vw, 390px);
  }

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

  .oh-contact-channel:nth-child(2) {
    border-right: 0;
  }

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

  .oh-contact-form-section__grid,
  .oh-contact-company__grid {
    gap: 52px;
  }

  .oh-contact-form-section__copy {
    position: static;
  }

  .oh-contact-company__data {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .oh-contact-experience {
    --oh-contact-shell: min(100% - 32px, 1180px);
  }

  .oh-contact-hero {
    min-height: auto;
  }

  .oh-contact-hero__grid {
    padding-block: 58px 72px;
  }

  .oh-contact-hero h1 {
    margin-top: 16px;
    font-size: clamp(42px, 12vw, 52px);
    letter-spacing: -0.055em;
    line-height: 0.98;
  }

  .oh-contact-actions {
    display: grid;
  }

  .oh-contact-button {
    width: 100%;
  }

  .oh-contact-hero__signals {
    display: grid;
    gap: 12px;
  }

  .oh-contact-portrait {
    width: min(100%, 360px);
  }

  .oh-contact-section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .oh-contact-channels__grid,
  .oh-contact-next__steps,
  .oh-contact-company__data,
  .oh-contact-final__inner {
    grid-template-columns: 1fr;
  }

  .oh-contact-channel {
    border-right: 0;
    border-bottom: 1px solid var(--oh-contact-line);
  }

  .oh-contact-channel:last-child {
    border-bottom: 0;
  }

  .oh-contact-form-card {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .oh-contact-next__steps {
    border-top: 0;
  }

  .oh-contact-next__steps li,
  .oh-contact-next__steps li + li {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-right: 0;
  }

  .oh-contact-company__data div {
    min-height: 0;
  }

  .oh-contact-final__inner {
    gap: 34px;
  }

  .oh-contact-final__actions {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oh-contact-button,
  .oh-contact-channel {
    transition: none;
  }
}
