:root {
    --primary: #D4622A;
    --primary-light: #F07A4A;
    --primary-dark: #B84E1C;
    --secondary: #3A6B1F;
    --accent: #F5B942;
    --bg: #FEFAF5;
    --bg-alt: #FFF3E8;
    --bg-dark: #F0E4D4;
    --text: #1E1E1E;
    --text-muted: #6B6460;
    --border: #E5D5C5;
    --white: #FFFFFF;
    --shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --radius-sm: 6px;
    --radius-lg: 24px;
    --ff-head: 'Fraunces', serif;
    --ff-body: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 15px;
    overflow-x: hidden;
}

body {
    font-family: var(--ff-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 88px;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--ff-head);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(1.9rem, 5vw, 3.1rem);
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.3rem);
}

h3 {
    font-size: clamp(1.05rem, 2.5vw, 1.45rem);
}

h4 {
    font-size: 1.05rem;
}

p {
    font-size: 0.9375rem;
    line-height: 1.75;
}

small {
    font-size: 0.8125rem;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

.container-sm {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 16px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 10px 16px;
    transition: transform 0.35s ease;
}

.site-header.header-hidden {
    transform: translateY(-110%);
}

.header-pill {
    max-width: 1060px;
    margin: 0 auto;
    background: rgba(254, 250, 245, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 60px;
    padding: 7px 12px 7px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 28px rgba(212, 98, 42, 0.13), 0 1px 6px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(229, 213, 197, 0.85);
    gap: 12px;
}

.header-logo {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.header-logo span {
    color: var(--secondary);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.header-nav a {
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--text);
    padding: 6px 13px;
    border-radius: 40px;
    transition: background 0.2s, color 0.2s;
}

.header-nav a:hover,
.header-nav a.active {
    background: var(--primary);
    color: var(--white);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.nav-toggle i {
    font-size: 1rem;
    color: var(--text);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 950;
    background: rgba(0, 0, 0, 0.45);
    transition: opacity 0.3s;
    opacity: 0;
}

.nav-overlay.open {
    display: block;
    opacity: 1;
}

.nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(300px, 100%);
    height: 100%;
    background: var(--bg);
    padding: 20px 24px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.nav-overlay.open .nav-panel {
    transform: translateX(0);
}

.nav-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.nav-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-alt);
    font-size: 0.95rem;
    color: var(--text);
    cursor: pointer;
    border: 1px solid var(--border);
}

.nav-panel nav a {
    display: block;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s, padding-left 0.2s;
}

.nav-panel nav a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.site-footer {
    background: #181410;
    color: rgba(255, 255, 255, 0.75);
    padding: 32px 0 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 24px;
}

.footer-brand {
    font-family: var(--ff-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.footer-desc {
    font-size: 0.8125rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
    font-family: var(--ff-body);
    font-weight: 600;
}

.footer-links ul li {
    margin-bottom: 4px;
}

.footer-links ul li a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-policy-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

.footer-policy-links a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: #181410;
    color: rgba(255, 255, 255, 0.9);
    padding: 14px 16px;
    transition: transform 0.4s ease;
    border-top: 1px solid rgba(245, 185, 66, 0.3);
}

.cookie-popup.cookie-hidden {
    transform: translateY(100%);
}

.cookie-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 200px;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-body);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 40px;
    border: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}

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

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
}

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

.btn-sm {
    font-size: 0.8rem;
    padding: 7px 16px;
}

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

.section {
    padding: 64px 0;
}

.section-sm {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 8px;
    background: rgba(212, 98, 42, 0.08);
    padding: 3px 12px;
    border-radius: 40px;
}

.section-title {
    margin-bottom: 12px;
}

.section-sub {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.hero {
    position: relative;
    min-height: calc(88vh - 88px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(20, 12, 6, 0.72) 0%, rgba(20, 12, 6, 0.45) 55%, rgba(20, 12, 6, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 620px;
    padding: 48px 0;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(245, 185, 66, 0.2);
    color: var(--accent);
    padding: 5px 14px;
    border-radius: 40px;
    border: 1px solid rgba(245, 185, 66, 0.35);
    margin-bottom: 18px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.0125rem;
    margin-bottom: 30px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-scroll i {
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 52px 0 44px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -8%;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -35%;
    left: 3%;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero-desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9375rem;
    max-width: 560px;
}

.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.stat-item {
    background: var(--white);
    padding: 22px 20px;
    text-align: center;
}

.stat-num {
    font-family: var(--ff-head);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.feature-split.reverse {
    direction: rtl;
}

.feature-split.reverse>* {
    direction: ltr;
}

.feature-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

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

.feature-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-text h2 {
    margin-bottom: 14px;
}

.feature-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.feature-list {
    margin-bottom: 24px;
}

.feature-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.875rem;
    padding: 5px 0;
    color: var(--text-muted);
}

.feature-list li i {
    color: var(--primary);
    font-size: 0.83rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(16.7% + 18px);
    right: calc(16.7% + 18px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--primary) 0, var(--primary) 6px, transparent 6px, transparent 14px);
}

.step-card {
    text-align: center;
    padding: 0 12px;
}

.step-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-family: var(--ff-head);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-card h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 12px;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 12px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: block;
    color: var(--text);
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.category-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 10px;
}

.category-card h4 {
    font-size: 0.84rem;
    margin-bottom: 3px;
}

.category-card small {
    color: var(--text-muted);
    font-size: 0.75rem;
}

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

.product-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 22px 24px;
    text-align: center;
    transition: box-shadow 0.25s, transform 0.2s;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 8px 36px rgba(212, 98, 42, 0.13);
    transform: translateY(-4px);
}

.product-card.featured {
    border-color: var(--primary);
}

.product-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 0.71rem;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 40px;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.product-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-card>p {
    font-size: 0.8375rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    min-height: 48px;
}

.product-price {
    font-family: var(--ff-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 3px;
}

.product-price-note {
    font-size: 0.73rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.product-features {
    text-align: left;
    margin-bottom: 20px;
}

.product-features li {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 4px 0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.product-features li i {
    color: var(--secondary);
    font-size: 0.72rem;
    flex-shrink: 0;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
    gap: 16px;
}

.recipe-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    color: var(--text);
    display: block;
}

.recipe-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.recipe-card-thumb {
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
}

.recipe-card-body {
    padding: 14px;
}

.recipe-card-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 7px;
    flex-wrap: wrap;
}

.recipe-tag {
    font-size: 0.71rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    background: rgba(212, 98, 42, 0.08);
    padding: 2px 8px;
    border-radius: 20px;
}

.recipe-time {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.recipe-card h3 {
    font-size: 0.9125rem;
    margin-bottom: 5px;
}

.recipe-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 55%, #8B3A0A 100%);
    color: var(--white);
    text-align: center;
    padding: 64px 16px;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 26px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9375rem;
}

.seasonal-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.seasonal-card {
    flex: 0 0 172px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    text-align: center;
    transition: border-color 0.2s;
    text-decoration: none;
    color: var(--text);
}

.seasonal-card:hover {
    border-color: var(--primary);
}

.seasonal-icon {
    font-size: 1.9rem;
    margin-bottom: 7px;
    display: block;
}

.seasonal-card h4 {
    font-size: 0.84rem;
    margin-bottom: 3px;
}

.seasonal-card small {
    color: var(--text-muted);
    font-size: 0.73rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    gap: 14px;
}

.value-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    background: rgba(212, 98, 42, 0.1);
    color: var(--primary);
}

.value-card h4 {
    margin-bottom: 5px;
    font-size: 0.9375rem;
}

.value-card p {
    font-size: 0.8375rem;
    color: var(--text-muted);
}

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

.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
}

.team-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-alt), var(--bg-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin: 0 auto 14px;
    border: 2px solid var(--border);
}

.team-card h4 {
    font-size: 0.9375rem;
    margin-bottom: 3px;
}

.team-role {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.team-bio {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.about-stats {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
    border: 1px solid var(--border);
}

.about-stat-num {
    font-family: var(--ff-head);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-hero {
    background: var(--bg-alt);
    padding: 52px 0 44px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.contact-hero::after {
    content: '';
    position: absolute;
    right: -5%;
    top: -50%;
    width: 400px;
    height: 400px;
    border: 60px solid rgba(212, 98, 42, 0.06);
    border-radius: 50%;
}

.contact-hero-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 14px;
    opacity: 0.9;
}

.contact-hero h1 {
    margin-bottom: 8px;
}

.contact-hero p {
    color: var(--text-muted);
    max-width: 500px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-info-title {
    margin-bottom: 8px;
}

.contact-info-sub {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 0.9375rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s;
}

.info-card:hover {
    border-color: var(--primary);
}

.info-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(212, 98, 42, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.info-card-text strong {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 2px;
    font-weight: 600;
}

.info-card-text span {
    font-size: 0.8375rem;
    color: var(--text-muted);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
}

.contact-form-card h3 {
    margin-bottom: 5px;
}

.form-intro {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 22px;
}

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

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--ff-body);
    font-size: 0.875rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color 0.2s;
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    background: var(--white);
}

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

.form-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.form-check input {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--primary);
    width: 15px;
    height: 15px;
}

.form-check-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.form-check-label a {
    color: var(--primary);
    text-decoration: underline;
}

.form-error {
    display: none;
    background: rgba(200, 40, 40, 0.08);
    color: #C42828;
    font-size: 0.8rem;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    border: 1px solid rgba(200, 40, 40, 0.18);
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.thankyou-main {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 16px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 98, 42, 0.1);
    color: var(--primary);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thankyou-main h1 {
    font-size: clamp(1.5rem, 4vw, 2.3rem);
    margin-bottom: 14px;
}

.thankyou-main p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 0.9375rem;
    max-width: 480px;
}

.thankyou-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 16px 72px;
}

.policy-content h1 {
    margin-bottom: 8px;
}

.policy-meta {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.policy-content h2 {
    font-size: 1.35rem;
    margin: 32px 0 11px;
    color: var(--text);
}

.policy-content h3 {
    font-size: 1.05rem;
    margin: 20px 0 8px;
    color: var(--text);
}

.policy-content p,
.policy-content li {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.78;
    margin-bottom: 12px;
}

.policy-content ul,
.policy-content ol {
    padding-left: 22px;
    margin-bottom: 16px;
}

.policy-content ul {
    list-style: disc;
}

.policy-content ol {
    list-style: decimal;
}

.policy-content a {
    color: var(--primary);
    text-decoration: underline;
}

.week-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.day-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 6px;
    text-align: center;
}

.day-card.today {
    border-color: var(--primary);
    background: rgba(212, 98, 42, 0.04);
}

.day-name {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 5px;
    display: block;
}

.day-card.today .day-name {
    color: var(--primary);
}

.day-meal-icon {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 3px;
}

.day-meal-name {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.3;
    display: block;
}

.inspiration-card {
    background: linear-gradient(135deg, var(--primary) 0%, #B84E1C 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
}

.inspiration-card h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.inspiration-card p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

.inspiration-badge {
    background: rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    padding: 20px 18px;
    text-align: center;
    min-width: 110px;
}

.inspiration-badge span {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.inspiration-badge strong {
    font-family: var(--ff-head);
    font-size: 1.7rem;
    display: block;
    color: var(--white);
    line-height: 1.1;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
    gap: 12px;
}

.quick-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: box-shadow 0.2s;
    text-decoration: none;
    color: var(--text);
}

.quick-card:hover {
    box-shadow: var(--shadow);
}

.quick-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.quick-card h4 {
    font-size: 0.84rem;
    margin-bottom: 2px;
}

.quick-card small {
    color: var(--text-muted);
    font-size: 0.73rem;
}

.ingredient-spotlight {
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.ingredient-spotlight h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.ingredient-spotlight p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 16px;
    font-size: 0.9375rem;
}

.ingredient-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 20px;
}

.ingredient-info h4 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    font-family: var(--ff-body);
    font-weight: 700;
}

.ingredient-info ul {
    list-style: none;
}

.ingredient-info li {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.875rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.ingredient-info li:last-child {
    border-bottom: none;
}

.ingredient-info li i {
    color: var(--accent);
    font-size: 0.73rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.challenge-card {
    background: linear-gradient(135deg, var(--accent) 0%, #D9960A 100%);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    gap: 28px;
    align-items: center;
}

.challenge-badge {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 3px;
}

.challenge-badge i {
    font-size: 1.7rem;
    color: var(--text);
}

.challenge-badge span {
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(30, 30, 30, 0.7);
}

.challenge-text h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.challenge-text p {
    font-size: 0.875rem;
    color: rgba(30, 30, 30, 0.75);
    margin-bottom: 14px;
}

.timeline {
    position: relative;
    padding-left: 26px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 6px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding: 0 0 22px 18px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -19px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid var(--bg);
    box-shadow: 0 0 0 3px rgba(212, 98, 42, 0.3);
}

.timeline-year {
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3px;
    display: block;
}

.timeline-item h4 {
    font-size: 0.9125rem;
    margin-bottom: 3px;
}

.timeline-item p {
    font-size: 0.8375rem;
    color: var(--text-muted);
}

.filter-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.filter-tag {
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 40px;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
    background: var(--white);
    color: var(--text-muted);
    font-weight: 500;
    font-family: var(--ff-body);
}

.filter-tag.active,
.filter-tag:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
    gap: 14px;
}

.tip-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius);
    padding: 16px;
}

.tip-card h4 {
    font-size: 0.9125rem;
    margin-bottom: 5px;
}

.tip-card p {
    font-size: 0.8375rem;
    color: var(--text-muted);
}

.submit-recipe-cta {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 2px dashed var(--border);
}

.submit-recipe-cta h3 {
    margin-bottom: 10px;
}

.submit-recipe-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.9375rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.bg-white {
    background: var(--white);
}

.bg-alt {
    background: var(--bg-alt);
}

@media (max-width:900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid> :first-child {
        grid-column: 1/-1;
    }
}

@media (max-width:768px) {
    body {
        padding-top: 78px;
    }

    .header-nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .feature-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-split.reverse {
        direction: ltr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps-grid::before {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

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

    .ingredient-spotlight {
        grid-template-columns: 1fr;
    }

    .inspiration-card {
        grid-template-columns: 1fr;
    }

    .challenge-card {
        flex-direction: column;
        text-align: center;
    }

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

    .contact-form-card {
        padding: 24px 18px;
    }
}

@media (max-width:480px) {
    .section {
        padding: 44px 0;
    }

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

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

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

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

    .hero {
        min-height: 65vh;
    }

    .week-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 24px;
    }
}

@media (max-width:320px) {
    html {
        font-size: 13px;
    }

    .header-pill {
        padding: 6px 12px 6px 16px;
    }

    .header-logo {
        font-size: 0.88rem;
    }

    .btn {
        padding: 7px 13px;
        font-size: 0.79rem;
    }

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

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