/* HOTA immersive reusable components
   Derived from the former index.css, with page/chrome formatting removed.
   This file intentionally does NOT style:
   body, html, img, a, .page, .shell, .container, .row, .box,
   .site-header, .header-logo, .nav, footer, or .site-footer.
*/

:root {
    --component-muted: rgba(255,255,255,.82);
    --component-line: rgba(255,255,255,.18);
    --component-gold: var(--hota-gold, #d6a84e);
    --component-gold-bright: var(--hota-gold-bright, #f0bd54);
    --component-blue: #0e5794;
    --component-green: #316b2e;
    --component-card: rgba(0,0,0,.45);
    --component-card-soft: rgba(5,11,18,.68);
    --component-radius: 24px;
    --component-shadow: 0 18px 44px rgba(0,0,0,.42);
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 470px;
    gap: 28px;
    align-items: center;
    padding: 38px 34px 18px;
}

.eyebrow {
    color: var(--component-gold-bright);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: .82rem;
    margin: 0 0 12px;
}

.hero h1,
h1#page-title {
    margin: 0;
    font-size: clamp(2.15rem, 4.6vw, 4.7rem);
    line-height: .98;
    letter-spacing: -.045em;
    text-shadow: 0 3px 14px rgba(0,0,0,.82);
}

.tagline {
    max-width: 680px;
    margin: 18px 0 0;
    color: var(--component-muted);
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
    line-height: 1.45;
    text-shadow: 0 3px 10px rgba(0,0,0,.86);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

/* CTA pills */
.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,.24);
    box-shadow: 0 12px 28px rgba(0,0,0,.30);
}

.pill.call {
    background: linear-gradient(135deg, rgba(18,103,169,.92), rgba(5,42,79,.92));
}

.pill.directions {
    background: linear-gradient(135deg, rgba(66,122,54,.92), rgba(23,72,25,.92));
}

.pill.gold {
    background: linear-gradient(135deg, rgba(187,137,35,.94), rgba(112,74,13,.94));
}

/* Featured hairline image */
.featured-hairline {
    position: relative;
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.46);
    box-shadow: 0 18px 44px rgba(0,0,0,.48);
}

.featured-hairline img {
    display: block;
    width: 100%;
}

.hairline-mark {
    display: block;
    padding: 10px 14px 11px;
    border-top: 1px solid rgba(255,255,255,.30);
    background: linear-gradient(135deg, rgba(7,20,34,.96), rgba(9,45,82,.90));
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,.75);
    font-weight: 900;
    font-size: clamp(.84rem, 1.2vw, 1rem);
}

.hairline-mark span {
    color: var(--component-gold-bright);
}

/* Content cards */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 18px 34px 34px;
}

.card {
    border: 1px solid rgba(255,255,255,.17);
    border-radius: var(--component-radius);
    background: rgba(5,11,18,.70);
    box-shadow: var(--component-shadow);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
}

.card.pad {
    padding: 24px;
}

.card h2 {
    margin: 0 0 14px;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.15;
    letter-spacing: -.02em;
}

.card h3 {
    margin: 18px 0 8px;
    color: var(--component-gold-bright);
}

.card p,
.card li {
    color: var(--component-muted);
    font-size: 1.02rem;
    line-height: 1.55;
}

.card p:first-child {
    margin-top: 0;
}

.card p:last-child {
    margin-bottom: 0;
}

.card a {
    color: var(--component-gold-bright);
    text-decoration: none;
    font-weight: 800;
}

/* Trust strip */
.trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 0 34px 18px;
}

.trust-row {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 20px;
    background: rgba(0,0,0,.30);
}

.trust-icon {
    width: 38px;
    height: 38px;
    border: 2px solid var(--component-gold);
    color: var(--component-gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 1.15rem;
}

.trust-row strong {
    display: block;
    font-size: 1.08rem;
    line-height: 1.22;
    margin-bottom: 4px;
}

.trust-row span {
    color: var(--component-muted);
    font-size: .95rem;
    line-height: 1.35;
}

.gold-text {
    color: var(--component-gold-bright);
}

/* Gallery / slideshow */
.gallery {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
    padding: 0 34px 34px;
}

.slideshow-container {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.08);
}

.slide,
.location-slide {
    display: none;
    width: 100%;
}

.slide.active,
.location-slide.active {
    display: block;
}

.slide img,
.location-slide img {
    display: block;
    width: 100%;
    max-height: 430px;
    object-fit: contain;
    background: rgba(255,255,255,.92);
}

.slide-controls {
    position: absolute;
    inset: auto 14px 14px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.slide-controls button {
    border: 1px solid rgba(255,255,255,.30);
    border-radius: 999px;
    background: rgba(5,11,18,.76);
    color: #fff;
    padding: 9px 13px;
    cursor: pointer;
    font-weight: 800;
}

/* Info rows */
.info {
    display: grid;
    gap: 0;
}

.info-row {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    padding: 17px 18px;
    border-top: 1px solid rgba(255,255,255,.12);
    align-items: start;
}

.info-row:first-child {
    border-top: 0;
}

.info-icon {
    font-size: 2rem;
    color: var(--component-gold);
    text-align: center;
    line-height: 1;
}

.info strong {
    display: block;
    font-size: 1.08rem;
    margin-bottom: 5px;
}

.info p {
    margin: 0;
    color: var(--component-muted);
    font-size: .98rem;
    line-height: 1.35;
}

/* Announcement panel */
.announcement {
    margin: 18px 34px 0;
    border-color: rgba(240,189,84,.42);
    background: rgba(112,74,13,.36);
}

/* Scroll cue */
.scroll-cue {
    position: fixed;
    left: 50%;
    bottom: calc(120px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    z-index: 20;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.36);
    border-radius: 999px;
    background: rgba(5,11,18,.72);
    box-shadow: 0 12px 32px rgba(0,0,0,.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 1.85rem;
    line-height: 1;
    animation: cue-bob 1.6s ease-in-out infinite;
    transition: opacity .22s ease, visibility .22s ease;
}

.scroll-cue.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes cue-bob {
    0%, 100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 7px);
    }
}

/* Responsive component behavior only */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 6px 0 8px;
        gap: 14px;
        text-align: center;
    }

    .eyebrow {
        display: none;
    }

    .hero h1,
    h1#page-title {
        font-size: clamp(1.28rem, 5.1vw, 1.72rem);
        line-height: 1.13;
        letter-spacing: -.02em;
    }

    .tagline {
        margin: 7px auto 0;
        max-width: 360px;
        font-size: clamp(.96rem, 3.7vw, 1.1rem);
        line-height: 1.35;
    }

    .hero-actions {
        display: grid;
        gap: 10px;
        margin: 14px 0 18px;
    }

    .pill {
        min-height: 58px;
        border-radius: 18px;
        justify-content: flex-start;
        padding: 12px 14px;
    }

    .content-grid,
    .gallery,
    .trust {
        grid-template-columns: 1fr;
        padding-left: 0;
        padding-right: 0;
    }

    .content-grid {
        padding-top: 12px;
    }

    .trust {
        gap: 12px;
    }

    .trust-row {
        background: transparent;
        border-width: 1px 0 0;
        border-radius: 0;
        padding: 11px 0;
    }

    .trust-row:first-child {
        border-top: 0;
    }

    .announcement {
        margin-left: 0;
        margin-right: 0;
    }

    .gallery {
        padding-bottom: 16px;
    }

    .slideshow-container {
        min-height: auto;
    }

    .scroll-cue {
        bottom: calc(114px + env(safe-area-inset-bottom));
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-cue {
        animation: none;
    }
}

.footer-clearance {
    height: 60px;
}