/* ============================================
   BUCK'S SPORTS GRILL — STYLES
   Palette: Plum (#5B2C6F) + Amber (#F59E0B)
   Fonts: Bebas Neue + Inter
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --plum: #5B2C6F;
    --plum-dark: #3D1F4D;
    --plum-deeper: #2A1535;
    --plum-light: #7D3C99;
    --amber: #F59E0B;
    --amber-light: #FCD34D;
    --amber-dark: #D97706;
    --cream: #FFF8F0;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-400: #A3A3A3;
    --gray-600: #525252;
    --gray-800: #262626;
    --gray-900: #171717;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(91,44,111,0.08);
    --shadow-md: 0 4px 20px rgba(91,44,111,0.12);
    --shadow-lg: 0 8px 40px rgba(91,44,111,0.16);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   GEOMETRIC DECORATIONS
   ============================================ */
.geo {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.geo--top-left {
    top: -80px;
    left: -80px;
    width: 240px;
    height: 240px;
    background: var(--plum);
    border-radius: 50%;
    opacity: 0.04;
}

.geo--bottom-right {
    bottom: -120px;
    right: -60px;
    width: 360px;
    height: 360px;
    background: var(--amber);
    border-radius: 50%;
    opacity: 0.04;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(42, 21, 53, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    letter-spacing: 0.04em;
    font-size: 1.1rem;
    z-index: 1001;
}

.logo__icon {
    color: var(--amber);
    width: 36px;
    height: 36px;
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo__accent {
    color: var(--amber);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
}

.logo--light {
    color: var(--white);
}

/* NAV */
.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav__link {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav__cta {
    color: var(--gray-900);
    background: var(--amber);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    margin-left: 8px;
}

.nav__cta:hover {
    background: var(--amber-light);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 1001;
}

.nav__bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--plum-deeper);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(42, 21, 53, 0.92) 0%,
        rgba(91, 44, 111, 0.80) 50%,
        rgba(61, 31, 77, 0.88) 100%
    );
}

.hero__geos {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__geo {
    position: absolute;
    border-radius: 50%;
}

.hero__geo--1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: var(--amber);
    opacity: 0.08;
}

.hero__geo--2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: 10%;
    background: var(--plum-light);
    opacity: 0.15;
}

.hero__geo--3 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 20%;
    background: var(--amber-light);
    opacity: 0.1;
    border-radius: var(--radius-md);
    transform: rotate(45deg);
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 120px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--amber-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: var(--white);
    line-height: 1.02;
    letter-spacing: 0.02em;
    max-width: 800px;
    margin-bottom: 24px;
}

.hero__headline span {
    color: var(--amber);
}

.hero__subheadline {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn--primary {
    background: var(--amber);
    color: var(--gray-900);
}

.btn--primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

.btn--ghost {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
}

.btn--ghost:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

.hero__info {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero__info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    animation: float 2.5s ease-in-out infinite;
    z-index: 1;
}

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

.hero__scroll span {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ============================================
   HIGHLIGHTS BAR
   ============================================ */
.highlights-bar {
    background: var(--plum-dark);
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.highlights-bar__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 28px 32px;
}

.highlight-item__icon {
    flex-shrink: 0;
    color: var(--amber);
    margin-top: 2px;
}

.highlight-item strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.highlight-item span {
    color: rgba(255,255,255,0.6);
    font-size: 0.825rem;
    line-height: 1.5;
}

.highlight-divider {
    width: 1px;
    background: rgba(255,255,255,0.1);
    align-self: stretch;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum);
    background: rgba(91, 44, 111, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag--light {
    color: var(--amber-light);
    background: rgba(245, 158, 11, 0.15);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gray-900);
    letter-spacing: 0.02em;
    line-height: 1.08;
    margin-bottom: 16px;
}

.section-title--light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   MENU
   ============================================ */
.menu {
    padding: 100px 24px;
    background: var(--cream);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum), var(--amber), var(--plum-light));
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.menu-card--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.menu-card--featured .menu-card__img {
    height: 280px;
}

.menu-card__geometric {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--amber);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

.menu-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--amber);
    color: var(--gray-900);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 2;
}

.menu-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.menu-card__body {
    padding: 24px;
}

.menu-card__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gray-900);
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.menu-card__desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 16px;
}

.menu-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--plum);
    background: rgba(91, 44, 111, 0.07);
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.menu-cta {
    text-align: center;
    padding: 32px;
    background: rgba(91, 44, 111, 0.05);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    color: var(--gray-600);
}

.menu-cta a {
    color: var(--plum);
    font-weight: 600;
    border-bottom: 2px solid var(--amber);
    transition: var(--transition);
}

.menu-cta a:hover {
    color: var(--plum-dark);
}

/* ============================================
   HIGHLIGHTS
   ============================================ */
.highlights {
    padding: 100px 24px;
    background: var(--plum);
    position: relative;
    overflow: hidden;
}

.highlights::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: var(--amber);
    border-radius: 50%;
    opacity: 0.06;
}

.highlights::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--plum-light);
    border-radius: 50%;
    opacity: 0.15;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

.feature-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--amber-light));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-card__accent {
    opacity: 1;
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    color: var(--amber);
    margin-bottom: 20px;
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.feature-card__text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 100px 24px;
    background: var(--cream);
    position: relative;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__image-stack {
    position: relative;
    height: 560px;
}

.about__img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__img--1 {
    width: 300px;
    height: 400px;
    top: 0;
    left: 0;
    z-index: 2;
}

.about__img--2 {
    width: 260px;
    height: 340px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.about__geometric {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--amber);
    border-radius: var(--radius-md);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0.25;
    z-index: 0;
}

.about__content {
    max-width: 480px;
}

.about__content .section-tag {
    margin-bottom: 16px;
}

.about__content .section-title {
    margin-bottom: 24px;
}

.about__text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.about__stat {
    text-align: center;
    flex: 1;
}

.about__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--plum);
    line-height: 1;
    margin-bottom: 6px;
}

.about__stat-label {
    font-size: 0.78rem;
    color: var(--gray-600);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about__stat-divider {
    width: 1px;
    height: 48px;
    background: var(--gray-200);
}

/* ============================================
   VISIT
   ============================================ */
.visit {
    padding: 100px 24px;
    background: var(--plum-deeper);
    position: relative;
    overflow: hidden;
}

.visit__bg-geo {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--plum);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    opacity: 0.3;
}

.visit__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.visit__left .section-title {
    margin-bottom: 16px;
}

.visit__text {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateX(4px);
}

.contact-card__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    color: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-sm);
}

.contact-card__icon svg {
    width: 20px;
    height: 20px;
}

.contact-card div {
    flex: 1;
    min-width: 0;
}

.contact-card strong {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.contact-card span {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.contact-card svg {
    color: var(--amber);
    flex-shrink: 0;
    opacity: 0;
    transition: var(--transition);
}

.contact-card:hover svg {
    opacity: 1;
}

.map-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 7/5;
}

.map-wrapper__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-wrapper__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42,21,53,0.6), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.map-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--white);
}

.map-pin svg {
    color: var(--amber);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.map-pin span {
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(0,0,0,0.5);
    padding: 4px 10px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    padding: 64px 24px 32px;
    color: rgba(255,255,255,0.6);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer__brand {
    max-width: 320px;
}

.footer__brand .logo {
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.footer__links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--amber);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.825rem;
}

.footer__bottom a {
    color: var(--amber);
    transition: var(--transition);
}

.footer__bottom a:hover {
    color: var(--amber-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .menu-card--featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    .menu-card--featured .menu-card__img {
        height: 240px;
    }
    .about__inner {
        gap: 48px;
    }
    .about__image-stack {
        height: 440px;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    .nav__list {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--plum-deeper);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 32px 40px;
        gap: 4px;
        transform: translateX(100%);
        transition: var(--transition);
        box-shadow: -8px 0 40px rgba(0,0,0,0.3);
    }
    .nav__list.open {
        transform: translateX(0);
    }
    .nav__link {
        padding: 14px 16px;
        font-size: 1rem;
    }
    .nav__cta {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        padding: 14px;
    }
    .highlights-bar__inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .highlight-divider {
        display: none;
    }
    .highlight-item {
        padding: 24px 20px;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .menu-card--featured {
        grid-column: span 1;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .about__inner {
        grid-template-columns: 1fr;
    }
    .about__image-stack {
        height: 360px;
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }
    .about__content {
        max-width: 100%;
    }
    .visit__inner {
        grid-template-columns: 1fr;
    }
    .footer__top {
        flex-direction: column;
    }
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .highlights-bar__inner {
        grid-template-columns: 1fr;
    }
    .hero__actions {
        flex-direction: column;
    }
    .btn {
        justify-content: center;
        width: 100%;
    }
    .hero__info {
        flex-direction: column;
        gap: 12px;
    }
    .about__stats {
        flex-direction: column;
        gap: 20px;
    }
    .about__stat-divider {
        width: 48px;
        height: 1px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
