:root {
    --bg: #f7f0e6;
    --bg-deep: #163d34;
    --paper: rgba(255, 252, 247, 0.84);
    --card: #fff8f0;
    --ink: #1b1712;
    --muted: #665d52;
    --gold: #bf8d46;
    --gold-soft: #e8cfa7;
    --leaf: #1e6b56;
    --leaf-soft: #dceadf;
    --line: rgba(27, 23, 18, 0.1);
    --shadow: 0 24px 60px rgba(34, 26, 16, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top right, rgba(191, 141, 70, 0.35), transparent 22%),
        radial-gradient(circle at left 20%, rgba(30, 107, 86, 0.18), transparent 24%),
        linear-gradient(180deg, #fcf7ef 0%, #f3eadc 100%);
    font-family: Poppins, sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 48px;
}

.compact-shell {
    min-height: 100vh;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 26px;
    background: rgba(255, 251, 246, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 35px rgba(41, 30, 16, 0.08);
    position: sticky;
    top: 16px;
    z-index: 10;
}

.brand img {
    width: clamp(180px, 24vw, 300px);
    border-radius: 10px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-nav a {
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 14px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(30, 107, 86, 0.1);
    color: var(--ink);
    transform: translateY(-1px);
}

.site-nav .nav-cta {
    background: var(--bg-deep);
    color: #fff8ef;
}

.hero,
.story,
.comparison,
.contact-section,
.product-highlight,
.shop-main,
.redirect-card {
    animation: fade-up 0.7s ease both;
}

.hero {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 34px;
    align-items: center;
    padding: 72px 0 34px;
}

.eyebrow {
    margin: 0 0 14px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--leaf);
    font-weight: 600;
}

h1,
h2 {
    margin: 0;
    line-height: 1.05;
    color: #1f1a14;
}

h1 {
    font-size: clamp(42px, 7vw, 74px);
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: -0.035em;
}

p {
    color: var(--muted);
    line-height: 1.8;
}

.hero-text {
    font-size: 17px;
    max-width: 60ch;
    margin: 18px 0 0;
}

.hero-actions,
.badge-list,
.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions {
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(34, 26, 16, 0.16);
}

.button-primary {
    background: linear-gradient(135deg, var(--bg-deep), #255548);
    color: #fff8ef;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink);
    border: 1px solid rgba(27, 23, 18, 0.1);
}

.hero-points {
    margin-top: 18px;
}

.hero-points span,
.badge-list span,
.product-tag {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 13px;
}

.hero-media {
    position: relative;
    min-height: 520px;
}

.hero-card,
.quote-card,
.contact-card,
.product-card,
.redirect-card {
    border-radius: 28px;
    background: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.promo-card {
    max-width: 320px;
    padding: 24px;
    position: absolute;
    left: 0;
    top: 18px;
    z-index: 1;
}

.promo-card h2 {
    font-size: 28px;
    margin-top: 8px;
}

.promo-label {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    color: var(--gold);
    font-weight: 700;
}

.hero-product {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(100%, 520px);
    border-radius: 34px;
    box-shadow: 0 30px 80px rgba(32, 24, 13, 0.16);
    border: 8px solid rgba(255, 251, 245, 0.75);
}

.trust-strip,
.story,
.product-highlight,
.comparison,
.contact-section,
.shop-main {
    margin-top: 30px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.trust-strip article,
.story,
.product-highlight,
.comparison,
.contact-section,
.shop-main {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 250, 245, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 14px 40px rgba(41, 30, 16, 0.08);
}

.trust-strip article strong {
    display: block;
    margin-bottom: 12px;
    font-size: 20px;
}

.section-heading {
    max-width: 760px;
}

.story-grid,
.comparison-grid,
.product-highlight,
.contact-section {
    display: grid;
    gap: 24px;
    align-items: center;
}

.story-grid,
.comparison-grid,
.contact-section {
    grid-template-columns: 1.1fr 0.9fr;
}

.quote-card {
    padding: 26px;
    background: linear-gradient(180deg, rgba(255, 247, 236, 0.95), rgba(230, 239, 232, 0.82));
}

.quote-script {
    margin: 0 0 8px;
    color: var(--bg-deep);
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    line-height: 1.1;
}

.product-highlight {
    grid-template-columns: 0.95fr 1.05fr;
}

.product-visual img,
.comparison-grid img,
.product-card img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.feature-list {
    margin: 24px 0 0;
    padding-left: 20px;
    color: var(--muted);
}

.feature-list li + li {
    margin-top: 10px;
}

.comparison-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-card {
    padding: 24px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 26px 4px 0;
    color: var(--muted);
    font-size: 14px;
}

.shop-heading {
    margin-bottom: 28px;
}

.lineup-quickview {
    margin: 0 0 26px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(22, 61, 52, 0.92), rgba(42, 99, 84, 0.9));
    box-shadow: 0 12px 26px rgba(20, 50, 42, 0.2);
}

.lineup-title {
    margin: 0;
    color: rgba(255, 249, 239, 0.95);
    font-weight: 600;
}

.lineup-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.lineup-tags span {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.catalog-card {
    background: linear-gradient(180deg, rgba(255, 250, 244, 0.94), rgba(250, 244, 235, 0.9));
}

.catalog-card h2 {
    font-size: clamp(24px, 2.2vw, 32px);
    margin-bottom: 10px;
}

.catalog-card .product-tag {
    display: inline-block;
    margin-bottom: 10px;
}

.base,
.accent-note,
.benefit-note {
    margin: 8px 0;
    line-height: 1.6;
}

.benefit-note {
    color: #2d5c4f;
    font-weight: 500;
}

.catalog-card .button {
    margin-top: 10px;
}

.dream-card {
    background: linear-gradient(180deg, rgba(255, 248, 236, 0.96), rgba(247, 237, 228, 0.95));
}

.focus-card {
    background: linear-gradient(180deg, rgba(245, 245, 252, 0.96), rgba(234, 238, 247, 0.93));
}

.balance-card {
    background: linear-gradient(180deg, rgba(245, 250, 242, 0.96), rgba(232, 243, 233, 0.92));
}

.steady-card {
    background: linear-gradient(180deg, rgba(255, 249, 239, 0.96), rgba(246, 239, 224, 0.92));
}

.cocoa-card {
    background: linear-gradient(180deg, rgba(251, 244, 237, 0.96), rgba(242, 230, 220, 0.93));
}

.calm-card {
    background: linear-gradient(180deg, rgba(244, 240, 252, 0.96), rgba(234, 228, 245, 0.92));
}

.custom-order-band {
    margin-top: 26px;
    border-radius: 24px;
    padding: 24px;
    background:
        radial-gradient(circle at top right, rgba(232, 207, 167, 0.5), transparent 38%),
        linear-gradient(140deg, rgba(22, 61, 52, 0.1), rgba(255, 255, 255, 0.65));
    border: 1px solid rgba(27, 23, 18, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.custom-order-band h2 {
    font-size: clamp(24px, 3.1vw, 42px);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    overflow: hidden;
}

.product-card-body {
    padding: 22px;
}

.accent-card {
    background: linear-gradient(180deg, rgba(255, 248, 233, 0.92), rgba(241, 247, 240, 0.82));
}

.compact-list {
    margin-bottom: 24px;
}

.redirect-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.redirect-card {
    max-width: 620px;
    padding: 34px;
    text-align: center;
}

.redirect-card .button {
    margin-top: 8px;
}

.redirect-note {
    margin-top: 22px;
    font-size: 14px;
}

.order-builder-page {
    align-items: start;
    padding-top: 42px;
}

.order-builder-card {
    width: min(760px, 100%);
    text-align: left;
}

.order-form {
    margin-top: 20px;
    display: grid;
    gap: 14px;
}

.order-form label {
    font-weight: 600;
    color: #2a261f;
    font-size: 14px;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    border: 1px solid rgba(27, 23, 18, 0.2);
    border-radius: 12px;
    padding: 12px 14px;
    background: #fffefb;
    color: #1b1712;
    font: inherit;
}

.order-form select[multiple] {
    min-height: 140px;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    outline: 2px solid rgba(30, 107, 86, 0.28);
    border-color: rgba(30, 107, 86, 0.6);
}

.order-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.order-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.estimate-box {
    margin-top: 8px;
    padding: 16px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(236, 245, 241, 0.85), rgba(255, 253, 247, 0.95));
    border: 1px solid rgba(30, 107, 86, 0.25);
}

.estimate-box h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.estimate-note {
    margin: 0 0 10px;
    font-size: 13px;
}

.estimate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px dashed rgba(27, 23, 18, 0.14);
    font-size: 14px;
}

.estimate-row.total {
    border-bottom: 0;
    font-size: 18px;
    font-weight: 700;
    color: #163d34;
    padding-top: 12px;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 960px) {
    .site-header,
    .hero,
    .trust-strip,
    .story-grid,
    .comparison-grid,
    .product-highlight,
    .contact-section,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-header {
        position: static;
    }

    .hero {
        padding-top: 42px;
    }

    .hero-media {
        min-height: auto;
        display: grid;
        gap: 18px;
    }

    .promo-card,
    .hero-product {
        position: static;
        max-width: none;
    }

    .site-footer {
        flex-direction: column;
    }

    .custom-order-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .site-shell {
        width: min(100% - 20px, 1180px);
        padding-top: 12px;
    }

    .site-header,
    .trust-strip article,
    .story,
    .product-highlight,
    .comparison,
    .contact-section,
    .shop-main,
    .redirect-card {
        padding: 20px;
        border-radius: 22px;
    }

    .site-nav {
        justify-content: flex-start;
    }

    h1 {
        font-size: 40px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .order-grid-two {
        grid-template-columns: 1fr;
    }
}