@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
    --color-navy: #1a2744;
    --color-teal: #2d4a5e;
    --color-slate: #5a6a7a;
    --color-coral: #e07a5f;
    --color-honey: #d4a056;
    --color-apricot: #f2cc8f;
    --color-cream: #faf8f5;
    --color-white: #ffffff;
    --color-text: #2c3e50;
    --color-text-light: #6b7a8a;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Work Sans', sans-serif;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --shadow-sm: 0 1px 3px rgba(26, 39, 68, 0.1);
    --shadow-md: 0 4px 12px rgba(26, 39, 68, 0.1);
    --shadow-lg: 0 8px 24px rgba(26, 39, 68, 0.12);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --max-width: 75rem;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-cream);
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-coral);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover,
a:focus {
    color: var(--color-honey);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-coral), var(--color-honey));
    color: var(--color-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-navy);
    color: var(--color-navy);
}

.hero .btn-outline {
    border-color: var(--color-white);
    color: var(--color-white);
}

.hero .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-navy);
}

.btn-outline:hover {
    background: var(--color-navy);
    color: var(--color-white);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: var(--space-lg) 0;
    transition: transform var(--transition-normal);
    background: var(--color-white);
}

.header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: var(--color-coral);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    padding: var(--space-xs) 0;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-coral);
    transition: width var(--transition-fast);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.burger-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 110;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-navy);
    transition: all var(--transition-fast);
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--color-white);
    padding: var(--space-3xl) var(--space-xl);
    padding-top: 5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    transition: transform var(--transition-normal);
    z-index: 105;
}

.nav-mobile.active {
    transform: translateY(0);
}

.nav-mobile ul {
    list-style: none;
    margin-top: var(--space-xl);
}

.nav-mobile li {
    margin-bottom: var(--space-md);
}

.nav-mobile a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-navy);
    display: block;
    padding: var(--space-sm) 0;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 39, 68, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 100;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
    background-image: url('../visuals/bg-image-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 39, 68, 0.75) 0%, rgba(45, 74, 94, 0.6) 50%, rgba(26, 39, 68, 0.5) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-apricot);
    margin-bottom: var(--space-md);
}

.hero h1 {
    margin-bottom: var(--space-lg);
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 450px;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-coral);
    margin-bottom: var(--space-sm);
}

.section-header p {
    color: var(--color-text-light);
    margin-top: var(--space-md);
}

.panel {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.panel:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-apricot), var(--color-honey));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: var(--space-lg);
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.product-desc {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-coral);
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.step-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-coral), var(--color-honey));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
}

.step-content h4 {
    margin-bottom: var(--space-xs);
}

.step-content p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.feature-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.feature-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--color-apricot) 0%, var(--color-honey) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy);
    font-size: 1.5rem;
}

.feature-card h4 {
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.bg-navy {
    background: var(--color-navy);
    color: var(--color-white);
}

.bg-navy h2,
.bg-navy h3,
.bg-navy h4 {
    color: var(--color-white);
}

.bg-navy .section-tag {
    color: var(--color-apricot);
}

.bg-teal {
    background: var(--color-teal);
    color: var(--color-white);
}

.cta-section {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
}

.cta-section h2 {
    margin-bottom: var(--space-md);
}

.cta-section p {
    max-width: 500px;
    margin: 0 auto var(--space-xl);
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: var(--color-white);
    color: var(--color-navy);
}

.cta-section .btn-primary:hover {
    background: var(--color-apricot);
}

.contact-section {
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.contact-info {
    background: linear-gradient(135deg, var(--color-navy), var(--color-teal));
    color: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.contact-info h3 {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-text {
    font-size: 0.875rem;
}

.contact-item-text strong {
    display: block;
    margin-bottom: var(--space-xs);
}

.contact-form-container {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.875rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-coral);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.8125rem;
    margin-bottom: 0;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    margin-top: var(--space-xl);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer {
    background: var(--color-navy);
    color: var(--color-white);
    padding: var(--space-2xl) 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
        "logo"
        "links"
        "address"
        "copy";
    gap: var(--space-xl);
    text-align: center;
    align-items: center;
}

.footer-logo {
    grid-area: logo;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    justify-self: center;
}

.footer-links {
    grid-area: links;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md) var(--space-xl);
}

.footer-links a {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-address {
    grid-area: address;
    font-size: 0.8125rem;
    opacity: 0.85;
    line-height: 1.5;
}

.footer-copy {
    grid-area: copy;
    font-size: 0.75rem;
    opacity: 0.6;
}

.page-header {
    padding: calc(var(--space-3xl) * 2) 0 var(--space-2xl);
    background: linear-gradient(135deg, var(--color-navy), var(--color-teal));
    color: var(--color-white);
    text-align: center;
}

.page-header h1 {
    color: var(--color-white);
}

.page-header p {
    max-width: 500px;
    margin: var(--space-md) auto 0;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    margin-bottom: var(--space-md);
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--color-white);
}

.content-section {
    padding: var(--space-2xl) 0;
}

.content-section h2 {
    margin-bottom: var(--space-md);
}

.content-section h3 {
    margin: var(--space-lg) 0 var(--space-md);
}

.content-section p {
    margin-bottom: var(--space-md);
    color: var(--color-text-light);
}

.content-section ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-xl);
}

.content-section li {
    margin-bottom: var(--space-sm);
    color: var(--color-text-light);
}

.recipe-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.recipe-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.recipe-content {
    padding: var(--space-lg);
}

.recipe-content .recipe-title {
    color: var(--color-navy);
}

.recipe-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-coral);
    margin-bottom: var(--space-sm);
}

.recipe-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.recipe-desc {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.recipe-meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.75rem;
    color: var(--color-slate);
}

.recipe-meta i {
    margin-right: var(--space-xs);
}

.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
}

.thank-you-content {
    max-width: 500px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-coral), var(--color-honey));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    font-size: 2rem;
    color: var(--color-white);
}

.thank-you-content h1 {
    margin-bottom: var(--space-md);
}

.thank-you-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
}

.error-content {
    max-width: 500px;
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-coral), var(--color-honey));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-md);
}

.error-content h1 {
    margin-bottom: var(--space-md);
}

.error-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-navy);
    color: var(--color-white);
    padding: var(--space-lg);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
    z-index: 1000;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    text-align: center;
}

.cookie-text {
    font-size: 0.875rem;
}

.cookie-text a {
    color: var(--color-apricot);
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
}

.cookie-btn {
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
}

.cookie-btn-accept {
    background: var(--color-coral);
    color: var(--color-white);
}

.cookie-btn-decline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--color-white);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.modular-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.modular-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modular-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stagger-text {
    padding-left: 0;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(224,122,95,0.1), rgba(212,160,86,0.1));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-coral);
    margin: var(--space-lg) 0;
}

.highlight-box p {
    margin: 0;
    font-style: italic;
}

.timeline {
    position: relative;
    padding-left: var(--space-xl);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-coral), var(--color-honey));
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-xl);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-xl) + 4px);
    top: 4px;
    width: 12px;
    height: 12px;
    background: var(--color-coral);
    border-radius: 50%;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-coral);
    margin-bottom: var(--space-xs);
}

.timeline-text {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.ingredient-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.ingredient-item i {
    color: var(--color-coral);
}

@media (min-width: 480px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .burger-btn {
        display: none;
    }

    .nav-mobile,
    .nav-overlay {
        display: none;
    }

    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr 1.5fr;
    }

    .footer-inner {
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto;
        grid-template-areas:
            "logo links address"
            "copy copy copy";
        gap: var(--space-lg) var(--space-2xl);
        text-align: left;
        row-gap: var(--space-xl);
    }

    .footer-logo {
        justify-self: start;
    }

    .footer-links {
        justify-content: center;
        gap: var(--space-lg);
    }

    .footer-address {
        justify-self: end;
        text-align: right;
    }

    .footer-copy {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: var(--space-md);
        border-top: 1px solid rgba(255,255,255,0.12);
    }

    .modular-layout {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .modular-layout.reverse {
        direction: rtl;
    }

    .modular-layout.reverse > * {
        direction: ltr;
    }

    .stagger-text {
        padding-left: var(--space-xl);
    }

    .recipe-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .ingredient-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .recipe-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}
