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

body {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2e2e2e;
    background-color: #f6f6f4;
    line-height: 1.6;
}

/* Topbar & Navbar */

.topbar {
    background: #7e8b54;
    color: #fff;
    font-size: 0.85rem;
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.4rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.topbar-phone {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.navbar {
    background: #9aa76b;
    position: sticky;
    top: 0;
    z-index: 20;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid #f6f6f4;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    font-size: 1.2rem;
    color: #fff;
}

.logo-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f0f0e8;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #fdfdf8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.15rem;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #fdfdf8;
    transition: width 0.2s ease;
}

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

/* Hero */

.hero {
    max-width: 1200px;
    margin: 1.5rem auto 2.5rem;
    padding: 1rem 1.25rem 0;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #3a3f25;
}

.tagline {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7e8b54;
    margin-bottom: 0.75rem;
}

.hero-text {
    max-width: 32rem;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.hero-badges span {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #eef0e3;
    color: #52583a;
}

.hero-image img {
    width: 100%;
    border-radius: 1.5rem;
    object-fit: cover;
    box-shadow: 0 14px 40px rgba(25, 33, 10, 0.25);
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn.primary {
    background: #7e8b54;
    color: #fff;
    box-shadow: 0 8px 24px rgba(95, 107, 60, 0.35);
}

.btn.primary:hover {
    background: #6c7746;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(95, 107, 60, 0.45);
}

.btn.secondary {
    background: #f6f6f4;
    color: #495232;
    border-color: #c7cf9a;
}

.btn.secondary:hover {
    background: #e5ebcf;
}

.btn.full {
    width: 100%;
}

/* Sections */

.section {
    padding: 3rem 1.25rem;
}

.section.light {
    background: #f6f6f4;
}

.section.dark {
    background: #4b5532;
    color: #f5f5ee;
}

.section.accent {
    background: #e7ecd5;
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 2.4vw, 2.1rem);
    margin-bottom: 0.75rem;
    color: inherit;
}

.section.dark .section-header h2 {
    color: #fff;
}

.section-header p {
    color: rgba(0, 0, 0, 0.7);
}

.section.dark .section-header p {
    color: rgba(255, 255, 255, 0.78);
}

.eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
    color: #7e8b54;
}

.section.dark .eyebrow {
    color: #d3d9b5;
}

/* Cards */

.cards-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.card {
    background: #ffffff;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-body {
    padding: 1rem 1.1rem 1.2rem;
}

.card-body h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: #3b4326;
}

.card-body p {
    font-size: 0.9rem;
    color: #525252;
}

/* Laser section */

.laser-grid {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2.2rem;
    align-items: center;
}

.laser-text p {
    margin-bottom: 1rem;
}

.laser-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0 1.75rem;
}

.laser-item h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: #3b4326;
}

.laser-item ul {
    padding-left: 1.1rem;
    font-size: 0.9rem;
}

.laser-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.laser-images img {
    width: 100%;
    border-radius: 1.4rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    object-fit: cover;
}

/* Skincare */

.skincare-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
    gap: 1.75rem;
    align-items: stretch;
}

.sk-card {
    background: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.sk-card.big {
    grid-row: span 2;
}

.sk-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.sk-card.big img {
    height: 260px;
}

.sk-card-body {
    padding: 1.1rem 1.25rem 1.4rem;
}

.sk-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #3b4326;
}

.sk-card-body ul {
    padding-left: 1.1rem;
    font-size: 0.9rem;
}

.highlight {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7743;
}

/* Gallery */

.gallery-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.gallery-item {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    height: 160px;
}

.gallery-item:hover {
    transform: translateY(-3px);
    opacity: 0.95;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

/* Social */

.social-grid {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.social-card {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 0.9rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    color: #333;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.social-card:hover {
    transform: translateY(-2px);
    background: #f4f7e5;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #7e8b54;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Video */

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #111;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact */

.contact-section {
    padding-bottom: 4rem;
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.contact-list {
    list-style: none;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.contact-list li + li {
    margin-top: 0.4rem;
}

.contact-list a {
    color: #6b7743;
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 1.6rem;
    padding: 1.5rem 1.5rem 1.75rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.9rem;
    color: #3b4326;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 0.75rem;
    border: 1px solid #d0d7b1;
    font: inherit;
    background: #fdfdf8;
    outline: none;
    transition: border 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #7e8b54;
    box-shadow: 0 0 0 1px rgba(126, 139, 84, 0.2);
    background: #ffffff;
}

.form-note {
    margin-top: 0.6rem;
    font-size: 0.75rem;
    color: #777;
}

/* Footer */

.footer {
    background: #4b5532;
    color: #dde0ce;
    padding: 1.5rem 1.25rem 1.8rem;
    margin-top: 0;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.85rem;
}

.footer-inner p + p {
    margin-top: 0.35rem;
}

.footer a {
    color: #f6f6f4;
    text-decoration: underline;
}

/* WhatsApp floating button */

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #25D366;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 40;
}

.whatsapp-float span {
    font-size: 1.8rem;
}

/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 12, 5, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 50;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90%;
    max-height: 85%;
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

/* Responsive */

@media (max-width: 960px) {
    .hero,
    .laser-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        text-align: left;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 420px;
        margin: 0 auto;
        display: block;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .sk-card.big {
        grid-row: auto;
    }

    .navbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        margin-top: 1rem;
    }

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

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

    .section {
        padding-inline: 1rem;
    }

    .contact-form-card {
        padding-inline: 1.2rem;
    }
}

@media (max-width: 520px) {
    .navbar-inner {
        padding-inline: 1rem;
    }

    .nav-links {
        gap: 0.6rem;
        font-size: 0.85rem;
    }

    .hero-badges span {
        font-size: 0.75rem;
    }

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

    .gallery-item {
        height: 140px;
    }
}
