.contact-page {
  --co-ink: #1a1a1a;
  --co-body: #444;
  --co-muted: #6e6e6e;
  --co-line: rgba(0, 0, 0, 0.08);
  --co-beige: #faf8f3;
  --co-beige-deep: #f3efe6;
  --co-accent: var(--color-accent, #d3c6a6);
  --co-radius: var(--radius-m, 12px);
  --co-ease: cubic-bezier(.2, .8, .2, 1);
  color: var(--co-body);
  background: #fff;
}

.contact-hero {
  background: var(--co-beige);
  border-bottom: 1px solid var(--co-line);
}
.contact-hero__inner {
  width: min(92%, 720px);
  margin: 0 auto;
  padding-block: calc(var(--s-header-h, 56px) + clamp(40px, 8vh, 72px)) clamp(32px, 6vh, 56px);
  text-align: center;
}
.contact-hero__eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--co-muted);
  margin-bottom: clamp(18px, 3vw, 24px);
  padding-left: .42em;
}
.contact-hero__title {
  font-size: clamp(24px, 5.5vw, 40px);
  line-height: 1.4;
  letter-spacing: .1em;
  padding-left: .1em;
  color: var(--co-ink);
}
.contact-hero__title::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: var(--co-accent);
  margin: clamp(20px, 3.5vw, 28px) auto;
}
.contact-hero__lead {
  max-width: 38em;
  margin: 0 auto;
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 2;
  color: var(--co-muted);
  font-weight: 300;
}

.contact-phone-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(28px, 5vw, 36px);
  padding: 16px 18px;
  background: var(--co-beige);
  border: 1px solid var(--co-line);
  border-radius: var(--co-radius);
}
.contact-phone-bar__body {
  flex: 1;
  min-width: 200px;
}
.contact-phone-bar__label {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--co-muted);
  margin: 0 0 6px;
}
.contact-phone-bar__tel {
  display: block;
  font-size: clamp(20px, 4vw, 26px);
  letter-spacing: .06em;
  line-height: 1.3;
  color: var(--co-ink);
  text-decoration: none;
  margin-bottom: 4px;
}
.contact-phone-bar__tel:hover { opacity: .65; }
.contact-phone-bar__note {
  font-size: 12px;
  line-height: 1.6;
  color: var(--co-muted);
  margin: 0;
}
.contact-phone-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 120px;
  min-height: 48px;
  padding: 12px 20px;
  font-size: 13px;
  letter-spacing: .1em;
  color: #fff;
  background: #111;
  border: 1px solid #111;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s var(--co-ease), color .2s var(--co-ease);
}
.contact-phone-bar__btn:hover {
  background: transparent;
  color: #111;
}
@media (max-width: 479px) {
  .contact-phone-bar__btn {
    width: 100%;
    min-height: 52px;
  }
}

.contact-form-section {
  padding-block: clamp(40px, 8vw, 64px) clamp(48px, 9vw, 72px);
  background: #fff;
}
.contact-form-section__inner {
  width: min(92%, 640px);
  margin: 0 auto;
}
.contact-form-section__title {
  font-size: clamp(20px, 3.5vw, 26px);
  line-height: 1.5;
  letter-spacing: .06em;
  color: var(--co-ink);
  text-align: center;
  margin: 0 0 12px;
}
.contact-form-section__lead {
  font-size: 13px;
  line-height: 2;
  color: var(--co-muted);
  text-align: center;
  margin: 0 0 clamp(32px, 5vw, 44px);
}

.contact-steps {
  padding-block: clamp(40px, 8vw, 72px);
  background: var(--co-beige-deep);
  border-block: 1px solid var(--co-line);
}
.contact-steps__inner {
  width: min(92%, 720px);
  margin: 0 auto;
}
.contact-steps__title {
  font-size: clamp(18px, 3.2vw, 22px);
  line-height: 1.5;
  letter-spacing: .08em;
  color: var(--co-ink);
  text-align: center;
  margin: 0 0 clamp(28px, 5vw, 40px);
}
.contact-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) {
  .contact-steps__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.contact-steps__item {
  background: #fff;
  border: 1px solid var(--co-line);
  border-radius: var(--co-radius);
  padding: 20px 18px;
}
.contact-steps__num {
  display: block;
  font-size: 10px;
  letter-spacing: .24em;
  color: var(--co-muted);
  margin-bottom: 10px;
}
.contact-steps__text {
  font-size: 13px;
  line-height: 1.85;
  color: var(--co-body);
  margin: 0;
}
.contact-steps__foot {
  margin-top: clamp(24px, 4vw, 32px);
  font-size: 13px;
  line-height: 2;
  color: var(--co-muted);
  text-align: center;
}
.contact-steps__foot a {
  color: var(--co-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-steps__foot a:hover { opacity: .65; }

.co-form-hidden {
  display: none;
}

.co-form-group {
  margin-bottom: 28px;
}
.co-form-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--co-ink);
  margin-bottom: 10px;
}
.co-form-label.is-required::after {
  content: " *";
  color: var(--co-accent);
}
.co-form-hint {
  display: block;
  font-size: 12px;
  line-height: 1.8;
  color: var(--co-muted);
  margin: -4px 0 10px;
}
.co-form-input,
.co-form-textarea {
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5;
  color: var(--co-ink);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 6px;
  padding: 12px 14px;
  transition: border-color 0.2s ease;
}
.co-form-input:focus,
.co-form-textarea:focus {
  outline: none;
  border-color: var(--co-ink);
}
.co-form-textarea {
  min-height: 140px;
  resize: vertical;
}
.co-form-error {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.6;
  color: #b42828;
}
.co-form-alert {
  margin: 0 0 24px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--co-ink);
  background: #fff5f5;
  border: 1px solid rgba(180, 40, 40, 0.25);
  border-radius: 6px;
}
.co-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 280px);
  margin: 48px auto 0;
  padding: 16px 24px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-align: center;
  color: #fff;
  background: #111;
  border: 1px solid #111;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.co-form-submit:hover {
  background: transparent;
  color: #111;
}

.co-form-type {
  border: none;
  padding: 0;
  min-width: 0;
}
.co-form-type legend.co-form-label {
  display: block;
  width: 100%;
  float: left;
  padding: 0;
  margin-bottom: 10px;
}
.co-form-type__options {
  clear: both;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 480px) {
  .co-form-type__options {
    grid-template-columns: 1fr;
  }
}
.co-form-type__option {
  position: relative;
  display: block;
  cursor: pointer;
}
.co-form-type__option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.co-form-type__option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 16px;
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-align: center;
  color: var(--co-body);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.co-form-type__option:hover span {
  border-color: #111;
}
.co-form-type__option input:checked + span {
  color: #fff;
  background: #111;
  border-color: #111;
}
.co-form-type__option input:focus-visible + span {
  outline: 2px solid var(--co-accent, #d3c6a6);
  outline-offset: 2px;
}

.contact-info {
  padding-block: clamp(48px, 9vw, 80px);
  background: var(--co-beige);
  border-top: 1px solid var(--co-line);
}
.contact-info__inner {
  width: min(92%, 640px);
  margin: 0 auto;
}
.contact-info__privacy {
  font-size: 13px;
  line-height: 2;
  color: var(--co-muted);
  margin: 0 0 clamp(36px, 6vw, 48px);
}
.contact-info__privacy a {
  color: var(--co-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-info__privacy a:hover { opacity: .65; }
.contact-info__title {
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.5;
  letter-spacing: .06em;
  color: var(--co-ink);
  margin: 0 0 20px;
}
.contact-info__dl {
  margin: 0;
}
.contact-info__row {
  display: grid;
  gap: 6px;
  padding-block: 16px;
  border-bottom: 1px solid var(--co-line);
}
.contact-info__row:first-child { border-top: 1px solid var(--co-line); }
@media (min-width: 640px) {
  .contact-info__row {
    grid-template-columns: 9em 1fr;
    gap: 16px;
    align-items: start;
  }
}
.contact-info__term {
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--co-ink);
  margin: 0;
}
.contact-info__desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--co-body);
  margin: 0;
}

.co-complete {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 16vh, 140px) 5%;
  background: var(--co-beige);
  text-align: center;
}
.co-complete__inner {
  max-width: 520px;
}
.co-complete__title {
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.5;
  color: var(--co-ink);
  margin: 0 0 16px;
}
.co-complete__lead {
  font-size: 14px;
  line-height: 2;
  color: var(--co-muted);
  margin: 0 0 36px;
}
.co-complete__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.co-complete__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 52px;
  padding: 14px 24px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #fff;
  background: #111;
  border: 1px solid #111;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.co-complete__btn.is-sub {
  background: transparent;
  color: #111;
}
.co-complete__btn:hover {
  background: transparent;
  color: #111;
}
.co-complete__btn.is-sub:hover {
  background: #111;
  color: #fff;
}

.contact-preview-banner {
  position: sticky;
  top: 0;
  z-index: 9999;
  padding: 10px 16px;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  background: #333;
}

.co-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--co-ease), transform 0.7s var(--co-ease);
}
.co-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .co-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
