:root {
    --bg: #f6f1e8;
    --surface: #fffaf2;
    --surface-strong: #e8d8c3;
    --text: #1e1b18;
    --muted: #62584e;
    --accent: #8f3d2e;
    --accent-deep: #5b241b;
    --dark: #16120f;
    --light: #f8f3ec;
    --border: rgba(30, 27, 24, 0.12);
    --shadow: 0 18px 45px rgba(58, 36, 21, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(143, 61, 46, 0.18), transparent 30%),
        linear-gradient(180deg, #f8f3ec 0%, #f3ede3 48%, #efe6d7 100%);
    line-height: 1.6;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(14px);
    background: rgba(248, 243, 236, 0.82);
    border-bottom: 1px solid rgba(30, 27, 24, 0.08);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.eyebrow,
.section-tag,
.card-label,
.contact-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
}

.eyebrow,
.section-tag,
.card-label {
    color: var(--accent);
}

.brand,
h1,
h2,
h3 {
    font-family: "Cormorant Garamond", serif;
}

.brand {
    font-size: 2rem;
    font-weight: 700;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-weight: 600;
}

.site-nav a {
    position: relative;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

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

.hero-grid,
.two-column,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: 0.95;
    margin-bottom: 1.25rem;
}

.lead {
    max-width: 42rem;
    font-size: 1.08rem;
    color: var(--muted);
}

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

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

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

.button-primary {
    background: var(--accent);
    color: var(--light);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--accent-deep);
}

.button-secondary {
    border-color: rgba(30, 27, 24, 0.15);
    background: rgba(255, 250, 242, 0.7);
}

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

.hero-card,
.info-card,
.contact-card {
    background: rgba(255, 250, 242, 0.9);
    border: 1px solid rgba(30, 27, 24, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 2rem;
}

.hero-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}

.check-list li:last-child {
    border-bottom: 0;
}

.section {
    padding: 4.75rem 0;
}

.section h2 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.section-accent {
    background: linear-gradient(135deg, rgba(232, 216, 195, 0.78), rgba(248, 243, 236, 0.65));
    border-top: 1px solid rgba(30, 27, 24, 0.05);
    border-bottom: 1px solid rgba(30, 27, 24, 0.05);
}

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

.info-card {
    padding: 1.75rem;
}

.info-card h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.retailer-panel {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
    padding: 2rem;
    border-radius: var(--radius);
    background: rgba(255, 250, 242, 0.72);
    border: 1px solid rgba(30, 27, 24, 0.08);
}

.retailer-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.retailer-points div {
    padding: 1.1rem;
    border-radius: 18px;
    background: rgba(143, 61, 46, 0.08);
}

.retailer-points span {
    display: inline-block;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.45rem;
}

.section-dark {
    color: var(--light);
    background:
        radial-gradient(circle at top right, rgba(248, 243, 236, 0.1), transparent 28%),
        linear-gradient(135deg, #2a1c17 0%, #16120f 100%);
}

.section-tag.light,
.section-dark .contact-label {
    color: #f2c9af;
}

.contact-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.contact-address {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.site-footer {
    background: #120f0d;
    color: rgba(248, 243, 236, 0.84);
    padding: 2.5rem 0 1.4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.footer-heading {
    color: var(--light);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding-top: 1.2rem;
    margin-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.92rem;
}

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

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

@media (max-width: 900px) {
    .hero-grid,
    .two-column,
    .contact-grid,
    .retailer-panel,
    .cards,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .retailer-points {
        grid-template-columns: 1fr;
    }

    .site-header {
        position: static;
    }
}

@media (max-width: 640px) {
    .topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero {
        padding-top: 3.5rem;
    }

    .hero-copy h1 {
        font-size: 3rem;
    }

    .section,
    .site-footer {
        padding-left: 0;
        padding-right: 0;
    }
}
