/* ═══════════════════════════════════════════════════════
   COSMIC SMOKE DOVER — Styles
   Classic · Elegant · Emerald & Cream
══════════════════════════════════════════════════════ */

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

:root {
    /* Palette */
    --emerald-950: #042f23;
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --emerald-100: #d1fae5;
    --emerald-50:  #ecfdf5;

    --cream-50:  #faf9f6;
    --cream-100: #f5f3ee;
    --cream-200: #ebe7de;
    --cream-300: #e0d9cc;

    --gold-400: #d4a574;
    --gold-500: #c4945e;
    --gold-600: #b07d44;

    --charcoal-900: #111827;
    --charcoal-800: #1f2937;
    --charcoal-700: #374151;
    --charcoal-600: #4b5563;
    --charcoal-500: #6b7280;
    --charcoal-400: #9ca3af;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lora', 'Times New Roman', serif;
    --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-pad: 100px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--cream-50);
    color: var(--charcoal-800);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ── */
.section-tag {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-700);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--emerald-600);
}

.section-tag.light {
    color: var(--emerald-100);
}

.section-tag.light::before {
    background: var(--emerald-400);
    opacity: 0.5;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--charcoal-900);
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    color: var(--emerald-700);
}

.section-sub {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--charcoal-600);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--emerald-700);
    color: #fff;
    box-shadow: 0 4px 16px rgba(6, 78, 59, 0.3);
}

.btn-primary:hover {
    background: var(--emerald-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 78, 59, 0.35);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.btn-primary-light {
    background: #fff;
    color: var(--emerald-900);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-primary-light:hover {
    background: var(--cream-100);
    transform: translateY(-2px);
}

.btn-ghost-light {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-ghost-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(250, 249, 246, 0.97);
    box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--emerald-900);
    flex-shrink: 0;
}

.nav-logo-icon {
    color: var(--emerald-700);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin-left: auto;
}

.nav-links a {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal-700);
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}

.nav-cta {
    background: var(--emerald-700) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    margin-left: 8px;
}

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

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal-800);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.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);
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--emerald-950);
}

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

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(4, 47, 35, 0.92) 0%,
        rgba(6, 78, 59, 0.85) 40%,
        rgba(4, 78, 59, 0.75) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 25% 25%, #fff 1px, transparent 1px),
                      radial-gradient(circle at 75% 75%, #fff 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 28px;
    padding: 8px 16px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 100px;
    background: rgba(212, 165, 116, 0.08);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 24px;
    max-width: 700px;
}

.hero-em {
    font-style: italic;
    color: var(--gold-400);
}

.hero-sub {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ── Floating Stat Cards ── */
.hero-stats {
    position: absolute;
    bottom: 60px;
    right: 24px;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 320px;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 16px 20px;
    color: #fff;
    transition: transform 0.3s var(--ease-out);
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-card--1 { transform: translateY(0); }
.stat-card--2 { transform: translateY(8px); }
.stat-card--3 { transform: translateY(-4px); }
.stat-card--4 { transform: translateY(4px); }

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    line-height: 1.3;
}

/* ════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════ */
.marquee {
    background: var(--emerald-900);
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    padding: 0 32px;
}

.marquee-dot {
    color: var(--gold-400);
    opacity: 0.6;
    font-size: 0.5rem;
    padding: 0 8px;
    align-self: center;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
.about {
    padding: var(--section-pad) 0;
    background: var(--cream-50);
}

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

.about-image-wrap {
    position: relative;
}

.about-image-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(6, 78, 59, 0.12);
}

.about-image-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 180px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--cream-50);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.about-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-seal {
    position: absolute;
    top: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--emerald-800);
    color: #fff;
    padding: 12px 20px;
    border-radius: 100px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(6, 78, 59, 0.3);
}

.about-text {
    padding: 20px 0;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--charcoal-600);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--cream-200);
}

.about-signature .sig-label {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--emerald-800);
}

.about-signature .sig-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--cream-300), transparent);
}

/* ════════════════════════════════════════════
   PRODUCTS
════════════════════════════════════════════ */
.products {
    padding: var(--section-pad) 0;
    background: var(--cream-100);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    transition: all 0.4s var(--ease-out);
    border: 1px solid rgba(0,0,0,0.04);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(6, 78, 59, 0.12);
}

.product-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 47, 35, 0.6), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.product-card-tag {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--gold-400);
    padding: 4px 12px;
    border-radius: 100px;
}

.product-card-body {
    padding: 24px 28px 28px;
}

.product-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal-900);
    margin-bottom: 10px;
}

.product-card-body p {
    font-size: 0.95rem;
    color: var(--charcoal-600);
    line-height: 1.7;
}

/* ════════════════════════════════════════════
   WHY US
════════════════════════════════════════════ */
.why-us {
    padding: var(--section-pad) 0;
    background: var(--cream-50);
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.why-us-intro {
    font-size: 1.05rem;
    color: var(--charcoal-600);
    line-height: 1.85;
    margin-top: 20px;
}

.why-us-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid var(--cream-200);
    transition: all 0.3s var(--ease-out);
}

.why-card:hover {
    border-color: var(--emerald-200);
    box-shadow: 0 8px 32px rgba(6, 78, 59, 0.08);
    transform: translateY(-3px);
}

.why-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--emerald-50);
    color: var(--emerald-700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal-900);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--charcoal-600);
    line-height: 1.7;
}

/* ════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════ */
.cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

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

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--emerald-950) 0%, var(--emerald-900) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-em {
    font-style: italic;
    color: var(--gold-400);
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ════════════════════════════════════════════
   LOCATION
════════════════════════════════════════════ */
.location {
    padding: var(--section-pad) 0;
    background: var(--cream-100);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 56px;
    align-items: stretch;
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.location-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid var(--cream-200);
    transition: all 0.3s var(--ease-out);
}

.location-card:hover {
    border-color: var(--emerald-200);
    box-shadow: 0 8px 24px rgba(6, 78, 59, 0.08);
}

.location-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--emerald-50);
    color: var(--emerald-700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.location-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal-900);
    margin-bottom: 8px;
}

.location-card p {
    font-size: 0.95rem;
    color: var(--charcoal-600);
    line-height: 1.6;
    margin-bottom: 10px;
}

.location-card a {
    color: var(--emerald-700);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.location-card a:hover {
    color: var(--emerald-900);
}

.location-note {
    display: block;
    font-size: 0.8rem;
    color: var(--charcoal-400);
    font-family: var(--font-ui);
    margin-top: 6px;
}

.hours-table {
    width: 100%;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    border-collapse: collapse;
}

.hours-table td {
    padding: 4px 0;
    color: var(--charcoal-700);
    border-bottom: 1px solid var(--cream-200);
}

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

.hours-table td:first-child {
    color: var(--charcoal-600);
}

.location-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    min-height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
    background: var(--emerald-950);
    color: rgba(255,255,255,0.7);
    padding: 72px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.footer-logo-icon {
    color: var(--gold-400);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--gold-400);
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    color: rgba(255,255,255,0.25) !important;
    max-width: 400px;
    text-align: right;
}

/* ════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }

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

/* ── Mobile Nav ── */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 249, 246, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 24px 24px;
        gap: 4px;
        border-bottom: 1px solid var(--cream-200);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.4s var(--ease-out);
        pointer-events: none;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        padding: 12px 16px;
    }

    .nav-cta {
        text-align: center;
        margin-left: 0 !important;
        margin-top: 8px;
    }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    :root {
        --section-pad: 72px;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        margin-top: 48px;
        grid-template-columns: repeat(4, 1fr);
    }

    .stat-card { transform: none !important; }
    .stat-card:hover { transform: translateY(-4px) !important; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-accent {
        width: 120px;
        height: 120px;
        bottom: -20px;
        right: -12px;
    }

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

    .why-us-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-us-cards {
        grid-template-columns: 1fr 1fr;
    }

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

    .location-info {
        grid-template-columns: 1fr;
    }

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

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

    .footer-disclaimer {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .why-us-cards {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}
