:root {
    color-scheme: light;
    --background: #f8f6f1;
    --text: #1f1f1c;
    --accent: #2f4f4f;
    --nav-border: #d7d2c7;
}

html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Georgia", "Times New Roman", serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
}

body:not(.home) {
    font-size: 1.1em;
}

body:not(.home) h1,
body:not(.home) h2,
body:not(.home) h3 {
    line-height: 1.25;
}

.site-header {
    position: static;
    z-index: 1000;
    padding: 1rem;
    border-bottom: 1px solid var(--nav-border);
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.site-brand {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    font-size: 1rem;
}

.site-nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
}

.site-nav a:hover,
.site-nav a:focus {
    text-decoration: underline;
}

.content {
    padding: 1.5rem 1rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}


.btn {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background: var(--accent);
    color: #ffffff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

.btn:hover,
.btn:focus {
    opacity: 0.9;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.125rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(31, 31, 28, 0.12);
}

.pill-primary {
    background: var(--accent);
    color: #ffffff;
}

.pill-outline {
    background: #ffffff;
    color: var(--text);
    border: 1px solid var(--nav-border);
}

.card {
    background: #ffffff;
    border: 1px solid var(--nav-border);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(31, 31, 28, 0.05);
}

.link {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 600;
}

.muted {
    color: #5a5a54;
}

.grid-2 {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.home-hero-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1.5rem;
}

.home-logo {
    max-width: 140px;
    height: auto;
    display: block;
    margin-bottom: 0.75rem;
}

.home-page {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1.2em;
}

.home-page h1,
.home-page h2,
.home-page h3 {
    line-height: 1.25;
}

.hero-band {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #f6f4ef;
    overflow: hidden;
}

.hero-band::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 90px;
    background: #ffffff;
    border-top-left-radius: 100% 100%;
    border-top-right-radius: 100% 100%;
}

.hero-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1.5rem 3.5rem;
    position: relative;
    z-index: 1;
}

.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0;
}

.hero-left {
    padding: 1.5rem 1rem 1.5rem 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.06) 1px, transparent 0);
    background-size: 20px 20px;
    background-position: 0 0;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin: 0 0 1.25rem;
    letter-spacing: 0.03em;
    line-height: 1.02;
}

.t-strong {
    font-weight: 700;
    display: block;
}

.t-light {
    font-weight: 400;
    display: block;
}

.hero-text {
    margin: 0;
    font-size: 1.15rem;
    max-width: 48ch;
}

.hero-btn {
    margin-top: 1.75rem;
    padding: 0.75rem 1.375rem;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(31, 31, 28, 0.12);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1.375rem;
    border: 1px solid var(--nav-border);
    box-shadow: 0 20px 45px rgba(31, 31, 28, 0.08);
}

.hero-banner {
    padding: 3rem 0;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1.125rem;
    box-shadow: 0 18px 40px rgba(31, 31, 28, 0.08);
}

.hero-right {
    width: 100%;
}

.section {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--nav-border);
}

.section:last-child {
    border-bottom: none;
    padding-bottom: 1rem;
}

.section-title {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
}

.hero-section {
    padding-top: 1rem;
}

.hero-wrap {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--nav-border);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(31, 31, 28, 0.08);
    margin-bottom: 1.5rem;
}

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

.hero-logo {
    max-width: 120px;
    height: auto;
    display: block;
    margin-bottom: 0.75rem;
}

.hero-tagline {
    font-size: 1.25rem;
    margin: 0 0 1.25rem;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid currentColor;
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

.card-grid {
    display: grid;
    gap: 1rem;
}

.card-grid .card h3 {
    margin-top: 0;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-list li {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--nav-border);
    background: #ffffff;
    font-weight: 600;
}

.bullet-list {
    margin: 0;
    padding-left: 1.25rem;
}

.bullet-list li {
    margin-bottom: 0.5rem;
}

.location-grid {
    display: grid;
    gap: 1rem;
}

.location-card p {
    margin: 0.5rem 0 0.75rem;
}

.social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    align-items: center;
}

.products-page {
    overflow-x: hidden;
}

.products-page .product-section {
    margin: 2rem 0;
}

.products-page .products-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
}

.products-page .product-item {
    margin: 0;
}

.products-page .product-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(23, 35, 40, 0.10);
}

.products-page .product-img--small {
    width: 70%;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 700px) {
    .site-nav {
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
    }

    .header-inner {
        gap: 2rem;
    }

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

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

}

@media (min-width: 1000px) {
    .hero-wrap {
        padding: 4.5rem 2.5rem 5rem;
    }

    .hero {
        grid-template-columns: 5fr 7fr;
        align-items: center;
        gap: 3rem;
        min-height: 72vh;
    }

    .hero-left {
        padding: 2rem 1.5rem 2rem 0;
    }

    .hero-img {
        transform: scale(1.02);
    }

    .hero-banner {
        padding: 4.5rem 0;
    }

}

@media (max-width: 900px) {
    .header-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .header-inner {
        flex-wrap: wrap;
    }
}

@media (min-width: 720px) {
    .grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
