.active-contact {
  background: #071d38 !important;
  color: #ffffff !important;
}

.contact-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #ffffff;
  background: #04162c;
}

.contact-hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: 62%;
  background-image: url("assets/contact-hero.PNG");
  background-size: cover;
  background-position: center center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(4, 22, 44, 0.98) 0%,
      rgba(4, 22, 44, 0.92) 40%,
      rgba(4, 22, 44, 0.46) 60%,
      rgba(4, 22, 44, 0.02) 90%
    );
}

.contact-hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  padding: 72px clamp(24px, 5.5vw, 76px) 132px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 44px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.breadcrumb span:last-child {
  color: #d8aa3b;
}

.contact-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 6vw, 86px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.contact-hero h1 span {
  color: #c99522;
}

.simple-gold-line {
  width: 168px;
  height: 3px;
  margin: 26px 0 28px;
  background: #c99522;
}

.contact-hero-lead {
  max-width: 520px;
  margin: 0 0 24px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 3vw, 43px);
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.contact-hero-text {
  max-width: 455px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 600;
}

.contact-curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 4;
  height: 118px;
  pointer-events: none;
}

.contact-curve svg {
  width: 100%;
  height: 100%;
}

.curve-gold {
  fill: #c99522;
}

.curve-white {
  fill: #ffffff;
}

.contact-body {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(340px, 0.95fr);
  gap: 38px;
  padding: 18px clamp(24px, 6vw, 78px) 54px;
  background: #ffffff;
}

.message-card,
.contact-side {
  min-width: 0;
}

.message-card {
  padding: 34px clamp(24px, 4vw, 42px);
  background: #ffffff;
  border: 1px solid rgba(7, 29, 56, 0.12);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(7, 29, 56, 0.08);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border: 2px solid #c99522;
  border-radius: 50%;
}

.card-icon svg {
  width: 29px;
  height: 29px;
  stroke: #c99522;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.message-card h2,
.stay-connected-card h2 {
  margin: 0;
  color: #071d38;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.5vw, 36px);
  line-height: 1.14;
  text-align: center;
  letter-spacing: -0.02em;
}

.card-line {
  width: 92px;
  height: 2px;
  margin: 16px auto 22px;
  background: #c99522;
}

.card-line.left {
  margin-left: 0;
}

.card-intro {
  max-width: 390px;
  margin: 0 auto 32px;
  color: #4a5565;
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.contact-form label span {
  color: #071d38;
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.email-signup-form input {
  width: 100%;
  border: 1px solid rgba(7, 29, 56, 0.16);
  border-radius: 2px;
  color: #101827;
  background: #ffffff;
  font: inherit;
  outline: none;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
  padding: 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.email-signup-form input:focus {
  border-color: #c99522;
  box-shadow: 0 0 0 3px rgba(201, 149, 34, 0.16);
}

.contact-form button,
.email-signup-form button {
  cursor: pointer;
  min-height: 54px;
  border: 0;
  border-radius: 3px;
  color: #ffffff;
  background: linear-gradient(135deg, #d8aa3b, #c99522);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(201, 149, 34, 0.24);
}

.contact-form button span {
  margin-right: 10px;
}

.privacy-note {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  text-align: center;
}

.contact-side {
  display: grid;
  gap: 0;
  align-self: start;
  overflow: hidden;
  border: 1px solid rgba(7, 29, 56, 0.12);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(7, 29, 56, 0.08);
}

.info-card {
  padding: 38px clamp(24px, 4vw, 42px);
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 149, 34, 0.12), transparent 34%),
    linear-gradient(135deg, #04162c, #071d38);
}

.info-card h2 {
  margin: 0 0 26px;
  color: #c99522;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.info-card ul {
  display: grid;
  gap: 22px;
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.info-card li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
}

.info-icon svg {
  width: 30px;
  height: 30px;
  stroke: #c99522;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.info-card a,
.info-card address {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.45;
  font-style: normal;
  font-weight: 700;
  text-decoration: none;
}

.info-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 16px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.info-actions span {
  margin-right: 9px;
}

.gold-action {
  color: #ffffff;
  background: linear-gradient(135deg, #d8aa3b, #c99522);
}

.outline-action {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.stay-connected-card {
  padding: 36px clamp(24px, 4vw, 42px) 42px;
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 149, 34, 0.09), transparent 32%),
    linear-gradient(135deg, #f8f4ec, #ffffff);
}

.stay-connected-card h2 {
  text-align: left;
}

.stay-connected-card p {
  margin: 0 0 24px;
  color: #263246;
  font-size: 16px;
  line-height: 1.6;
}

.email-signup-form {
  display: grid;
  grid-template-columns: 1fr 128px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(7, 29, 56, 0.08);
}

.email-signup-form input {
  min-height: 54px;
  padding: 0 16px;
  border-right: 0;
}

.email-signup-form button {
  border-radius: 0;
  box-shadow: none;
}

.contact-cta {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 42px clamp(24px, 6vw, 78px);
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 50%, rgba(201, 149, 34, 0.12), transparent 30%),
    linear-gradient(135deg, #04162c, #071d38);
  border-top: 6px solid #c99522;
}

.cta-icon {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 3px solid #c99522;
  border-radius: 50%;
}

.cta-icon svg {
  width: 52px;
  height: 52px;
  stroke: #c99522;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.contact-cta h2 {
  max-width: 740px;
  margin: 0 0 10px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.15;
}

.contact-cta p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.5;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 270px;
  min-height: 58px;
  padding: 16px 26px;
  color: #ffffff;
  background: linear-gradient(135deg, #d8aa3b, #c99522);
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(201, 149, 34, 0.20);
}

.cta-button span {
  margin-left: 14px;
  font-size: 24px;
  line-height: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1050px) {
  .contact-body,
  .contact-cta {
    grid-template-columns: 1fr;
  }

  .contact-hero-photo {
    width: 70%;
  }

  .contact-cta {
    text-align: left;
  }

  .cta-button {
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .contact-hero {
    min-height: auto;
  }

  .contact-hero-photo {
    width: 100%;
    opacity: 0.40;
  }

  .contact-hero-overlay {
    background: rgba(4, 22, 44, 0.84);
  }

  .contact-hero-content {
    max-width: none;
    padding: 54px 24px 122px;
  }

  .breadcrumb {
    margin-bottom: 34px;
  }

  .contact-hero h1 {
    font-size: 54px;
  }

  .contact-hero-lead {
    font-size: 30px;
  }

  .form-row,
  .info-actions,
  .email-signup-form {
    grid-template-columns: 1fr;
  }

  .contact-body {
    padding: 10px 24px 44px;
  }

  .message-card,
  .info-card,
  .stay-connected-card,
  .contact-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .email-signup-form input {
    border-right: 1px solid rgba(7, 29, 56, 0.16);
  }

  .cta-button {
    width: 100%;
    min-width: 0;
  }
}
