/* Contact page — editorial layout matched to docs/Contact.png.
   Loaded only by Views/Home/Contact.cshtml. */

/* ============================================================
   Section frames
   ============================================================ */

.contact-hero,
.contact-testimonial {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: var(--cream);
}

.contact-hero {
    padding-top: calc(80px + var(--section-py));
    padding-bottom: var(--section-py);
}

.contact-testimonial {
    padding-block: var(--section-py);
    border-top: 1px solid color-mix(in oklch, var(--stone) 25%, transparent);
}

/* Decorative ember seed-streaks — same asset as home/bagels */
.seed-streaks {
    position: absolute;
    top: 0;
    height: clamp(220px, 32vw, 400px);
    width: auto;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.seed-streaks--left  { left:  0; }
.seed-streaks--right { right: 0; transform: scaleX(-1); }
@media (max-width: 640px) { .seed-streaks { display: none; } }

/* Keep all hero text/content above the streaks */
.contact-hero .container { position: relative; z-index: 1; }

/* ============================================================
   Hero stack — CONTACT (cream) / US (ember)
   ============================================================ */

.contact-hero__inner {
    max-width: 56%;
    padding-left: clamp(0px, 8vw, 140px);
    margin-bottom: var(--sp-10);
}

@media (max-width: 900px) {
    .contact-hero__inner { max-width: 100%; padding-left: 0; }
}

.contact-stack {
    font-family: var(--font-display);
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin: 0 0 var(--sp-md);
    font-size: clamp(3rem, 11vw, 7rem);
    font-weight: 700;
}
.contact-stack > span { display: block; }
.contact-stack .line-1 { color: var(--cream); }
.contact-stack .line-2 { color: var(--ember); }

.contact-lede {
    max-width: 48ch;
    font-size: var(--fs-md);
    line-height: var(--lh-body);
    color: color-mix(in oklch, var(--cream) 85%, transparent);
    margin: 0;
}

/* ============================================================
   Two-column info + map
   ============================================================ */

.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
    align-items: stretch;
}

@media (min-width: 900px) {
    .contact-grid {
        /* Info column gets more space, map column shrinks so the bagel
           ornament behind reads more prominently */
        grid-template-columns: minmax(320px, 1.1fr) minmax(0, 1fr);
        gap: var(--sp-lg);
    }
}

/* ── Info card — vertical stack of LOCATION / PHONE / EMAIL / HOURS rows ── */

.contact-info-card {
    display: grid;
    gap: var(--sp-md);
    /* Subtle dark-grey panel — direct hex (OKLCH mixing with pure black
       barely shifts lightness). */
    background: #1f1f1f;
    border: 1px solid #2e2e2e;
    border-radius: var(--radius-sm);
    padding: var(--sp-lg);
    color: var(--cream);
    align-content: start;
}

.contact-info-row + .contact-info-row {
    padding-top: var(--sp-md);
    border-top: 1px solid color-mix(in oklch, var(--stone) 25%, transparent);
}

.contact-info-card .field-label {
    display: block;
    font-family: var(--font-display);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: var(--sp-2);
}

.contact-info-card .field-value,
.contact-info-card address {
    font-size: var(--fs-md);
    line-height: var(--lh-body);
    margin: 0;
    font-style: normal;
    color: var(--cream);
}

.contact-info-card a {
    color: var(--cream);
    text-decoration: none;
    border-bottom: 1px solid color-mix(in oklch, var(--ember) 45%, transparent);
    transition: color var(--dur-base) var(--ease-out),
                border-color var(--dur-base) var(--ease-out);
}

.contact-info-card a:hover,
.contact-info-card a:focus-visible {
    color: var(--ember);
    border-color: var(--ember);
}

/* ── Map — responsive iframe wrapper ── */

.map-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid color-mix(in oklch, var(--stone) 20%, transparent);
}

.map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 600px) {
    .map-frame { aspect-ratio: 4 / 3; }
}

/* ── Decorative bagel ornament, bottom-right of hero ── */

.contact-bagel {
    position: absolute;
    right: clamp(-200px, -10vw, -60px);
    bottom: clamp(-220px, -14vw, -80px);
    width: clamp(380px, 46vw, 680px);
    height: auto;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    opacity: 0.95;
}

@media (max-width: 900px) {
    .contact-bagel {
        width: clamp(220px, 50vw, 340px);
        right: -80px;
        bottom: -120px;
    }
}

@media (max-width: 640px) {
    .contact-bagel { display: none; }
}

/* ============================================================
   Testimonial — single big quote, centered, ember mark above
   Mirrors home page #testimonials .quote-card pattern.
   ============================================================ */

.contact-testimonial .quote-card {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    color: var(--cream);
    text-align: center;
}

.contact-testimonial .quote-mark {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 0.4;
    color: var(--ember);
    margin: 0;
    text-align: center;
    font-weight: 600;
}

.contact-testimonial .quote-text {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(1.4rem, 3vw, 2.25rem);
    line-height: 1.2;
    letter-spacing: -0.005em;
    margin: 0 0 var(--sp-5);
    font-weight: 600;
    text-align: center;
}

.contact-testimonial .quote-divider {
    width: 64px;
    height: 2px;
    background: var(--ember);
    border: 0;
    margin: var(--sp-5) auto;
}

.contact-testimonial .quote-source {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.8125rem;
    color: color-mix(in oklch, var(--cream) 60%, transparent);
    text-align: center;
}

.contact-testimonial .quote-source strong {
    color: var(--ember);
    font-weight: 600;
}
