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

:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --text-color: #2b2b2b;
    --text-light: #6b6b6b;
    --bg-color: #fff;
    --bg-soft: #faf8f6;
    --border-color: #e2ddd7;
    --accent: #000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 500;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-color);
}

.nav-container {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 18px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-cta-mobile {
    display: none;
}

.logo {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    flex-wrap: nowrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 8px 9px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-light);
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    list-style: none;
    min-width: 220px;
    z-index: 1001;
}

.nav-item:hover .submenu {
    display: block;
}

.submenu li {
    border-bottom: 1px solid var(--border-color);
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu a {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.submenu a:hover {
    background: var(--bg-soft);
}

.nav-cta {
    padding: 10px 18px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: #444;
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 70px 20px;
    background: var(--bg-soft);
}

.hero-image {
    order: -1;
}

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

.hero-content h1 {
    font-size: 46px;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-content p {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 300;
}

.hero-location {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px !important;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #444;
}

/* Divider */
.divider {
    height: 1px;
    background: var(--border-color);
    margin: 0;
}

/* About */
.about {
    padding: 70px 20px;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-portrait {
    flex: 0 0 220px;
}

.about-portrait img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.about-text {
    flex: 1;
}

.about h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.about p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Services Section */
.services-section {
    padding: 70px 20px;
}

.services-section h2 {
    font-size: 38px;
    margin-bottom: 45px;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid var(--border-color);
}

.service-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.service-photo {
    flex: 0 0 220px;
    width: 220px;
    aspect-ratio: 4 / 5;
    background: var(--bg-soft);
    border: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-photo span {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 10px;
}

.service-content {
    flex: 1;
    min-width: 0;
}

.service-item h3 {
    font-size: 25px;
    margin-bottom: 14px;
    font-weight: 500;
}

.service-item p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15.5px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 16px;
}

.price {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--accent);
}

/* Prices */
.prices-section {
    padding: 70px 20px;
    background: var(--bg-soft);
}

.prices-section h2 {
    font-size: 38px;
    margin-bottom: 45px;
}

.price-list {
    max-width: 600px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 15.5px;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span:first-child {
    font-weight: 400;
}

.price-item span:last-child {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: var(--accent);
}

/* Results/Gallery */
.results-section {
    padding: 70px 20px;
}

.results-section h2 {
    font-size: 38px;
    margin-bottom: 45px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 2px;
}

/* Contact */
.contact-section {
    padding: 70px 20px;
    background: var(--bg-soft);
}

.contact-section h2 {
    font-size: 38px;
    margin-bottom: 45px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 900px;
}

.contact-info p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15.5px;
    line-height: 1.9;
}

.contact-info strong {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.contact-info a {
    color: var(--accent);
    text-decoration: none;
}

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

.contact-note {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15.5px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
}

/* Footer */
.footer {
    padding: 45px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.footer p {
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }

    .hero-image {
        order: 0;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .service-item {
        flex-direction: column;
        gap: 20px;
    }

    .service-photo {
        width: 100%;
        flex: none;
        aspect-ratio: 16 / 10;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .services-section h2,
    .about h2,
    .prices-section h2,
    .results-section h2,
    .contact-section h2 {
        font-size: 30px;
    }

    .nav-container {
        padding: 15px 20px;
        gap: 15px;
        flex-wrap: nowrap;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: var(--bg-color);
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 14px 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .submenu {
        position: static;
        display: block;
        border: none;
    }

    .submenu a {
        padding: 12px 20px 12px 34px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-cta-mobile {
        display: block;
        padding: 18px 20px;
    }

    .nav-cta-mobile a {
        display: block;
        text-align: center;
        padding: 14px;
        background: var(--accent);
        color: white;
        text-decoration: none;
        border-radius: 2px;
        font-family: var(--font-body);
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .services-section h2,
    .about h2,
    .prices-section h2,
    .results-section h2,
    .contact-section h2 {
        font-size: 26px;
    }

    .service-item h3 {
        font-size: 21px;
    }

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

    .gallery img {
        height: 250px;
    }
}
