:root {
    --bg: #f7dfd6;
    --fg: #2b2b2b;
    --primary: #7a1d34;
    --muted: #6d6d6d;
    --card: #f8e9e3;
    --border: #dcc5be;
    --light: #faece6;
    --warm: #f5ddd4;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--fg);
    background: var(--bg);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.section {
    padding: 96px 0;
}

.section-light {
    background: var(--light);
}

.section-warm {
    background: var(--warm);
}

.center {
    text-align: center;
}

.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    background: rgba(247, 223, 214, 0.88);
    border-bottom: 1px solid rgba(220, 197, 190, 0.6);
}

.nav-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.desktop-nav {
    display: flex;
    gap: 28px;
}

.desktop-nav a {
    font-size: 14px;
    color: var(--muted);
}

.work-badge {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    color: var(--muted);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
}

.mobile-toggle {
    display: none;
    width: 34px;
    height: 28px;
    background: transparent;
    border: 0;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    background: var(--fg);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    padding: 6px 4% 20px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.mobile-menu a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: var(--muted);
}

.hero {
    min-height: 100vh;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding-top: 90px;
}

.hero-name h1 {
    font-size: clamp(62px, 14vw, 190px);
    line-height: 0.95;
    text-align: center;
    letter-spacing: -0.03em;
    color: rgba(122, 29, 52, 0.13);
}

.hero-image-wrap {
    position: relative;
    z-index: 2;
}

@media screen and (min-width:1024px) {
    .hero-image-wrap {
        position: absolute;
    }
}

.hero-image {
    width: min(460px, 72vw);
    height: auto;
}

.hero-left,
.hero-right {
    position: absolute;
    z-index: 3;
    max-width: 320px;
}

.hero-left {
    left: 6%;
    bottom: 18%;
}

.hero-right {
    right: 6%;
    bottom: 21%;
    text-align: right;
    color: var(--muted);
    font-size: 14px;
}

.hero-right .strong {
    color: var(--fg);
    font-weight: 700;
}

.hire-link {
    display: inline-flex;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

h2 {
    color: var(--primary);
    font-size: clamp(34px, 5vw, 56px);
    margin-bottom: 32px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.copy p {
    line-height: 1.8;
    margin: 0 0 16px;
    font-size: 15px;
}

.placeholder-box {
    min-height: 280px;
    border-radius: 12px;
    background: #efd7ce;
    display: grid;
    place-items: center;
}

.placeholder-box span {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 900;
    font-size: clamp(52px, 9vw, 92px);
    color: rgba(122, 29, 52, 0.18);
}

.two-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.placeholder-box.wide {
    aspect-ratio: 4 / 3;
    min-height: 200px;
}

.lead {
    color: var(--muted);
    margin: 0 auto 48px;
    max-width: 680px;
    line-height: 1.7;
}

.lead.max {
    max-width: 760px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--card);
    border-radius: 12px;
    padding: 32px;
}

.card .idx {
    color: var(--muted);
    letter-spacing: 0.2em;
    font-size: 12px;
}

.card h3 {
    margin: 16px 0;
    font-size: 27px;
}

.card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

blockquote {
    margin: 18px auto 0;
    max-width: 780px;
    font-size: clamp(26px, 4vw, 46px);
    line-height: 1.35;
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
}

.testimonial {
    max-width: 760px;
    margin: 0 auto;
    background: var(--card);
    border-radius: 12px;
    padding: 34px;
}

.quote {
    margin: 0;
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
}

.name {
    margin: 18px 0 0;
    color: var(--primary);
    font-weight: 700;
}

.dots {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot-btn {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: var(--border);
    cursor: pointer;
}

.dot-btn.active {
    background: var(--primary);
}

.family h2 {
    margin-bottom: 18px;
}

.cta {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
}

.links-row {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--muted);
}

.sep {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: var(--border);
}

.footer {
    margin-top: 80px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: var(--muted);
}

@media (max-width: 992px) {

    .desktop-nav,
    .nav-inner>.work-badge {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu[hidden] {
        display: none;
    }

    .mobile-menu:not([hidden]) {
        display: block;
    }

    .hero-left {
        left: 0;
        bottom: 0;
        width: 100%;
        background: #f7dfd6ab;
        max-width: unset;
        padding: 0 49px;
        margin: 0;
        margin-left: 15px;
        padding-right: 63px;
    }

    .hero-left .social-links {
        display: none;
    }

    .hero-left .hire-link {
        margin-top: 0;
    }

    .hero-right {
        display: none;
    }

    .two-col,
    .two-grid,
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section {
        padding: 78px 0;
    }
}

@media (max-width: 640px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .quote {
        font-size: 17px;
    }
}