:root {
    --blush: #f3d6dc;
    --rose: #efc2cb;
    --petal: #f8e9ec;
    --mist: #fffaf8;
    --ink: #2a2224;
    --taupe: #7d6d72;
    --line: rgba(88, 59, 66, 0.16);
    --shadow: 0 24px 60px rgba(125, 83, 94, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Questrial", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 28%),
        linear-gradient(140deg, rgba(243, 214, 220, 0.48), rgba(255, 250, 248, 0.98) 35%, rgba(247, 226, 231, 0.78) 68%, rgba(255, 250, 248, 0.98));
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 72% 12%, rgba(239, 194, 203, 0.5), transparent 18%),
        radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.95), transparent 24%),
        radial-gradient(circle at 28% 74%, rgba(239, 194, 203, 0.32), transparent 16%),
        linear-gradient(110deg, transparent 35%, rgba(238, 205, 214, 0.18) 44%, transparent 52%),
        linear-gradient(160deg, transparent 52%, rgba(232, 180, 193, 0.12) 60%, transparent 66%);
    pointer-events: none;
    z-index: -2;
}

.page-shell {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 56px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.brand-mark,
.topbar a,
.contact-copy a,
.hero-button {
    text-decoration: none;
    color: inherit;
}

.brand-mark {
    font-family: "Allura", cursive;
    font-size: 2rem;
}

.topbar-links {
    display: flex;
    gap: 20px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
}

.hero {
    position: relative;
}

.hero-card {
    display: grid;
    grid-template-columns: 1.03fr 1fr;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: rgba(255, 251, 250, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
}

.hero-brand,
.hero-details {
    padding: 72px 56px;
}

.hero-brand {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 248, 0.88));
    text-align: center;
}

.hero-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background:
        radial-gradient(circle at 62% 18%, rgba(241, 196, 206, 0.4), transparent 14%),
        radial-gradient(circle at 88% 86%, rgba(240, 209, 216, 0.38), transparent 20%),
        linear-gradient(135deg, rgba(255, 250, 248, 0.92), rgba(247, 228, 232, 0.76), rgba(255, 250, 248, 0.94));
}

.brand-emblem {
    position: relative;
    width: 176px;
    height: 176px;
    margin: 0 auto 26px;
}

.brand-circle {
    position: absolute;
    inset: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, rgba(241, 176, 190, 0.65), rgba(247, 220, 226, 0.82) 60%, rgba(255, 255, 255, 0.2));
    filter: blur(1px);
}

.brand-emblem::after {
    content: "";
    position: absolute;
    inset: 16px 36px;
    border: 1px solid rgba(71, 48, 55, 0.14);
}

.brand-emblem svg {
    position: absolute;
    inset: 0;
    fill: none;
    stroke: rgba(35, 22, 26, 0.88);
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.eyebrow,
.section-kicker,
.service-number {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.74rem;
}

.eyebrow,
.section-kicker {
    color: var(--taupe);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
}

h1 {
    font-family: "Allura", cursive;
    font-size: clamp(3.3rem, 7vw, 5.6rem);
    font-weight: 400;
    line-height: 0.95;
    margin: 6px 0 16px;
}

h2 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    margin: 6px 0 16px;
}

h3 {
    font-size: 2.3rem;
    margin-bottom: 10px;
}

.hero-copy,
.intro-panel p,
.service-summary,
.contact-copy p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(42, 34, 36, 0.82);
}

.hero-copy {
    max-width: 34ch;
    margin: 0 auto 28px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 178px;
    padding: 14px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2f2427, #5f454c);
    color: #fffaf8;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
}

.detail-block {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
    letter-spacing: 0.02em;
}

.detail-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.44);
    border: 1px solid rgba(69, 43, 50, 0.12);
}

.detail-icon svg {
    width: 28px;
    height: 28px;
    fill: rgba(37, 24, 28, 0.86);
}

.appointment-note {
    margin: 6px 0 0;
}

.appointment-pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(69, 43, 50, 0.14);
    box-shadow: 0 10px 24px rgba(125, 83, 94, 0.08);
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(42, 34, 36, 0.84);
}

.address-ribbon {
    margin: -18px auto 0;
    width: min(88%, 940px);
    padding: 22px 28px;
    text-align: center;
    background: rgba(243, 214, 220, 0.92);
    color: rgba(45, 31, 35, 0.94);
    letter-spacing: 0.06em;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(177, 128, 141, 0.14);
    position: relative;
}

.intro-panel {
    padding: 104px 0 38px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.trust-strip {
    display: grid;
    gap: 8px;
    justify-items: center;
    text-align: center;
    margin: 0 auto 30px;
    padding: 24px 28px;
    max-width: 720px;
    border-radius: 22px;
    background: rgba(255, 252, 251, 0.72);
    border: 1px solid rgba(95, 69, 76, 0.1);
    box-shadow: 0 18px 36px rgba(177, 128, 141, 0.1);
}

.trust-copy {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.service-card,
.contact-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(95, 69, 76, 0.12);
    background: rgba(255, 252, 251, 0.8);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.service-card {
    padding: 32px;
    animation: rise 0.9s ease both;
}

.service-card::before,
.contact-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.74), transparent 45%, rgba(243, 214, 220, 0.18));
    pointer-events: none;
}

.accent-card {
    background: linear-gradient(180deg, rgba(255, 251, 250, 0.9), rgba(247, 231, 235, 0.86));
}

.service-number {
    color: rgba(125, 109, 114, 0.72);
    margin-bottom: 14px;
}

.service-summary {
    min-height: 70px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}

.service-card li {
    padding: 13px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.62);
}

.contact-panel {
    margin-top: 32px;
    padding: 36px 34px;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.contact-copy {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.contact-supporting-copy {
    margin: 0;
    max-width: 34ch;
    line-height: 1.8;
    color: rgba(42, 34, 36, 0.82);
}

.contact-copy a {
    font-size: 1.05rem;
    letter-spacing: 0.04em;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 20px;
    border-radius: 999px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.primary-action {
    background: linear-gradient(135deg, #8c6770, #b78390);
    color: #fffaf8;
    box-shadow: 0 14px 28px rgba(183, 131, 144, 0.28);
}

.secondary-action {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(69, 43, 50, 0.14);
}

.reveal-delay-1 { animation-delay: 0.08s; }
.reveal-delay-2 { animation-delay: 0.16s; }
.reveal-delay-3 { animation-delay: 0.24s; }
.reveal-delay-4 { animation-delay: 0.32s; }

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .hero-card,
    .contact-panel,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-brand,
    .hero-details {
        padding: 52px 28px;
    }

    .appointment-note {
        margin-top: 2px;
    }

    .address-ribbon {
        width: calc(100% - 20px);
        padding: 18px 20px;
        letter-spacing: 0.03em;
    }
}

@media (max-width: 640px) {
    .page-shell {
        width: min(100% - 18px, 1160px);
        padding-top: 16px;
    }

    .topbar {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 18px;
    }

    .topbar-links {
        gap: 14px;
        flex-wrap: wrap;
    }

    .hero-brand,
    .hero-details,
    .service-card,
    .contact-panel {
        padding-left: 22px;
        padding-right: 22px;
    }

    .brand-emblem {
        width: 150px;
        height: 150px;
    }

    .detail-block {
        align-items: flex-start;
        font-size: 1rem;
    }

    .detail-block span:last-child,
    .contact-copy a {
        overflow-wrap: anywhere;
    }

    .contact-actions {
        width: 100%;
    }

    .action-button {
        width: 100%;
    }

    .address-ribbon {
        border-radius: 16px;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .intro-panel {
        padding-top: 84px;
    }

    h3 {
        font-size: 2rem;
    }

    .service-summary {
        min-height: auto;
    }
}