:root {
    --cream: #fff8ef;
    --peach: #ffd6be;
    --coral: #f36f5f;
    --pink: #f7a7c4;
    --mint: #9fd8c8;
    --ink: #2f2725;
    --muted: #735f5a;
    --white: #ffffff;
    --line: rgba(47, 39, 37, 0.14);
    --shadow: 0 18px 45px rgba(127, 72, 61, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(20px, 5vw, 72px);
    background: rgba(255, 248, 239, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
    transition: box-shadow 220ms ease, padding 220ms ease, background 220ms ease;
}

.site-header.scrolled {
    padding-top: 12px;
    padding-bottom: 12px;
    background: rgba(255, 248, 239, 0.98);
    box-shadow: 0 10px 30px rgba(127, 72, 61, 0.12);
}

.logo {
    text-decoration: none;
    display: grid;
    gap: 0;
    line-height: 1;
}

.logo span {
    color: var(--coral);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 700;
}

.logo small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    border-radius: 999px;
    padding: 9px 14px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
    background: var(--white);
    color: var(--coral);
    box-shadow: 0 8px 20px rgba(243, 111, 95, 0.12);
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    padding: 9px 14px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 72vh;
    display: grid;
    align-items: end;
    padding: clamp(90px, 11vw, 150px) clamp(20px, 5vw, 72px) 64px;
    background:
        linear-gradient(90deg, rgba(47, 39, 37, 0.72), rgba(47, 39, 37, 0.18)),
        url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1800&q=85") center / cover;
    color: var(--white);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    animation: heroRise 820ms ease both;
}

.floating-badge {
    position: absolute;
    right: clamp(24px, 9vw, 130px);
    bottom: clamp(34px, 9vw, 105px);
    z-index: 1;
    display: grid;
    place-items: center;
    width: clamp(86px, 12vw, 132px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 700;
    backdrop-filter: blur(10px);
    animation: floatBadge 4s ease-in-out infinite;
}

.eyebrow,
.tag {
    margin: 0 0 10px;
    color: var(--coral);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #ffd6be;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    line-height: 1.06;
}

h1 {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 8vw, 108px);
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(28px, 4vw, 48px);
}

.hero p {
    max-width: 620px;
    font-size: clamp(18px, 2.2vw, 24px);
}

.hero-actions,
.banner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    padding: 12px 20px;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button.primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(243, 111, 95, 0.28);
}

.button.secondary {
    background: var(--white);
    color: var(--ink);
}

.intro-grid,
.cards-grid,
.values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 72px clamp(20px, 5vw, 72px);
}

.intro-grid article,
.values article,
.note-section,
.contact-info,
.contact-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.intro-grid article:hover,
.values article:hover,
.service-card:hover,
.contact-info:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(127, 72, 61, 0.2);
}

.icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--ink);
    font-weight: 800;
}

.split-section,
.story-section,
.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    padding: 72px clamp(20px, 5vw, 72px);
}

.split-section {
    background: #ffe9df;
}

.text-link {
    color: var(--coral);
    font-weight: 800;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.service-list {
    display: grid;
    gap: 14px;
}

.service-list a {
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 20px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(127, 72, 61, 0.1);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-list a:hover {
    border-color: rgba(243, 111, 95, 0.4);
    transform: translateX(8px);
    box-shadow: 0 18px 35px rgba(127, 72, 61, 0.16);
}

.service-list strong {
    color: var(--coral);
    font-size: 20px;
}

.service-list span,
.muted {
    color: var(--muted);
}

.banner {
    position: relative;
    overflow: hidden;
    justify-content: space-between;
    margin: 72px clamp(20px, 5vw, 72px);
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    padding: clamp(28px, 5vw, 54px);
}

.banner::after {
    content: "";
    position: absolute;
    inset: auto -60px -110px auto;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 167, 196, 0.42), rgba(247, 167, 196, 0));
    animation: softPulse 5s ease-in-out infinite;
}

.banner p {
    width: 100%;
    margin-bottom: 8px;
    color: var(--peach);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.banner h2 {
    max-width: 780px;
    margin-bottom: 0;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px clamp(20px, 5vw, 72px) 56px;
    background: linear-gradient(135deg, #fff8ef 0%, #ffe0ef 52%, #d9f2e9 100%);
}

.page-hero::after {
    content: "";
    position: absolute;
    right: clamp(18px, 8vw, 120px);
    top: 42px;
    width: 94px;
    height: 94px;
    border: 16px solid rgba(243, 111, 95, 0.16);
    border-radius: 50%;
    animation: spinFlower 12s linear infinite;
}

.page-hero.compact h1 {
    font-size: clamp(44px, 7vw, 82px);
}

.page-hero p {
    max-width: 650px;
    color: var(--muted);
    font-size: 20px;
}

.cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 420ms ease;
}

.service-card:hover img {
    transform: scale(1.04);
}

.service-card div {
    padding: 24px;
}

.service-card h2 {
    font-size: 28px;
}

.pricing-table {
    width: min(980px, calc(100% - 40px));
    margin: 54px auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}

.price-row {
    display: grid;
    grid-template-columns: 1fr 150px 90px;
    gap: 16px;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    transition: background 180ms ease, transform 180ms ease;
}

.price-row:hover,
.price-row.selected {
    background: #fff1e8;
    transform: scale(1.01);
}

.price-row:last-child {
    border-bottom: 0;
}

.price-row.featured {
    background: #ffe9df;
}

.price-row span {
    font-size: 18px;
    font-weight: 800;
}

.price-row small {
    color: var(--muted);
}

.price-row strong {
    color: var(--coral);
    font-size: 22px;
    text-align: right;
}

.note-section {
    width: min(980px, calc(100% - 40px));
    margin: 0 auto 72px;
}

.story-section img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.values {
    padding-top: 0;
}

.contact-layout {
    align-items: start;
}

.contact-info h2 {
    color: var(--coral);
}

.contact-form {
    display: grid;
    gap: 10px;
}

label {
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffaf5;
    color: var(--ink);
    font: inherit;
    padding: 13px 14px;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--coral);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(243, 111, 95, 0.14);
}

textarea {
    resize: vertical;
}

.form-note {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.form-success {
    min-height: 26px;
    margin: 0;
    color: #2f7d66;
    font-weight: 800;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.sparkle {
    position: fixed;
    z-index: 30;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    pointer-events: none;
    background: var(--pink);
    box-shadow: 0 0 18px rgba(247, 167, 196, 0.8);
    animation: sparklePop 650ms ease forwards;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 36px clamp(20px, 5vw, 72px);
    background: var(--ink);
    color: var(--white);
}

.site-footer p {
    margin: 4px 0;
    color: #f2ddd3;
}

@media (max-width: 820px) {
    .site-header {
        align-items: start;
        flex-wrap: wrap;
    }

    .menu-button {
        display: inline-flex;
    }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        border-radius: 8px;
        background: var(--white);
    }

    .intro-grid,
    .cards-grid,
    .values,
    .split-section,
    .story-section,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 66vh;
    }

    .price-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .price-row strong {
        text-align: left;
    }

    .site-footer {
        flex-direction: column;
    }
}

@keyframes heroRise {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

@keyframes floatBadge {
    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-16px) rotate(4deg);
    }
}

@keyframes softPulse {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.14);
    }
}

@keyframes spinFlower {
    to {
        transform: rotate(360deg);
    }
}

@keyframes sparklePop {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.4);
    }

    to {
        opacity: 0;
        transform: translate(-50%, -90%) scale(1.8);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
