@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
    color-scheme: light;
    --bg: #faf7f3;
    --surface: #ffffff;
    --surface-soft: #fdf9f6;
    --text: #1f1815;
    --muted: #5a4d47;
    --accent: #c41e0f;
    --accent-soft: #fce8df;
    --border: rgba(31, 24, 21, 0.1);
    --shadow: 0 24px 60px rgba(20, 14, 10, 0.1);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
}

img,
iframe {
    max-width: 100%;
    display: block;
}

button,
a {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 250, 247, 0.95);
    backdrop-filter: blur(13px);
    box-shadow: 0 14px 40px rgba(36, 28, 23, 0.08);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand img,
.footer-logo {
    height: 56px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(168, 21, 15, 0.06);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.3s ease;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav a {
    color: var(--text);
    font-weight: 600;
    transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
    color: var(--accent);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.92rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #e85d4a);
    box-shadow: 0 18px 40px rgba(168, 21, 15, 0.2);
}

.hero,
.page-hero {
    min-height: 720px;
    display: grid;
    place-items: center;
    padding: 4rem 0;
    color: #fff;
}

.hero-home {
    background-image: linear-gradient(180deg, rgba(196, 30, 15, 0.65), rgba(20, 14, 10, 0.55)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.page-hero-about,
.page-hero-products,
.page-hero-contact {
    background: linear-gradient(180deg, rgba(196, 30, 15, 0.86), rgba(20, 14, 10, 0.88));
    background-size: cover;
    background-position: center;
}

.page-hero-about {
    background-image: linear-gradient(180deg, rgba(196, 30, 15, 0.86), rgba(20, 14, 10, 0.88));
}

.page-hero-products {
    background-image: linear-gradient(180deg, rgba(196, 30, 15, 0.86), rgba(20, 14, 10, 0.9));
}

.page-hero-contact {
    background-image: linear-gradient(180deg, rgba(196, 30, 15, 0.88), rgba(20, 14, 10, 0.92));
}

.hero-grid,
.split-section,
.feature-grid,
.media-grid {
    display: grid;
    gap: 2rem;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
    align-items: center;
}

.hero-copy,
.page-hero .hero-copy {
    max-width: 640px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.eyebrow-red {
    color: var(--accent);
}

.hero h1,
.page-hero h1,
.section-heading h2,
.story-card blockquote,
.feature-card h3,
.product-card h3,
.contact-panel h2 {
    font-family: 'Playfair Display', serif;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin: 0;
    line-height: 0.98;
}

.hero-text,
.lead,
.story-card p,
.panel-note {
    color: #ffffff;
    font-size: 1.05rem;
    max-width: 45rem;
}

.feature-card p,
.product-card p,
.contact-panel p {
    color: var(--text);
    font-size: 1.05rem;
    max-width: 45rem;
}

.hero-actions,
.inline-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #c41e0f, #e87050);
    color: #fff;
}

.btn-secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.hero-points span {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.9rem 1rem;
    border-radius: 16px;
    font-size: 0.95rem;
}

.hero-panel {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 30px 70px rgba(10, 6, 4, 0.18);
    border-radius: 32px;
    padding: 2rem;
}

.glass-card {
    backdrop-filter: blur(18px);
}

.panel-kicker {
    color: #f8d5ce;
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.price-stack {
    display: grid;
    gap: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
}

.price-item strong {
    font-weight: 700;
}

.price-item.featured {
    background: rgba(255, 255, 255, 0.14);
}

.trust-strip {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, rgba(196, 30, 15, 0.08), rgba(255, 255, 255, 0.9));
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.trust-grid article {
    background: var(--surface);
    padding: 1.6rem 1.4rem;
    border-radius: 28px;
    border: 1px solid rgba(45, 37, 32, 0.08);
    color: var(--text);
}

.trust-grid strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.section {
    padding: 5rem 0;
}

.section-split {
    background: var(--surface);
}

.split-section {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    align-items: center;
}

.story-card,
.contact-panel {
    background: #fff;
    padding: 2rem;
    border-radius: 32px;
    box-shadow: var(--shadow);
    color: var(--text);
}

.story-card-label {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1rem;
}

.story-card blockquote {
    font-size: 1.3rem;
    margin: 0 0 1.5rem;
    line-height: 1.55;
    color: #3f2c24;
    border-left: 4px solid var(--accent);
    padding-left: 1.2rem;
}

.section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-heading .eyebrow {
    margin-bottom: 0.85rem;
    color: var(--accent);
}

.section-heading h2 {
    font-size: clamp(2.1rem, 3vw, 2.8rem);
    color: var(--text);
    margin: 0;
}

.blend-selector {
    border-radius: 32px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.blend-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.blend-tab {
    padding: 1rem 1.2rem;
    border-radius: 18px;
    background: #fdf9f6;
    color: var(--text);
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease;
}

.blend-tab.is-active {
    background: var(--accent);
    color: #fff;
}

.blend-panels {
    display: grid;
}

.blend-panel {
    display: none;
}

.blend-panel.is-active {
    display: block;
}

.blend-badge {
    display: inline-flex;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1rem;
}

.blend-image {
    width: 100%;
    border-radius: 24px;
    margin-bottom: 1.25rem;
    object-fit: cover;
    display: block;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    display: grid;
    gap: 0.9rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.8rem;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 1.3rem;
    line-height: 1;
}

.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid rgba(45, 37, 32, 0.08);
    box-shadow: 0 18px 45px rgba(29, 22, 17, 0.06);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.media-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
    align-items: center;
}

.media-frame {
    border-radius: 32px;
    overflow: hidden;
    min-height: 320px;
    box-shadow: var(--shadow);
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-frame.portrait-frame {
    width: min(360px, 100%);
    aspect-ratio: 9 / 16;
    min-height: auto;
}

.media-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-width: 100%;
    object-fit: cover;
}

.media-frame iframe.portrait {
    width: 100%;
    height: 100%;
    max-width: 100%;
}

@media (max-width: 720px) {
    .media-frame.portrait-frame {
        width: min(280px, 100%);
        aspect-ratio: 9 / 16;
        margin: 0 auto;
    }
}

.cta-banner {
    background: linear-gradient(135deg, #c41e0f, #e87050);
    color: #fff;
    border-radius: 32px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 26px 68px rgba(168, 21, 15, 0.18);
}

.cta-banner h2 {
    margin: 0;
    font-size: clamp(2rem, 2.6vw, 2.8rem);
}

.site-footer {
    background: #1b120f;
    color: #ff4800;
    padding: 3rem 0 1.8rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.site-footer h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.site-footer a {
    color: #e95a22;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.75rem;
    text-align: center;
    color: rgba(245, 235, 231, 0.7);
}

.floating-contact {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 30;
    padding: 0.95rem 1.15rem;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 20px 40px rgba(168, 21, 15, 0.2);
    font-weight: 700;
}

.contact-form,
.contact-panel {
    width: 100%;
}

.contact-form {
    padding: 2.5rem;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.4rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--accent);
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(45, 37, 32, 0.12);
    background: #fff;
    color: var(--text);
    font-size: 1rem;
}

.form-group textarea {
    min-height: 170px;
}

.map-frame {
    border-radius: 26px;
    overflow: hidden;
    margin-top: 1.5rem;
    min-height: 340px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1000px) {
    .trust-grid,
    .feature-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid,
    .media-grid,
    .split-section {
        grid-template-columns: 1fr;
    }

    .hero,
    .page-hero {
        min-height: 620px;
    }
}

@media (max-width: 720px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        inset: 72px 1rem auto auto;
        width: calc(100% - 2rem);
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 1.25rem;
        border-radius: 28px;
        background: rgba(255, 250, 247, 0.98);
        box-shadow: 0 24px 60px rgba(36, 28, 23, 0.18);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-cta {
        width: 100%;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero,
    .page-hero {
        min-height: 560px;
        padding: 3rem 0;
    }

    .section {
        padding: 3.5rem 0;
    }

    .site-footer,
    .cta-banner,
    .story-card,
    .contact-panel,
    .hero-panel,
    .blend-selector,
    .feature-card {
        border-radius: 24px;
    }
}

@media (max-width: 540px) {
    .container {
        width: min(100%, calc(100% - 1.5rem));
    }

    .hero-text,
    .lead,
    .feature-card p,
    .contact-panel p {
        font-size: 1rem;
    }

    .site-nav {
        top: 68px;
    }

    .hero-actions,
    .inline-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .section-heading h2 {
        font-size: 2.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
