/* ══════════════════════════════════════════════
   Contact — Fullscreen Split
   ══════════════════════════════════════════════ */

html body.page-consultation {
  --footer-reveal-height: 0px;
  background: #f4efe8 !important;
}

html:has(body.page-consultation) {
  background: #f4efe8;
}

body.page-consultation .page-main {
  margin-bottom: 0 !important;
}

body.page-consultation .scroll-progress,
body.page-consultation #site-footer,
body.page-consultation .site-footer-reveal {
  display: none !important;
}

body.page-consultation .scroll-top {
  display: none;
}

body.page-consultation .site-header-prd,
body.page-consultation .site-header-prd.is-scrolled {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.page-consultation .site-header-prd .brand-logo img {
  filter: none !important;
  mix-blend-mode: normal !important;
}

.contact-fullscreen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  background: #f4efe8;
}

.contact-visual {
  position: relative;
  overflow: hidden;
  margin-top: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: #f4efe8 url("./assets/3.webp") center center / cover no-repeat;
}

@media (min-width: 901px) {
  .contact-visual {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
  }}

.contact-visual__media {
  position: absolute;
  inset: 0;
  background: #f4efe8 url("./assets/3.webp") center center / cover no-repeat;
  transform: scale(1.05);
  transform-origin: center center;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.contact-visual__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
  will-change: transform;
  filter: brightness(0.96) saturate(1.04);
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .contact-visual:hover .contact-visual__media {
    transform: scale(1);
  }}

.contact-visual__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 10, 8, 0.04) 0%, rgba(10, 10, 8, 0.12) 40%, rgba(10, 10, 8, 0.52) 100%),
    linear-gradient(90deg, rgba(10, 10, 8, 0.06) 0%, rgba(10, 10, 8, 0.01) 60%);
}

.contact-visual__caption {
  position: absolute;
  left: calc(clamp(1.5rem, 3vw, 2.8rem) + var(--safe-left));
  bottom: clamp(3.2rem, 6vh, 5.4rem);
  z-index: 2;
  max-width: min(24rem, calc(100% - 2rem - var(--safe-left) - var(--safe-right)));
  color: #ffffff;
}

.contact-visual__caption::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  bottom: -1rem;
  z-index: -1;
  width: calc(100% + 3rem);
  height: calc(100% + 2rem);
  background: radial-gradient(
    ellipse at 20% 80%,
    rgba(8, 8, 6, 0.32) 0%,
    rgba(8, 8, 6, 0.16) 40%,
    rgba(8, 8, 6, 0) 80%
  );
  pointer-events: none;
}

.contact-visual__eyebrow {
  margin: 0;
  font-family: var(--font--primary);
  font-size: clamp(0.82rem, 0.72rem + 0.35vw, 1.02rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.contact-visual__tagline {
  margin: 0.7rem 0 0;
  font-family: var(--font--primary);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  font-weight: 300;
  line-height: 1.72;
  letter-spacing: -0.01em;
  word-break: keep-all;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.contact-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(100px, 12vh, 140px) clamp(24px, 4vw, 56px) clamp(48px, 6vh, 80px);
  padding-left: calc(clamp(24px, 4vw, 56px) + var(--safe-left));
  padding-right: calc(clamp(24px, 4vw, 56px) + var(--safe-right));
  padding-bottom: calc(clamp(48px, 6vh, 80px) + var(--safe-bottom));
  background: #f4efe8;
  overflow-y: auto;
}

@media (min-width: 901px) and (max-height: 840px) {
  .contact-form-side {
    align-items: flex-start;
    padding-top: calc(36px + var(--safe-top));
    padding-bottom: calc(20px + var(--safe-bottom));
  }

  .contact-form-title {
    margin-top: 0.58rem;
    font-size: clamp(1.72rem, 2.2vw, 2.15rem);
  }

  .contact-form-desc {
    margin-top: 0.68rem;
    font-size: 0.86rem;
    line-height: 1.46;
  }

  .contact-brochure {
    margin-top: 12px;
  }

  .contact-brochure__link {
    min-height: 36px;
    font-size: 0.8rem;
  }

  .contact-form-body {
    margin-top: 18px;
  }

  .cf-field input,
  .cf-field select {
    min-height: 40px;
  }

  .cf-field textarea {
    min-height: 54px;
    padding-top: 10px;
  }

  .cf-visit-toggle {
    padding-top: 10px;
  }

  .cf-consent-area {
    margin-top: 12px;
    padding-top: 10px;
  }

  .cf-privacy {
    margin-bottom: 8px;
  }

  .cf-privacy summary {
    padding: 7px 0;
  }

  .cf-submit {
    min-height: 50px;
    margin-top: 14px;
  }}

.contact-form-inner {
  width: 100%;
  max-width: 520px;
  min-width: 0;
}

.contact-form-eyebrow {
  margin: 0;
  font-family: var(--font--tertiary);
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(17, 17, 15, 0.42);
}

.contact-form-title {
  margin: 1rem 0 0;
  font-family: var(--font--primary);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.07em;
  color: #11110f;
}

.contact-form-desc {
  margin: 1.1rem 0 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(17, 17, 15, 0.52);
  word-break: keep-all;
}

.contact-brochure {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 18px;
}

.contact-brochure__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(17, 17, 15, 0.16);
  background: rgba(255, 255, 255, 0.28);
  color: #11110f;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.contact-brochure__link:hover {
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(17, 17, 15, 0.32);
  transform: translateY(-1px);
}

.contact-brochure__link--dark {
  border-color: #11110f;
  background: #11110f;
  color: #f8f5ef;
}

.contact-brochure__link--dark:hover {
  background: #2a2723;
  border-color: #2a2723;
  color: #f8f5ef;
}

.contact-form-body {
  display: grid;
  gap: 0;
  margin-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid rgba(17, 17, 15, 0.14);
}

.cf-field {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: stretch;
  border-bottom: 1px solid rgba(17, 17, 15, 0.09);
  cursor: text;
  transition: background 0.25s ease;
}

.cf-field:hover {
  background: rgba(17, 17, 15, 0.015);
}

.cf-label {
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(17, 17, 15, 0.62);
  white-space: nowrap;
  background: rgba(17, 17, 15, 0.028);
  border-right: 1px solid rgba(17, 17, 15, 0.06);
  transition: color 0.25s ease, background 0.25s ease;
}

.cf-label b {
  margin-left: 2px;
  color: #9a6d34;
}

.cf-field:focus-within .cf-label {
  color: #11110f;
  background: rgba(17, 17, 15, 0.055);
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #11110f;
  font-size: 0.9rem;
  font-family: var(--font--primary);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.cf-field textarea {
  min-height: 88px;
  padding: 14px 16px;
  resize: vertical;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 15, 0.18);
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: rgba(17, 17, 15, 0.28);
}

.cf-field select {
  appearance: none;
  padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2311110f' stroke-width='1.5' opacity='.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.cf-field--textarea {
  grid-template-columns: 110px minmax(0, 1fr);
}

.cf-field--textarea .cf-label {
  align-items: flex-start;
  padding-top: 14px;
}

.cf-error {
  grid-column: 1 / -1;
  min-height: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  font-size: 0.76rem;
  color: #9b3a2d;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.cf-error.is-visible {
  max-height: 40px;
  padding: 6px 16px 8px;
}

.cf-visit-toggle {
  padding: 18px 0 0;
}

.cf-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 0 2px;
  cursor: pointer;
  font-size: 0.88rem;
  color: rgba(17, 17, 15, 0.72);
}

.cf-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #11110f;
}

.cf-checkbox b {
  margin-left: 2px;
  color: #9a6d34;
}

.cf-visit-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  border-top: 0 solid rgba(17, 17, 15, 0.09);
  transition:
    max-height 0.45s cubic-bezier(0.32, 0.72, 0, 1),
    opacity 0.35s ease,
    margin 0.35s ease;
}

.cf-visit-fields.is-open {
  max-height: 200px;
  margin-top: 14px;
  opacity: 1;
  border-top-width: 1px;
}

.cf-visit-fields .cf-field {
  border-bottom: 0;
}

.cf-visit-fields .cf-field:first-child {
  border-right: 1px solid rgba(17, 17, 15, 0.06);
}

.cf-visit-fields .cf-field--half {
  grid-template-columns: 72px minmax(0, 1fr);
}

.cf-visit-fields .cf-label {
  padding: 0 12px;
  font-size: 0.78rem;
}

.cf-visit-fields input,
.cf-visit-fields select {
  min-height: 46px;
  padding: 0 12px;
  font-size: 0.86rem;
}

.cf-consent-area {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 15, 0.12);
}

.cf-privacy {
  margin-bottom: 14px;
  font-size: 0.8rem;
}

.cf-privacy summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  list-style: none;
  cursor: pointer;
  color: rgba(17, 17, 15, 0.58);
  font-weight: 500;
  transition: color 0.25s ease;
}

.cf-privacy summary:hover {
  color: rgba(17, 17, 15, 0.82);
}

.cf-privacy summary::-webkit-details-marker {
  display: none;
}

.cf-privacy summary::after {
  content: "+";
  font-size: 1rem;
  color: rgba(17, 17, 15, 0.36);
  transition: transform 0.3s ease;
}

.cf-privacy[open] summary::after {
  content: "−";
}

.cf-privacy dl {
  margin: 0;
  padding: 0 0 10px;
}

.cf-privacy div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 7px 0;
  border-top: 1px solid rgba(17, 17, 15, 0.05);
}

.cf-privacy dt,
.cf-privacy dd {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.55;
}

.cf-privacy dt {
  color: rgba(17, 17, 15, 0.38);
}

.cf-privacy dd {
  color: rgba(17, 17, 15, 0.54);
}

.cf-submit {
  position: relative;
  width: 100%;
  min-height: 56px;
  margin-top: 28px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #11110f;
  color: #f8f5ef;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cf-submit:hover {
  background: #2a2723;
  transform: translateY(-1px);
}

.cf-submit:active {
  transform: translateY(0);
}

.cf-submit__text,
.cf-submit__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.cf-submit__loading {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
  color: rgba(248, 245, 239, 0.72);
}

.cf-submit.is-loading .cf-submit__text {
  transform: translateY(-100%);
}

.cf-submit.is-loading .cf-submit__loading {
  transform: translateY(0);
}

.cf-submit:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.contact-form-body .form-feedback {
  display: none;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 0;
  font-size: 0.84rem;
  line-height: 1.6;
}

.contact-form-body .form-feedback.is-visible {
  display: block;
}

.contact-form-body .form-feedback.is-success {
  background: rgba(77, 162, 98, 0.1);
  color: #2f6e44;
  border: 1px solid rgba(77, 162, 98, 0.18);
}

.contact-form-body .form-feedback.is-error {
  background: rgba(184, 66, 46, 0.06);
  color: #9b3a2d;
  border: 1px solid rgba(184, 66, 46, 0.14);
}

.contact-floating-bar {
  display: none;
}

@media (max-width: 900px) {
  .contact-fullscreen {
    grid-template-columns: 1fr;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    background: #f4efe8 url("./assets/3.webp") center top / 100% auto no-repeat;
  }

  .contact-visual {
    position: relative;
    height: 46vh;
    height: 46svh;
    height: 46dvh;
    min-height: 320px;
  }

  .contact-visual__media {
    transform: scale(1);
  }

  .contact-visual__caption {
    left: calc(1.25rem + var(--safe-left));
    right: calc(1.25rem + var(--safe-right));
    bottom: calc(4.5rem + var(--safe-bottom));
    max-width: none;
  }

  .contact-visual__tagline {
    font-size: 0.94rem;
  }

  .contact-visual__eyebrow {
    font-size: 0.82rem;
  }

  .contact-form-side {
    align-items: flex-start;
    padding: calc(40px + var(--safe-top)) calc(20px + var(--safe-right)) calc(120px + var(--safe-bottom)) calc(20px + var(--safe-left));
  }

  .contact-form-title {
    font-size: clamp(1.8rem, 6.4vw, 2.35rem);
  }

  .contact-brochure {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .cf-field {
    grid-template-columns: 1fr;
  }

  .cf-label {
    min-height: 38px;
    padding: 10px 14px 4px;
    font-size: 0.78rem;
    background: transparent;
    border-right: 0;
    border-bottom: 0;
  }

  .cf-field input,
  .cf-field select,
  .cf-field textarea {
    min-height: 42px;
    padding: 0 14px 12px;
    font-size: 16px;
  }

  .cf-field textarea {
    padding-top: 0;
  }

  .cf-field--textarea .cf-label {
    padding-top: 10px;
  }

  .cf-visit-fields {
    grid-template-columns: 1fr;
  }

  .cf-visit-fields .cf-field:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 15, 0.06);
  }

  .cf-visit-fields .cf-field--half {
    grid-template-columns: 1fr;
  }

  .cf-visit-fields .cf-label {
    padding: 10px 14px 4px;
    font-size: 0.78rem;
  }

  .cf-visit-fields input,
  .cf-visit-fields select {
    padding: 0 14px 10px;
    font-size: 16px;
  }

  .cf-privacy div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .contact-floating-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding-left: var(--safe-left);
    padding-right: var(--safe-right);
    padding-bottom: var(--safe-bottom);
    background: rgba(17, 17, 15, 0.12);
  }

  .cfb-call,
  .cfb-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 56px;
    border: 0;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: var(--font--primary);
    text-decoration: none;
  }

  .cfb-call {
    background: #f4efe8;
    color: #11110f;
  }

  .cfb-form {
    background: #11110f;
    color: #f8f5ef;
  }}

@media (max-width: 400px) {
  .contact-visual {
    height: 38vh;
    min-height: 280px;
  }

  .contact-form-side {
    padding: calc(32px + var(--safe-top)) calc(16px + var(--safe-right)) calc(120px + var(--safe-bottom)) calc(16px + var(--safe-left));
  }

  .contact-visual__tagline {
    font-size: 0.88rem;
  }}

@media (min-width: 1600px) {
  .contact-form-inner {
    max-width: 560px;
  }}

/* Mobile consultation full-bleed hero */
@media (max-width: 900px) {
  body.page-consultation .site-header-prd,
  body.page-consultation .site-header-prd.is-scrolled {
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.page-consultation .site-header-prd .header-inner {
    min-height: 84px;
  }

  body.page-consultation .site-header-prd .brand-logo img {
    filter: none !important;
    mix-blend-mode: normal !important;
  }

  body.page-consultation .site-header-prd .menu-toggle-prd {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.96) !important;
    color: #111111 !important;
    border: 0 !important;
    box-shadow: 0 10px 30px rgba(17, 17, 17, 0.12) !important;
  }

  .contact-fullscreen {
    padding-top: 0 !important;
  }

  .contact-visual {
    height: clamp(410px, 52vh, 560px);
    height: clamp(410px, 52svh, 560px);
    height: clamp(410px, 52dvh, 560px);
    min-height: 410px;
    margin-top: 0;
    background: #f4efe8 url("./assets/3.webp") center top / cover no-repeat;
  }

  .contact-visual__media {
    background: #f4efe8 url("./assets/3.webp") center top / cover no-repeat;
    transform: none !important;
    will-change: auto !important;
  }

  .contact-visual__media img {
    top: 0 !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center top;
    transform: none !important;
    will-change: auto !important;
  }

  .contact-visual__overlay {
    background:
      linear-gradient(180deg, rgba(8, 8, 6, 0.08) 0%, rgba(8, 8, 6, 0.12) 36%, rgba(8, 8, 6, 0.56) 100%),
      linear-gradient(90deg, rgba(8, 8, 6, 0.16) 0%, rgba(8, 8, 6, 0.04) 72%);
  }

  .contact-visual__caption {
    bottom: calc(3.2rem + var(--safe-bottom));
  }
}

@media (max-width: 400px) {
  .contact-visual {
    height: clamp(380px, 50vh, 500px);
    height: clamp(380px, 50svh, 500px);
    height: clamp(380px, 50dvh, 500px);
    min-height: 380px;
  }}

/* Mobile consultation no-zoom lock */
@media (max-width: 900px), (pointer: coarse) {
  .contact-visual,
  .contact-visual__media,
  .contact-visual__media img,
  .contact-visual__caption {
    transform: none !important;
    scale: none !important;
    translate: none !important;
    will-change: auto !important;
  }

  .contact-visual__media img {
    transition-property: opacity !important;
  }

  .consult-input,
  .consult-textarea,
  .consult-select-trigger {
    font-size: 16px !important;
  }
}

@media (min-width: 901px) and (max-height: 840px) {
  .contact-form-side {
    align-items: flex-start !important;
    padding-top: calc(30px + var(--safe-top)) !important;
    padding-bottom: calc(16px + var(--safe-bottom)) !important;
  }

  .contact-form-eyebrow {
    font-size: 0.62rem !important;
  }

  .contact-form-title {
    margin-top: 0.48rem !important;
    font-size: clamp(1.65rem, 2vw, 2.05rem) !important;
  }

  .contact-form-desc {
    margin-top: 0.56rem !important;
    font-size: 0.84rem !important;
    line-height: 1.42 !important;
  }

  .contact-brochure {
    margin-top: 10px !important;
  }

  .contact-brochure__link {
    min-height: 34px !important;
    font-size: 0.78rem !important;
  }

  .contact-form-body {
    margin-top: 14px !important;
  }

  .cf-label {
    font-size: 0.78rem !important;
  }

  .cf-field input,
  .cf-field select {
    min-height: 38px !important;
    font-size: 0.84rem !important;
  }

  .cf-field textarea {
    min-height: 46px !important;
    padding-top: 9px !important;
    font-size: 0.84rem !important;
  }

  .cf-visit-toggle {
    padding-top: 8px !important;
  }

  .cf-checkbox {
    font-size: 0.82rem !important;
  }

  .cf-consent-area {
    margin-top: 10px !important;
    padding-top: 8px !important;
  }

  .cf-privacy {
    margin-bottom: 7px !important;
  }

  .cf-privacy summary {
    padding: 6px 0 !important;
    font-size: 0.78rem !important;
  }

  .cf-submit {
    min-height: 46px !important;
    margin-top: 12px !important;
  }}

body.page-consultation [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
  transition: none !important;
}

@media (min-width: 901px) {
  .contact-form-side {
    align-items: flex-start !important;
    padding-top: calc(clamp(48px, 6vh, 72px) + var(--safe-top)) !important;
    padding-bottom: calc(20px + var(--safe-bottom)) !important;
  }

  .contact-form-body {
    margin-top: clamp(18px, 2.4vh, 26px) !important;
  }

  .cf-submit {
    margin-top: clamp(16px, 2vh, 22px) !important;
  }}

/* Desktop consultation vertical balance */
@media (min-width: 901px) {
  .contact-form-side {
    align-items: center !important;
    padding-top: calc(clamp(84px, 11vh, 128px) + var(--safe-top)) !important;
    padding-bottom: calc(clamp(64px, 8vh, 96px) + var(--safe-bottom)) !important;
  }

  .contact-form-inner {
    margin-block: auto;
  }
}

@media (min-width: 901px) and (max-height: 900px) {
  .contact-form-title {
    margin-top: 0.58rem !important;
    font-size: clamp(1.72rem, 2.35vw, 2.28rem) !important;
  }

  .contact-form-desc {
    margin-top: 0.62rem !important;
    line-height: 1.45 !important;
  }

  .contact-brochure {
    margin-top: 12px !important;
  }

  .contact-brochure__link {
    min-height: 38px !important;
  }

  .cf-field input,
  .cf-field select {
    min-height: 40px !important;
  }

  .cf-field textarea {
    min-height: 54px !important;
    padding-top: 10px !important;
  }

  .cf-visit-toggle {
    padding-top: 10px !important;
  }

  .cf-consent-area {
    margin-top: 12px !important;
    padding-top: 10px !important;
  }

  .cf-privacy {
    margin-bottom: 8px !important;
  }

  .cf-privacy summary {
    padding: 7px 0 !important;
  }

  .cf-submit {
    min-height: 48px !important;
    margin-top: 12px !important;
  }}