:root {
    --ink: #111111;
    --ink-soft: #3b3b3b;
    --muted: #6f6a64;
    --line: #e8e0d8;
    --paper: #ffffff;
    --cream: #faf6f0;
    --warm: #eee4d7;
    --sage: #78876f;
    --shadow: 0 20px 60px rgba(17, 17, 17, 0.08);
    --radius: 24px;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
}

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

a {
    color: inherit;
}

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

.narrow {
    width: min(760px, calc(100% - 40px));
}

.center {
    text-align: center;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 100;
    background: var(--ink);
    color: var(--paper);
    padding: 10px 14px;
    border-radius: 999px;
}

.skip-link:focus {
    left: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(232, 224, 216, 0.8);
}

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

.brand img {
    width: 86px;
    height: 86px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav a {
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding: 10px 0 8px;
}

.site-nav a:hover,
.site-nav a.active,
.site-nav a[aria-current='page'] {
    border-bottom-color: var(--ink);
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 10px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
}

.section-soft {
    background:
        radial-gradient(circle at top right, rgba(238, 228, 215, 0.88), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #fbf8f4 48%, #f2e8dc 100%);
}

.hero {
    padding: 72px 0;
}

.hero-grid,
.split-grid,
.cta-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--sage);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

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

h1,
h2 {
    font-family: var(--serif);
    line-height: 1.06;
    font-weight: 400;
}

h1 {
    margin-bottom: 22px;
    font-size: clamp(3rem, 8vw, 5.9rem);
    letter-spacing: -0.045em;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.3rem);
    letter-spacing: -0.025em;
}

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

.lead {
    max-width: 560px;
    color: var(--ink-soft);
    font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border: 1px solid var(--ink);
    border-radius: 0;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(17, 17, 17, 0.12);
}

.button-dark {
    color: var(--paper);
    background: var(--ink);
}

.button-light {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
}

.hero-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(232, 224, 216, 0.92);
    border-radius: var(--radius);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(238, 228, 215, 0.72)),
        radial-gradient(circle at 65% 18%, rgba(120, 135, 111, 0.18), transparent 30%);
    box-shadow: var(--shadow);
}

.cleaning-basket {
    position: absolute;
    right: 44px;
    bottom: 125px;
    width: 330px;
    height: 260px;
}

.bottle,
.spray-head,
.cloth,
.basket-lines {
    position: absolute;
}

.bottle {
    bottom: 70px;
    width: 58px;
    border: 2px solid var(--ink);
    border-radius: 18px 18px 10px 10px;
    background: rgba(255, 255, 255, 0.58);
}

.bottle::before {
    content: '';
    position: absolute;
    left: 17px;
    top: -28px;
    width: 22px;
    height: 28px;
    border: 2px solid var(--ink);
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
}

.bottle-tall {
    left: 95px;
    height: 150px;
}

.bottle-short {
    left: 164px;
    height: 115px;
}

.spray-head {
    left: 70px;
    top: 36px;
    width: 104px;
    height: 52px;
    border-top: 5px solid var(--ink);
    border-left: 5px solid var(--ink);
    transform: skewX(-22deg);
}

.cloth {
    right: 28px;
    bottom: 72px;
    width: 94px;
    height: 108px;
    border: 2px solid var(--ink);
    border-radius: 18px;
    background: rgba(238, 228, 215, 0.95);
    transform: rotate(8deg);
}

.basket-lines {
    bottom: 18px;
    left: 34px;
    width: 252px;
    height: 88px;
    border: 3px solid var(--ink);
    border-radius: 12px 12px 26px 26px;
    background-image: repeating-linear-gradient(90deg, transparent 0 28px, rgba(17, 17, 17, 0.6) 29px 31px), repeating-linear-gradient(0deg, transparent 0 26px, rgba(17, 17, 17, 0.6) 27px 29px);
}

.sparkle {
    position: absolute;
    color: var(--sage);
    font-size: 56px;
}

.sparkle-one {
    top: 75px;
    right: 95px;
}

.sparkle-two {
    left: 80px;
    bottom: 170px;
    font-size: 42px;
}

.hero-note {
    position: absolute;
    left: 38px;
    right: 38px;
    bottom: 36px;
    display: grid;
    gap: 5px;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
}

.hero-note span,
.muted-callout,
.service-card p,
.why p,
.contact-aside p,
.aside-box span {
    color: var(--muted);
}

.quick-points {
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
}

.point-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.point-grid article {
    padding: 26px 34px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.point-grid article:last-child {
    border-right: 0;
}

.icon-line {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    font-size: 1.3rem;
}

.point-grid h2 {
    margin-bottom: 7px;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
}

.point-grid p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.split-section,
.services,
.contact-section {
    padding: 92px 0;
}

.image-panel {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--cream), var(--warm));
    box-shadow: var(--shadow);
}

.supplies-panel::before {
    content: '';
    position: absolute;
    inset: 38px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 22px;
}

.shelf {
    position: absolute;
    left: 70px;
    right: 70px;
    bottom: 92px;
    height: 16px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.15);
}

.round-bottle,
.soap-bottle,
.brush,
.folded-towel {
    position: absolute;
    bottom: 108px;
}

.round-bottle {
    left: 120px;
    width: 86px;
    height: 145px;
    border: 2px solid var(--ink);
    border-radius: 44px 44px 16px 16px;
    background: rgba(255, 255, 255, 0.58);
}

.round-bottle::before {
    content: '';
    position: absolute;
    left: 27px;
    top: -38px;
    width: 30px;
    height: 38px;
    border: 2px solid var(--ink);
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
}

.soap-bottle {
    left: 230px;
    width: 70px;
    height: 118px;
    border: 2px solid var(--ink);
    border-radius: 18px;
    background: rgba(120, 135, 111, 0.16);
}

.brush {
    right: 110px;
    width: 84px;
    height: 26px;
    border-radius: 999px;
    background: var(--ink);
    transform: rotate(-18deg);
}

.brush::after {
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: -22px;
    height: 22px;
    background: repeating-linear-gradient(90deg, var(--ink) 0 3px, transparent 3px 8px);
}

.folded-towel {
    right: 145px;
    bottom: 60px;
    width: 170px;
    height: 54px;
    border: 2px solid var(--ink);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
}

.folded-towel::before,
.folded-towel::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    height: 2px;
    background: rgba(17, 17, 17, 0.35);
}

.folded-towel::before {
    top: 18px;
}

.folded-towel::after {
    top: 34px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 34px;
}

.service-card {
    min-height: 220px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 12px 40px rgba(17, 17, 17, 0.04);
}

.why {
    padding: 84px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.why-grid article {
    padding: 34px;
    text-align: center;
    border: 1px solid rgba(232, 224, 216, 0.95);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.66);
}

.why-grid span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border: 1px solid var(--ink);
    border-radius: 50%;
}

.cta-band {
    padding: 72px 0;
    background: var(--ink);
    color: var(--paper);
}

.cta-band .eyebrow,
.cta-band p {
    color: rgba(255, 255, 255, 0.78);
}

.cta-band .button-dark {
    border-color: var(--paper);
    background: var(--paper);
    color: var(--ink);
    justify-self: end;
}

.page-hero {
    padding: 76px 0 66px;
}

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

.contact-aside,
.form-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.contact-aside {
    position: sticky;
    top: 120px;
    padding: 36px;
}

.contact-logo {
    width: 130px;
    margin-bottom: 22px;
}

.aside-box {
    display: grid;
    gap: 5px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--line);
}

.form-card {
    padding: 38px;
}

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

.field-group {
    display: grid;
    gap: 8px;
}

label {
    font-weight: 700;
    font-size: 0.92rem;
}

input,
textarea {
    width: 100%;
    border: 1px solid #d7d0c7;
    border-radius: 0;
    background: #fff;
    color: var(--ink);
    font: inherit;
    padding: 14px 15px;
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(120, 135, 111, 0.35);
    border-color: var(--sage);
}

textarea {
    resize: vertical;
}

.honey {
    position: absolute;
    left: -9999px;
}

.full-button {
    width: 100%;
    margin-top: 4px;
}

.form-message {
    margin-bottom: 22px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    font-weight: 700;
}

.form-message.success {
    border-color: rgba(120, 135, 111, 0.45);
    background: rgba(120, 135, 111, 0.12);
}

.form-message.error {
    border-color: rgba(150, 44, 44, 0.32);
    background: rgba(150, 44, 44, 0.09);
}

.site-footer {
    padding: 32px 0;
    color: rgba(255, 255, 255, 0.72);
    background: #111111;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.92rem;
}

.footer-inner div {
    display: grid;
    gap: 3px;
}

.footer-inner a {
    text-decoration: none;
}

.footer-inner a:hover {
    color: #ffffff;
}

@media (max-width: 900px) {
    .header-inner {
        min-height: 78px;
    }

    .brand img {
        width: 70px;
        height: 70px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 82px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px;
        border: 1px solid var(--line);
        background: #ffffff;
        box-shadow: var(--shadow);
    }

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

    .site-nav a {
        padding: 13px 0;
    }

    .hero-grid,
    .split-grid,
    .cta-grid,
    .contact-grid,
    .point-grid,
    .card-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 54px 0;
    }

    .hero-card {
        min-height: 430px;
    }

    .cleaning-basket {
        right: 8px;
        transform: scale(0.85);
        transform-origin: bottom right;
    }

    .point-grid article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .point-grid article:last-child {
        border-bottom: 0;
    }

    .split-section,
    .services,
    .contact-section {
        padding: 66px 0;
    }

    .cta-band .button-dark {
        justify-self: start;
    }

    .contact-aside {
        position: static;
    }
}

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

    .hero-card,
    .image-panel {
        border-radius: 18px;
    }

    .button-row,
    .button {
        width: 100%;
    }

    .hero-note {
        left: 18px;
        right: 18px;
        bottom: 20px;
    }

    .form-card,
    .contact-aside,
    .service-card,
    .why-grid article {
        padding: 24px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}
