/* ========================================
   Hair By Mary — Custom Styles
   Deep Navy + Warm Gold | Minimalist
======================================== */

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

:root {
    --navy: #0F1C3F;
    --navy-light: #1A2D56;
    --navy-dark: #091229;
    --gold: #C8A45E;
    --gold-light: #D4B76E;
    --gold-pale: #F5EDD8;
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --cream: #F7F5F0;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --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);
    font-weight: 300;
    color: var(--gray-700);
    background: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

/* ========================================
   NAVIGATION
======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out);
}

.nav.scrolled {
    border-bottom-color: var(--gray-200);
    background: rgba(250, 250, 248, 0.95);
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-600);
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-cta {
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold) !important;
    padding: 8px 20px;
    border-radius: 100px;
    transition: all 0.3s ease !important;
    letter-spacing: 0.06em !important;
}

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

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--navy);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ========================================
   HERO
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--off-white);
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 164, 94, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(15, 28, 63, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 540px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero-headline em {
    font-style: italic;
    font-weight: 300;
}

.hero-headline .gold {
    color: var(--gold);
}

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 40px;
    max-width: 440px;
}

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

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15, 28, 63, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--gray-300);
}

.btn-ghost:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
}

.btn-white:hover {
    background: var(--gold-pale);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

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

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

/* ========================================
   HERO VISUAL + STAT CARDS
======================================== */
.hero-visual {
    position: relative;
    max-width: 480px;
    margin-left: auto;
}

.hero-image-card {
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(15, 28, 63, 0.15);
    aspect-ratio: 500/640;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 16px 48px rgba(15, 28, 63, 0.12);
    border: 1px solid var(--gray-100);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number span {
    color: var(--gold);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--gray-500);
    line-height: 1.4;
}

.stat-card--1 {
    top: 40px;
    right: -30px;
    animation: float 6s ease-in-out infinite;
}

.stat-card--2 {
    bottom: 120px;
    left: -40px;
    animation: float 6s ease-in-out infinite 2s;
}

.stat-card--3 {
    bottom: 30px;
    right: -20px;
    animation: float 6s ease-in-out infinite 4s;
}

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

/* ========================================
   HERO SCROLL INDICATOR
======================================== */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ========================================
   SECTION COMMON
======================================== */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 24px auto 0;
}

/* ========================================
   SERVICES
======================================== */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.service-card {
    padding: 40px 28px;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(15, 28, 63, 0.08);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-500);
}

/* ========================================
   PRODUCTS
======================================== */
.products {
    background: var(--off-white);
    padding-top: 100px;
    padding-bottom: 100px;
}

.products-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.products-text .section-eyebrow {
    text-align: left;
}

.products-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.products-text .section-line {
    margin: 0 0 32px 0;
}

.products-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.products-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.products-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--gray-600);
}

.products-list li svg {
    color: var(--gold);
    flex-shrink: 0;
}

.products-images {
    position: relative;
}

.product-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.product-img {
    border-radius: 16px;
    overflow: hidden;
}

.product-img--1 {
    grid-row: 1 / 3;
    aspect-ratio: 400/500;
}

.product-img--2 {
    aspect-ratio: 400/300;
}

.product-img--3 {
    aspect-ratio: 400/300;
}

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

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

/* ========================================
   ABOUT
======================================== */
.about {
    background: var(--white);
    overflow: hidden;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 20px;
}

.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 1px solid var(--gold);
    border-radius: 20px;
    z-index: -1;
}

.about-content .section-eyebrow {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 0 0 32px 0;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--gray-500);
    margin-bottom: 20px;
}

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

.signature-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--navy);
}

.signature-title {
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-400);
}

/* ========================================
   CTA STRIP
======================================== */
.cta-strip {
    background: var(--navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200, 164, 94, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

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

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

/* ========================================
   VISIT
======================================== */
.visit {
    background: var(--cream);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.visit-info .section-eyebrow {
    text-align: left;
}

.visit-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.visit-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 0 0 40px 0;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.visit-detail-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.visit-detail-value {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.visit-detail-value a {
    color: var(--navy);
    transition: color 0.3s ease;
}

.visit-detail-value a:hover {
    color: var(--gold);
}

.visit-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 28, 63, 0.08);
}

/* ========================================
   CONTACT FORM
======================================== */
.visit-form-wrapper {
    position: sticky;
    top: 100px;
}

.visit-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 44px;
    box-shadow: 0 16px 48px rgba(15, 28, 63, 0.06);
    border: 1px solid var(--gray-100);
}

.visit-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-sub {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray-700);
    background: var(--gray-50);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 164, 94, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.active {
    display: block;
    animation: fadeIn 0.5s var(--ease-out);
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--navy);
    margin: 16px 0 8px;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

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

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--navy-dark);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-phone {
    font-size: 1rem;
    color: var(--gold) !important;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: var(--gold-light) !important;
}

.footer-contact p {
    font-size: 0.88rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   SCROLL ANIMATIONS
======================================== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

[data-aos].aos-delay-1 { transition-delay: 0.1s; }
[data-aos].aos-delay-2 { transition-delay: 0.2s; }
[data-aos].aos-delay-3 { transition-delay: 0.3s; }
[data-aos].aos-delay-4 { transition-delay: 0.4s; }

/* ========================================
   MOBILE MENU
======================================== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15, 28, 63, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--off-white);
    z-index: 1001;
    padding: 100px 40px 40px;
    transition: right 0.5s var(--ease-out);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--navy);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--gold);
    padding-left: 12px;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-sub {
        margin: 0 auto 40px;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-layout,
    .about-layout,
    .visit-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .products-text .section-eyebrow,
    .products-text .section-title,
    .about-content .section-eyebrow,
    .about-content .section-title,
    .visit-info .section-eyebrow,
    .visit-info .section-title {
        text-align: center;
    }

    .products-text .section-line,
    .about-content .about-line,
    .visit-info .visit-line {
        margin: 0 auto 32px;
    }

    .products-list {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px;
    }

    .products-text .btn {
        margin: 0 auto;
    }

    .about-image img {
        height: 500px;
    }

    .about-accent {
        display: none;
    }

    .visit-form-wrapper {
        position: static;
    }

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

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-menu-overlay {
        display: block;
        pointer-events: none;
    }

    .mobile-menu-overlay.active {
        pointer-events: all;
    }

    .hero {
        padding: 100px 0 100px;
        min-height: auto;
    }

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

    .stat-card {
        padding: 14px 18px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-card--1 {
        right: -10px;
        top: 20px;
    }

    .stat-card--2 {
        left: -10px;
        bottom: 100px;
    }

    .stat-card--3 {
        right: 0;
        bottom: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 28px 24px;
    }

    .product-img-grid {
        grid-template-columns: 1fr;
    }

    .product-img--1 {
        grid-row: auto;
        aspect-ratio: 400/300;
    }

    .visit-form-card {
        padding: 28px;
    }

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

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

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

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

    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
