/* ============ CONTACT PAGE ============ */
/* Unique layout — distinct from homepage. All styles scoped to contact page. */

/* ---------- Contact hero ---------- */
.ct-hero {
  position: relative;
  padding-top: clamp(8rem, 14vw, 12rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.ct-hero-orbits { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.ct-hero-orbits .glow { position: absolute; border-radius: 50%; filter: blur(70px); }
.ct-hero-orbits .g1 { width: 360px; height: 360px; background: rgba(221,214,236,0.5); top: -4%; right: -4%; }
.ct-hero-orbits .g2 { width: 320px; height: 320px; background: rgba(233,211,207,0.45); bottom: -10%; left: -6%; }
.ct-hero-orbits .ring { position: absolute; border-radius: 50%; border: 1px solid rgba(201,168,106,0.16); width: 520px; height: 520px; top: -160px; left: 50%; transform: translateX(-50%); }

.ct-hero-inner { max-width: 760px; }
.ct-hero .eyebrow { margin-bottom: 1.4rem; }
.ct-hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
}
.ct-hero .lead { max-width: 56ch; }

/* ---------- Main contact split (form + details) ---------- */
.ct-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: start;
}

/* Form panel */
.ct-form-panel {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 3rem);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.ct-form-panel::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--c-root), var(--c-sacral), var(--c-solar), var(--c-heart), var(--c-throat), var(--c-thirdeye), var(--c-crown));
  opacity: 0.85;
}
.ct-form-panel h2 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); margin-bottom: 0.6rem; }
.ct-form-panel > p.ct-form-intro { margin-bottom: 1.8rem; font-size: 0.98rem; }

.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.2rem; }
.ct-form .btn { margin-top: 0.4rem; width: 100%; justify-content: center; }

.form-note {
  margin-top: 1.1rem;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  border-radius: 14px;
  font-size: 0.95rem;
  color: var(--forest);
  background: rgba(93,139,99,0.10);
  border: 1px solid transparent;
  opacity: 0;
  transition: max-height 0.5s var(--ease), opacity 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s;
}
.form-note.show {
  max-height: 160px;
  opacity: 1;
  padding: 0.95rem 1.1rem;
  border-color: rgba(93,139,99,0.3);
}

/* ---------- Details column ---------- */
.ct-aside { display: grid; gap: 1.4rem; }

.ct-card {
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-sm);
}

/* Identity card */
.ct-id .ct-company {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--deep-indigo);
  line-height: 1.1;
}
.ct-id .ct-person { color: var(--champagne-deep); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.35rem; }
.ct-id .ct-tagline { font-size: 0.95rem; margin-top: 0.9rem; }

/* Detail rows (phone / email / location) */
.ct-rows { display: grid; gap: 0.4rem; margin-top: 1.4rem; }
.ct-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0.6rem;
  border-radius: 14px;
  transition: background 0.35s, transform 0.4s var(--ease);
}
a.ct-row:hover { background: rgba(201,168,106,0.10); transform: translateX(4px); }
.ct-row .ct-ic {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ivory), #fff);
  border: 1px solid var(--line);
  color: var(--champagne-deep);
}
.ct-row .ct-ic svg { width: 21px; height: 21px; }
.ct-row .ct-lbl { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.ct-row .ct-val { display: block; color: var(--deep-indigo); font-weight: 600; font-size: 1.02rem; margin-top: 0.15rem; line-height: 1.3; word-break: break-word; }
.ct-row .ct-sub { display: block; font-size: 0.84rem; color: var(--muted); margin-top: 0.15rem; }

/* Hours card */
.ct-hours h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.ct-hours .ct-hours-sub { font-size: 0.88rem; margin-bottom: 1.1rem; }
.ct-hours-list { display: grid; gap: 0.2rem; }
.ct-hours-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--line);
}
.ct-hours-list li:last-child { border-bottom: 0; }
.ct-hours-list .ct-day { color: var(--indigo-soft); font-weight: 500; font-size: 0.95rem; }
.ct-hours-list .ct-time { color: var(--deep-indigo); font-weight: 600; font-size: 0.95rem; }
.ct-hours-list .ct-time.closed { color: var(--c-root); }
.ct-online-note {
  margin-top: 1.2rem;
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(125,91,166,0.08);
  border: 1px solid rgba(125,91,166,0.18);
  font-size: 0.9rem;
  color: var(--indigo-soft);
}
.ct-online-note svg { width: 20px; height: 20px; color: var(--c-crown); flex-shrink: 0; }

/* ---------- Map ---------- */
.ct-map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
  aspect-ratio: 21 / 7;
  background: linear-gradient(150deg, #25274a, var(--deep-indigo));
}
.ct-map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.2) contrast(1.05); }
@media (max-width: 760px) { .ct-map-frame { aspect-ratio: 4 / 3; } }

/* ---------- Consultation CTA ---------- */
.ct-cta-inner {
  background: linear-gradient(150deg, #25274a, var(--deep-indigo));
  border-radius: clamp(24px, 4vw, 44px);
  padding: clamp(2.6rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ct-cta-inner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(35vw 30vw at 12% 8%, rgba(201,168,106,0.25), transparent 60%),
    radial-gradient(35vw 30vw at 92% 96%, rgba(125,91,166,0.28), transparent 60%);
}
.ct-cta-inner .eyebrow { color: var(--champagne); justify-content: center; position: relative; }
.ct-cta-inner .eyebrow::before, .ct-cta-inner .eyebrow::after { background: var(--champagne); }
.ct-cta-inner h2 { color: #fff; position: relative; margin: 1rem 0 1rem; }
.ct-cta-inner p { color: rgba(255,255,255,0.72); position: relative; max-width: 52ch; margin: 0 auto 2rem; }
.ct-cta-actions { position: relative; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .ct-split { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .ct-form-row { grid-template-columns: 1fr; }
}
