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

:root {
    --burgundy-950: #3b0c0b;
    --burgundy-900: #6e1c1a;
    --burgundy-800: #87211f;
    --burgundy-700: #a52723;
    --burgundy-600: #c23530;
    --burgundy-500: #dd5854;
    --blush-50: #fff5f5;
    --blush-100: #ffece8;
    --blush-200: #ffd8cf;
    --blush-300: #ffbaa8;
    --blush-400: #ff8c75;
    --blush-500: #ff5f40;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--burgundy-950);
    color: var(--blush-50);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== SIDE NAVIGATION ===== */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 100vh;
    background: linear-gradient(180deg, var(--burgundy-950) 0%, #2a0807 100%);
    border-right: 1px solid rgba(255, 186, 168, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 1.5rem;
    z-index: 1000;
    overflow-y: auto;
}

.nav-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 186, 168, 0.1);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.logo-letter {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--blush-300);
    line-height: 1;
    text-shadow: 0 0 40px rgba(255, 186, 168, 0.3);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush-200);
}

.nav-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--blush-400);
    margin-top: 0.5rem;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.5rem 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all var(--transition-fast);
    color: var(--blush-300);
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 186, 168, 0.1);
    color: var(--blush-100);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(221, 88, 84, 0.3), rgba(194, 53, 48, 0.2));
    color: var(--blush-50);
}

.nav-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.7;
}

.nav-link:hover .nav-icon,
.nav-link.active .nav-icon {
    opacity: 1;
}

.nav-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 186, 168, 0.1);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--blush-400);
}

.phone-icon {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

.nav-phone a {
    transition: color var(--transition-fast);
}

.nav-phone a:hover {
    color: var(--blush-200);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-left: 220px;
    min-height: 100vh;
}

.section {
    min-height: 100vh;
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
}

/* ===== HERO SECTION ===== */
.hero-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--burgundy-950);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

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

.geo-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--burgundy-600);
    top: -100px;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--blush-500);
    bottom: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--burgundy-400);
    top: 40%;
    right: 5%;
    animation: float 10s ease-in-out infinite;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--blush-400);
    bottom: 20%;
    right: 30%;
    animation: float 7s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 186, 168, 0.08);
    border: 1px solid rgba(255, 186, 168, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--blush-300);
    margin-bottom: 1.5rem;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-accent {
    color: var(--blush-300);
    text-shadow: 0 0 60px rgba(255, 186, 168, 0.3);
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--blush-200);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--burgundy-600), var(--burgundy-700));
    color: var(--blush-50);
    box-shadow: 0 4px 20px rgba(194, 53, 48, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(194, 53, 48, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--blush-200);
    border: 1px solid rgba(255, 186, 168, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 186, 168, 0.08);
    border-color: rgba(255, 186, 168, 0.4);
}

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

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

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blush-200);
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blush-400);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 186, 168, 0.15);
}

.hero-image {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.image-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

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

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--blush-500), var(--burgundy-600));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.6;
}

/* ===== SECTION LABELS ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blush-400);
    margin-bottom: 1rem;
}

.label-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--blush-400), transparent);
    border-radius: 2px;
}

.label-line-light {
    background: linear-gradient(90deg, var(--blush-300), transparent);
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-light {
    color: var(--blush-50);
}

.title-accent-light {
    color: var(--blush-300);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: linear-gradient(180deg, var(--burgundy-950) 0%, #2a0807 100%);
}

.section-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(221, 88, 84, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255, 140, 117, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.about-visual {
    position: relative;
}

.about-image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 4px solid var(--burgundy-950);
}

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

.about-badge {
    position: absolute;
    top: -15px;
    left: -15px;
    background: linear-gradient(135deg, var(--burgundy-600), var(--burgundy-800));
    padding: 1rem 1.25rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.badge-year {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blush-100);
}

.badge-text {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush-300);
}

.about-content {
    max-width: 500px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--blush-200);
    margin-bottom: 1.25rem;
}

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

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

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(255, 186, 168, 0.08);
    border: 1px solid rgba(255, 186, 168, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    color: var(--blush-300);
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blush-100);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--blush-400);
    line-height: 1.5;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    background: linear-gradient(180deg, #2a0807 0%, var(--burgundy-950) 50%, #2a0807 100%);
    padding: 6rem 3rem;
}

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

.products-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.shape-a {
    width: 400px;
    height: 400px;
    background: var(--burgundy-700);
    top: -100px;
    left: -100px;
    opacity: 0.2;
}

.shape-b {
    width: 300px;
    height: 300px;
    background: var(--blush-500);
    bottom: -50px;
    right: -50px;
    opacity: 0.15;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.products-subtitle {
    font-size: 1.1rem;
    color: var(--blush-300);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.product-card {
    background: rgba(255, 186, 168, 0.04);
    border: 1px solid rgba(255, 186, 168, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 186, 168, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blush-100);
    margin-bottom: 0.5rem;
}

.product-info p {
    font-size: 0.85rem;
    color: var(--blush-400);
    line-height: 1.6;
}

.products-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 186, 168, 0.05);
    border: 1px solid rgba(255, 186, 168, 0.1);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--blush-300);
}

.products-note svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--blush-400);
}

/* ===== QUALITY SECTION ===== */
.quality-section {
    background: linear-gradient(135deg, var(--burgundy-900) 0%, var(--burgundy-950) 100%);
}

.quality-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 186, 168, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 186, 168, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.quality-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.quality-card {
    background: rgba(255, 186, 168, 0.04);
    border: 1px solid rgba(255, 186, 168, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all var(--transition-fast);
}

.quality-card:hover {
    border-color: rgba(255, 186, 168, 0.2);
    background: rgba(255, 186, 168, 0.06);
}

.quality-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 186, 168, 0.1);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.quality-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--blush-100);
    margin-bottom: 0.5rem;
}

.quality-card p {
    font-size: 0.85rem;
    color: var(--blush-400);
    line-height: 1.6;
}

.quality-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

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

.quality-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(59, 12, 11, 0.9));
}

.quality-quote {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quality-quote svg {
    width: 32px;
    height: 32px;
    color: var(--blush-400);
    opacity: 0.6;
}

.quality-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--blush-200);
    line-height: 1.5;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(180deg, var(--burgundy-950) 0%, #2a0807 100%);
}

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

.contact-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    width: 350px;
    height: 350px;
    background: var(--burgundy-700);
    top: -100px;
    right: -100px;
    opacity: 0.15;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--blush-500);
    bottom: 10%;
    left: -50px;
    opacity: 0.1;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--burgundy-500);
    top: 50%;
    right: 20%;
    opacity: 0.12;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--blush-300);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 186, 168, 0.04);
    border: 1px solid rgba(255, 186, 168, 0.08);
    border-radius: 16px;
    transition: all var(--transition-fast);
}

.info-card:hover {
    border-color: rgba(255, 186, 168, 0.2);
    background: rgba(255, 186, 168, 0.06);
}

.info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--burgundy-700), var(--burgundy-800));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--blush-300);
}

.info-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--blush-100);
    margin-bottom: 0.25rem;
}

.info-text p,
.info-text a {
    font-size: 0.9rem;
    color: var(--blush-400);
    line-height: 1.5;
}

.info-text a:hover {
    color: var(--blush-200);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.map-container iframe {
    border-radius: 12px;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background: rgba(255, 186, 168, 0.04);
    border: 1px solid rgba(255, 186, 168, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blush-100);
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--blush-400);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--blush-300);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 186, 168, 0.05);
    border: 1px solid rgba(255, 186, 168, 0.12);
    border-radius: 10px;
    color: var(--blush-100);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blush-400);
    background: rgba(255, 186, 168, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 140, 117, 0.1);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1rem;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    width: 48px;
    height: 48px;
    color: var(--blush-400);
}

.form-success h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blush-100);
}

.form-success p {
    font-size: 0.95rem;
    color: var(--blush-400);
}

/* ===== FOOTER ===== */
.footer {
    background: #1a0504;
    border-top: 1px solid rgba(255, 186, 168, 0.08);
    padding: 4rem 3rem 2rem;
    margin-left: 220px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 186, 168, 0.08);
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-letter {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--blush-300);
}

.footer-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blush-200);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--blush-400);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush-300);
    margin-bottom: 1rem;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--blush-400);
    transition: color var(--transition-fast);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p,
.footer-contact a {
    font-size: 0.9rem;
    color: var(--blush-400);
}

.footer-contact a:hover {
    color: var(--blush-200);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: var(--blush-600);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 1100;
    width: 44px;
    height: 44px;
    background: rgba(59, 12, 11, 0.9);
    border: 1px solid rgba(255, 186, 168, 0.15);
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-menu-btn .bar {
    width: 20px;
    height: 2px;
    background: var(--blush-300);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-menu-btn.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.open .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(59, 12, 11, 0.95);
    backdrop-filter: blur(10px);
}

.mobile-nav-overlay.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    color: var(--blush-300);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.mobile-nav-logo .logo-letter {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--blush-300);
}

.mobile-nav-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush-200);
}

.mobile-nav-content nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--blush-200);
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--blush-100);
}

.mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--blush-400);
}

.mobile-nav-contact a {
    color: var(--blush-300);
    transition: color var(--transition-fast);
}

.mobile-nav-contact a:hover {
    color: var(--blush-100);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-section {
        gap: 2rem;
    }
    
    .hero-image {
        max-width: 400px;
    }
}

@media (max-width: 1024px) {
    .side-nav {
        width: 180px;
    }
    
    .main-content,
    .footer {
        margin-left: 180px;
    }
    
    .footer {
        margin-left: 180px;
    }
    
    .about-container,
    .quality-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .quality-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .side-nav {
        transform: translateX(-100%);
        transition: transform var(--transition-medium);
    }
    
    .side-nav.open {
        transform: translateX(0);
    }
    
    .main-content,
    .footer {
        margin-left: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .section {
        padding: 4rem 1.5rem;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 5rem;
    }
    
    .hero-description {
        margin: 0 auto 2rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 300px;
    }
    
    .products-section {
        padding: 4rem 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .about-image-secondary {
        right: -10px;
        bottom: -15px;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}
