@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=Playfair+Display:wght@700;900&display=swap');
@page { size: A4; margin: 0; background-color: #ffffff; }
body { font-family: 'Inter', sans-serif; margin: 0; padding: 0; color: #1a1a1a; line-height: 1.4; }

/* Fast Transition Animation */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero { position: relative; height: 380pt; background: #000; color: #fff; display: flex; align-items: flex-end; padding: 40pt; overflow: hidden; }
.hero-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.hero-text { position: relative; z-index: 10; }
.hero-text h1 { font-family: 'Playfair Display', serif; font-size: 52pt; margin: 0; }
.hero-text p { color: #ff6f00; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; margin: 10pt 0; }
.container { padding: 30pt 40pt; }
.intro-lead { font-size: 14pt; border-left: 3pt solid #ff6f00; padding-left: 20pt; margin-bottom: 30pt; font-weight: 300; }
.medical-box { background: #f8f9fa; padding: 25pt; border-radius: 4pt; margin-bottom: 40pt; border: 1px solid #eee; }
.medical-box h3 { margin: 0 0 10pt 0; text-transform: uppercase; font-size: 12pt; color: #1a1a1a; }
.medical-box p { margin: 0; color: #555; font-size: 11pt; }
h2 { font-family: 'Playfair Display', serif; font-size: 24pt; margin: 0; text-transform: uppercase; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25pt; }
.spot-card { margin-bottom: 30pt; page-break-inside: avoid; }
.image-frame { position: relative; width: 100%; height: 130pt; border-radius: 4pt; overflow: hidden; background: #eee; margin-bottom: 12pt; }
.image-frame a { display: block; width: 100%; height: 100%; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.directions-tooltip {
    position: absolute;
    right: 10px;
    top: 10px;
    background: rgba(17, 17, 17, 0.92);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 10pt;
    letter-spacing: 0.2px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 140ms ease, transform 140ms ease;
    pointer-events: none;
    white-space: nowrap;
}
.image-frame:hover .directions-tooltip,
.image-frame:focus-within .directions-tooltip,
.image-frame.show-tooltip .directions-tooltip {
    opacity: 1;
    transform: translateY(0);
}
.card-content-wrapper { display: flex; align-items: flex-start; gap: 15pt; }

/* Standard Logo Box */
.logo-box { width: 100pt; height: 50pt; background: #fff; border-radius: 4pt; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid #eee; overflow: hidden; }

/* Dark Alternative Logo Box */
.logo-box-dark { width: 100pt; height: 50pt; background: #1a1a1a; border-radius: 4pt; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid #333; overflow: hidden; }

.logo-box img, .logo-box-dark img { max-width: 90%; max-height: 90%; object-fit: contain; }
.spot-header { display: flex; align-items: center; gap: 8pt; }
.spot-name { font-weight: 700; color: #ff6f00; text-transform: uppercase; font-size: 9pt; letter-spacing: 1px; display: block; }
.call-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20pt;
    height: 20pt;
    border-radius: 999px;
    border: 1px solid rgba(255, 111, 0, 0.25);
    background: rgba(255, 111, 0, 0.08);
    text-decoration: none;
    flex-shrink: 0;
}
.call-link svg { width: 12pt; height: 12pt; fill: #ff6f00; }
.call-link:focus-visible { outline: 2px solid #ff6f00; outline-offset: 2px; }
.spot-desc { font-size: 10pt; color: #333; }
.footer { background: #111; color: white; padding: 40pt; text-align: center; margin-top: 50pt; }

/* Mobile: stack cards one per row + responsive header */
@media (max-width: 768px) {
    .grid { grid-template-columns: 1fr; }
    .hero { height: auto; min-height: 240pt; padding: 24pt; }
    .hero-text h1 { font-size: 30pt; line-height: 1.05; }
    .hero-text p { letter-spacing: 2px; font-size: 10pt; }
}
