:root {
    --bg: #fcf7ef;
    --surface: #fffdf8;
    --surface-strong: #f4ead8;
    --surface-deep: #143528;
    --text: #1d2c22;
    --text-soft: #5c675e;
    --line: rgba(20, 53, 40, 0.12);
    --primary: #1f6b4f;
    --primary-deep: #154d38;
    --accent: #e98b3c;
    --accent-soft: #fff0e3;
    --shadow: 0 20px 40px rgba(38, 48, 33, 0.08);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1180px;
    --font-body: 'Manrope', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(233, 139, 60, 0.14), transparent 30%),
        radial-gradient(circle at top right, rgba(31, 107, 79, 0.1), transparent 35%),
        var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.65;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: rgba(252, 247, 239, 0.86);
    border-bottom: 1px solid var(--line);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-badge {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 10px 24px rgba(31, 107, 79, 0.2);
}

.brand-title,
.brand-subtitle {
    display: block;
    line-height: 1;
}

.brand-title {
    font-weight: 800;
    font-size: 1.05rem;
}

.brand-subtitle {
    margin-top: 0.3rem;
    color: var(--text-soft);
    font-size: 0.82rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.site-nav a {
    color: var(--text-soft);
    font-weight: 600;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--primary);
}

.nav-cta {
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    color: #fff !important;
    background: var(--primary);
    box-shadow: 0 12px 24px rgba(31, 107, 79, 0.16);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 14px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    margin: 5px auto;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero-section,
.page-hero {
    position: relative;
    overflow: hidden;
}

.hero-section {
    padding: 5rem 0 4rem;
}

.hero-grid,
.page-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.page-hero {
    padding: 4.25rem 0 2rem;
}

.compact-page-hero {
    padding-bottom: 1rem;
}

.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    line-height: 0.95;
}

h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    margin-bottom: 1.2rem;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.9rem;
    margin-bottom: 0.7rem;
}

p {
    color: var(--text-soft);
}

.hero-text {
    max-width: 58ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.95rem 1.4rem;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--primary), #2f8b68);
    color: #fff;
    box-shadow: 0 16px 30px rgba(31, 107, 79, 0.22);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.65);
    color: var(--text);
    border-color: rgba(29, 44, 34, 0.12);
}

.hero-metrics,
.stats-grid {
    display: grid;
    gap: 1rem;
}

.hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
}

.hero-metrics div,
.stat-card {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(29, 44, 34, 0.08);
    border-radius: var(--radius-md);
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow);
}

.hero-metrics strong,
.stat-card strong {
    display: block;
    font-size: 1.45rem;
    color: var(--primary-deep);
}

.hero-card,
.page-hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 234, 216, 0.9));
    border: 1px solid rgba(31, 107, 79, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    box-shadow: var(--shadow);
}

.hero-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
}

.hero-glow-left {
    left: -120px;
    top: 90px;
    background: rgba(31, 107, 79, 0.22);
}

.hero-glow-right {
    right: -120px;
    top: 60px;
    background: rgba(233, 139, 60, 0.2);
}

.section {
    padding: 5rem 0;
}

.surface-section {
    background: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(29, 44, 34, 0.06);
    border-bottom: 1px solid rgba(29, 44, 34, 0.06);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.category-grid,
.promise-grid,
.product-preview-grid,
.stats-grid,
.story-grid,
.catalog-grid {
    display: grid;
    gap: 1.3rem;
}

.category-grid,
.promise-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-preview-grid,
.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
}

.category-card,
.offer-card,
.info-card,
.product-card,
.promise-card,
.story-card,
.catalog-card,
.team-card,
.contact-panel,
.hours-panel,
.map-card,
.form-card {
    background: var(--surface);
    border: 1px solid rgba(29, 44, 34, 0.08);
    border-radius: var(--radius-md);
    padding: 1.4rem;
    box-shadow: var(--shadow);
}

.category-card img {
    width: 100%;
    max-height: 170px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.offer-band {
    padding: 1rem 0;
}

.offer-grid,
.split-layout,
.team-layout,
.contact-layout,
.map-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.offer-cards,
.split-stack,
.team-cards {
    display: grid;
    gap: 1rem;
}

.offer-card {
    background: linear-gradient(180deg, #fff8ee, #fff);
}

.offer-card.accent {
    background: linear-gradient(180deg, rgba(31, 107, 79, 0.96), rgba(21, 77, 56, 0.96));
    color: #fff;
}

.offer-card.accent p,
.offer-card.accent .offer-tag,
.offer-card.accent h3 {
    color: inherit;
}

.offer-tag,
.pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.feature-list li {
    padding-left: 1.3rem;
    position: relative;
    color: var(--text-soft);
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.location-teaser,
.promo-callout {
    margin-top: 1.8rem;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(31, 107, 79, 0.08), rgba(233, 139, 60, 0.12));
    border: 1px solid rgba(31, 107, 79, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-button {
    border: 1px solid rgba(29, 44, 34, 0.12);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text);
    padding: 0.7rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
}

.filter-button.active,
.filter-button:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.catalog-card strong,
.product-card strong {
    color: var(--primary-deep);
    font-size: 1.2rem;
}

.catalog-card.is-hidden {
    display: none;
}

.contact-list,
.hours-list {
    display: grid;
    gap: 1rem;
    margin: 1.25rem 0;
}

.contact-list span,
.hours-list span {
    display: block;
    color: var(--text-soft);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.hours-list div,
.contact-list div {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(29, 44, 34, 0.08);
}

.hours-list strong {
    color: var(--primary-deep);
}

.hours-note {
    font-size: 0.92rem;
}

.map-frame {
    height: 320px;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-top: 1.2rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form label {
    display: grid;
    gap: 0.4rem;
}

.contact-form span {
    font-weight: 700;
    color: var(--text);
}

.contact-form input,
.contact-form textarea {
    border: 1px solid rgba(29, 44, 34, 0.12);
    background: #fff;
    border-radius: 14px;
    padding: 0.9rem 1rem;
    color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(31, 107, 79, 0.18);
    border-color: var(--primary);
}

.site-footer {
    padding-top: 3rem;
    background: var(--surface-deep);
    color: rgba(255, 255, 255, 0.9);
}

.site-footer p,
.site-footer a,
.site-footer .brand-subtitle {
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.9fr;
    gap: 1.5rem;
    padding-bottom: 2rem;
}

.site-footer h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    gap: 0.7rem;
}

.footer-brand .brand-title,
.footer-brand .brand-subtitle {
    color: #fff;
}

.footer-text {
    max-width: 40ch;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0 1.5rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-delay {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

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

@media (max-width: 980px) {
    .menu-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 1rem;
        right: 1rem;
        background: rgba(255, 253, 248, 0.98);
        border: 1px solid var(--line);
        border-radius: 22px;
        padding: 1rem;
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }

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

    .hero-grid,
    .page-hero-grid,
    .offer-grid,
    .split-layout,
    .team-layout,
    .contact-layout,
    .map-form-grid,
    .story-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-grid,
    .promise-grid,
    .product-preview-grid,
    .stats-grid,
    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .section,
    .hero-section,
    .page-hero {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .category-grid,
    .promise-grid,
    .product-preview-grid,
    .stats-grid,
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .promo-callout,
    .location-teaser {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-shell {
        min-height: 78px;
    }

    .brand-badge {
        width: 44px;
        height: 44px;
        border-radius: 16px;
    }
}
