/* Contact / service enquiry pages. Uses the shared Chauhans palette and type. */
.contact-page .site-header {
  background: rgba(27, 21, 20, .98);
  border-bottom-color: var(--line);
}

.contact-hero {
  position: relative;
  height: 330px;
  max-height: 400px;
  display: grid;
  grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #201714;
}

.contact-hero-image {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(.76) contrast(1.04);
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg,
    transparent 0%,
    transparent 46%,
    rgba(32, 23, 20, .24) 56%,
    rgba(32, 23, 20, .84) 68%,
    #201714 78%,
    #201714 100%);
}

.contact-hero::after {
  content: '';
  position: absolute;
  z-index: 2;
  right: clamp(26px, 4vw, 70px);
  bottom: 36px;
  width: 64px;
  height: 1px;
  background: var(--pink);
  box-shadow: 18px 0 0 rgba(239, 163, 181, .28);
}

.contact-hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.contact-hero h1 {
  width: 44%;
  max-width: 760px;
  margin: 0 0 0 auto;
  padding: 0 clamp(34px, 4.2vw, 80px) 0 clamp(32px, 3vw, 58px);
  color: #fff6ef;
  font-size: clamp(2.55rem, 3.2vw, 3.65rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.contact-hero h1 em {
  display: block;
  margin-top: .14em;
  color: var(--pink);
  font-size: .86em;
  font-weight: 400;
  line-height: 1.08;
}

.contact-main-section {
  padding: 82px 0 94px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .74fr) minmax(0, 1.26fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.contact-details {
  position: sticky;
  top: 118px;
}

.contact-details h2 {
  max-width: 510px;
  margin-bottom: 20px;
}

.contact-details > p:not(.eyebrow) {
  max-width: 520px;
  line-height: 1.75;
}

.contact-detail-list {
  display: grid;
  gap: 12px;
  margin: 34px 0;
}

.contact-detail-card {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #2b201d, #211917);
  color: inherit;
  text-decoration: none;
}

.contact-detail-card[href]:hover {
  border-color: rgba(239, 163, 181, .65);
  transform: translateY(-1px);
}

.contact-detail-label {
  color: var(--copper);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-detail-card strong {
  color: #fff6ef;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.12rem;
  font-weight: 400;
}

.contact-detail-card > span:last-child {
  color: #bfaea5;
  font-size: .84rem;
  line-height: 1.5;
}

.contact-process {
  padding-top: 6px;
}

.contact-process h3 {
  color: #f0d1b8;
  font-size: 1.05rem;
}

.contact-process ol {
  margin: 14px 0 0;
  padding-left: 1.25rem;
  color: #cdbcb2;
}

.contact-process li {
  margin: 8px 0;
  padding-left: 5px;
  line-height: 1.55;
}

.contact-form-panel {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #2b201d, #211917 70%);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .12);
}

.contact-form-panel > h2 {
  margin-bottom: 12px;
}

.contact-form-intro {
  max-width: 720px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-service-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(239, 163, 181, .38);
  color: #ffc1cf;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-alert {
  display: grid;
  gap: 4px;
  margin: 0 0 24px;
  padding: 15px 17px;
  border-left: 3px solid var(--copper);
  background: #1b1514;
  color: #eaded6;
  font-size: .9rem;
  line-height: 1.6;
}

.contact-alert strong {
  color: #fff6ef;
}

.contact-alert-success {
  border-color: #d8a578;
}

.contact-alert-error {
  border-color: var(--pink);
}

.contact-alert a {
  color: #ffc0cf;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
}

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

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

.contact-field label {
  display: block;
  margin-bottom: 8px;
  color: #f2e4dc;
  font-size: .86rem;
  font-weight: 600;
}

.contact-field label span[aria-hidden] {
  color: var(--pink);
}

.contact-message {
  min-height: 176px;
  resize: vertical;
}

.contact-field-help {
  display: block;
  margin-top: 7px;
  color: #a9958a;
  font-size: .75rem;
  line-height: 1.45;
}

.contact-field-error {
  display: block;
  margin-top: 7px;
  color: #ffc1cf;
  font-size: .78rem;
  line-height: 1.45;
}

.contact-form .is-invalid {
  border-color: var(--pink);
}

.contact-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  margin: 24px 0 0;
  cursor: pointer;
}

.contact-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--pink);
}

.contact-check span {
  color: #cdbcb2;
  font-size: .82rem;
  line-height: 1.55;
}

.contact-check a {
  color: #f0d1b8;
}

.contact-check strong {
  color: var(--pink);
}

.contact-check-error {
  margin-left: 29px;
}

.contact-captcha-wrap {
  display: grid;
  gap: 7px;
  margin-top: 24px;
  overflow-x: auto;
}

.contact-submit-row {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 26px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.contact-submit-row .button {
  flex: 0 0 auto;
  font-family: Georgia, 'Times New Roman', serif;
}

.contact-submit-row p {
  max-width: 360px;
  margin: 0;
  color: #aa978d;
  font-size: .76rem;
  line-height: 1.5;
}

.contact-submit-row p strong {
  color: #d6c3b9;
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Verification page */
.verify-main {
  min-height: 58vh;
  display: flex;
  align-items: center;
  padding: 92px 0;
}

.verify-card {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #2b201d, #211917);
  text-align: center;
}

.verify-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 24px;
  border: 1px solid rgba(239, 163, 181, .5);
  border-radius: 50%;
  color: #ffc0cf;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
}

.verify-card-success .verify-mark {
  border-color: rgba(216, 165, 120, .7);
  color: #f0d1b8;
}

.verify-card h1 {
  margin: 0 auto 16px;
  color: #fff6ef;
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  font-weight: 400;
  line-height: 1.08;
}

.verify-card > p:not(.eyebrow):not(.verify-service) {
  max-width: 630px;
  margin: 0 auto;
  line-height: 1.75;
}

.verify-service {
  margin: -2px 0 16px;
  color: var(--pink);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.verify-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.verify-secondary {
  color: #f0d1b8;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-details {
    position: static;
  }

  .contact-detail-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .contact-hero {
    height: 315px;
    grid-template-columns: 52% 48%;
  }

  .contact-hero::before {
    background: linear-gradient(90deg,
      transparent 0%,
      transparent 36%,
      rgba(32, 23, 20, .52) 50%,
      #201714 66%,
      #201714 100%);
  }

  .contact-hero h1 {
    width: 48%;
    padding: 0 28px 0 30px;
    font-size: clamp(2.15rem, 5.3vw, 3.15rem);
  }
}

@media (max-width: 760px) {
  .contact-main-section {
    padding: 64px 0 74px;
  }

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

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

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

  .contact-submit-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .contact-hero-image {
    position: absolute;
    inset: 0;
  }

  .contact-hero::before {
    background:
      linear-gradient(180deg, rgba(25, 17, 14, .14) 0%, rgba(25, 17, 14, .5) 48%, #201714 100%),
      linear-gradient(90deg, rgba(25, 17, 14, .18), rgba(25, 17, 14, .05));
  }

  .contact-hero::after {
    left: 24px;
    right: auto;
    bottom: 22px;
    width: 46px;
  }

  .contact-hero-inner {
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 24px 48px;
  }

  .contact-hero h1 {
    width: 100%;
    max-width: 440px;
    margin: 0;
    padding: 0;
    font-size: clamp(2.25rem, 10vw, 3.05rem);
    text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
  }

  .contact-hero h1 em {
    color: #ffc0cf;
  }

  .contact-form-panel {
    padding: 24px 18px;
  }

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