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

.contact-page {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  padding: clamp(86px, 7vw, 118px) 0 48px;
  background:
    radial-gradient(circle at 12% 0%, rgba(198, 164, 106, 0.12), transparent 36%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.055), transparent 32%),
    radial-gradient(ellipse at 50% 95%, rgba(64, 96, 68, 0.06), transparent 50%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 48%, #050505 100%);
  box-shadow: inset 0 2px 0 rgba(198, 164, 106, 0.28);
}

.contact-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 1200' fill='none'%3E%3Cg stroke='%23C6A46A' stroke-opacity='.28' stroke-width='1.2'%3E%3Cpath d='M120 140h1360M120 1060h1360M120 140v920M1480 140v920'/%3E%3Ccircle cx='800' cy='600' r='320'/%3E%3Ccircle cx='800' cy='600' r='520' stroke-opacity='.14'/%3E%3Cpath d='M240 240l1120 720M1360 240L240 960' stroke-opacity='.10'/%3E%3Cpath d='M800 140v920M120 600h1360' stroke-opacity='.08'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.045;
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, transparent 38%, black 100%);
  mask-image: radial-gradient(ellipse at 50% 40%, transparent 38%, black 100%);
}

.contact-shell {
  width: min(1360px, 100% - 56px);
  margin: 0 auto;
  display: grid;
  gap: 20px;
  align-items: stretch;
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(290px, 0.8fr) minmax(560px, 1.2fr);
}

.contact-card {
  min-width: 0;
}

.contact-card--info {
  overflow: visible;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(198, 164, 106, 0.14);
  color: var(--text-soft);
  background:
    radial-gradient(circle at 15% 0%, rgba(198, 164, 106, 0.10), transparent 40%),
    radial-gradient(circle at 95% 10%, rgba(255, 255, 255, 0.05), transparent 35%),
    linear-gradient(145deg, rgba(19, 18, 15, 0.96) 0%, rgba(9, 9, 8, 0.98) 60%, rgba(4, 4, 4, 0.99) 100%);
  box-shadow:
    0 32px 96px rgba(0, 0, 0, 0.56),
    0 8px 32px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 236, 170, 0.03);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.contact-card--info:hover {
  transform: translateY(-2px);
  box-shadow:
    0 36px 108px rgba(0, 0, 0, 0.60),
    0 12px 40px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 0 0 1px rgba(255, 236, 170, 0.05),
    0 0 32px rgba(198, 164, 106, 0.08);
}

.contact-card--form {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: clamp(36px, 4vw, 56px);
  color: var(--text-soft);
  background:
    radial-gradient(circle at 15% 0%, rgba(198, 164, 106, 0.10), transparent 40%),
    radial-gradient(circle at 95% 10%, rgba(255, 255, 255, 0.05), transparent 35%),
    linear-gradient(145deg, rgba(19, 18, 15, 0.96) 0%, rgba(9, 9, 8, 0.98) 60%, rgba(4, 4, 4, 0.99) 100%);
  border: 1px solid rgba(198, 164, 106, 0.14);
  border-radius: var(--radius-lg);
  box-shadow:
    0 32px 96px rgba(0, 0, 0, 0.56),
    0 8px 32px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 236, 170, 0.03);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.contact-card--form:hover {
  transform: translateY(-2px);
  box-shadow:
    0 36px 108px rgba(0, 0, 0, 0.60),
    0 12px 40px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 0 0 1px rgba(255, 236, 170, 0.05),
    0 0 32px rgba(198, 164, 106, 0.10);
}

.contact-card--form::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.contact-card--form > * {
  position: relative;
  z-index: 1;
}

.contact-card--form::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 164, 106, 0.55) 30%,
    rgba(255, 236, 170, 0.70) 50%,
    rgba(198, 164, 106, 0.55) 70%,
    transparent
  );
}

.contact-card--map {
  position: relative;
  width: min(100%, 1000px);
  height: 340px;
  margin: 30px auto 0;
  overflow: hidden;
  border: 1px solid rgba(198, 164, 106, 0.14);
  border-radius: 30px;
  background: #111;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-card--map::before,
.contact-card--map::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  pointer-events: none;
  opacity: 0.55;
}

.contact-card--map::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid rgba(198, 164, 106, 0.55);
  border-left: 2px solid rgba(198, 164, 106, 0.55);
  border-radius: 4px 0 0 0;
}

.contact-card--map::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid rgba(198, 164, 106, 0.55);
  border-bottom: 2px solid rgba(198, 164, 106, 0.55);
  border-radius: 0 0 4px 0;
}

.contact-map-wrap {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
}


.contact-title {
  margin: 0;
  display: inline-block;
  color: #f5f5f5 !important;
  background: none !important;
  -webkit-text-fill-color: #f5f5f5;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.contact-form-title {
  font-size: clamp(26px, 2.5vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  background:linear-gradient(to bottom right, #ffffff, #b4b4b4 84.03%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: rgba(254, 254, 254, 0.29);
}

.contact-form-lead {
  margin-top: 5px;
  color: rgba(247, 242, 232, 0.68);
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.55;
}


.contact-sep {
  position: relative;
  overflow: visible;
  margin: 22px 0 18px;
  border: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(198, 164, 106, 0.5),
    rgba(255, 255, 255, 0.085),
    transparent
  );
}

.contact-sep::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-50%) rotate(45deg);
  background: #c6a46a;
  box-shadow: 0 0 12px rgba(198, 164, 106, 0.42);
}

.contact-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.contact-tile-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    linear-gradient(145deg, rgba(198, 164, 106, 0.025), rgba(64, 96, 68, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 14px 34px rgba(0, 0, 0, 0.16);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.contact-tile::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(180deg, #fff0b5 0%, #c6a46a 48%, #8f6722 100%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.contact-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      110deg,
      transparent 24%,
      rgba(255, 236, 170, 0.07) 50%,
      transparent 76%
    );
  transform: translateX(-120%);
  transition: transform 620ms ease;
}

.contact-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 164, 106, 0.28);
  background:
    linear-gradient(145deg, rgba(198, 164, 106, 0.095), rgba(255, 255, 255, 0.035)),
    linear-gradient(145deg, rgba(64, 96, 68, 0.055), rgba(0, 0, 0, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 18px 42px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(198, 164, 106, 0.065);
}

.contact-tile:hover::before {
  opacity: 1;
}

.contact-tile:hover::after {
  transform: translateX(120%);
}

.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(198, 164, 106, 0.22);
  border-radius: 14px;
  color: #d7bd82;
  background:
    linear-gradient(145deg, rgba(198, 164, 106, 0.14), rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 10px 22px rgba(0, 0, 0, 0.22);
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  display: block;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35));
}

.contact-tile-title {
  margin: 0 0 1px;
  color: rgba(198, 164, 106, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 750;
}

.contact-tile-value {
  margin: 0;
  color: rgba(247, 242, 232, 0.68);
  font-size: clamp(20px, 1.1vw, 23px);
  font-weight: 500;
  line-height: 1.35;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  -webkit-text-fill-color: rgba(255, 253, 242, 0.87);
}

.contact-tile-value + .contact-tile-value {
  margin-top: 4px;
}

.contact-tile-value span {
  display: block;
  -webkit-text-fill-color: rgba(255, 253, 242, 0.87);
}

.contact-tile-value br {
  display: none;
}

.contact-tile a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
  -webkit-text-fill-color: rgba(255, 253, 242, 0.87);
}

.contact-tile a:hover {
  color: #d7bd82;
}


.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 13px;
  margin-top: 20px;
}

.contact-field {
  display: grid;
  gap: 9px;
}

.contact-field:nth-of-type(3),
.contact-form-bottom {
  grid-column: 1 / -1;
}

.contact-label {
  color: rgba(247, 242, 232, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.contact-form-bottom {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 14px;
  width: 100%;
}

.contact-form-bottom .contact-check {
  flex: 1 1 auto;
  min-width: 0;
}

.contact-form-bottom .contact-submit {
  flex: 0 0 clamp(238px, 28%, 292px);
  width: auto;
  align-self: stretch;
  min-height: auto;
  padding-inline: 24px;
  white-space: nowrap;
}

.contact-input,
.contact-textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid rgba(198, 164, 106, 0.12);
  border-radius: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  color: #f7f2e8;
  font-size: 15px;
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.30),
    0 1px 0 rgba(255, 255, 255, 0.035);
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(247, 242, 232, 0.38);
}

.contact-input:hover,
.contact-textarea:hover {
  border-color: rgba(198, 164, 106, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

.contact-input:focus,
.contact-textarea:focus,
.contact-input:focus-visible,
.contact-textarea:focus-visible {
  border-color: transparent;
  outline: none;
  background: rgba(0, 0, 0, 0.20);
  box-shadow:
    inset 0 1px 3px rgba(0, 0, 0, 0.40),
    0 0 0 1px rgba(198, 164, 106, 0.48),
    0 0 12px rgba(198, 164, 106, 0.14);
}

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

.contact-field-error {
  margin: -2px 0 0;
  color: #ff8a8a;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0.005em;
}

.contact-input.is-invalid,
.contact-textarea.is-invalid {
  border-color: rgba(255, 112, 112, 0.58);
  background: rgba(255, 70, 70, 0.055);
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.30),
    0 0 0 1px rgba(255, 112, 112, 0.22),
    0 0 14px rgba(255, 80, 80, 0.10);
}

.contact-input.is-invalid:focus,
.contact-textarea.is-invalid:focus,
.contact-input.is-invalid:focus-visible,
.contact-textarea.is-invalid:focus-visible {
  border-color: transparent;
  background: rgba(0, 0, 0, 0.22);
  box-shadow:
    inset 0 1px 3px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 112, 112, 0.60),
    0 0 14px rgba(255, 80, 80, 0.14);
}

.contact-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.contact-check--invalid {
  border-color: rgba(255, 112, 112, 0.48);
  background: rgba(255, 70, 70, 0.055);
}

.contact-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  border: 1px solid rgba(198, 164, 106, 0.38);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-check input[type="checkbox"]::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #080808;
  border-width: 0 2px 2px 0;
  transform: rotate(40deg) scale(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.contact-check input[type="checkbox"]:checked {
  border-color: rgba(255, 232, 150, 0.78);
  background: linear-gradient(135deg, #f0d27a, #c6a46a);
  box-shadow: 0 0 14px rgba(198, 164, 106, 0.24);
}

.contact-check input[type="checkbox"]:checked::after {
  transform: rotate(40deg) scale(1);
}

.contact-check input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(198, 164, 106, 0.18),
    0 0 14px rgba(198, 164, 106, 0.20);
}

.contact-check label {
  color: rgba(247, 242, 232, 0.64);
  font-size: 12.5px;
  line-height: 1.45;
  cursor: pointer;
}

.contact-field-error--check {
  grid-column: 1 / -1;
  margin-top: -6px;
}

.contact-form-status {
  margin: 12px 0 0;
  padding: 11px 13px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}

.contact-form-status--success {
  border: 1px solid rgba(105, 210, 130, 0.26);
  background: rgba(70, 180, 95, 0.08);
  color: rgba(220, 255, 225, 0.92);
}

.contact-form-status--error {
  border: 1px solid rgba(255, 112, 112, 0.30);
  background: rgba(255, 70, 70, 0.065);
  color: #ffb0b0;
}

.contact-submit {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  overflow: hidden;
  min-height: 56px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  text-align: center;
  border: 1px solid rgba(240, 208, 112, 0.24);
  border-radius: 16px;
  cursor: pointer;
  background:
    linear-gradient(
      135deg,
      #ead98f 0%,
      #c6a046 38%,
      #9a6e22 66%,
      #d4b55c 100%
    );
  background-size: 200% 100%;
  background-position: left center;
  color: rgba(0, 0, 0, 0.82);
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow:
    0 1px 0 rgba(255, 255, 235, 0.34) inset,
    0 14px 34px rgba(198, 164, 106, 0.20),
    0 8px 20px rgba(0, 0, 0, 0.36);
  transition:
    transform var(--transition),
    background-position 540ms ease,
    border-color var(--transition),
    box-shadow var(--transition);
}

.contact-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 245, 0.22) 0%,
    rgba(255, 255, 245, 0.06) 44%,
    transparent 100%
  );
}

.contact-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 24%,
    rgba(255, 236, 170, 0.18) 50%,
    transparent 76%
  );
  transform: translateX(-120%);
  transition: transform 620ms ease;
}

.contact-submit:hover {
  background-position: right center;
  border-color: rgba(255, 232, 150, 0.52);
  color: rgba(0, 0, 0, 0.86);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 235, 0.38) inset,
    0 18px 42px rgba(198, 164, 106, 0.28),
    0 0 0 1px rgba(255, 232, 150, 0.18),
    0 10px 24px rgba(0, 0, 0, 0.38);
}

.contact-submit:hover::after {
  transform: translateX(120%);
}

.contact-submit:active {
  transform: translateY(0);
  background-position: right center;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.30) inset,
    0 9px 24px rgba(198, 164, 106, 0.20);
}

.contact-submit:focus-visible {
  outline: none;
  border-color: rgba(255, 232, 150, 0.58);
  box-shadow:
    0 0 0 3px rgba(198, 164, 106, 0.24),
    0 16px 38px rgba(198, 164, 106, 0.24),
    0 1px 0 rgba(255, 255, 235, 0.34) inset;
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-map {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0 !important;
  display: block;
  background: #111;
  filter: grayscale(0.42) brightness(0.62) sepia(0.08) contrast(1.04);
  transition: filter var(--transition-slow);
}

.contact-card--map:hover .contact-map {
  filter: grayscale(0.38) brightness(0.66) sepia(0.06) contrast(1.03);
}


@keyframes helenia-contact-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .contact-card--info {
    animation: helenia-contact-fade-up 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .contact-card--form {
    animation: helenia-contact-fade-up 700ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .contact-map-wrap {
    animation: helenia-contact-fade-up 680ms 240ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .contact-tile-wrap:nth-child(1) { animation: helenia-contact-fade-up 520ms 180ms both; }
  .contact-tile-wrap:nth-child(2) { animation: helenia-contact-fade-up 520ms 260ms both; }
  .contact-tile-wrap:nth-child(3) { animation: helenia-contact-fade-up 520ms 340ms both; }
  .contact-tile-wrap:nth-child(4) { animation: helenia-contact-fade-up 520ms 420ms both; }
}

@media (max-width: 900px) {
  .contact-title {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .contact-form-title {
    font-size: clamp(26px, 6vw, 32px);
  }

  .contact-shell {
    width: min(calc(100% - 28px), 760px);
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-map-wrap {
    width: min(calc(100% - 28px), 760px);
  }

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

  .contact-card--info,
  .contact-card--form {
    height: auto;
    min-height: 0;
    padding: 26px;
  }

  .contact-card--map {
    height: 360px;
    min-height: 0;
    margin-top: 22px;
  }

  .contact-map {
    height: 100%;
    min-height: 0;
  }

  .contact-form-bottom {
    flex-direction: column;
  }

  .contact-form-bottom .contact-submit {
    width: 100%;
    flex-basis: auto;
    min-height: 58px;
  }

  .contact-tile-value br {
    display: inline;
  }
}

@media (max-width: 520px) {
  .contact-page {
    padding: 104px 0 40px;
    box-shadow: inset 0 1px 0 rgba(198, 164, 106, 0.34);
  }

  .contact-page::before {
    opacity: 0.022;
  }

  .contact-title {
    max-width: none;
  }

  .contact-title-logo {
    max-height: clamp(36px, 11vw, 48px);
  }

  .contact-form-title {
    padding-bottom: 0;
  }

  .contact-form-title::after {
    content: none;
  }

  .contact-card--info,
  .contact-card--form {
    padding: 22px;
  }

  .contact-tile {
    min-height: 80px;
    padding: 15px 16px;
    gap: 12px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .contact-icon svg {
    width: 21px;
    height: 21px;
  }

  .contact-tile-value {
    font-size: clamp(16px, 4.2vw, 18px);
  }

  .contact-card--map {
    height: 320px;
    min-height: 0;
  }

  .contact-card--map::before,
  .contact-card--map::after {
    width: 18px;
    height: 18px;
  }

  .contact-map {
    height: 100%;
    min-height: 0;
  }
}