/* /contact/ / SYSTEM v3 LIGHT LUXURY (contact.css?v=1)
   Self-sufficient: does NOT load book.css. The concierge bento + visit/map
   rules below are copied verbatim from book.css so this page stands alone.
   Net-new: the .cform request-info form system. */

/* ==========================================================
   1. CONCIERGE BENTO (asymmetric, never three equal cards)
   ========================================================== */
.book-bento .bento__cell { gap: 0.8rem; }
.book-bento h2 { font-size: clamp(1.35rem, 1.15rem + 0.9vw, 1.9rem); }
.book-bento .bento__cell p { max-width: 46ch; }
.book-bento .ctarow { margin-top: auto; padding-top: 1.25rem; }

/* primary concierge cell: warm brass tint + corner ticks */
.book-cell--primary {
  background: oklch(95.8% 0.018 87);
  border-color: color-mix(in oklab, var(--brass) 45%, transparent);
  position: relative;
}
.book-cell--primary::before {
  content: ""; position: absolute; top: -2px; left: -2px; width: 18px; height: 18px;
  border-top: 2px solid var(--brass); border-left: 2px solid var(--brass); pointer-events: none;
}
.book-cell--primary::after {
  content: ""; position: absolute; bottom: -2px; right: -2px; width: 18px; height: 18px;
  border-bottom: 2px solid var(--brass); border-right: 2px solid var(--brass); pointer-events: none;
}

/* small ordinal marker on each concierge cell */
.book-ord {
  font-family: var(--font-d);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--brass-deep);
  font-variant-numeric: tabular-nums;
}

/* phone number set large in the call cell */
.book-tel {
  font-family: var(--font-d);
  font-weight: 500;
  font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem);
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.book-tel:hover { color: var(--brass-deep); }

/* deposit-refund disclaimer / hours line in the primary cell */
.book-disclaimer { margin-top: 0.9rem; font-size: 0.85rem; line-height: 1.5; color: var(--ink-soft); max-width: 46ch; }

/* ==========================================================
   2. VISIT: NAP CARD + MAP
   ========================================================== */
.visit-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
}
@media (max-width: 860px) {
  .visit-grid { grid-template-columns: 1fr; }
}

.visit-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
}
.visit-card address { line-height: 1.8; margin-block: 1.1rem 1.4rem; }
.visit-card address strong { font-family: var(--font-d); font-weight: 600; text-transform: uppercase; font-size: 1.1rem; letter-spacing: 0.04em; }
.visit-card address a { color: var(--ink-soft); text-decoration: none; transition: color 0.2s ease; }
.visit-card address a:hover { color: var(--brass-deep); }

.hours {
  border-top: 1px solid var(--line);
  margin-bottom: 1.4rem;
}
.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0.1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.hours dt { font-weight: 700; color: var(--ink); }
.hours dd { color: var(--ink-soft); font-variant-numeric: tabular-nums; }

.map-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  min-height: 22rem;
  height: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
}
/* warm placeholder behind the lazy-loading map so the slot never reads blank */
.map-frame::before {
  content: "1914 Charlotte Ave, STE 104";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.map-frame iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
  filter: saturate(0.92) sepia(0.06);
}

/* ==========================================================
   3. VISIT US as a dark beat (cinema)
   ========================================================== */
.cinema .visit-card {
  background: oklch(24% 0.006 85 / 0.55);
  border-color: oklch(73% 0.077 83 / 0.22);
}
.cinema .visit-card address { color: var(--milk-soft); }
.cinema .visit-card address strong { color: var(--milk); }
.cinema .visit-card address a { color: var(--milk-soft); }
.cinema .visit-card address a:hover { color: var(--brass-light); }
.cinema .hours { border-top-color: oklch(73% 0.077 83 / 0.22); }
.cinema .hours div { border-bottom-color: oklch(73% 0.077 83 / 0.22); }
.cinema .hours dt { color: var(--milk); }
.cinema .hours dd { color: var(--milk-soft); }
.cinema .map-frame { border-color: oklch(73% 0.077 83 / 0.22); background: var(--cinema-2); }
.cinema .map-frame::before { color: var(--milk-soft); }

/* ==========================================================
   4. REQUEST-INFO FORM (net-new)
   ========================================================== */
.cform { display: grid; gap: 1.1rem; max-width: 34rem; }
.cform__field { display: grid; gap: 0.4rem; }
.cform label {
  font-family: var(--font-d);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brass-deep);
}
.cform input,
.cform select,
.cform textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.cform input:focus,
.cform select:focus,
.cform textarea:focus {
  border-color: var(--brass-deep);
  box-shadow: 0 0 0 3px oklch(66.5% 0.083 78 / 0.18);
  outline: none;
}
.cform textarea { min-height: 8rem; resize: vertical; }
.cform .btn { justify-self: start; margin-top: 0.4rem; }

.deposit-note {
  margin: 0.6rem 0 0;
  padding: 0.9rem 1.1rem;
  border-left: 2px solid var(--brass);
  background: var(--panel);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.cform__ok {
  padding: 1rem 1.25rem;
  background: color-mix(in oklab, var(--brass) 12%, var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-weight: 600;
}

/* ==========================================================
   5. RESPONSIVE
   ========================================================== */
@media (max-width: 640px) {
  .cform { max-width: 100%; }
}

/* ==========================================================
   THEME-DARK OVERRIDES (dark rollout 2026-07-10)
   ========================================================== */
/* primary concierge cell: cream tint reads as glare on dark; go dark glass, keep brass ticks */
body.theme-dark .book-cell--primary {
  background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.015) 100%);
}

/* ==========================================================
   6. ON-PAGE FLEXBOOK SCHEDULER (#book)
   Two designed objects: a collared scheduler card and a dark ink info card.
   The iframe is wider than its window and shifted left to crop Flexbook's
   baked-in face background out of view.
   ========================================================== */
#book { scroll-margin-top: 6rem; }
.book-embed {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
  margin-top: clamp(2rem, 3.5vw, 3rem);
}
.book-embed__sched {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  background: #fff;
}
.book-embed__collar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.4rem;
  background: #1a1a1a;
}
.book-embed__collar span {
  font-family: var(--font-d);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: oklch(78% 0.06 83);
}
.book-embed__collar a {
  font-family: var(--font-d);
  font-weight: 500;
  font-size: 0.95rem;
  color: oklch(94% 0.002 90);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.book-embed__collar a:hover { color: oklch(78% 0.06 83); }
.book-embed__frame { position: relative; overflow: hidden; flex: 1; }
.book-embed__frame iframe {
  display: block;
  width: calc(100% + 380px);
  margin-left: -380px;
  height: 780px;
  border: 0;
}
.book-embed__info {
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--r-md);
  background: linear-gradient(168deg, #202020 0%, #161616 60%, #121212 100%);
  border: 1px solid oklch(73% 0.077 83 / 0.28);
  box-shadow: var(--shadow-deep);
}
.consult-price {
  font-family: var(--font-d);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: oklch(78% 0.06 83);
}
.consult-note { font-weight: 600; margin-top: 0.6rem; color: oklch(94% 0.002 90); }
.consult-note--fine { font-weight: 400; color: oklch(76% 0.004 90); font-size: 0.9rem; margin-top: 0.35rem; }
.book-embed__info .checks { margin-top: 1.4rem; }
.book-embed__info .checks li { color: oklch(86% 0.003 90); }
.book-embed__info .book-disclaimer {
  margin-top: auto;
  padding-top: 1.4rem;
  color: oklch(76% 0.004 90);
  border-top: 1px solid oklch(40% 0.004 85 / 0.6);
}
@media (max-width: 900px) {
  .book-embed { grid-template-columns: 1fr; }
  .book-embed__frame iframe { width: calc(100% + 210px); margin-left: -210px; height: 640px; }
}
