.contact-hero {
  background:
    linear-gradient(
      115deg,
      rgba(4, 4, 4, 0.98),
      rgba(15, 15, 15, 0.94)
    );
  color: var(--white);
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: stretch;
  width: min(calc(100% - 3rem), var(--max-width));
  min-height: 620px;
  margin: 0 auto;
}

.contact-hero-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding:
    clamp(5rem, 9vw, 9rem)
    clamp(2rem, 7vw, 7rem)
    clamp(5rem, 9vw, 9rem)
    0;
}

.contact-hero-content .section-label {
  color: var(--gold-light);
}

.contact-hero-content h1 {
  max-width: 850px;
}

.contact-hero-content > p:not(.section-label) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.75;
}

.contact-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.contact-hero-details {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-left: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.035);
}

.contact-detail-label {
  margin: 1.5rem 0 0.5rem;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-detail-label:first-child {
  margin-top: 0;
}

.contact-hero-details p:not(.contact-detail-label),
.contact-hero-details address {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.75;
}

.contact-options-section,
.intake-section,
.office-section {
  padding:
    clamp(5rem, 9vw, 9rem)
    max(1.5rem, calc((100% - var(--max-width)) / 2));
}

.contact-options-section {
  background: var(--cream);
}

.contact-options-heading {
  max-width: 950px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.contact-option {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  min-height: 360px;
  padding: 2.5rem 2rem;
}

.contact-option + .contact-option {
  border-left: 1px solid var(--border-light);
}

.contact-option-number {
  margin-bottom: 2.5rem;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.contact-option h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
}

.contact-option p {
  margin: 0 0 2rem;
  color: var(--muted);
}

.contact-option a {
  margin-top: auto;
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-option a:hover,
.contact-option a:focus-visible {
  color: var(--gold-dark);
}

.intake-section {
  background: var(--cream-light);
}

.intake-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.intake-introduction {
  position: sticky;
  top: 130px;
}

.intake-introduction h2 {
  max-width: 620px;
}

.intake-lead {
  max-width: 620px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.55;
}

.intake-notice {
  margin-top: 2.5rem;
  padding: 1.75rem;
  border-left: 3px solid var(--gold-dark);
  background: var(--cream);
}

.intake-notice h3 {
  margin-bottom: 1rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intake-notice ul {
  margin: 0;
  padding-left: 1.2rem;
}

.intake-notice li {
  color: var(--muted);
  font-size: 0.9rem;
}

.intake-notice li + li {
  margin-top: 0.75rem;
}

.intake-form-panel {
  border: 1px solid var(--border-light);
  background: var(--white);
}

.intake-form {
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.intake-form > fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.intake-form > fieldset + fieldset {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-light);
}

.intake-form > fieldset > legend {
  width: 100%;
  margin-bottom: 1.75rem;
  color: var(--black);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  line-height: 1.1;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

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

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

.form-field label,
.nested-fieldset > legend {
  margin-bottom: 0.55rem;
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-field label span,
.nested-fieldset > legend span {
  color: #8d281f;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #bcb5a8;
  border-radius: 0;
  background: var(--cream-light);
  color: var(--black);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.form-field input,
.form-field select {
  min-height: 54px;
  padding: 0.75rem 0.9rem;
}

.form-field textarea {
  min-height: 190px;
  padding: 0.9rem;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--gold-dark);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(146, 112, 46, 0.16);
  outline: none;
}

.form-field small {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.nested-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.choice-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 54px;
  margin: 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid #bcb5a8;
  background: var(--cream-light);
  cursor: pointer;
}

.choice-option:hover {
  border-color: var(--gold-dark);
}

.choice-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--gold-dark);
}

.choice-option span {
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
}

.acknowledgment {
  margin-top: 1.5rem;
  padding: 1.15rem;
  border: 1px solid var(--border-light);
  background: var(--cream-light);
}

.acknowledgment label {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  cursor: pointer;
}

.acknowledgment input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
  accent-color: var(--gold-dark);
}

.acknowledgment span {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.65;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin-top: 2rem;
  padding: 0.95rem 1.4rem;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.form-submit:hover,
.form-submit:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.form-response-note {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.form-response-note a {
  color: var(--black);
  font-weight: 800;
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.office-section {
  background: var(--cream);
}

.office-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.office-layout h2 {
  max-width: 620px;
}

.office-address {
  margin: 2rem 0 1rem;
  color: var(--black);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-style: normal;
  line-height: 1.5;
}

.office-layout > div:first-child > p:not(.section-label) {
  color: var(--muted);
}

.office-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.office-details h3 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
}

.office-details dl {
  margin: 0;
}

.office-details dl div {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-light);
}

.office-details dt {
  color: var(--black);
  font-weight: 700;
}

.office-details dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.office-details ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.office-details li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--muted);
}

.submission-success {
  display: flex;
  align-items: center;
  min-height: 680px;
  padding:
    clamp(5rem, 9vw, 9rem)
    max(1.5rem, calc((100% - var(--max-width)) / 2));
  background:
    radial-gradient(
      circle at 75% 40%,
      rgba(199, 161, 86, 0.12),
      transparent 30%
    ),
    var(--black);
  color: var(--white);
}

.submission-success-inner {
  max-width: 900px;
}

.submission-success .section-label {
  color: var(--gold-light);
}

.submission-success h1 {
  margin-bottom: 2rem;
}

.submission-success p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.submission-success-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

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

  .contact-option:nth-child(3) {
    border-left: 0;
  }

  .contact-option:nth-child(n + 3) {
    border-top: 1px solid var(--border-light);
  }

  .intake-layout {
    grid-template-columns: 1fr;
  }

  .intake-introduction {
    position: static;
  }

  .office-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 850px) {
  .contact-hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-hero-content {
    padding-right: 0;
  }

  .contact-hero-details {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-dark);
    border-left: 0;
    background: transparent;
  }

  .office-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .contact-hero-inner {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .contact-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .contact-hero-actions .text-link {
    align-self: flex-start;
  }

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

  .contact-option {
    min-height: 300px;
  }

  .contact-option + .contact-option {
    border-top: 1px solid var(--border-light);
    border-left: 0;
  }

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

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

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .intake-form {
    padding: 1.25rem;
  }

  .office-details dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }

  .office-details dd {
    text-align: left;
  }

  .submission-success-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .submission-success-actions .button {
    width: 100%;
  }

  .submission-success-actions .text-link {
    align-self: flex-start;
  }
}
