@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --clr-bg: #FAF9F8;
    --clr-surface: #FFFFFF;
    --clr-text: #1A1A1A;
    --clr-accent: #D4A5A5;
    --clr-accent-2: #A6886F;
    --clr-muted: #7D7D7D;
    --clr-line: #E7E4E3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--clr-text);
    background-color: var(--clr-bg);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
}

p {
    margin-bottom: 1.5rem;
    color: var(--clr-text);
}

a {
    color: var(--clr-text);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.header {
    background-color: var(--clr-surface);
    border-bottom: 1px solid var(--clr-line);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(250, 249, 248, 0.95);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--clr-text);
}

.nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger span {
    width: 25px;
    height: 1px;
    background-color: var(--clr-text);
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(250, 249, 248, 0.7), rgba(250, 249, 248, 0.7));
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    margin-bottom: 2rem;
    color: var(--clr-text);
}

.hero p {
    font-size: 1.2rem;
    color: var(--clr-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--clr-text);
    background-color: transparent;
    color: var(--clr-text);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--clr-text);
    color: var(--clr-surface);
    opacity: 1;
}

.btn-accent {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

.btn-accent:hover {
    background-color: var(--clr-accent);
    color: var(--clr-surface);
}

.grid {
    display: grid;
    gap: 3rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background-color: var(--clr-surface);
    border: 1px solid var(--clr-line);
    padding: 3rem 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--clr-accent);
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--clr-text);
}

.card p {
    color: var(--clr-muted);
    font-size: 0.95rem;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover img {
    opacity: 0.8;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

.before-after-item {
    text-align: center;
}

.before-after-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--clr-line);
    aspect-ratio: 3/4;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover img {
    opacity: 0.7;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--clr-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--clr-line);
    background-color: var(--clr-surface);
    color: var(--clr-text);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-text);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
}

.checkbox-group label {
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 300;
}

.footer {
    background-color: var(--clr-surface);
    border-top: 1px solid var(--clr-line);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--clr-text);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--clr-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--clr-text);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--clr-line);
    color: var(--clr-muted);
    font-size: 0.85rem;
}

.thank-you-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.thank-you-content h1 {
    margin-bottom: 2rem;
    color: var(--clr-accent);
}

.thank-you-content p {
    font-size: 1.1rem;
    color: var(--clr-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.error-content h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
    color: var(--clr-text);
}

.error-content p {
    font-size: 1.1rem;
    color: var(--clr-muted);
    margin-bottom: 3rem;
}

.process-step {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--clr-line);
}

.process-step:last-child {
    border-bottom: none;
}

.process-step h3 {
    margin-bottom: 1rem;
    color: var(--clr-accent-2);
}

.process-step p {
    color: var(--clr-muted);
    max-width: 700px;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--clr-surface);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--clr-line);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .burger {
        display: flex;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .before-after {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 4rem 0;
    }

    .hero {
        min-height: 60vh;
        padding: 3rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .header-content {
        padding: 1.5rem 1.5rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .card {
        padding: 2rem 1.5rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.85rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 1rem;
    }

    .header-content {
        padding: 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero {
        min-height: 50vh;
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .card {
        padding: 1.5rem 1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .before-after {
        gap: 1.5rem;
    }

    .process-step {
        margin-bottom: 3rem;
        padding-bottom: 3rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

