/* ============================================================
   CONTACT PAGE
   Aligned with shop page aesthetic — clean, editorial, minimal.
   Rules: no hover effects · no gradients · no box shadows.
   ============================================================ */

/* ─── PAGE HEADER ────────────────────────────────────────── */
.cn-page-header {
  background   : var(--bg-section);
  overflow     : hidden;
  padding      : 0;
}

.cn-ph-inner {
  display              : grid;
  grid-template-columns: 1fr auto;
  align-items          : flex-end;
  padding              : 72px 0 60px;
  position             : relative;
  gap                  : 32px;
}

.cn-ph-inner > * { position: relative; z-index: 1; }

.cn-ph-left { min-width: 0; }

.cn-ph-crumb {
  display       : flex;
  align-items   : center;
  gap           : 8px;
  font-size     : 0.7rem;
  font-weight   : 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color         : var(--text-muted);
  margin-bottom : 20px;
}

.cn-ph-crumb a { color: var(--text-muted); }
.cn-ph-sep     { color: var(--text-faint); }

.cn-ph-title {
  font-family   : var(--font-serif);
  font-size     : clamp(2.8rem, 6vw, 5.2rem);
  font-weight   : 400;
  line-height   : 1.0;
  letter-spacing: -0.02em;
  color         : var(--text-dark);
  margin        : 0;
}

.cn-ph-gold-line {
  width     : 44px;
  height    : 2px;
  background: var(--gold);
  margin    : 18px 0;
}

.cn-ph-desc {
  max-width  : 52ch;
  font-size  : 0.92rem;
  line-height: 1.75;
  color      : var(--text-muted);
  margin     : 0;
}

.cn-ph-stats {
  display       : flex;
  gap           : 28px;
  align-items   : flex-end;
  padding-bottom: 6px;
  flex-shrink   : 0;
}

.cn-ph-stat { text-align: right; }

.cn-ph-stat-num {
  font-family: var(--font-serif);
  font-size  : 2rem;
  font-weight: 600;
  color      : var(--text-dark);
  line-height: 1;
  display    : block;
}

.cn-ph-stat-lbl {
  font-size     : 0.58rem;
  font-weight   : 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color         : var(--text-muted);
  margin-top    : 5px;
  display       : block;
}

.cn-ph-deco {
  position      : absolute;
  right         : 0;
  bottom        : -8px;
  font-family   : var(--font-serif);
  font-size     : clamp(5rem, 13vw, 10.5rem);
  font-weight   : 700;
  color         : rgba(8, 8, 8, 0.055);
  line-height   : 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select   : none;
  z-index       : 0;
}

/* ─── EDITORIAL BAR ──────────────────────────────────────── */
.cn-editorial-bar { background: var(--black); padding: 11px 0; }

.cn-editorial-inner {
  display        : flex;
  align-items    : center;
  gap            : 22px;
  white-space    : nowrap;
  overflow-x     : auto;
  scrollbar-width: none;
  font-size      : 0.58rem;
  font-weight    : 600;
  letter-spacing : 0.22em;
  text-transform : uppercase;
  color          : rgba(255, 255, 255, 0.45);
}

.cn-editorial-inner::-webkit-scrollbar { display: none; }
.cn-dot { color: var(--gold); }

/* ─── BODY & SHELL ───────────────────────────────────────── */
.cn-body {
  background: var(--white);
  padding   : clamp(52px, 7vw, 88px) 0 clamp(72px, 9vw, 108px);
}

.cn-shell {
  display              : grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap                  : 24px;
  align-items          : start;
}

/* ─── INFO PANEL ─────────────────────────────────────────── */
.cn-info {
  background: var(--bg-section);
  border    : 1px solid var(--border-lt);
  padding   : clamp(32px, 4vw, 52px) clamp(28px, 3.5vw, 48px);
}

.cn-eyebrow {
  font-size     : 0.65rem;
  font-weight   : 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color         : var(--gold-dark);
  margin        : 0 0 16px;
}

.cn-info-heading {
  font-family   : var(--font-serif);
  font-size     : clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight   : 400;
  line-height   : 1.12;
  letter-spacing: -0.02em;
  color         : var(--text-dark);
  margin        : 0;
}

.cn-gold-line {
  width     : 44px;
  height    : 2px;
  background: var(--gold);
  margin    : 18px 0;
}

.cn-info-lead {
  font-size  : 0.9rem;
  line-height: 1.8;
  color      : var(--text-muted);
  margin     : 0;
}

/* ─── HIGHLIGHTS ─────────────────────────────────────────── */
.cn-highlights {
  display       : flex;
  flex-direction: column;
  gap           : 1px;
  margin-top    : 32px;
  border        : 1px solid var(--border-lt);
  background    : var(--border-lt);
}

.cn-highlight {
  display    : flex;
  align-items: center;
  gap        : 18px;
  padding    : 20px 22px;
  background : var(--bg-section);
}

.cn-hl-icon {
  width          : 44px;
  height         : 44px;
  flex-shrink    : 0;
  display        : flex;
  align-items    : center;
  justify-content: center;
  border         : 1px solid var(--border);
  background     : var(--white);
  color          : var(--gold-dark);
  font-size      : 1.15rem;
}

.cn-highlight h3 {
  font-family   : var(--font-sans);
  font-size     : 0.7rem;
  font-weight   : 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color         : var(--text-dark);
  margin        : 0 0 5px;
}

.cn-highlight p {
  font-size: 0.87rem;
  color    : var(--text-muted);
  margin   : 0;
}

.cn-highlight a {
  color          : var(--text-muted);
  text-decoration: none;
}

/* ─── TIPS ───────────────────────────────────────────────── */
.cn-tips {
  margin-top: 24px;
  padding   : 22px 24px;
  border    : 1px solid var(--border-lt);
  background: var(--white);
}

.cn-tips h3 {
  font-family   : var(--font-sans);
  font-size     : 0.65rem;
  font-weight   : 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color         : var(--text-dark);
  margin        : 0 0 14px;
}

.cn-tips ul {
  list-style    : none;
  padding       : 0;
  display       : flex;
  flex-direction: column;
  gap           : 10px;
}

.cn-tips li {
  font-size   : 0.85rem;
  color       : var(--text-muted);
  line-height : 1.65;
  padding-left: 14px;
  position    : relative;
}

.cn-tips li::before {
  content   : '';
  position  : absolute;
  left      : 0;
  top       : 10px;
  width     : 5px;
  height    : 1px;
  background: var(--gold);
}

/* ─── FORM PANEL ─────────────────────────────────────────── */
.cn-form-panel {
  background: var(--white);
  border    : 1px solid var(--border-lt);
  padding   : clamp(32px, 4vw, 52px) clamp(28px, 3.5vw, 48px);
}

.cn-form-kicker {
  font-size     : 0.65rem;
  font-weight   : 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color         : var(--gold-dark);
  margin        : 0 0 12px;
}

.cn-form-title {
  font-family   : var(--font-serif);
  font-size     : clamp(1.6rem, 3vw, 2.4rem);
  font-weight   : 400;
  letter-spacing: -0.02em;
  color         : var(--text-dark);
  margin        : 0;
}

.cn-form-note {
  font-size : 0.82rem;
  color     : var(--text-muted);
  margin    : 10px 0 0;
}

/* ─── FORM FEEDBACK ──────────────────────────────────────── */
.contact-form-feedback {
  margin-top : 22px;
  padding    : 14px 18px;
  border     : 1px solid transparent;
  font-size  : 0.87rem;
  line-height: 1.6;
}

.contact-form-feedback.is-success {
  color       : #116149;
  background  : #edf9f4;
  border-color: #bfe7d7;
}

.contact-form-feedback.is-error {
  color       : #8f2238;
  background  : #fff1f3;
  border-color: #f4c5d0;
}

/* ─── FORM LAYOUT ────────────────────────────────────────── */
.contact-form { margin-top: 28px; }

.contact-grid { display: grid; gap: 20px; }

.contact-grid + .contact-grid,
.contact-grid + .contact-field,
.contact-field + .contact-actions { margin-top: 20px; }

.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.contact-field {
  display       : flex;
  flex-direction: column;
  gap           : 7px;
}

.contact-field label {
  font-size     : 0.68rem;
  font-weight   : 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color         : var(--text-dark);
}

.contact-field input,
.contact-field textarea {
  width             : 100%;
  padding           : 13px 15px;
  border            : 1px solid var(--border);
  background        : var(--white);
  color             : var(--text-dark);
  font-size         : 0.9rem;
  font-family       : var(--font-sans);
  outline           : none;
  border-radius     : 0;
  appearance        : none;
  -webkit-appearance: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder { color: var(--text-faint); }

.contact-field textarea {
  min-height: 160px;
  resize    : vertical;
}

.contact-field input:focus,
.contact-field textarea:focus { border-color: var(--text-dark); }

.contact-field.is-invalid input,
.contact-field.is-invalid textarea { border-color: #c2185b; }

.contact-error {
  min-height: 16px;
  margin    : 0;
  font-size : 0.77rem;
  color     : #c2185b;
}

.contact-field-meta {
  display        : flex;
  align-items    : flex-start;
  justify-content: space-between;
  gap            : 12px;
}

.contact-field-meta span {
  font-size: 0.75rem;
  color    : var(--text-faint);
}

/* ─── SUBMIT BUTTON ──────────────────────────────────────── */
.contact-actions {
  display       : flex;
  flex-direction: column;
  gap           : 14px;
  margin-top    : 28px;
}

.contact-submit-btn {
  width          : 100%;
  min-height     : 52px;
  display        : inline-flex;
  align-items    : center;
  justify-content: center;
  gap            : 10px;
  border         : 1.5px solid var(--black);
  background     : var(--black);
  color          : var(--white);
  font-size      : 0.7rem;
  font-weight    : 600;
  letter-spacing : 0.2em;
  text-transform : uppercase;
  font-family    : var(--font-sans);
  cursor         : pointer;
}

.contact-submit-btn:disabled {
  opacity: 0.6;
  cursor : wait;
}

.contact-submit-spinner {
  width           : 15px;
  height          : 15px;
  border-radius   : 50%;
  border          : 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  display         : none;
  animation       : contact-spin 0.8s linear infinite;
}

.contact-submit-btn.is-loading .contact-submit-spinner { display: inline-block; }
.contact-submit-btn.is-loading .contact-submit-label   { opacity: 0.9; }

@keyframes contact-spin { to { transform: rotate(360deg); } }

.cn-form-disclaimer {
  font-size  : 0.78rem;
  color      : var(--text-faint);
  line-height: 1.6;
  margin     : 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .cn-shell {
    grid-template-columns: 1fr;
  }

  .cn-ph-inner {
    grid-template-columns: 1fr;
    padding              : 52px 0 44px;
  }

  .cn-ph-stats { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .two-up { grid-template-columns: 1fr; }

  .cn-info,
  .cn-form-panel { padding: 28px 22px; }

  .cn-highlight { flex-direction: column; align-items: flex-start; gap: 12px; }
}
