/* ===== Contact Us ===== */

/* Hero */
.ct-hero { position: relative; overflow: hidden; padding: 80px 0; border-bottom: 1px solid var(--c-line); }
.ct-hero__inner { position: relative; }
.ct-hero__ghost { left: 80px; top: -68px; font-size: 200px; line-height: var(--lh-osw); color: #fff; }
.ct-hero__left { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 24px; }
.ct-hero__title { display: flex; flex-direction: column; gap: 4px; }
.ct-hero__title .display__line { font-size: 80px; line-height: 76px; color: var(--c-paper); }
.ct-hero .display__line--accent-inline { color: var(--c-orange); }
.ct-hero__text { font: 400 16px/26px var(--f-plex); color: var(--c-gray); }
.ct-hero__ctas { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.ct-hero__note { font: 400 13px/var(--lh-plex) var(--f-plex); color: var(--c-gray); }

/* Contact area */
.ct-body { background: var(--c-paper); color: var(--c-ink); padding: 80px 0; }
.ct-body__inner { display: flex; align-items: flex-start; gap: 64px; }

/* Sidebar */
.ct-side { width: 400px; flex: none; display: flex; flex-direction: column; gap: 40px; padding-right: 40px; border-right: 1px solid var(--c-ink); }
.ct-side__head { display: flex; flex-direction: column; gap: 16px; }
.ct-side__title { font: 700 36px/40px var(--f-osw); color: var(--c-ink); }
.ct-guide { display: flex; flex-direction: column; gap: 24px; }
.ct-guide__row { display: flex; align-items: flex-start; gap: 16px; }
.ct-guide__num { width: 24px; flex: none; font: 700 18px/var(--lh-osw) var(--f-osw); color: var(--c-orange); }
.ct-guide__text { flex: 1; min-width: 0; font: 400 15px/22px var(--f-plex); color: var(--c-gray-2); }
.ct-side__link { align-self: flex-start; display: inline-flex; align-items: center; font: 700 15px/var(--lh-osw) var(--f-osw); letter-spacing: 1px; color: var(--c-ink); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; transition: color var(--t-fast); }
.ct-side__link .arrow { text-decoration: underline; text-underline-offset: 3px; }
.ct-side__link:hover { color: var(--c-orange); }
.ct-side__link:hover .arrow { transform: translateX(4px); }
.ct-side__rule { height: 1px; margin: 0; background: var(--c-ink); }
.ct-side__rule--soft { background: #4d4d4d; }
.ct-support { display: flex; flex-direction: column; gap: 12px; }
.ct-support__label, .ct-email__label { font: 700 13px/var(--lh-osw) var(--f-osw); letter-spacing: 1px; color: var(--c-orange); }
.ct-support__line { align-self: flex-start; font: 700 14px/20px var(--f-plex); color: var(--c-ink); transition: color var(--t-fast); }
.ct-support__line:hover { color: var(--c-orange); }
.ct-support__text { font: 400 13px/18px var(--f-plex); color: var(--c-gray-2); }
.ct-email { display: flex; flex-direction: column; gap: 8px; }
.ct-email__value { align-self: flex-start; font: 400 13px/var(--lh-plex) var(--f-plex); color: var(--c-gray-2); transition: color var(--t-fast); }
.ct-email__value:hover { color: var(--c-orange); }

/* Form panel */
.ct-form { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 36px; scroll-margin-top: 88px; }
.ct-form__head { display: flex; flex-direction: column; gap: 12px; }
.ct-form__title { font: 700 36px/40px var(--f-osw); color: var(--c-ink); }
.ct-form__text { font: 400 15px/22px var(--f-plex); color: var(--c-gray-2); }
.ct-form__form { gap: 36px; }
.ct-form__form[hidden] { display: none; }
.ct-form__fields { display: flex; flex-direction: column; gap: 24px; }
.ct-form__row { display: flex; gap: 16px; }
.ct-form__row > .field { flex: 1; min-width: 0; }
.ct-form .field { gap: 8px; }
.ct-form .field__select { cursor: pointer; }
.ct-form__footer { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.ct-form__note { font: 400 13px/var(--lh-plex) var(--f-plex); color: var(--c-gray-2); }
.ct-form__submit { height: 52px; padding: 0 32px; font-size: 15px; letter-spacing: 1.5px; color: #000; }

/* Success state */
.ct-success { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; padding: 40px; background: #fff; box-shadow: inset 0 0 0 2px var(--c-ink); animation: ct-success-in .5s var(--ease-out) both; }
.ct-success[hidden] { display: none; }
@keyframes ct-success-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.ct-success__icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border: 2px solid var(--c-orange); color: var(--c-orange); margin-bottom: 8px; }
.ct-success__title { font: 700 28px/var(--lh-osw) var(--f-osw); letter-spacing: 1px; color: var(--c-ink); }
.ct-success__text { font: 400 15px/22px var(--f-plex); color: var(--c-gray-2); max-width: 560px; }
.ct-success__again { margin-top: 8px; }

@media (max-width: 1099px) {
  .ct-hero { padding: 64px 0; }
  .ct-hero__ghost { font-size: 140px; top: -40px; left: 60px; }
  .ct-hero__title .display__line { font-size: 64px; line-height: 60px; }
  .ct-body { padding: 64px 0; }
  .ct-body__inner { flex-direction: column; gap: 48px; }
  .ct-side { width: auto; padding-right: 0; border-right: 0; padding-bottom: 48px; border-bottom: 1px solid var(--c-ink); }
  .ct-form { width: 100%; }
}

@media (max-width: 767px) {
  .ct-hero { padding: 56px 0 48px; }
  .ct-hero__ghost { display: none; }
  .ct-hero__left { gap: 24px; }
  .ct-hero__title { gap: 2px; }
  .ct-hero__title .display__line { font-size: 44px; line-height: 44px; }
  .ct-hero__text { font-size: 15px; line-height: 24px; }
  .ct-hero__link { font-size: 14px; }
  .ct-hero__note { font-size: 12px; line-height: 18px; }

  .ct-body { padding: 0; }
  .ct-body__inner { gap: 0; }

  .ct-side { padding: 48px 0; border-bottom: 0; gap: 32px; }
  .ct-side__head { gap: 12px; }
  .ct-side__eyebrow { font-size: 13px; }
  .ct-side__title { font-size: 28px; line-height: 32px; }
  .ct-guide { gap: 0; }
  .ct-guide__row { align-items: center; padding: 16px 0 15px; border-bottom: 1px solid var(--c-ink); }
  .ct-side__link { font-size: 14px; color: var(--c-orange); text-decoration: none; }
  .ct-side__link .arrow { text-decoration: none; }
  .ct-side__link:hover { color: var(--c-orange-hover); }
  .ct-side__rule--soft { display: none; }
  .ct-support__label, .ct-email__label { font-size: 12px; letter-spacing: 1.5px; }
  .ct-support__line { font-size: 13px; line-height: var(--lh-plex); }
  .ct-support__text { font-size: 12px; line-height: 18px; }
  .ct-email__value { font-size: 12px; }

  .ct-form { padding: 48px 0; gap: 32px; scroll-margin-top: 56px; }
  .ct-form__eyebrow { font-size: 13px; }
  .ct-form__title { font-size: 28px; line-height: 32px; color: #000; }
  .ct-form__text { font-size: 14px; line-height: 22px; color: var(--c-gray); }
  .ct-form__form { gap: 32px; }
  .ct-form__fields { gap: 20px; }
  .ct-form__row { flex-direction: column; gap: 20px; }
  .ct-form__footer { flex-direction: column; align-items: stretch; gap: 16px; }
  .ct-form__note { font-size: 12px; }
  .ct-form__submit { width: 100%; padding: 0 24px; font-size: 14px; }

  .ct-success { padding: 24px; box-shadow: inset 0 0 0 1px var(--c-line); }
  .ct-success__icon { width: 40px; height: 40px; margin-bottom: 0; }
  .ct-success__title { font-size: 24px; }
  .ct-success__text { font-size: 14px; line-height: 22px; }
}
