:root {
    --ink: #261d1f;
    --muted: #6f6265;
    --soft: #8b7d7f;
    --line: #eadfda;
    --paper: #fffdfb;
    --cream: #f7efe8;
    --rose: #c75f7a;
    --rose-dark: #9f405c;
    --sage: #6f8967;
    --mint: #dbe8d2;
    --gold: #b78a4a;
    --cocoa: #4a322e;
    --blue: #48687a;
    --white: #ffffff;
    --shadow: 0 18px 48px rgba(68, 45, 41, 0.12);
    --soft-shadow: 0 10px 30px rgba(68, 45, 41, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

main[id],
section[id],
details[id] {
    scroll-margin-top: 7.5rem;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.65;
}

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

a {
    color: inherit;
}

.announcement-bar {
    background: var(--ink);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 0.65rem 1rem;
    text-align: center;
    text-transform: uppercase;
}

.site-header {
    align-items: center;
    background: rgba(255, 253, 251, 0.96);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 1rem;
    grid-template-columns: auto 1fr auto;
    padding: 1rem clamp(1rem, 4vw, 4.5rem);
    position: sticky;
    top: 0;
    z-index: 20;
}

.logo {
    color: var(--ink);
    display: inline-flex;
    flex-direction: column;
    font-family: "Fraunces", Georgia, serif;
    line-height: 0.95;
    text-decoration: none;
}

.logo span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.logo strong {
    font-size: 1.45rem;
    font-weight: 700;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    justify-content: center;
}

.main-nav a,
.header-email {
    border-radius: 6px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 800;
    padding: 0.55rem 0.7rem;
    text-decoration: none;
}

.main-nav a:hover,
.header-email:hover {
    background: var(--cream);
    color: var(--ink);
}

.header-email {
    border: 1px solid var(--line);
    white-space: nowrap;
}

.hero {
    display: grid;
    min-height: 82vh;
    overflow: hidden;
    position: relative;
}

.hero-media {
    grid-area: 1 / 1;
    min-height: 82vh;
}

.hero-media::after {
    background:
        linear-gradient(90deg, rgba(38, 29, 31, 0.86), rgba(38, 29, 31, 0.55) 46%, rgba(38, 29, 31, 0.1)),
        linear-gradient(0deg, rgba(38, 29, 31, 0.2), rgba(38, 29, 31, 0.2));
    content: "";
    inset: 0;
    position: absolute;
}

.hero-media img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.hero-content {
    align-content: center;
    color: var(--white);
    display: grid;
    gap: 1.35rem;
    grid-area: 1 / 1;
    max-width: 880px;
    padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
    position: relative;
    z-index: 2;
}

.eyebrow {
    color: var(--rose-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #ffd8e0;
}

h1,
h2,
h3 {
    font-family: "Fraunces", Georgia, serif;
    line-height: 1.05;
}

h1 {
    font-size: clamp(3.2rem, 8vw, 7rem);
    letter-spacing: 0;
    max-width: 760px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.55rem);
    letter-spacing: 0;
}

h3 {
    font-size: 1.35rem;
}

.hero-copy {
    font-size: clamp(1rem, 1.8vw, 1.23rem);
    max-width: 720px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.button {
    align-items: center;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 800;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0.9rem 1.15rem;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button.primary {
    background: var(--rose);
    color: var(--white);
}

.button.primary:hover {
    background: var(--rose-dark);
}

.button.secondary {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: var(--white);
}

.hero-stats {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.2rem;
    max-width: 760px;
}

.hero-stats div {
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    padding-left: 1rem;
}

.hero-stats dt {
    font-family: "Fraunces", Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
}

.hero-stats dd {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
}

.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0 clamp(1rem, 5vw, 5rem);
}

.trust-item {
    border-left: 1px solid var(--line);
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
}

.trust-item:last-child {
    border-right: 1px solid var(--line);
}

.trust-item span {
    color: var(--rose-dark);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.trust-item p {
    color: var(--muted);
    font-size: 0.92rem;
}

.section {
    padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 2rem;
    max-width: 900px;
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.05rem;
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.intro,
.process,
.reviews {
    background: var(--cream);
}

.intro-grid,
.product-grid,
.review-grid,
.legal-grid,
.corporate-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.info-card,
.product-card,
.review-card,
.legal-grid article,
.corporate-grid article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.info-card {
    display: grid;
    gap: 0.85rem;
    padding: 1.25rem;
}

.info-card p,
.product-card p,
.review-card p,
.legal-grid p,
.flavor-item p,
.steps p,
.delivery-panel p,
.atelier-text p,
.faq p,
.contact-copy p,
.site-footer p,
.corporate-grid p,
.comparison-panel p,
.quote-band p,
.order-checklist li,
.form-note {
    color: var(--muted);
}

.info-card a,
.faq a,
.legal a,
.site-footer a,
.quote-band a {
    color: var(--rose-dark);
    font-weight: 800;
}

.card-icon {
    align-items: center;
    background: var(--ink);
    border-radius: 6px;
    color: var(--white);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 800;
    height: 2.3rem;
    justify-content: center;
    width: 2.3rem;
}

.split {
    background: var(--paper);
}

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card.highlighted {
    border-color: rgba(199, 95, 122, 0.55);
    box-shadow: 0 22px 60px rgba(159, 64, 92, 0.16);
}

.product-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.product-content {
    display: grid;
    flex: 1;
    gap: 0.75rem;
    padding: 1.2rem;
}

.product-kicker {
    color: var(--rose-dark);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mini-list,
.check-list,
.order-checklist ul {
    display: grid;
    gap: 0.45rem;
    list-style: none;
}

.mini-list li,
.order-checklist li {
    color: var(--muted);
    font-size: 0.93rem;
    padding-left: 1.05rem;
    position: relative;
}

.mini-list li::before,
.order-checklist li::before {
    background: var(--sage);
    border-radius: 50%;
    content: "";
    height: 0.38rem;
    left: 0;
    position: absolute;
    top: 0.7rem;
    width: 0.38rem;
}

.product-meta {
    align-items: center;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.85rem;
}

.product-meta span {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.product-meta strong {
    color: var(--rose-dark);
    font-size: 1.05rem;
}

.comparison-panel {
    align-items: start;
    background: var(--ink);
    border-radius: 8px;
    color: var(--white);
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(240px, 0.8fr) 1.2fr;
    margin-top: 1rem;
    padding: clamp(1.2rem, 3vw, 2rem);
}

.comparison-panel .eyebrow {
    color: #ffc9d5;
}

.comparison-panel p {
    color: rgba(255, 255, 255, 0.75);
}

.comparison-copy {
    display: grid;
    gap: 0.75rem;
}

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

.comparison-grid div {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 1rem;
}

.comparison-grid span {
    color: var(--white);
    display: block;
    font-weight: 900;
    margin-bottom: 0.35rem;
}

.flavors {
    background: var(--ink);
    color: var(--white);
}

.flavors .eyebrow {
    color: #ffc9d5;
}

.flavors .section-heading p:not(.eyebrow),
.flavors .flavor-note-grid p {
    color: rgba(255, 255, 255, 0.74);
}

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

.flavor-item {
    align-items: start;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    display: grid;
    gap: 1rem;
    grid-template-columns: auto 1fr;
    padding: 1rem;
}

.flavor-item p {
    color: rgba(255, 255, 255, 0.74);
}

.swatch {
    border: 2px solid rgba(255, 255, 255, 0.44);
    border-radius: 50%;
    display: block;
    height: 2.3rem;
    margin-top: 0.15rem;
    width: 2.3rem;
}

.swatch.rose {
    background: #d44c6d;
}

.swatch.pistache {
    background: #9eb36d;
}

.swatch.vanille {
    background: #f2d997;
}

.swatch.chocolat {
    background: #39201c;
}

.swatch.caramel {
    background: #c58435;
}

.swatch.cafe {
    background: #7a5b46;
}

.swatch.citron {
    background: #f1d85f;
}

.swatch.fleur {
    background: #e7b6a7;
}

.flavor-note-grid {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.5rem;
    padding-top: 1.1rem;
}

.process {
    background: var(--cream);
}

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

.steps article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.2rem;
}

.steps span {
    align-items: center;
    background: var(--sage);
    border-radius: 50%;
    color: var(--white);
    display: inline-flex;
    font-weight: 900;
    height: 2.2rem;
    justify-content: center;
    margin-bottom: 0.9rem;
    width: 2.2rem;
}

.delivery-panel {
    background: var(--ink);
    border-radius: 8px;
    color: var(--white);
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1rem;
    padding: clamp(1.2rem, 3vw, 2rem);
}

.delivery-panel > div {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: 1rem;
}

.delivery-panel p {
    color: rgba(255, 255, 255, 0.76);
}

.atelier {
    align-items: center;
    background: var(--paper);
    display: grid;
    gap: clamp(2rem, 5vw, 5rem);
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.atelier-text {
    display: grid;
    gap: 1rem;
}

.atelier img {
    aspect-ratio: 5 / 4;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.check-list {
    margin-top: 0.35rem;
}

.check-list li {
    border-left: 3px solid var(--rose);
    color: var(--muted);
    font-weight: 800;
    padding-left: 0.85rem;
}

.corporate {
    background: #f5f8f3;
}

.corporate-grid article {
    box-shadow: var(--soft-shadow);
    display: grid;
    gap: 0.65rem;
    padding: 1.25rem;
}

.corporate-grid h3 {
    color: var(--sage);
}

.quote-band {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr auto;
    margin-top: 1rem;
    padding: 1.2rem;
}

.reviews {
    background: var(--cream);
}

.review-card {
    display: grid;
    gap: 0.75rem;
    padding: 1.35rem;
}

.review-card strong {
    color: var(--rose-dark);
}

.review-card span {
    color: var(--soft);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.faq-layout {
    align-items: start;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 220px minmax(0, 1fr);
}

.faq-index {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 0.2rem;
    padding: 0.75rem;
    position: sticky;
    top: 6.5rem;
}

.faq-index a {
    border-radius: 6px;
    color: var(--muted);
    font-weight: 800;
    padding: 0.55rem 0.65rem;
    text-decoration: none;
}

.faq-index a:hover {
    background: var(--white);
    color: var(--ink);
}

.faq-list {
    display: grid;
    gap: 0.8rem;
}

details {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1rem 1.1rem;
}

summary {
    cursor: pointer;
    font-weight: 900;
}

details p {
    margin-top: 0.75rem;
}

.contact {
    background: var(--ink);
    color: var(--white);
    display: grid;
    gap: clamp(2rem, 6vw, 5rem);
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.9fr);
}

.contact .eyebrow {
    color: #ffc9d5;
}

.contact-copy {
    align-content: start;
    display: grid;
    gap: 1rem;
}

.contact-copy p {
    color: rgba(255, 255, 255, 0.76);
}

.contact-methods {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.8rem;
}

.contact-methods a,
.contact-methods span {
    color: var(--white);
    font-weight: 900;
    overflow-wrap: anywhere;
}

.order-checklist {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 1rem;
}

.order-checklist h3,
.order-checklist li {
    color: var(--white);
}

.order-checklist li {
    color: rgba(255, 255, 255, 0.78);
}

.contact-form {
    background: var(--white);
    border-radius: 8px;
    color: var(--ink);
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: clamp(1rem, 3vw, 1.5rem);
}

label {
    color: var(--muted);
    display: grid;
    font-size: 0.9rem;
    font-weight: 900;
    gap: 0.35rem;
}

.wide-field {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    font: inherit;
    min-height: 3rem;
    padding: 0.75rem 0.85rem;
    width: 100%;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--rose);
    outline: 3px solid rgba(199, 95, 122, 0.16);
}

.form-note {
    font-size: 0.86rem;
}

.legal {
    background: var(--paper);
}

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

.legal-grid article {
    box-shadow: none;
    display: grid;
    gap: 0.65rem;
    padding: 1.2rem;
}

.legal-grid h3 {
    color: var(--rose-dark);
}

.site-footer {
    background: var(--cream);
    border-top: 1px solid var(--line);
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.4fr 1fr 1fr;
    padding: 3rem clamp(1rem, 5vw, 5rem) 1.4rem;
}

.site-footer h2 {
    font-family: "Inter", Arial, sans-serif;
    font-size: 1rem;
    margin-bottom: 0.65rem;
}

.site-footer a {
    display: block;
    margin-bottom: 0.45rem;
    text-decoration: none;
}

.footer-logo {
    margin-bottom: 0.9rem;
}

.copyright {
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.85rem;
    grid-column: 1 / -1;
    padding-top: 1rem;
}

@media (max-width: 1180px) {
    .site-header {
        grid-template-columns: 1fr;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .header-email {
        width: max-content;
    }

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

@media (max-width: 1050px) {
    .product-grid,
    .review-grid,
    .steps,
    .corporate-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .atelier,
    .contact,
    .site-footer,
    .comparison-panel,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-index {
        position: static;
    }
}

@media (max-width: 720px) {
    .announcement-bar {
        font-size: 0.72rem;
    }

    .site-header {
        position: static;
    }

    .main-nav {
        overflow-x: auto;
        padding-bottom: 0.2rem;
    }

    .main-nav a {
        white-space: nowrap;
    }

    .hero,
    .hero-media {
        min-height: 760px;
    }

    .hero-media::after {
        background: linear-gradient(180deg, rgba(38, 29, 31, 0.88), rgba(38, 29, 31, 0.52));
    }

    .hero-content {
        align-content: end;
        padding-bottom: 2rem;
    }

    .hero-actions,
    .product-meta,
    .quote-band {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-stats,
    .trust-strip,
    .intro-grid,
    .product-grid,
    .review-grid,
    .flavor-list,
    .flavor-note-grid,
    .steps,
    .delivery-panel,
    .comparison-grid,
    .legal-grid,
    .corporate-grid,
    .quote-band,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:last-child {
        border-left: 0;
        border-right: 0;
        border-top: 1px solid var(--line);
    }

    .section {
        padding-block: 3rem;
    }

    .delivery-panel > div {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        padding-left: 0;
        padding-top: 1rem;
    }

    .contact {
        grid-template-columns: 1fr;
    }
}
