:root {
    --gg-legacy-brown: rgb(70, 60, 50);
    --gg-legacy-header: rgb(50, 45, 40);
    --gg-ink: #463c32;
    --gg-ink-strong: #322d28;
    --gg-ink-soft: #6f655b;
    --gg-surface: #ffffff;
    --gg-surface-muted: #f4efe7;
    --gg-surface-deep: #2f2a25;
    --gg-border: rgba(70, 60, 50, 0.16);
    --gg-shadow: 0 1.5rem 3rem rgba(44, 34, 26, 0.12);
    --gg-shadow-soft: 0 0.75rem 1.5rem rgba(44, 34, 26, 0.08);
    --gg-accent: #b99669;
    --gg-accent-strong: #8d6840;
    --gg-white: #ffffff;
    --gg-radius-lg: 1.5rem;
    --gg-radius-md: 1rem;
    --gg-container-max: 1360px;
    --gg-header-height: 4.75rem;
    --gg-anchor-offset: 0rem;
    --bs-body-font-family: "Aptos", "Segoe UI", "Trebuchet MS", Arial, sans-serif;
    --bs-body-color: var(--gg-ink);
    --bs-body-bg: #f8f5f0;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

[id] {
    scroll-margin-top: var(--gg-anchor-offset);
}

body {
    color: var(--gg-ink);
    background: linear-gradient(180deg, #fbf8f3 0%, #f5f0e7 100%);
    text-rendering: optimizeLegibility;
}

.gg-home-page {
    background:
        linear-gradient(var(--gg-legacy-header), var(--gg-legacy-header)) top / 100% var(--gg-header-height) no-repeat,
        var(--gg-legacy-brown);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--gg-container-max);
}

.gg-site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.gg-navbar {
    background: rgba(50, 45, 40, 1);
    backdrop-filter: blur(14px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.18);
    min-height: var(--gg-header-height);
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.gg-navbar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    min-height: inherit;
}

.gg-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: rgba(255, 255, 255, 0.96);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gg-brand:hover,
.gg-brand:focus {
    color: var(--gg-white);
}

.gg-brand-mark {
    width: 2.6rem;
    height: 2.6rem;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
}

.gg-brand-mark .fa {
    font-size: 1rem;
}

.gg-brand-text {
    font-size: 0.95rem;
}

.gg-navbar-toggler {
    margin-left: auto;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.gg-navbar .navbar-toggler-icon {
    filter: invert(1);
}

.gg-nav-link {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.95rem 1rem !important;
    position: relative;
}

.gg-nav-link:hover,
.gg-nav-link:focus,
.gg-nav-link:visited,
.gg-nav-link.active:visited,
.gg-nav-link.active {
    color: var(--gg-white);
}

.gg-nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.65rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.92);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.gg-nav-link:hover::after,
.gg-nav-link:focus::after,
.gg-nav-link.active::after {
    transform: scaleX(1);
}

.gg-nav-cta,
.gg-btn {
    border-radius: 999px;
    padding: 0.85rem 1.4rem;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.gg-nav-cta {
    color: var(--gg-white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gg-nav-cta:hover,
.gg-nav-cta:focus,
.gg-nav-cta:visited,
.gg-nav-cta.active:visited,
.gg-nav-cta.active {
    color: var(--gg-white);
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.gg-btn-primary {
    color: var(--gg-white);
    background: var(--gg-legacy-brown);
    border: 1px solid rgba(70, 60, 50, 0.8);
    box-shadow: var(--gg-shadow-soft);
}

.gg-btn-primary:hover,
.gg-btn-primary:focus {
    color: var(--gg-white);
    background: rgba(70, 60, 50, 0.92);
    border-color: rgba(70, 60, 50, 0.92);
    transform: translateY(-1px);
}

.gg-btn-light {
    color: var(--gg-white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.12);
}

.gg-btn-light:hover,
.gg-btn-light:focus {
    color: var(--gg-white);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.gg-page-hero {
    min-height: min(34rem, 72vh);
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    color: var(--gg-white);
    padding: 6rem 0 4rem;
}

.gg-page-hero__content {
    max-width: 42rem;
    padding: 4rem 0 1rem;
}

.gg-page-hero__content > * {
    will-change: transform, opacity;
}

.gg-eyebrow {
    display: inline-block;
    margin-bottom: 1.1rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.gg-page-hero h1 {
    margin: 0;
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    line-height: 1;
    letter-spacing: 0.02em;
}

.gg-page-hero__lede {
    margin: 1.25rem 0 0;
    max-width: 30rem;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.gg-page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
    .gg-page-hero__content > * {
        opacity: 0;
        transform: translateY(0.85rem);
    }

    .gg-page-hero__content .gg-eyebrow {
        animation: gg-page-hero-reveal 0.55s cubic-bezier(.2, .8, .2, 1) 0.12s forwards;
    }

    .gg-page-hero__content h1 {
        animation: gg-page-hero-reveal 0.65s cubic-bezier(.2, .8, .2, 1) 0.2s forwards;
    }

    .gg-page-hero__content .gg-page-hero__lede {
        animation: gg-page-hero-reveal 0.6s cubic-bezier(.2, .8, .2, 1) 0.34s forwards;
    }

    .gg-page-hero__content .gg-page-hero__actions {
        animation: gg-page-hero-reveal 0.6s cubic-bezier(.2, .8, .2, 1) 0.48s forwards;
    }
}

@keyframes gg-page-hero-reveal {
    from {
        opacity: 0;
        transform: translateY(0.85rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gg-page-section {
    padding: 3rem 0 0;
}

.gg-panel {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--gg-radius-lg);
    box-shadow: var(--gg-shadow);
    margin-bottom: 4rem;
}

.gg-footer {
    color: rgba(255, 255, 255, 0.74);
    background: var(--gg-legacy-brown);
    margin-top: 0;
    padding: 3rem 0 1.5rem;
}

.gg-footer-title {
    margin: 0 0 0.75rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gg-footer-title-sub {
    margin-top: 1rem;
}

.gg-footer-list {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gg-footer-hours {
    display: block;
}

.gg-footer-hours li + li {
    margin-top: 0.25rem;
}

.gg-footer-list li {
    font-size: 0.82rem;
    line-height: 1.35;
}

.gg-footer-list li .fa {
    width: 1rem;
    margin-right: 0.35rem;
    color: rgba(255, 255, 255, 0.62);
}

.gg-footer-list a {
    color: rgba(255, 255, 255, 0.78);
}

.gg-footer-list a:hover,
.gg-footer-list a:focus {
    color: rgba(248, 227, 200, 0.86);
}

.gg-footer-list span,
.gg-footer-address,
.gg-footer-copy,
.gg-footer-note {
    color: rgba(255, 255, 255, 0.58);
}

.gg-footer-address {
    margin: 0.75rem 0 0.5rem;
    font-size: 0.82rem;
    font-style: normal;
    line-height: 1.45;
}

.gg-footer-hours li {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: start;
    column-gap: 0.6rem;
    row-gap: 0;
    line-height: 1.35;
}

.gg-footer-hours li span:first-child {
    display: block;
    min-width: 4.8rem;
}

.gg-footer-hours li span:last-child {
    display: block;
    text-align: left;
}

.gg-footer-copy,
.gg-footer-note {
    margin-bottom: 0.5rem;
    font-size: 0.82rem;
    line-height: 1.4;
}

.gg-footer-note--contact {
    margin-top: 0.75rem;
}

@media (max-width: 991.98px) {
    .gg-navbar {
        min-height: auto;
    }

    .gg-navbar .navbar-collapse {
        padding: 0.75rem 0 1rem;
    }

    .gg-nav-link::after {
        display: none;
    }

    .gg-page-hero {
        min-height: 28rem;
        padding-top: 5.5rem;
    }

    .gg-page-hero__content {
        padding-top: 2rem;
    }
}

@media (min-width: 992px) {
    body:not(.gg-home-page) {
        background: linear-gradient(
            180deg,
            var(--gg-legacy-header) 0,
            var(--gg-legacy-header) var(--gg-header-height),
            #fbf8f3 var(--gg-header-height),
            #f5f0e7 100%
        );
    }

    .gg-navbar {
        background: rgba(50, 45, 40, 0.42);
        backdrop-filter: blur(18px);
        box-shadow: none;
    }

    .gg-site-header--scrolled .gg-navbar {
        background: rgba(50, 45, 40, 0.56);
        box-shadow: 0 0.65rem 1.4rem rgba(0, 0, 0, 0.16);
    }
}

@media (max-width: 767.98px) {
    .gg-brand-text {
        font-size: 0.88rem;
    }

    .gg-page-hero {
        min-height: 24rem;
        padding: 5rem 0 3.5rem;
    }

    .gg-page-section {
        padding: 2.5rem 0 0;
    }

    .gg-footer {
        margin-top: 3rem;
        padding-top: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .gg-brand {
        gap: 0.65rem;
    }

    .gg-brand-mark {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 0.82rem;
    }

    .gg-page-hero h1 {
        line-height: 1.05;
    }

    .gg-page-hero__actions {
        flex-direction: column;
    }

    .gg-page-hero__actions .btn,
    .gg-nav-cta,
    .gg-btn {
        width: 100%;
        justify-content: center;
    }

    .gg-footer-hours li {
        grid-template-columns: auto auto;
        column-gap: 0.55rem;
    }

    .gg-footer-hours li span:first-child {
        min-width: 4.5rem;
    }


    .gg-footer-hours li {
        flex-direction: column;
        gap: 0.2rem;
    }
}
