/* MK Derma Laser & Skincare — Luxury Aesthetic Theme */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
    --gold-light: #F5D88A;
    --gold: #D4A857;
    --gold-dark: #B8723F;
    --rose: #E8B4A0;
    --rose-bright: #FF9A8B;
    --bg-dark: #0a0606;
    --bg-card: #15101a;
    --bg-elevated: #1a1015;
    --border: rgba(212, 168, 87, 0.2);
    --border-light: rgba(212, 168, 87, 0.4);
    --text: #f5f0e8;
    --text-muted: #a89890;
    --gold-gradient: linear-gradient(135deg, #F5D88A 0%, #D4A857 50%, #B8723F 100%);
    --rose-gradient: linear-gradient(135deg, #FF9A8B 0%, #E8B4A0 50%, #B87E6E 100%);
}

body {
    font-family: 'Manrope', system-ui, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.65;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

/* Hero title uses Cinzel - matches the logo's all-caps elegance */
.hero-title {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Brand name in header/footer */
.brand-name {
    font-family: 'Cinzel', serif !important;
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-rose {
    background: var(--rose-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 168, 87, 0.1);
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.0625rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #1a0e0a;
    box-shadow: 0 4px 20px rgba(212, 168, 87, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 87, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    background: rgba(212, 168, 87, 0.1);
    border-color: var(--gold);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 6, 6, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.brand-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    object-fit: contain;
    object-position: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.05em;
}

.brand-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

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

.nav-links a.btn {
    color: #1a0e0a;
}

.menu-toggle {
    display: none;
    background: transparent;
    color: var(--gold);
    border: none;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    padding: 6rem 0 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 6, 6, 0.85) 0%, rgba(10, 6, 6, 0.95) 50%, var(--bg-dark) 100%),
        url('../images/logo-mk.jpeg') center/cover no-repeat,
        var(--bg-dark);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(212, 168, 87, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 154, 139, 0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin: 1.5rem 0;
    line-height: 1.1;
}

.hero-title span {
    display: inline-block;
    margin-right: 0.25em;
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-stats > div {
    text-align: center;
}

.hero-stats strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.hero-stats span {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Trust Bar */
.trust-bar {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.trust-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(212, 168, 87, 0.08) 0%, rgba(255, 154, 139, 0.05) 100%);
    border-color: var(--border-light);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 1.5rem;
    background: var(--gold-gradient);
    color: #1a0e0a;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a0e0a;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.service-price {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9375rem;
}

/* About */
.section-about {
    background: var(--bg-elevated);
}

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

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse, rgba(212, 168, 87, 0.3) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

.about-content .section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-features {
    list-style: none;
    margin: 1.5rem 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text);
    font-size: 0.9375rem;
}

.check {
    color: var(--gold);
    font-weight: 700;
}

/* Technology */
.section-tech {
    background:
        radial-gradient(ellipse at center, rgba(212, 168, 87, 0.05) 0%, transparent 70%),
        var(--bg-dark);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.tech-feature {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(21, 16, 26, 0.5);
    transition: all 0.3s ease;
}

.tech-feature:hover {
    border-color: var(--border-light);
    background: var(--bg-card);
}

.tech-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
}

.tech-feature h3 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
}

.tech-feature p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.stars {
    color: var(--gold);
    font-size: 1.125rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.testimonial p {
    color: var(--text);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.testimonial-author strong {
    display: block;
    color: var(--gold-light);
    font-style: normal;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* CTA */
.section-cta {
    background:
        radial-gradient(ellipse at top, rgba(212, 168, 87, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(255, 154, 139, 0.1) 0%, transparent 60%),
        var(--bg-elevated);
    text-align: center;
}

.cta-content {
    max-width: 720px;
    margin: 0 auto;
}

.cta-content p {
    color: var(--text-muted);
    margin: 1.5rem 0 2.5rem;
    font-size: 1.0625rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item strong {
    display: block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text);
    font-size: 0.9375rem;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form select {
    cursor: pointer;
}

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

.contact-form button {
    margin-top: 0.5rem;
}

/* Footer */
.site-footer {
    background: #050202;
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1rem;
    color: var(--gold);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-grid h4 {
    color: var(--gold-light);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-grid a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-stats strong {
        font-size: 2rem;
    }

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3.5rem 0;
    }

    .brand-sub {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
    }
}
