/* =========================
   CSS VARIABLES & RESET
========================= */

:root {
    --gold:        #b8860b;
    --gold-light:  #d4a017;
    --gold-pale:   #f5e6c0;
    --cream:       #faf7f1;
    --cream-dark:  #f0ead8;
    --brown-deep:  #1e0e06;
    --brown-mid:   #3d1f10;
    --brown-warm:  #6b3d1e;
    --brown-text:  #4a2c14;
    --white:       #ffffff;
    --grey-soft:   #7a6a5a;
    --border:      rgba(184,134,11,0.18);
    --shadow-sm:   0 4px 20px rgba(30,14,6,0.07);
    --shadow-md:   0 12px 40px rgba(30,14,6,0.12);
    --shadow-lg:   0 24px 64px rgba(30,14,6,0.18);
    --radius-sm:   14px;
    --radius-md:   24px;
    --radius-lg:   40px;
    --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', 'Inter', sans-serif;
    background: var(--cream);
    color: var(--brown-text);
    overflow-x: hidden;
    line-height: 1.65;
}

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

a {
    text-decoration: none;
    transition: var(--transition);
}

button {
    transition: var(--transition);
    font-family: inherit;
    cursor: pointer;
}

section {
    overflow: hidden;
}

.container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

/* =========================
   NAVBAR — compact, fixed, premium
========================= */

.navbar {
    background: rgba(250, 247, 241, 0.92);
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 2px 20px rgba(30,14,6,0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}

/* LOGO */
.logo-section {
    flex-shrink: 0;
}

.logo {
    height: 44px;
    width: auto;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 34px;
}

.nav-links a {
    color: var(--brown-text);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.2px;
    position: relative;
    padding-bottom: 4px;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links .active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links .active {
    color: var(--gold);
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    background: var(--gold);
    color: var(--white);
    padding: 10px 22px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 18px rgba(184,134,11,0.25);
}

.whatsapp-btn:hover {
    background: var(--brown-warm);
    box-shadow: 0 6px 24px rgba(107,61,30,0.30);
    transform: translateY(-1px);
}

/* Hamburger — hidden on desktop */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--brown-text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile nav drawer */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: rgba(250, 247, 241, 0.98);
    backdrop-filter: blur(18px);
    border-top: 1px solid var(--border);
    padding: 20px 24px 24px;
    gap: 0;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: var(--brown-text);
    font-weight: 500;
    font-size: 16px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(184,134,11,0.10);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--gold);
}

.mobile-nav .mobile-wa-btn {
    margin-top: 16px;
    background: var(--gold);
    color: var(--white);
    padding: 14px 22px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    justify-content: center;
    border-bottom: none;
    box-shadow: 0 4px 18px rgba(184,134,11,0.25);
}

/* =========================
   HERO
========================= */

.hero-section {
    padding: 96px 0 120px;
    background:
        url('images/leaves-bg-8k.webp') center / cover no-repeat,
        var(--cream);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(250,247,241,0.55) 0%,
        rgba(240,234,216,0.30) 100%
    );
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}

/* LEFT */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.top-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    letter-spacing: 2.5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.top-tagline::before,
.top-tagline::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gold-light);
    opacity: 0.4;
    max-width: 28px;
}

.brand-category {
    font-size: 15px;
    color: var(--brown-warm);
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(50px, 5.5vw, 76px);
    line-height: 1.0;
    margin-bottom: 26px;
    font-weight: 700;
    color: var(--brown-deep);
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
}

.hero-description {
    font-size: 17px;
    line-height: 1.85;
    max-width: 520px;
    color: var(--grey-soft);
    margin-bottom: 38px;
}

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

.primary-btn,
.secondary-btn {
    padding: 14px 26px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 9px;
    letter-spacing: 0.1px;
}

.primary-btn {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(184,134,11,0.28);
}

.primary-btn:hover {
    background: var(--brown-warm);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107,61,30,0.30);
}

.secondary-btn {
    border: 1.5px solid var(--gold);
    color: var(--brown-text);
    background: rgba(255,255,255,0.5);
}

.secondary-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* RIGHT */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-right::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    background: radial-gradient(
        rgba(212, 160, 23, 0.14),
        transparent 68%
    );
    border-radius: 50%;
    z-index: 0;
}

.hero-product-image {
    width: 100%;
    max-width: 900px;
    object-fit: contain;
    filter: drop-shadow(0 24px 40px rgba(30,14,6,0.15));
    animation: floatHero 7s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes floatHero {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* =========================
   WHAT WE MAKE
========================= */

.what-we-make-section {
    padding: 90px 0;
    background: var(--white);
}

.what-we-make-description {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 52px;
    font-size: 18px;
    line-height: 1.9;
    color: var(--grey-soft);
}

.what-we-make-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.what-we-make-card {
    background: var(--cream);
    padding: 44px 32px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.what-we-make-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: var(--transition);
}

.what-we-make-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.what-we-make-card:hover::before {
    opacity: 1;
}

.what-we-make-card h4 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--brown-deep);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.what-we-make-card p {
    color: var(--grey-soft);
    line-height: 1.8;
    font-size: 15px;
}

/* =========================
   SECTION TITLE
========================= */

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 60px);
    line-height: 1.12;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 8px;
    color: var(--brown-deep);
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* =========================
   FEATURES SECTION
========================= */

.features-section {
    padding: 70px 0 90px;
    background: var(--cream-dark);
}

.features-grid {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 48px 40px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    align-items: stretch;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0 28px;
    min-height: 140px;
    position: relative;
    transition: transform var(--transition);
}

.feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    width: 1px;
    height: 80%;
    background: var(--border);
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-item i {
    font-size: 38px;
    color: var(--gold);
    min-width: 44px;
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--brown-deep);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--grey-soft);
    margin: 0;
}

@media(max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        padding: 36px 28px;
    }
    .feature-item::after { display: none; }
    .feature-item { padding: 0; min-height: auto; }
}

/* =========================
   OUR STORY
========================= */

.our-story-section {
    padding: 110px 0;
    background: linear-gradient(135deg, #fffaf3 0%, #f5ede2 100%);
}

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

.story-image-box {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255,248,240,0.15), rgba(245,235,222,0.35));
}

.story-image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(245,235,222,0.10), rgba(255,255,255,0.01));
    pointer-events: none;
}

.story-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-md);
    opacity: 0.95;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.story-tagline {
    color: var(--gold);
    letter-spacing: 2.5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.story-title {
    text-align: left;
    margin-bottom: 26px;
}

.story-description {
    font-size: 17px;
    line-height: 1.9;
    color: var(--grey-soft);
    margin-bottom: 20px;
}

.story-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.story-highlight {
    padding: 10px 18px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 600;
    color: var(--brown-warm);
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.2px;
}

/* =========================
   PROCESS SECTION
========================= */

.process-section {
    background: linear-gradient(to bottom, #faf7f2, #f3ece2);
    padding: 80px 0;
}

.process-wrapper {
    display: grid;
    grid-template-columns:
        minmax(110px,1fr) 20px
        minmax(110px,1fr) 20px
        minmax(110px,1fr) 20px
        minmax(110px,1fr) 20px
        minmax(110px,1fr) 20px
        minmax(110px,1fr)
        minmax(170px,230px);
    align-items: start;
    column-gap: 8px;
    margin-top: 64px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.process-item { width: 100%; }

.process-image-box {
    width: 100%;
    height: 110px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--cream-dark);
    margin-bottom: 12px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.process-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.process-item:hover .process-image-box {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.process-item:hover .process-image-box img {
    transform: scale(1.08);
}

.process-bottom {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.step-number {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    margin-top: 1px;
}

.process-bottom h4 {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 3px;
    color: var(--brown-deep);
    font-weight: 600;
}

.process-bottom p {
    font-size: 12px;
    line-height: 1.4;
    color: var(--grey-soft);
}

.process-arrow {
    font-size: 24px;
    color: var(--gold);
    opacity: 0.5;
    margin-top: 32px;
    text-align: center;
}

.process-side-text {
    padding-left: 12px;
}

.process-side-text h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    line-height: 0.95;
    margin-bottom: 12px;
    color: var(--brown-deep);
    font-weight: 700;
}

.process-side-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--grey-soft);
}

/* =========================
   MEAL SECTION
========================= */

.meal-section {
    background: linear-gradient(135deg, #2a1509 0%, #1a0b03 100%);
    padding: 110px 0;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.meal-section .section-title {
    color: var(--cream);
}

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

.meal-card {
    background: linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    transition: box-shadow var(--transition), transform var(--transition);
}

.meal-image-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    position: relative;
    background: var(--cream-dark);
}

.meal-card:nth-child(4) .meal-image,
.meal-card:nth-child(5) .meal-image,
.meal-card:nth-child(6) .meal-image,
.meal-card:nth-child(7) .meal-image {
    object-position: center top;
}

.meal-card:hover {
    box-shadow: 0 24px 56px rgba(0,0,0,0.35);
    transform: translateY(-4px);
}

.meal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.50s ease;
}

.meal-card:hover .meal-image {
    transform: scale(1.06);
}

.meal-card h4 {
    text-align: center;
    padding: 18px 16px;
    font-size: 17px;
    line-height: 1.4;
    color: var(--brown-deep);
    font-weight: 700;
    background: var(--white);
    border-top: 1px solid #f1ebe2;
}

/* =========================
   REVIEWS SECTION
========================= */

.reviews-section {
    padding: 90px 0 50px;
    background: linear-gradient(135deg, #fff8f2 0%, #f4e7da 100%);
}

.reviews-section .container {
    text-align: center;
}

.reviews-subtitle {
    color: var(--grey-soft);
    margin-top: 8px;
    margin-bottom: 48px;
    font-size: 17px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.reviews-slider-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.reviews-slider {
    display: flex;
    gap: 22px;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    width: 100%;
    padding: 12px 4px 28px;
    scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar { display: none; }

.review-card {
    min-width: 320px;
    max-width: 320px;
    height: 100%;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 28px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.stars {
    color: #e8a917;
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    line-height: 1.85;
    color: #5e4e40;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
    font-style: italic;
}

.review-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.read-more-btn {
    margin-top: 16px;
    background: none;
    border: none;
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    letter-spacing: 0.2px;
}

.read-more-btn:hover { color: var(--brown-warm); }

.review-card h4 {
    margin-top: 24px;
    color: var(--gold);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.review-nav {
    width: 46px;
    height: 46px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    z-index: 10;
    color: var(--brown-text);
    flex-shrink: 0;
    font-size: 15px;
}

.review-nav:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: scale(1.06);
}

.review-dots {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cream-dark);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    width: 26px;
    border-radius: 20px;
}

.google-review-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 32px auto 0;
    padding: 13px 28px;
    background: linear-gradient(135deg, var(--brown-mid), var(--brown-warm));
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 24px rgba(61,31,16,0.20);
    gap: 8px;
    transition: var(--transition);
}

.google-review-btn:hover {
    background: linear-gradient(135deg, var(--brown-deep), var(--brown-mid));
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(30,14,6,0.25);
}

/* =========================
   FOOTER
========================= */

.footer {
    background: linear-gradient(135deg, #140600 0%, #1e0903 50%, #2c0f06 100%);
    color: #f5ede3;
    padding: 90px 8% 32px;
}

.footer-container {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.footer-logo {
    width: 110px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.9;
    color: #d9c8bb;
    max-width: 380px;
    margin-bottom: 26px;
}

.footer h3 {
    font-size: 1.1rem;
    margin-bottom: 22px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.3px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #d9c8bb;
    margin-bottom: 16px;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
    transform: translateX(6px);
}

.footer-contact p {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d9c8bb;
    line-height: 1.65;
    font-size: 1rem;
}

.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.footer-socials a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--brown-deep);
    transform: translateY(-4px) scale(1.05);
}

.footer-bottom {
    margin-top: 56px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: #9c8a7d;
    font-size: 0.9rem;
}

/* =========================
   RESPONSIVE — TABLET
========================= */

@media(max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .feature-item::after { display: none; }
}

@media(max-width: 960px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 46px;
    }
    .footer {
        padding: 70px 7% 28px;
    }
    .footer-brand,
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    .footer-brand p { margin: 0 auto 24px; }
    .footer-socials { justify-content: center; }
    .footer-contact p { justify-content: center; }
    .footer-links a:hover { transform: none; }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .story-title { text-align: center; }
    .story-content { text-align: center; }
    .story-highlights { justify-content: center; }
    .story-image { height: 320px; object-fit: contain; }
    .story-image-box { max-width: 280px; margin: 0 auto; }
}

/* =========================
   RESPONSIVE — MOBILE (≤ 768px)
========================= */

@media(max-width: 768px) {

    body { overflow-x: hidden; }

    .container {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    /* ── NAVBAR ── */
    .navbar { padding: 0; }

    .nav-container {
        height: 60px;
        gap: 12px;
    }

    .logo { height: 36px; }

    /* hide desktop nav elements on mobile */
    .nav-links { display: none; }
    .whatsapp-btn { display: none; }

    /* show hamburger */
    .nav-hamburger { display: flex; }

    /* ── HERO ── */
    .hero-section { padding: 52px 0 64px; }

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

    .hero-left { text-align: center; align-items: center; }

    .top-tagline { font-size: 10px; letter-spacing: 2px; }

    .hero-title {
        font-size: clamp(40px, 11vw, 52px);
        line-height: 1.05;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.8;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        justify-content: center;
        font-size: 15px;
    }

    .hero-product-image { max-width: 100%; }

    .hero-right::before { width: 300px; height: 300px; }

    /* ── WHAT WE MAKE ── */
    .what-we-make-grid { grid-template-columns: 1fr; gap: 16px; }
    .what-we-make-description { font-size: 16px; }
    .what-we-make-card { padding: 32px 24px; }

    /* ── SECTION TITLE ── */
    .section-title {
        font-size: clamp(32px, 9vw, 42px);
        margin-bottom: 28px;
        line-height: 1.15;
    }

    /* ── FEATURES ── */
    .features-section { padding: 44px 0 52px; }
    .features-grid {
        grid-template-columns: 1fr;
        padding: 28px 22px;
        gap: 22px;
        border-radius: var(--radius-md);
    }
    .feature-item { padding: 0; min-height: auto; }
    .feature-item i { font-size: 30px; }

    /* ── STORY ── */
    .our-story-section { padding: 64px 0; }

    /* ── PROCESS ── */
    .process-section { padding: 52px 0; }

    .process-wrapper {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 10px;
        margin-top: 40px;
    }
    .process-wrapper::-webkit-scrollbar { display: none; }
    .process-item { min-width: 200px; }
    .process-arrow { display: none; }

    .process-side-text {
        display: block;
        min-width: 220px;
        flex-shrink: 0;
        background: var(--white);
        padding: 22px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border);
        padding-left: 22px;
    }
    .process-side-text h4 { font-size: 28px; line-height: 1.15; margin-bottom: 12px; }
    .process-side-text p { font-size: 14px; line-height: 1.65; }

    /* ── MEALS ── */
    .meal-section { padding: 64px 0; border-radius: 0; }
    .meal-grid { grid-template-columns: 1fr; gap: 20px; }
    .meal-image-wrapper { height: 240px; }
    .meal-card h4 { font-size: 16px; padding: 16px 14px; }

    /* ── REVIEWS ── */
    .reviews-section { padding: 60px 0 32px; }
    .reviews-subtitle { font-size: 15px; line-height: 1.7; }
    .reviews-slider { gap: 14px; }

    .review-card {
        min-width: 90%;
        max-width: 90%;
        padding: 24px 20px;
    }

    .review-text { font-size: 14px; }
    .review-nav { display: none; }
    .google-review-btn { width: 100%; text-align: center; }

    /* ── FOOTER ── */
    .footer { padding: 56px 20px 26px; }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 38px;
        text-align: center;
    }
    .footer-brand p { max-width: 100%; }
    .footer-socials { justify-content: center; }
    .footer-contact p { justify-content: center; }
}
