:root {
    --ink: #1c2321;
    --muted: #66736c;
    --paper: #fbfaf6;
    --mist: #edf3ef;
    --sage: #5f7f70;
    --rose: #c46c68;
    --clay: #b98662;
    --line: #dce3dd;
    --white: #ffffff;
    --shadow: 0 18px 48px rgba(25, 35, 31, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

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

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
    width: auto;
    height: auto;
    clip: auto;
    z-index: 20;
    padding: 10px 14px;
    background: var(--ink);
    color: var(--white);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(251, 250, 246, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
}

.brand-mark {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    border-radius: 6px;
}

.custom-logo {
    max-height: 54px;
    width: auto;
}

.primary-nav .menu,
.footer-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav a {
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.primary-nav a:hover {
    color: var(--ink);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 6px;
}

.nav-toggle span:not(.screen-reader-text) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.hero {
    overflow: hidden;
    padding: 76px 0 54px;
    background: linear-gradient(120deg, #fbfaf6 0%, #eef3ee 64%, #f4e9df 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 56px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--rose);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.05;
}

h1 {
    max-width: 760px;
    font-size: clamp(42px, 7vw, 78px);
}

h2 {
    font-size: clamp(30px, 4vw, 48px);
}

h3 {
    font-size: 24px;
}

.hero-lead {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid var(--ink);
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

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

.button.secondary {
    background: transparent;
}

.hero-product {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    min-height: 480px;
    padding: 36px;
    border: 1px solid rgba(28, 35, 33, 0.12);
    background: radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.28) 58%, rgba(255, 255, 255, 0));
}

.bottle {
    position: relative;
    display: grid;
    place-items: end center;
    width: 116px;
    margin: 0 -8px;
    padding-bottom: 34px;
    color: var(--white);
    background: linear-gradient(180deg, #f9f3ea 0 12%, #222a27 12% 100%);
    border-radius: 42px 42px 10px 10px;
    box-shadow: var(--shadow);
}

.bottle::before {
    content: "";
    position: absolute;
    top: -34px;
    width: 46px;
    height: 42px;
    background: #222a27;
    border-radius: 12px 12px 4px 4px;
}

.bottle span {
    writing-mode: vertical-rl;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bottle.tall {
    height: 345px;
}

.bottle.mid {
    height: 285px;
    background: linear-gradient(180deg, #f8efe8 0 12%, var(--sage) 12% 100%);
}

.bottle.small {
    height: 230px;
    background: linear-gradient(180deg, #fbf4ef 0 12%, var(--clay) 12% 100%);
}

.trust-band {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 18px 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.section {
    padding: 88px 0;
}

.section.muted {
    background: var(--mist);
}

.section-head {
    max-width: 800px;
    margin-bottom: 34px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.product-card,
.post-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(25, 35, 31, 0.06);
}

.product-card img,
.product-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background:
        linear-gradient(135deg, rgba(95, 127, 112, 0.2), rgba(196, 108, 104, 0.12)),
        repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 255, 255, 0.38) 28px 29px);
}

.product-card-body {
    padding: 24px;
}

.product-card-body p {
    color: var(--muted);
}

.product-card-body a {
    font-weight: 800;
    text-decoration: none;
}

.product-kicker {
    margin: 0 0 8px;
    color: var(--rose);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.split,
.contact-grid,
.salon-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    align-items: start;
    gap: 44px;
}

.split p,
.contact-grid p {
    color: var(--muted);
}

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

.feature-list div,
.metrics div {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.feature-list strong,
.metrics strong {
    color: var(--rose);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.metrics div {
    flex-direction: column;
}

.metrics strong {
    font-size: 38px;
    line-height: 1;
}

.lead-form {
    display: grid;
    gap: 14px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.lead-form label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 12px 13px;
    color: var(--ink);
    background: var(--paper);
    font: inherit;
}

.content-area {
    padding: 70px 0;
}

.content-area.narrow {
    max-width: 820px;
}

.post-list {
    display: grid;
    gap: 22px;
}

.post-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    padding: 18px;
}

.single-entry h1,
.archive-header h1 {
    margin-bottom: 22px;
    font-size: clamp(36px, 5vw, 60px);
}

.single-hero {
    margin: 28px 0;
}

.entry-content {
    font-size: 18px;
}

.site-footer {
    padding: 54px 0 24px;
    color: rgba(255, 255, 255, 0.78);
    background: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 34px;
}

.footer-brand,
.site-footer h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
}

.footer-menu {
    align-items: start;
    flex-direction: column;
    gap: 8px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 13px;
}

@media (max-width: 860px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .nav-toggle {
        display: block;
    }

    .primary-nav {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        display: none;
        padding: 18px 20px 24px;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-nav .menu {
        align-items: start;
        flex-direction: column;
    }

    .hero-grid,
    .split,
    .contact-grid,
    .salon-panel,
    .footer-grid,
    .post-card {
        grid-template-columns: 1fr;
    }

    .hero-product {
        min-height: 330px;
    }

    .bottle {
        width: 88px;
    }

    .bottle.tall {
        height: 245px;
    }

    .bottle.mid {
        height: 215px;
    }

    .bottle.small {
        height: 180px;
    }

    .trust-items,
    .product-grid,
    .metrics {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 62px 0;
    }

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

