/* ========================================
   Frankie's Plaza Lounge — Stylesheet
   Teal + Slate Grey | Vibrant Modern
   ======================================== */

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

:root {
    /* Teal palette */
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;
    --teal-950: #042f2e;

    /* Slate palette */
    --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;
    --slate-950: #020617;

    /* Accent yellow */
    --accent-yellow: #fbbf24;
    --accent-yellow-light: #fef3c7;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', 'Segoe UI', system-ui, sans-serif;

    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem) clamp(1.25rem, 4vw, 3rem);
    --container-max: 1200px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.15);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

body {
    font-family: var(--font-body);
    color: var(--slate-800);
    background: var(--slate-50);
    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;
}

ul {
    list-style: none;
}

/* --- Decorative Fixed Shapes --- */
.deco-shape {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    opacity: 0.06;
}

.deco-circle-1 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--teal-500);
    top: -100px;
    right: -100px;
}

.deco-square-1 {
    width: 200px;
    height: 200px;
    background: var(--accent-yellow);
    bottom: 20%;
    left: -50px;
    transform: rotate(15deg);
}

.deco-triangle-1 {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid var(--teal-400);
    top: 50%;
    right: 5%;
    opacity: 0.04;
}

.deco-circle-2 {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--teal-600);
    bottom: 10%;
    right: 10%;
    opacity: 0.04;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--slate-900);
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--teal-600);
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 900;
}

.nav-logo:hover .nav-logo-icon {
    background: var(--teal-700);
    transform: rotate(-5deg) scale(1.05);
    transition: transform 0.2s ease, background 0.2s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-600);
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-600);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--teal-700);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--teal-600) !important;
    color: white !important;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--teal-700) !important;
    transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--slate-50);
    padding: 100px 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open .mobile-menu-inner {
    transform: translateX(0);
}

.mobile-menu-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--slate-700);
    padding: 12px 0;
    border-bottom: 1px solid var(--slate-200);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu-link:hover {
    color: var(--teal-700);
    padding-left: 8px;
}

.mobile-menu-cta {
    margin-top: 1rem;
    border-bottom: none;
    background: var(--teal-600);
    color: white;
    text-align: center;
    border-radius: var(--radius-sm);
    padding: 14px !important;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--slate-700);
    border: 2px solid var(--slate-300);
}

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

.btn-light {
    background: white;
    color: var(--teal-800);
    box-shadow: var(--shadow-md);
}

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

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* --- Section shared --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-700);
    background: var(--teal-50);
    border: 1px solid var(--teal-200);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.section-tag--light {
    color: var(--accent-yellow);
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: 1.25rem;
}

.section-title--light {
    color: white;
}

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

.text-accent-yellow {
    color: var(--accent-yellow);
}

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

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--slate-900);
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

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

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.3) 0%, transparent 70%);
    top: -200px;
    left: -150px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    bottom: -100px;
    right: 20%;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.2) 0%, transparent 70%);
    top: 40%;
    right: 5%;
}

/* Geometric accent shapes */
.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 48%;
    width: 60px;
    height: 60px;
    background: var(--accent-yellow);
    transform: rotate(45deg);
    opacity: 0.6;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--teal-500);
    opacity: 0.25;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--teal-200);
    margin-bottom: 1.75rem;
    backdrop-filter: blur(8px);
}

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

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

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
}

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

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--slate-300);
    margin-bottom: 2.25rem;
    max-width: 500px;
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal-300);
}

.hero-stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate-400);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(148, 163, 184, 0.3);
}

/* Hero right — image */
.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--teal-500);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 5/6;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-800);
    z-index: 3;
}

.hero-floating-card svg {
    color: var(--teal-600);
    flex-shrink: 0;
}

.hero-floating-card-1 {
    top: 15%;
    left: -30px;
    animation: float-1 4s ease-in-out infinite;
}

.hero-floating-card-2 {
    bottom: 20%;
    right: -25px;
    animation: float-2 5s ease-in-out infinite;
}

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

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

/* ========================================
   ABOUT
   ======================================== */
.about {
    position: relative;
    padding: var(--section-padding);
    overflow: hidden;
}

.about-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.about-geometric {
    position: relative;
    height: 500px;
}

.geo-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--teal-100);
    top: 0;
    left: 0;
}

.geo-square {
    position: absolute;
    width: 180px;
    height: 180px;
    background: var(--accent-yellow);
    bottom: 40px;
    right: 20px;
    transform: rotate(20deg);
    border-radius: var(--radius-md);
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--teal-400);
    top: 60px;
    right: 60px;
    opacity: 0.7;
}

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

.about-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--slate-700);
    margin-bottom: 1.25rem;
}

.about-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate-500);
    margin-bottom: 2.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--teal-50);
    border: 1px solid var(--teal-200);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-700);
}

.about-feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.about-feature-desc {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.6;
}

/* ========================================
   PRODUCTS
   ======================================== */
.products {
    padding: var(--section-padding);
    background: var(--slate-100);
    position: relative;
}

/* Geometric accent bar */
.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-600), var(--teal-400), var(--accent-yellow), var(--teal-600));
}

.products-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.products-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.products-header .section-subtitle {
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card-image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 1.5rem;
}

.product-card-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.product-card--teal .product-card-tag {
    background: var(--teal-100);
    color: var(--teal-800);
}

.product-card--slate .product-card-tag {
    background: var(--slate-100);
    color: var(--slate-700);
}

.product-card--accent .product-card-tag {
    background: var(--accent-yellow-light);
    color: #92400e;
}

.product-card--teal-dark .product-card-tag {
    background: var(--teal-900);
    color: var(--teal-200);
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.product-card-desc {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.7;
}

/* ========================================
   COMMUNITY / CTA
   ======================================== */
.community {
    position: relative;
    padding: var(--section-padding);
    background: var(--slate-900);
    overflow: hidden;
}

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

.comm-geo-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(13, 148, 136, 0.2);
    top: -80px;
    left: -80px;
}

.comm-geo-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(251, 191, 36, 0.1);
    bottom: -60px;
    right: 10%;
    border-radius: var(--radius-lg);
    transform: rotate(30deg);
}

.comm-geo-3 {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(45, 212, 191, 0.15);
    top: 30%;
    right: 5%;
}

.community-container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.community-content {
    color: white;
}

.community-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--slate-300);
    margin-bottom: 2.25rem;
}

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

/* Community right decorative image block */
.community-visual {
    position: relative;
}

.community-visual-block {
    background: linear-gradient(135deg, var(--teal-800), var(--teal-950));
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.community-visual-block::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.1);
}

.community-visual-stat {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.community-visual-stat:last-child {
    border-bottom: none;
}

.community-visual-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--teal-300);
    line-height: 1;
}

.community-visual-label {
    font-size: 0.9rem;
    color: var(--slate-300);
    line-height: 1.4;
}

/* ========================================
   VISIT
   ======================================== */
.visit {
    padding: var(--section-padding);
    background: white;
}

.visit-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.visit-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

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

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.visit-info-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--slate-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.visit-info-card:hover {
    border-color: var(--teal-300);
    box-shadow: var(--shadow-sm);
}

.visit-info-card--hours {
    background: var(--teal-600);
    border-color: var(--teal-600);
    color: white;
}

.visit-info-card--hours .visit-info-title {
    color: white;
}

.visit-info-card--hours .visit-info-text {
    color: var(--teal-100);
}

.visit-info-card--hours .visit-info-note {
    color: var(--teal-200);
}

.visit-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--teal-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-700);
}

.visit-info-card--hours .visit-info-icon {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.visit-info-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.visit-info-text {
    font-size: 0.9rem;
    color: var(--slate-600);
    line-height: 1.6;
}

.visit-info-text a {
    color: var(--teal-700);
    transition: color 0.2s ease;
}

.visit-info-text a:hover {
    color: var(--teal-500);
    text-decoration: underline;
}

.visit-info-note {
    font-size: 0.8rem;
    color: var(--slate-400);
    margin-top: 4px;
    font-style: italic;
}

.visit-info-card--hours .visit-info-note {
    color: var(--teal-200);
}

/* Map placeholder */
.visit-map {
    background: var(--slate-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--slate-200);
    min-height: 380px;
}

.visit-map-placeholder {
    height: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visit-map-inner {
    text-align: center;
    padding: 2rem;
}

.visit-map-inner svg {
    color: var(--teal-600);
    margin-bottom: 1rem;
}

.visit-map-inner p {
    font-size: 1rem;
    color: var(--slate-700);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: var(--section-padding);
    background: var(--slate-50);
}

.contact-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate-500);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--slate-700);
}

.contact-detail svg {
    color: var(--teal-600);
    flex-shrink: 0;
}

.contact-detail a {
    color: var(--teal-700);
    transition: color 0.2s ease;
}

.contact-detail a:hover {
    color: var(--teal-500);
    text-decoration: underline;
}

/* Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-200);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--slate-800);
    background: var(--slate-50);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
    background: white;
}

.form-input::placeholder {
    color: var(--slate-400);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    padding: 14px 18px;
    background: var(--teal-50);
    border: 1px solid var(--teal-200);
    border-radius: var(--radius-sm);
    color: var(--teal-800);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-success svg {
    color: var(--teal-600);
    flex-shrink: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--slate-950);
    color: white;
    padding: 4rem clamp(1.25rem, 4vw, 3rem) 0;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--teal-600);
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 900;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--slate-400);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-400);
    margin-bottom: 1rem;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--slate-300);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: var(--teal-400);
    padding-left: 4px;
}

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

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
}

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

.footer-hours-time {
    color: var(--teal-400);
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--slate-500);
}

.footer-location {
    font-size: 0.82rem;
    color: var(--slate-500);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2.5rem;
    }

    .about-container {
        gap: 2.5rem;
    }

    .about-geometric {
        height: 350px;
    }

    .geo-circle {
        width: 200px;
        height: 200px;
    }

    .geo-square {
        width: 130px;
        height: 130px;
    }

    .community-container {
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-right {
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-floating-card-1 {
        left: -10px;
    }

    .hero-floating-card-2 {
        right: -10px;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-geometric {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .community-container {
        grid-template-columns: 1fr;
    }

    .community-visual {
        display: none;
    }

    .visit-grid {
        grid-template-columns: 1fr;
    }

    .visit-map {
        min-height: 280px;
    }

    .visit-map-placeholder {
        min-height: 280px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 4rem;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .hero-floating-card {
        display: none;
    }

    .hero-image-accent {
        display: none;
    }

    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .community-cta {
        flex-direction: column;
    }

    .community-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-floating-card {
        animation: none;
    }

    .hero-badge-dot {
        animation: none;
        opacity: 1;
    }
}
