* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, Arial, sans-serif;
}

:root {
    --bg: #f6f1ea;
    --dark: #171313;
    --brown: #7a4f2a;
    --gold: #c69a5b;
    --cream: #fffaf2;
    --muted: #6f665d;
    --border: #e0d5c7;
}

body {
    background: var(--bg);
    color: var(--dark);
}

.navbar {
    height: 76px;
    padding: 0 8%;
    background: rgba(255, 250, 242, 0.95);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 800;
}

.logo span {
    color: var(--brown);
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    margin-left: 26px;
    font-weight: 700;
}

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

.eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

/* HOME */
.hero {
    min-height: 86vh;
    padding: 0 8%;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(23, 19, 19, 0.88), rgba(23, 19, 19, 0.25)),
        url("https://images.unsplash.com/photo-1492691527719-9d1e07e534b4");
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-content {
    max-width: 760px;
}

.hero h1 {
    font-size: clamp(44px, 7vw, 78px);
    line-height: 1;
    margin-bottom: 24px;
}

.hero-text {
    max-width: 620px;
    font-size: 19px;
    line-height: 1.7;
    color: #f1e7d8;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
}

.btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    border: none;
    cursor: pointer;
}

.btn.primary {
    background: var(--gold);
    color: var(--dark);
}

.btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.75);
    color: white;
}

.section {
    padding: 86px 8%;
}

.section.light {
    background: var(--cream);
}

.section-title {
    margin-bottom: 34px;
}

.section-title h2,
.page-header h1 {
    font-size: clamp(34px, 5vw, 52px);
}

.portfolio-grid,
.services-grid,
.appointments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.portfolio-card {
    min-height: 360px;
    border-radius: 28px;
    padding: 26px;
    display: flex;
    align-items: flex-end;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(55, 37, 20, 0.18);
}

.portfolio-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.12));
}

.portfolio-card div {
    position: relative;
    z-index: 1;
}

.portfolio-card h3 {
    font-size: 26px;
    margin-bottom: 8px;
}

.portfolio-card p {
    color: #efe7dc;
}

.portrait {
    background: url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e") center/cover;
}

.graduation {
    background: url("https://images.unsplash.com/photo-1529634597503-139d3726fed5") center/cover;
}

.lifestyle {
    background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee") center/cover;
}

.service-card,
.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(60, 44, 26, 0.08);
}

.service-card h3,
.card h3 {
    color: var(--brown);
    margin-bottom: 12px;
}

.service-card p,
.card p {
    color: var(--muted);
    line-height: 1.6;
}

footer {
    padding: 34px 8%;
    background: var(--dark);
    color: #d8cfc3;
    text-align: center;
}

/* PAGE HEADERS */
.page-header {
    padding: 80px 8% 45px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}

.page-header p:last-child {
    color: var(--muted);
    max-width: 650px;
    line-height: 1.7;
    margin-top: 12px;
}

/* BOOKING */
.booking-intro {
    padding: 70px 8% 30px;
}

.booking-intro-card {
    background:
        linear-gradient(90deg, rgba(23, 19, 19, 0.88), rgba(23, 19, 19, 0.28)),
        url("https://images.unsplash.com/photo-1492691527719-9d1e07e534b4");
    background-size: cover;
    background-position: center;
    color: white;
    border-radius: 34px;
    padding: 70px;
    box-shadow: 0 24px 60px rgba(60, 44, 26, 0.18);
}

.booking-intro-card h1 {
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;
    margin-bottom: 16px;
}

.booking-intro-card p:last-child {
    color: #f1e7d8;
    font-size: 18px;
    max-width: 650px;
}

.booking-wrapper {
    padding: 30px 8% 100px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: start;
}

.booking-panel {
    background: var(--dark);
    color: white;
    border-radius: 30px;
    padding: 36px;
    box-shadow: 0 20px 50px rgba(60, 44, 26, 0.15);
}

.booking-panel h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.booking-panel>p {
    color: #ddd;
    margin-bottom: 25px;
    line-height: 1.6;
}

.booking-steps {
    display: grid;
    gap: 14px;
}

.booking-steps div {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 14px;
    border-radius: 12px;
}

.booking-steps span {
    background: var(--gold);
    color: black;
    padding: 7px 10px;
    border-radius: 8px;
    font-weight: 900;
}

.booking-form-card,
.form-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(60, 44, 26, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

label {
    display: block;
    margin: 18px 0 8px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fffaf2;
    font-size: 15px;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(198, 154, 91, 0.18);
}

.full-btn {
    width: 100%;
    margin-top: 24px;
}

/* EDITOR */
.editor-section {
    padding: 60px 8% 90px;
}

.editor-section .form-card {
    max-width: 620px;
    margin: 0 auto;
}

.results-grid {
    max-width: 900px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.result-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(60, 44, 26, 0.08);
}

.result-card h3 {
    color: var(--brown);
    margin-bottom: 12px;
}

.result-card img {
    width: 100%;
    max-width: 320px;
    height: 220px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    background: #f4eadc;
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .navbar {
        height: auto;
        padding: 20px 8%;
        flex-direction: column;
        gap: 14px;
    }

    .nav-links a {
        margin: 0 8px;
    }

    .portfolio-grid,
    .services-grid,
    .appointments-grid,
    .booking-wrapper,
    .form-row,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .booking-intro-card {
        padding: 44px;
    }

    .hero {
        min-height: 78vh;
    }
}