:root {
    --bg: #fffaf7;
    --bg-soft: #f8ede8;
    --bg-card: rgba(255, 255, 255, 0.88);
    --bg-card-strong: #ffffff;

    --text: #3f302c;
    --text-soft: #6f5a54;
    --text-muted: #8e7871;

    --line: rgba(111, 90, 84, 0.14);
    --line-strong: rgba(111, 90, 84, 0.24);

    --primary: #d99a95;
    --primary-hover: #c98782;
    --primary-soft: rgba(217, 154, 149, 0.14);

    --secondary: #ead6cb;
    --secondary-hover: #e3ccc0;

    --accent: #d7b38a;
    --accent-soft: rgba(215, 179, 138, 0.16);

    --success: #7a9d84;

    --shadow-sm: 0 10px 30px rgba(102, 73, 66, 0.08);
    --shadow-md: 0 18px 50px rgba(102, 73, 66, 0.12);
    --shadow-lg: 0 28px 80px rgba(102, 73, 66, 0.15);

    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;

    --container: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.site-wrapper {
    min-height: 100vh;
}

.site-main {
    overflow: hidden;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 250, 247, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.site-logo__mark {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.site-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-logo__text strong {
    font-size: 1.1rem;
}

.site-logo__text small {
    color: var(--text-soft);
    font-size: 0.8rem;
    margin-top: 4px;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 22px;
}

.desktop-nav a {
    color: var(--text-soft);
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-menu-toggle {
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 16px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 12px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 99px;
}

.mobile-nav {
    border-top: 1px solid var(--line);
    background: rgba(255, 250, 247, 0.98);
}

.mobile-nav__inner {
    padding: 18px 0 24px;
    display: grid;
    gap: 14px;
}

.mobile-nav__inner a {
    color: var(--text-soft);
}

.mobile-nav__inner a:hover {
    color: var(--text);
}

.desktop-only {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    font-size: 0.98rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text);
    border-color: var(--line-strong);
}

.btn-secondary:hover {
    background: #fff;
    transform: translateY(-1px);
}

.btn-small {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.92rem;
}

.btn-full {
    width: 100%;
}

.hero-section {
    padding: 48px 0 36px;
}

.hero-grid {
    display: grid;
    gap: 32px;
    align-items: center;
}

.hero-content h1 {
    margin: 14px 0 16px;
    font-size: clamp(2.3rem, 6vw, 4.7rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-content p {
    margin: 0;
    color: var(--text-soft);
    font-size: 1.04rem;
    max-width: 640px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-hover);
    font-size: 0.88rem;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-highlights {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.hero-highlight {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px 18px;
}

.hero-highlight strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

.hero-highlight span {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #fff;
    min-height: 420px;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-section {
    padding: 72px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(248, 237, 232, 0.65), rgba(255, 250, 247, 0.95));
}

.section-heading {
    margin-bottom: 28px;
    max-width: 760px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2 {
    margin: 14px 0 14px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.12;
}

.section-heading p {
    margin: 0;
    color: var(--text-soft);
}

.feature-grid,
.product-grid,
.review-grid {
    display: grid;
    gap: 22px;
}

.feature-card,
.point-card,
.product-card,
.review-card,
.gallery-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.feature-card,
.point-card {
    padding: 28px;
}

.feature-card h3,
.point-card h3 {
    margin: 0 0 10px;
    font-size: 1.28rem;
}

.feature-card p,
.point-card p {
    margin: 0;
    color: var(--text-soft);
}

.about-split {
    display: grid;
    gap: 28px;
    align-items: start;
}

.about-copy h2 {
    margin: 14px 0 14px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.12;
}

.about-copy p {
    color: var(--text-soft);
    margin: 0 0 14px;
}

.about-points {
    display: grid;
    gap: 18px;
}

.text-link {
    display: inline-flex;
    margin-top: 10px;
    color: var(--primary-hover);
    font-weight: 600;
}

.product-card {
    overflow: hidden;
}

.product-card__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f2e6e0;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__body {
    padding: 22px;
}

.product-card__body h3 {
    margin: 0 0 10px;
    font-size: 1.24rem;
}

.product-card__body p {
    margin: 0;
    color: var(--text-soft);
}

.product-card__footer {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.price-label {
    font-weight: 700;
    color: var(--text);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.gallery-card {
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner {
    background: linear-gradient(135deg, #fff, #f8ede8);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 32px;
    display: grid;
    gap: 24px;
    align-items: center;
}

.cta-banner__content h2 {
    margin: 14px 0 14px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.12;
}

.cta-banner__content p {
    margin: 0;
    color: var(--text-soft);
    max-width: 700px;
}

.review-card {
    padding: 28px;
}

.review-stars {
    color: var(--accent);
    letter-spacing: 0.18em;
    margin-bottom: 14px;
}

.review-card p {
    margin: 0 0 16px;
    color: var(--text-soft);
}

.final-cta {
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 40px 24px;
}

.final-cta h2 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.14;
}

.final-cta p {
    margin: 0 auto 22px;
    color: var(--text-soft);
    max-width: 700px;
}

.site-footer {
    margin-top: 24px;
    padding: 64px 0 24px;
    background: #f6eae4;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    gap: 28px;
}

.footer-col h3 {
    margin: 0 0 14px;
    font-size: 1.1rem;
}

.footer-col p,
.footer-col li,
.footer-col a {
    color: var(--text-soft);
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.footer-bottom p {
    margin: 0;
    color: var(--text-muted);
    text-align: center;
    font-size: 0.94rem;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 68px 0 50px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid,
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }

    .desktop-only {
        display: inline-flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }

    .hero-grid,
    .about-split,
    .cta-banner {
        grid-template-columns: 1.1fr 0.9fr;
    }

    .hero-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .review-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
    }
}