@font-face {
    font-family: 'Brandon Grotesque';
    src: local('Brandon Grotesque Regular'), local('BrandonGrotesque-Regular');
    font-display: swap;
}

:root {
    --font-heading: 'Brandon Grotesque', 'Futura', 'Trebuchet MS', sans-serif;
    --font-body: 'Brandon Grotesque', 'Futura', 'Trebuchet MS', sans-serif;
    --color-dark: #111;
    --color-light: #f8f9fa;
    --color-mid: #444;
}

body {
    font-family: var(--font-body);
    color: var(--color-mid);
    background-color: #fff;
    line-height: 1.7;
}

.lead {
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.02em;
}

.navbar-brand {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.hero {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 55%),
        radial-gradient(circle at 82% 25%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 50%),
        linear-gradient(135deg, #0b0b0b, #262626);
    background-size: 130% 130%, 150% 150%, 100% 100%;
    background-position: 18% 20%, 82% 25%, 0% 0%;
    color: #fff;
    position: relative;
    overflow: hidden;
    animation: heroShift 18s ease-in-out infinite alternate;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero::before {
    background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    filter: blur(30px);
    opacity: 0.6;
    animation: heroGlow 12s ease-in-out infinite alternate;
}

.hero::after {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    mix-blend-mode: overlay;
}

.hero-logo {
    width: 140px;
    height: auto;
    filter: invert(1);
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.hero-logo.is-visible {
    animation: floatY 7s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 6px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    font-size: 1.3rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hero-tagline.is-visible {
    animation: fadePulse 6s ease-in-out infinite;
}

.py-7 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.section-title {
    font-family: var(--font-heading);
    color: var(--color-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #111, rgba(17, 17, 17, 0));
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.section-title.is-visible::after {
    transform: scaleX(1);
}

#team {
    background-color: #fff;
}

.team-photo {
    width: 100%;
    max-width: 220px;
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.team-photo:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
}

.table td {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.05rem;
}

.table tr:last-child td {
    border-bottom: none;
}

.price-group {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
    padding: 1.75rem 2.25rem;
    backdrop-filter: blur(4px);
}

.price-group + .price-group {
    margin-top: 1.75rem;
}

.price-heading {
    font-family: var(--font-heading);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 1.05rem;
    color: var(--color-dark);
    margin-bottom: 1.2rem;
}

.price-table td {
    padding: 0.85rem 0;
    border-color: rgba(0, 0, 0, 0.08);
}

.price-note {
    margin-top: 2.4rem;
}

@media (max-width: 576px) {
    .price-group {
        padding: 1.4rem 1.5rem;
    }

    .price-table td {
        padding: 0.75rem 0;
    }

    .price-heading {
        letter-spacing: 0.1em;
    }
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(6px);
}

.contact-link {
    color: var(--color-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 0.15rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-link:hover,
.contact-link:focus {
    color: #000;
    border-color: rgba(0, 0, 0, 0.35);
}

footer {
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-outline-light {
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.hero .btn-outline-light.is-visible {
    animation: pulseGlow 4s ease-in-out infinite;
}

.btn-outline-light::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-outline-light:hover::after {
    transform: translateX(0);
}

.btn-outline-light:hover {
    color: #111;
    background-color: #fff;
    border-color: #fff;
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .hero {
        padding: 6rem 0 4rem;
    }

    .hero-tagline {
        letter-spacing: 2px;
        font-size: 1.1rem;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }
}

@keyframes heroShift {
    0% {
        background-position: 18% 20%, 82% 25%, 0% 0%;
    }
    100% {
        background-position: 28% 30%, 70% 18%, 100% 100%;
    }
}

@keyframes heroGlow {
    0% {
        transform: scale(1) translateY(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1) translateY(-20px);
        opacity: 0.75;
    }
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes fadePulse {
    0%,
    100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
