/* Explain: Styling for various site components, including header, navigation, and rich text content. - */
.site-header {
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.88), rgba(8, 8, 8, 0.38) 72%, transparent);
}

.brand-seal {
    background: radial-gradient(circle at 35% 25%, var(--cream-color), var(--gold-color));
    box-shadow: 0 0 0 1px rgba(200, 162, 74, 0.55), 0 14px 40px rgba(0, 0, 0, 0.28);
}

.pick-nav::-webkit-scrollbar {
    display: none;
}

.anchor-menu {
    display: none;
    flex-direction: column;
    width: 100%;
}

.anchor-menu.menu-open {
    display: flex;
}

.hamburger-stack {
    display: flex;
    width: 1.25rem;
    flex-direction: column;
    gap: 0.26rem;
}

.hamburger-line {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 999px;
    background: var(--gold-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-open .hamburger-line:nth-child(1) {
    transform: translateY(0.39rem) rotate(45deg);
}

.menu-toggle.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-0.39rem) rotate(-45deg);
}

.pick-link {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 1rem;
    color: var(--cream-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.pick-link::before,
.pick-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    height: 1px;
    background: currentColor;
    opacity: 0.32;
    transform: rotate(-2deg);
}

.pick-link::before {
    top: 10px;
}

.pick-link::after {
    bottom: 10px;
}

.pick-link:hover,
.pick-link.active {
    background: var(--gold-color);
    color: var(--charcoal-color);
    box-shadow: 0 12px 28px rgba(200, 162, 74, 0.2);
}

.eyebrow {
    color: var(--gold-color);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.stat-tile {
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    background: rgba(255, 247, 232, 0.72);
    padding: 1.25rem;
}

.stat-tile strong {
    display: block;
    color: var(--red-color);
    font-family: var(--font-heading);
    font-size: 2.4rem;
    line-height: 1;
}

.stat-tile span {
    margin-top: 0.4rem;
    display: block;
    color: var(--soy-color);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.signature-card,
.gallery-tile,
.review-card,
.menu-card {
    isolation: isolate;
}

.field-label {
    margin-bottom: 0.5rem;
    display: block;
    color: var(--soy-color);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-link {
    color: var(--cream-color);
    text-decoration: underline;
    text-decoration-color: var(--gold-color);
    text-underline-offset: 4px;
}

.footer-link:hover {
    color: var(--gold-color);
}

.mobile-book-cta {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 45;
    display: inline-flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--red-color);
    border: 2px solid #ffffff;
    color: var(--cream-color);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    box-shadow: 0 18px 50px rgba(8, 8, 8, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(1.25rem);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.mobile-book-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.rich-text-content {
    color: var(--soy-color);
    font-size: 1.125rem;
    line-height: 1.75;
}

.rich-text-content p {
    margin-bottom: 1.5rem;
}

.rich-text-content h2, 
.rich-text-content h3 {
    font-family: var(--font-heading);
    color: var(--red-color);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.rich-text-content h2 {
    font-size: 2rem;
}

.rich-text-content h3 {
    font-size: 1.5rem;
}

.rich-text-content strong {
    color: var(--charcoal-color);
    font-weight: 700;
}

.rich-text-content a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.rich-text-content a:hover {
    color: var(--red-color);
}

.mobile-book-cta:hover,
.mobile-book-cta:focus-visible {
    background: var(--soy-color);
}

@media (min-width: 768px) {
    .mobile-book-cta {
        display: none;
    }
}

@media (min-width: 1024px) {
    .anchor-menu {
        display: flex;
        flex-direction: row;
        width: auto;
    }
}

@keyframes steamFloat {
    from {
        transform: translate3d(-1rem, 1rem, 0) scale(0.96);
        opacity: 0.42;
    }
    to {
        transform: translate3d(1rem, -1.8rem, 0) scale(1.08);
        opacity: 0.76;
    }
}
