/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --burgundy: #8B1A4D;
    --burgundy-deep: #6B1040;
    --burgundy-light: #A8225E;
    --blush: #F5E6D3;
    --blush-light: #FBF5EE;
    --blush-dark: #E8D0BC;
    --cream: #FDF8F4;
    --charcoal: #1A1A1A;
    --charcoal-light: #2D2D2D;
    --gray-900: #111111;
    --gray-700: #3D3D3D;
    --gray-500: #6B6B6B;
    --gray-300: #B8B8B8;
    --gray-100: #F0F0F0;
    --white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 26, 77, 0.08);
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(253, 248, 244, 0.97);
    box-shadow: 0 4px 30px rgba(139, 26, 77, 0.06);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--burgundy);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.25s var(--ease-smooth);
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--burgundy);
}

.nav-cta {
    background: var(--burgundy) !important;
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    transition: all 0.3s var(--ease-smooth) !important;
}

.nav-cta:hover {
    background: var(--burgundy-deep) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139, 26, 77, 0.25);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav-toggle-line {
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 26, 77, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 230, 211, 0.6) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.eyebrow-line {
    width: 32px;
    height: 2px;
    background: var(--burgundy);
    flex-shrink: 0;
}

.hero-eyebrow span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 700;
    line-height: 1.08;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.headline-accent {
    font-style: italic;
    color: var(--burgundy);
    font-weight: 600;
}

.hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s var(--ease-smooth);
    text-decoration: none;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 26, 77, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--gray-300);
}

.btn-ghost:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
    white-space: nowrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(139, 26, 77, 0.12);
    width: 100%;
    max-width: 520px;
}

.hero-img-main img {
    width: 100%;
    height: 750px;
    object-fit: cover;
}

.hero-img-accent {
    position: absolute;
    bottom: -40px;
    left: -30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--cream);
    width: 220px;
}

.hero-img-accent img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: 40px;
    right: -20px;
    background: var(--white);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(139, 26, 77, 0.1);
    z-index: 2;
}

.hero-badge svg {
    color: var(--burgundy);
    flex-shrink: 0;
}

.hero-badge span {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.3;
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--burgundy);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--charcoal);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.title-accent {
    font-style: italic;
    color: var(--burgundy);
    font-weight: 600;
}

.section-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 560px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-sub {
    margin: 0 auto;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(139, 26, 77, 0.1);
}

.about-img-wrap img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}

.about-quote {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--burgundy);
    color: var(--white);
    padding: 24px 28px;
    border-radius: 16px;
    font-family: var(--font-display);
    font-size: 15px;
    font-style: italic;
    line-height: 1.6;
    max-width: 280px;
    box-shadow: 0 15px 40px rgba(139, 26, 77, 0.25);
}

.about-quote svg {
    margin-bottom: 8px;
    opacity: 0.4;
}

.about-text-col .lead {
    font-size: 18px;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.about-text-col p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
}

.value-icon {
    width: 36px;
    height: 36px;
    background: var(--blush);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}

/* ===== BLENDS ===== */
.blends {
    padding: 120px 0;
    background: var(--cream);
}

.blends-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blend-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.blend-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(139, 26, 77, 0.1);
}

.blend-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.blend-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.blend-card:hover .blend-img img {
    transform: scale(1.05);
}

.blend-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--burgundy);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
}

.blend-info {
    padding: 24px 24px 28px;
}

.blend-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.blend-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 14px;
}

.blend-note {
    font-size: 12px;
    font-weight: 600;
    color: var(--burgundy);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ===== BAKES ===== */
.bakes {
    padding: 120px 0;
    background: var(--white);
}

.bakes-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.bakes-text .lead {
    font-size: 18px;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 32px;
}

.bakes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.bakes-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.5;
}

.bakes-list-icon {
    width: 22px;
    height: 22px;
    background: var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
    margin-top: 1px;
}

.bakes-note {
    font-size: 14px;
    color: var(--gray-500);
    font-style: italic;
    padding: 16px 20px;
    background: var(--blush-light);
    border-left: 3px solid var(--burgundy);
    border-radius: 0 10px 10px 0;
}

.bakes-images {
    position: relative;
}

.bakes-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(139, 26, 77, 0.1);
}

.bakes-img-main img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

.bakes-img-small {
    position: absolute;
    bottom: -40px;
    right: -20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 4px solid var(--white);
    width: 260px;
}

.bakes-img-small img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* ===== MARKETS ===== */
.markets {
    padding: 120px 0;
    background: var(--charcoal);
    color: var(--white);
}

.markets .section-eyebrow {
    color: var(--blush);
}

.markets .section-eyebrow::before {
    background: var(--blush);
}

.markets .section-title {
    color: var(--white);
}

.markets .title-accent {
    color: var(--blush);
}

.markets .lead {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.markets-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.markets-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.market-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.market-detail-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.market-detail-value {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
}

.market-detail-link {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--blush);
    transition: color 0.25s;
}

.market-detail-link:hover {
    color: var(--white);
}

.markets-cta .btn-primary {
    background: var(--blush);
    color: var(--charcoal);
}

.markets-cta .btn-primary:hover {
    background: var(--white);
    box-shadow: 0 8px 25px rgba(245, 230, 211, 0.3);
}

.markets-img-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.markets-img-1 img,
.markets-img-2 img {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.markets-img-1 img {
    height: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.markets-img-2 img {
    height: 280px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ===== GALLERY STRIP ===== */
.gallery-strip {
    padding: 40px 0;
    background: var(--blush);
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 20px;
    animation: galleryScroll 30s linear infinite;
}

.gallery-item {
    flex-shrink: 0;
    width: 300px;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s var(--ease-smooth);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@keyframes galleryScroll {
    0% { transform: translateX(0);
    100% { transform: translateX(calc(-320px * 6)); }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s var(--ease-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(139, 26, 77, 0.08);
}

.testimonial-quote-mark {
    margin-bottom: 20px;
    color: var(--burgundy);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.testimonial-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 0.02em;
}

/* ===== CTA / CONTACT ===== */
.cta {
    padding: 120px 0;
    background: var(--white);
}

.cta-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cta-content .lead {
    font-size: 18px;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 36px;
}

.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--charcoal);
    transition: color 0.25s;
}

.cta-contact-item:hover {
    color: var(--burgundy);
}

.cta-contact-item svg {
    color: var(--burgundy);
    flex-shrink: 0;
}

/* ===== FORM ===== */
.cta-form {
    background: var(--cream);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-100);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--charcoal);
    background: var(--white);
    transition: all 0.25s var(--ease-smooth);
    outline: none;
}

.form-input:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(139, 26, 77, 0.08);
}

.form-input::placeholder {
    color: var(--gray-300);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-input-sm {
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 10px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(139, 26, 77, 0.06);
    border-radius: 12px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--burgundy);
}

.form-success.show {
    display: flex;
}

.form-success svg {
    color: var(--burgundy);
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-mark {
    width: 40px;
    height: 40px;
    background: var(--burgundy);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    color: var(--white);
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 260px;
}

.footer-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-links span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.25s;
}

.footer-links a:hover {
    color: var(--blush);
}

.footer-newsletter-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-success {
    display: none;
    margin-top: 12px;
    font-size: 13px;
    color: var(--blush);
    font-weight: 500;
}

.newsletter-success.show {
    display: block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }

    .hero-img-main img {
        height: 560px;
    }

    .about-grid,
    .bakes-layout,
    .markets-layout,
    .cta-layout {
        gap: 48px;
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        justify-self: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 244, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(139, 26, 77, 0.08);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s var(--ease-out);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        order: -1;
        align-items: center;
    }

    .hero-img-main {
        max-width: 100%;
    }

    .hero-img-main img {
        height: 480px;
    }

    .hero-img-accent {
        display: none;
    }

    .hero-badge {
        right: 0;
        top: -10px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 22px;
    }

    .about,
    .blends,
    .bakes,
    .markets,
    .testimonials,
    .cta {
        padding: 80px 0;
    }

    .about-grid,
    .bakes-layout,
    .markets-layout,
    .cta-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-col {
        order: -1;
    }

    .about-img-wrap img {
        height: 400px;
    }

    .about-quote {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        max-width: 100%;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .blends-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .blend-img img {
        height: 360px;
    }

    .bakes-img-main img {
        height: 400px;
    }

    .bakes-img-small {
        display: none;
    }

    .markets-img-1 img,
    .markets-img-2 img {
        height: 260px;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .cta-form {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .gallery-item img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .section-title {
        font-size: 28px;
    }

    .markets-details {
        gap: 20px;
    }

    .market-detail-value,
    .market-detail-link {
        font-size: 17px;
    }
}
