/* ============================================
   Cotton's Service Station — Stylesheet
   Teal + Slate Grey | Warm & Friendly
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #334155;
    background-color: #f8fafc;
    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;
}

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #0d9488;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 8px;
    z-index: 1000;
    font-weight: 600;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

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

/* --- CUSTOM PROPERTIES --- */
:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --warm-50: #fefce8;
    --warm-100: #fef9c3;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.14), 0 8px 20px rgba(15, 23, 42, 0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- DECORATIVE BLOBS --- */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--teal-200);
    top: -100px;
    right: -100px;
    animation: float-blob 20s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--warm-100);
    bottom: 20%;
    left: -100px;
    animation: float-blob 25s ease-in-out infinite reverse;
}

@keyframes float-blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(248, 250, 252, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    padding: 0.6rem 0;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* --- LOGO --- */
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--teal-700);
    font-weight: 700;
    transition: var(--transition);
}

.logo:hover {
    color: var(--teal-600);
}

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

.logo-light:hover {
    color: var(--teal-300);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--slate-500);
}

.logo-light .logo-sub {
    color: var(--slate-400);
}

/* --- NAV --- */
.nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--teal-700);
    background: var(--teal-50);
}

.nav-cta {
    margin-left: 0.5rem;
    background: var(--teal-600);
    color: #fff !important;
    border-radius: var(--radius-sm);
    padding: 0.5rem 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--teal-700);
    color: #fff !important;
    background: var(--teal-700) !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-toggle:hover {
    background: var(--slate-100);
}

.hamburger {
    position: relative;
    width: 18px;
    height: 14px;
    display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { top: 12px; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 6px;
}

.nav-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 6px;
}

/* --- HERO --- */
.hero {
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    color: var(--teal-700);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.hero-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    line-height: 1.1;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .accent {
    color: var(--teal-600);
    font-style: italic;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--slate-600);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal-600);
    color: #fff;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
    background: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
}

.btn-secondary {
    background: #fff;
    color: var(--slate-700);
    border: 1.5px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--teal-300);
    color: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-white {
    background: #fff;
    color: var(--teal-700);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost-white {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
}

.btn-ghost-white:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

/* --- HERO VISUAL --- */
.hero-visual {
    position: relative;
    max-width: 520px;
    margin-left: auto;
}

.hero-card-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.hero-card-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent);
}

.hero-card-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.floating-card-1 {
    top: -20px;
    right: -30px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 60px;
    left: -40px;
    animation-delay: 2s;
}

.floating-card-3 {
    bottom: -15px;
    right: 30px;
    animation-delay: 4s;
}

.floating-icon {
    width: 40px;
    height: 40px;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
    flex-shrink: 0;
}

.floating-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.floating-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--slate-800);
}

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

/* --- HIGHLIGHTS --- */
.highlights {
    padding: 0 0 4rem;
    position: relative;
    z-index: 1;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-100);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal-100);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--teal-50), var(--teal-100));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
    flex-shrink: 0;
}

.highlight-label {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 0.15rem;
}

.highlight-text {
    font-size: 0.82rem;
    color: var(--slate-500);
    line-height: 1.4;
}

/* --- SECTION COMMON --- */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-600);
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-tag-light {
    color: var(--teal-200);
    background: rgba(45, 212, 191, 0.15);
    border-color: rgba(45, 212, 191, 0.3);
}

.section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-title-light {
    color: #fff;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--slate-500);
    line-height: 1.7;
    max-width: 560px;
}

/* --- MENU --- */
.menu {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .section-desc {
    margin: 0 auto;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-500);
    border-radius: 50px;
    border: 1.5px solid var(--slate-200);
    transition: var(--transition);
    background: #fff;
}

.menu-tab:hover {
    color: var(--teal-700);
    border-color: var(--teal-200);
    background: var(--teal-50);
}

.menu-tab.active {
    color: #fff;
    background: var(--teal-600);
    border-color: var(--teal-600);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.menu-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.menu-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--slate-100);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-100);
}

.menu-card-img {
    overflow: hidden;
    height: 160px;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.08);
}

.menu-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.menu-card-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.2rem;
    color: var(--slate-800);
    margin-bottom: 0.4rem;
}

.menu-card-desc {
    font-size: 0.88rem;
    color: var(--slate-500);
    line-height: 1.6;
}

.menu-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--slate-400);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* --- ABOUT --- */
.about {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid #f8fafc;
}

.about-img-secondary img {
    width: 360px;
    height: 280px;
    object-fit: cover;
    display: block;
}

.about-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 72px;
    height: 72px;
    background: var(--teal-600);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
}

.about-content .section-title {
    margin-top: 0.5rem;
}

.about-text {
    font-size: 1rem;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--slate-700);
}

.about-feature-icon {
    width: 36px;
    height: 36px;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
    flex-shrink: 0;
}

/* --- COMMUNITY --- */
.community {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.community-inner {
    background: linear-gradient(135deg, var(--teal-700), var(--teal-800));
    border-radius: var(--radius-xl);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.community-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}

.community-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.community-cards {
    position: relative;
    height: 400px;
}

.community-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: absolute;
}

.community-card:first-child {
    top: 0;
    left: 0;
    width: 260px;
}

.community-card-offset {
    bottom: 0;
    right: 0;
    width: 240px;
    z-index: 2;
    border: 4px solid rgba(13, 148, 136, 0.5);
}

.community-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* --- VISIT --- */
.visit {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.visit-info .section-title {
    margin-bottom: 0.75rem;
}

.visit-desc {
    font-size: 1.05rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.visit-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
    flex-shrink: 0;
}

.visit-detail-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--slate-400);
    margin-bottom: 0.2rem;
}

.visit-detail-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--slate-800);
    line-height: 1.5;
}

.visit-link {
    color: var(--teal-600);
    transition: var(--transition);
}

.visit-link:hover {
    color: var(--teal-700);
    text-decoration: underline;
}

.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 460px;
    border: 1px solid var(--slate-200);
}

/* --- CTA --- */
.cta {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.cta-inner {
    background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
    border-radius: var(--radius-xl);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(13, 148, 136, 0.2);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 460px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-visual {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.cta-img {
    width: 280px;
    height: 340px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: block;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-circle-1 {
    width: 120px;
    height: 120px;
    background: rgba(45, 212, 191, 0.25);
    top: -30px;
    right: -20px;
    animation: float 5s ease-in-out infinite;
}

.cta-circle-2 {
    width: 60px;
    height: 60px;
    background: rgba(254, 249, 195, 0.3);
    bottom: -10px;
    left: -15px;
    animation: float 7s ease-in-out infinite reverse;
}

.cta-circle-3 {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.15);
    top: 50%;
    right: -40px;
    animation: float 4s ease-in-out infinite;
}

/* --- FOOTER --- */
.footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: 4rem 0 0;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.75;
    margin-top: 1rem;
    max-width: 280px;
    color: var(--slate-500);
}

.footer-heading {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-300);
    margin-bottom: 1.25rem;
}

.footer-links ul,
.footer-contact ul,
.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: var(--slate-500);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--teal-400);
}

.hours-day,
.hours-time {
    display: block;
    font-size: 0.9rem;
}

.hours-day {
    color: var(--slate-400);
}

.hours-time {
    color: var(--slate-500);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--slate-600);
}

.footer-bottom a {
    color: var(--slate-500);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--teal-400);
}

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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- MOBILE NAV OVERLAY --- */
.nav-menu.mobile-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 252, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-menu.mobile-open.open {
    opacity: 1;
    pointer-events: all;
}

.nav-menu.mobile-open .nav-link {
    font-size: 1.2rem;
    padding: 0.75rem 1.5rem;
}

.nav-menu.mobile-open .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 2.5rem;
    }
    
    .about-grid {
        gap: 2.5rem;
    }
    
    .community-inner {
        padding: 3rem;
    }
    
    .cta-inner {
        padding: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .hero {
        padding: 7rem 0 3.5rem;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .floating-card-1 {
        right: -10px;
        top: -10px;
    }
    
    .floating-card-2 {
        left: -10px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img-secondary {
        right: 10px;
        bottom: -20px;
    }
    
    .about-img-main img {
        height: 360px;
    }
    
    .community-inner {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }
    
    .community-cards {
        height: 300px;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .visit-map {
        height: 320px;
    }
    
    .cta-inner {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        text-align: center;
    }
    
    .cta-text {
        margin: 0 auto 2rem;
    }
    
    .cta-actions {
        justify-content: center;
    }
    
    .cta-visual {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.15rem;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-tabs {
        gap: 0.4rem;
    }
    
    .menu-tab {
        padding: 0.5rem 1rem;
        font-size: 0.82rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        padding: 0.75rem 1rem;
    }
    
    .floating-card-1 {
        top: -5px;
        right: 5px;
    }
    
    .floating-card-2 {
        left: 5px;
    }
    
    .about-img-secondary {
        width: 200px;
    }
    
    .about-img-secondary img {
        height: 160px;
    }
}
