.contact-page {
  background:
    radial-gradient(circle at 70% 8%, rgba(212, 166, 86, 0.12), transparent 28%),
    #050505;
  color: #f7f5f1;
  overflow-x: hidden;
}

.contact-page main {
  min-height: 100vh;
}

.contact-hero-new,
.contact-brief-section,
.contact-options-section,
.contact-proof-section {
  width: min(1380px, 88%);
  margin-inline: auto;
}

.contact-hero-new {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 90px;
  align-items: center;
  padding: 210px 0 110px;
}

.contact-eyebrow,
.contact-section-heading > span,
.contact-direct-card > span,
.contact-options-grid article > span,
.contact-proof-section span {
  color: #d4a656;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.contact-hero-copy h1 {
  max-width: 900px;
  margin: 24px 0 30px;
  font-size: clamp(62px, 7vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.contact-hero-intro {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 19px;
  line-height: 1.75;
}

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

.contact-hero-actions a,
.contact-proof-section > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.contact-primary-action {
  background: #d4a656;
  color: #050505;
}

.contact-secondary-action,
.contact-proof-section > a {
  border: 1px solid rgba(212, 166, 86, 0.34);
  color: #d4a656;
}

.contact-hero-actions a:hover,
.contact-proof-section > a:hover {
  transform: translateY(-3px);
}

.contact-secondary-action:hover,
.contact-proof-section > a:hover {
  background: rgba(212, 166, 86, 0.07);
  border-color: rgba(212, 166, 86, 0.6);
}

.contact-direct-card {
  padding: 38px;
  border: 1px solid rgba(212, 166, 86, 0.2);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(212, 166, 86, 0.12), transparent 45%),
    rgba(255, 255, 255, 0.018);
}

.contact-direct-card h2 {
  margin: 20px 0 28px;
  font-size: 34px;
  line-height: 1.05;
}

.contact-direct-card > a {
  display: block;
  width: fit-content;
  margin-top: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 650;
}

.contact-direct-card p {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.7;
}

.contact-brief-section,
.contact-options-section {
  padding-bottom: 140px;
}

.contact-section-heading {
  display: grid;
  grid-template-columns: 0.35fr 1.15fr 0.8fr;
  gap: 45px;
  align-items: start;
  padding: 30px 0 50px;
  border-top: 1px solid rgba(212, 166, 86, 0.2);
}

.contact-section-heading h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.contact-section-heading p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.75;
}

.project-brief-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 38px;
  border: 1px solid rgba(212, 166, 86, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.018);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: rgba(212, 166, 86, 0.85);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(212, 166, 86, 0.16);
  border-radius: 15px;
  outline: none;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  font: inherit;
  font-size: 15px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.form-field input,
.form-field select {
  min-height: 54px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 145px;
  padding: 16px;
  resize: vertical;
  line-height: 1.6;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(212, 166, 86, 0.62);
  background: rgba(212, 166, 86, 0.035);
}

.form-field select option {
  background: #111;
  color: #fff;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 12px;
}

.form-submit-row p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  line-height: 1.6;
}

.form-submit-row button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: #d4a656;
  color: #050505;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.form-submit-row button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(212, 166, 86, 0.2);
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-options-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  border: 1px solid rgba(212, 166, 86, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.015);
}

.contact-options-grid h3 {
  margin: 20px 0 16px;
  font-size: 28px;
  line-height: 1.08;
}

.contact-options-grid p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.7;
}

.contact-options-grid a {
  margin-top: auto;
  padding-top: 25px;
  color: #d4a656;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-proof-section {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 55px;
  margin-bottom: 140px;
  padding: 55px;
  border: 1px solid rgba(212, 166, 86, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(212, 166, 86, 0.08), transparent 50%),
    rgba(255, 255, 255, 0.015);
}

.contact-proof-section h2 {
  max-width: 760px;
  margin: 20px 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
}

.contact-proof-section p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width: 1250px) {
  .contact-hero-new {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
  }

  .contact-section-heading {
    grid-template-columns: 0.3fr 1fr;
  }

  .contact-section-heading p {
    grid-column: 2;
  }
}

@media (max-width: 850px) {
  .contact-hero-new {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 150px 0 90px;
  }

  .contact-direct-card {
    max-width: 560px;
  }

  .contact-options-grid {
    grid-template-columns: 1fr;
  }

  .contact-options-grid article {
    min-height: 240px;
  }

  .contact-proof-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .contact-hero-new,
  .contact-brief-section,
  .contact-options-section,
  .contact-proof-section {
    width: 88%;
  }

  .contact-hero-new {
    gap: 38px;
    padding: 125px 0 70px;
  }

  .contact-hero-copy h1 {
    margin: 18px 0 22px;
    font-size: 38px;
    line-height: 1.02;
  }

  .contact-hero-intro {
    font-size: 14px;
    line-height: 1.55;
  }

  .contact-hero-actions {
    flex-direction: column;
    margin-top: 28px;
  }

  .contact-hero-actions a {
    width: 100%;
  }

  .contact-direct-card {
    padding: 26px;
  }

  .contact-direct-card h2 {
    font-size: 27px;
  }

  .contact-direct-card > a {
    font-size: 18px;
  }

  .contact-brief-section,
  .contact-options-section {
    padding-bottom: 85px;
  }

  .contact-section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0 30px;
  }

  .contact-section-heading p {
    grid-column: auto;
    font-size: 13px;
    line-height: 1.55;
  }

  .contact-section-heading h2 {
    font-size: 30px;
    line-height: 1.05;
  }

  .project-brief-form {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 22px;
    border-radius: 20px;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 14px;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit-row button {
    width: 100%;
  }

  .contact-options-grid article {
    min-height: 220px;
    padding: 25px;
  }

  .contact-options-grid h3 {
    font-size: 24px;
  }

  .contact-options-grid p {
    font-size: 13px;
    line-height: 1.55;
  }

  .contact-proof-section {
    gap: 28px;
    margin-bottom: 85px;
    padding: 28px;
    border-radius: 20px;
  }

  .contact-proof-section h2 {
    font-size: 30px;
  }

  .contact-proof-section p {
    font-size: 13px;
    line-height: 1.55;
  }

  .contact-proof-section > a {
    width: 100%;
    padding: 0 16px;
  }
}
