/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #fefcf8;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== CSS VARIABLES ===== */
:root {
    --plum-deep: #3D1C3A;
    --plum: #6B2F5B;
    --plum-light: #9B4D7A;
    --plum-pale: #F3E8F0;
    --amber: #D4920B;
    --amber-light: #F5C842;
    --amber-pale: #FFF8E7;
    --neutral-dark: #1a1a2e;
    --neutral: #3a3a5c;
    --neutral-mid: #6b6b8a;
    --neutral-light: #e8e6f0;
    --cream: #fefcf8;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(107,47,91,0.08);
    --shadow-md: 0 4px 20px rgba(107,47,91,0.1);
    --shadow-lg: 0 8px 40px rgba(107,47,91,0.12);
    --shadow-xl: 0 16px 60px rgba(107,47,91,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--amber), var(--plum-light));
    border-radius: 2px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--neutral-dark);
    margin-bottom: 20px;
}
.text-accent { color: var(--plum); }
.text-accent-light { color: var(--amber); }
.section-subtitle {
    font-size: 1.1rem;
    color: var(--neutral-mid);
    max-width: 560px;
    line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--plum), var(--plum-deep));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(107,47,91,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107,47,91,0.4);
}
.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}
.btn-light {
    background: var(--white);
    color: var(--plum);
    box-shadow: var(--shadow-md);
}
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}
.nav.scrolled {
    background: rgba(254,252,248,0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(107,47,91,0.08);
    padding: 12px 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    transition: var(--transition);
}
.nav.scrolled .nav-logo { color: var(--neutral-dark); }
.nav-logo-text { font-size: 1.1rem; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--neutral-mid); }
.nav.scrolled .nav-links a:hover { color: var(--plum); }
.nav-cta {
    background: var(--amber);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--amber-light); transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.nav.scrolled .nav-toggle span { background: var(--neutral-dark); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-gradient-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 40%, #8B3A6A 70%, var(--amber) 100%);
}
.hero-gradient-2 {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(212,146,11,0.25) 0%, transparent 70%);
}
.hero-gradient-3 {
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(61,28,58,0.5) 0%, transparent 70%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
}
.hero { position: relative; }
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    color: var(--amber-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-title-line { display: block; }
.hero-title-accent {
    display: block;
    color: var(--amber-light);
    font-style: italic;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}
.hero-image-col {
    position: relative;
    height: 600px;
}
.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-img-1 {
    width: 320px;
    height: 420px;
    top: 20px;
    right: 40px;
    z-index: 2;
}
.hero-img-2 {
    width: 240px;
    height: 180px;
    bottom: 140px;
    right: 0;
    z-index: 3;
    border: 4px solid rgba(255,255,255,0.2);
}
.hero-img-3 {
    width: 200px;
    height: 140px;
    bottom: 20px;
    right: 100px;
    z-index: 3;
    border: 4px solid rgba(255,255,255,0.2);
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    animation: float 2s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--cream);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images {
    position: relative;
    height: 520px;
}
.about-img-main {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: -40px;
    width: 260px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: linear-gradient(135deg, var(--plum), var(--plum-deep));
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.about-badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber-light);
    display: block;
    line-height: 1;
}
.about-badge-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    margin-top: 4px;
}
.about-content .section-title { margin-bottom: 24px; }
.about-text {
    color: var(--neutral-mid);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--plum-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
}
.about-feature strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--neutral-dark);
    margin-bottom: 2px;
}
.about-feature span {
    font-size: 0.9rem;
    color: var(--neutral-mid);
}

/* ===== PRODUCTS ===== */
.products {
    padding: 120px 0;
    background: var(--white);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.product-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--neutral-light);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.product-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(107,47,91,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-body {
    padding: 28px;
}
.product-card-body h3 {
    font-size: 1.3rem;
    color: var(--neutral-dark);
    margin-bottom: 10px;
}
.product-card-body p {
    font-size: 0.95rem;
    color: var(--neutral-mid);
    line-height: 1.7;
}

/* ===== SPECIALTIES ===== */
.specialties {
    padding: 120px 0;
    background: var(--plum-deep);
    position: relative;
    overflow: hidden;
}
.specialties::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 28px 28px;
}
.specialties-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.specialties-content .section-label { color: var(--amber-light); }
.specialties-content .section-title { color: var(--white); }
.specialties-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}
.specialty-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 24px;
    align-items: start;
}
.specialty-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amber);
    opacity: 0.6;
    padding-top: 4px;
}
.specialty-divider {
    grid-column: 2;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--amber), transparent);
    border-radius: 2px;
    margin-bottom: 8px;
}
.specialty-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}
.specialty-item p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}
.specialties-visual {
    position: relative;
    height: 560px;
}
.spec-img {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.spec-img img { width: 100%; height: 100%; object-fit: cover; }
.spec-img-1 {
    width: 260px;
    height: 340px;
    top: 0;
    left: 0;
    z-index: 2;
}
.spec-img-2 {
    width: 220px;
    height: 160px;
    bottom: 180px;
    left: 60px;
    z-index: 3;
    border: 3px solid var(--plum-deep);
}
.spec-img-3 {
    width: 200px;
    height: 140px;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 3px solid var(--plum-deep);
}

/* ===== VISIT ===== */
.visit {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}
.visit-bg { position: absolute; inset: 0; z-index: 0; }
.visit-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--plum-pale) 0%, var(--amber-pale) 100%);
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.visit-text {
    font-size: 1.05rem;
    color: var(--neutral-mid);
    line-height: 1.8;
    margin-bottom: 36px;
}
.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.visit-detail-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    box-shadow: var(--shadow-sm);
}
.visit-detail strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--neutral-dark);
    margin-bottom: 4px;
}
.visit-detail span, .visit-detail a {
    font-size: 0.95rem;
    color: var(--neutral-mid);
    line-height: 1.6;
}
.visit-detail a:hover { color: var(--plum); text-decoration: underline; }
.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.visit-map-placeholder {
    background: linear-gradient(135deg, var(--plum), var(--plum-deep));
    padding: 48px;
    text-align: center;
    color: var(--white);
    border-radius: var(--radius-lg);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.visit-map-placeholder p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-text {
    font-size: 1.05rem;
    color: var(--neutral-mid);
    line-height: 1.8;
    margin-bottom: 32px;
}
.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-direct-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--plum);
    font-weight: 500;
    transition: var(--transition);
}
.contact-direct-item:hover { color: var(--plum-deep); }
.contact-form-wrapper {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--neutral-light);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neutral);
    letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--neutral-light);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--neutral-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(107,47,91,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--neutral-light);
}
.form-group textarea { resize: vertical; }
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}
.form-success.show { display: flex; }
.form-success-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--plum), var(--plum-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.form-success h3 {
    font-size: 1.5rem;
    color: var(--neutral-dark);
}
.form-success p {
    color: var(--neutral-mid);
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--neutral-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links a,
.footer-links span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    padding: 6px 0;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--amber-light); }
.footer-links span { cursor: default; }
.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 12px;
}
.footer-contact a {
    display: block;
    font-size: 0.9rem;
    color: var(--amber-light);
    transition: var(--transition);
}
.footer-contact a:hover { color: var(--amber); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-image-col { display: none; }
    .hero-content { text-align: center; }
    .hero-subtitle { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-images { height: 400px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .specialties-layout { grid-template-columns: 1fr; gap: 48px; }
    .specialties-visual { height: 400px; }
    .visit-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        z-index: 999;
    }
    .nav-links.open { right: 0; }
    .nav-links a { color: var(--neutral) !important; font-size: 1.05rem; }
    .nav-toggle { display: flex; z-index: 1001; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .products-grid { grid-template-columns: 1fr; }
    .about-images { height: 320px; }
    .about-img-secondary { right: -10px; width: 200px; height: 160px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .contact-form-wrapper { padding: 24px; }
    .specialties-visual { height: 320px; }
    .spec-img-1 { width: 180px; height: 240px; }
    .spec-img-2 { width: 160px; height: 120px; }
    .spec-img-3 { width: 150px; height: 110px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .about-experience-badge { right: 0; }
}
