/* ==========================================================
   LANDING PAGE — Meal on the Way
   ========================================================== */

:root {
    --motw-red: #C42127;
    --motw-red-dark: #A8181F;
    --motw-orange: #F39C2D;
    --motw-orange-dark: #E08A1B;
    --motw-cream: #FFF6E5;
    --motw-green: #6FA936;
    --motw-green-dark: #5B8E2A;
    --motw-dark: #6B0A0A;
}

@font-face {
    font-family: 'Sailor';
    src: url('../fonts/Sailor.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    background: var(--motw-cream);
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    color: #333;
    overflow-x: hidden;
}

.lp-display-font {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    letter-spacing: 0.5px;
}

/* ==========================================================
   HERO
   ========================================================== */
.lp-hero {
    background: var(--motw-red);
    color: #fff;
    position: relative;
    z-index: 2;
    padding: 80px 0 90px;
    text-align: center;
}

.lp-hero-tomatoes {
    position: absolute;
    left: 1%;
    bottom: -110px;
    width: 450px;
    z-index: 3;
    pointer-events: none;
}

.lp-hero-tomatoes img {
    width: 100%;
    display: block;
}

.lp-hero-bowl {
    position: absolute;
    right: -60px;
    top: auto;
    bottom: -170px;
    transform: none;
    width: 420px;
    max-width: 38%;
    z-index: 5;
    pointer-events: none;
}

.lp-checker {
    position: relative;
    z-index: 1;
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.lp-hero h1 {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.35;
    margin: 0 0 24px;
    text-transform: uppercase;
}

.lp-hero h1 .lp-hero-accent {
    color: var(--motw-orange);
    display: block;
}

.lp-btn-cta {
    display: inline-block;
    background: var(--motw-orange);
    color: #fff;
    font-family: var(--font-heading, 'Sailor', sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 38px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.05rem;
    transition: background 0.2s ease, transform 0.2s ease;
    border: 0;
}

.lp-btn-cta:hover {
    background: var(--motw-orange-dark);
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 1400px) {
    .lp-hero-content  { max-width: 760px; }
    .lp-hero-bowl     { width: 340px; right: -30px; bottom: -120px; }
    .lp-hero-tomatoes { width: 240px; bottom: 30px; left: 2%; }
}

@media (max-width: 1200px) {
    .lp-hero-content  { max-width: 620px; padding: 0 30px; }
    .lp-hero-bowl     { width: 270px; right: -20px; bottom: -90px; }
    .lp-hero-tomatoes { width: 190px; bottom: 40px; }
}

@media (max-width: 1024px) {
    .lp-hero          { padding: 70px 24px 80px; }
    .lp-hero-content  { max-width: 100%; padding: 0; }
    .lp-hero-tomatoes,
    .lp-hero-bowl     { display: none; }
}

@media (max-width: 600px) {
    .lp-hero          { padding: 50px 20px 60px; }
    .lp-hero h1       { font-size: 1.9rem; line-height: 1.45; }
    .lp-btn-cta       { padding: 12px 30px; font-size: 0.95rem; }
}

/* ==========================================================
   CHECKER BAND
   ========================================================== */
.lp-checker {
    height: 35px;
    background-image: conic-gradient(var(--motw-green) 90deg,
            #fff 0 180deg, var(--motw-green) 0 270deg, #fff 0);
    background-size: 35px 35px;
}

.lp-checker--red {
    background-image: conic-gradient(var(--motw-red) 90deg,
            #fff 0 180deg, var(--motw-red) 0 270deg, #fff 0);
}

/* ==========================================================
   ABOUT — single clean block, no duplicates
   ========================================================== */
.lp-about {
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
}

.lp-about-grid {
    display: grid;
    grid-template-columns: 50% 50%;
}

.lp-about-card {
    background-color: #F4821F;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: #fff;
}

.lp-about-heading {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading, 'Sailor', sans-serif);
    font-size: clamp(2.5rem, 6.98vw, 8.375rem);
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.lp-about-text {
    flex: 1;
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-weight: 600;
    font-size: clamp(0.9rem, 1.244vw, 1.494rem);
    line-height: 1.5;
    margin-top: clamp(1rem, 5vw, 3rem);
}

.lp-about-text p { margin: 0 0 15px 0; }
.lp-about-text p:last-child { margin-bottom: 0; }

.lp-about-side {
    background-color: #FCEEE0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px;
}

.lp-about-side h4 {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    color: #C0272D;
    font-size: clamp(2rem, 6vw, 7.2rem);
    line-height: 1.15;
    font-weight: 400;
    text-align: left;
    margin: 0;
}

@media (min-width: 1401px) {
    .lp-about-card { align-items: center; }
    .lp-about-text { margin-top: 0; }
}

@media (max-width: 1400px) {
    .lp-about-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .lp-about-heading {
        flex-direction: row;
        gap: 0.3em;
        white-space: nowrap;
        font-size: clamp(2.5rem, 6vw, 5rem);
    }
    .lp-about-text { margin-top: 0; }
}

@media (max-width: 768px) {
    .lp-about-grid { grid-template-columns: 1fr; }
    .lp-about-card { padding: 30px 24px; }
    .lp-about-heading { font-size: clamp(2rem, 9vw, 3.5rem); }
    .lp-about-text { font-size: clamp(0.9rem, 4vw, 1.2rem); }
    .lp-about-side {
        justify-content: center;
        text-align: center;
        padding: 30px 24px;
    }
    .lp-about-side h4 {
        text-align: center;
        font-size: clamp(1.8rem, 8vw, 3rem);
    }
}

@media (max-width: 480px) {
    .lp-about-card { padding: 24px 16px; }
    .lp-about-heading { font-size: clamp(1.8rem, 10vw, 2.8rem); }
    .lp-about-text { font-size: 0.95rem; }
    .lp-about-side { padding: 20px 16px; }
    .lp-about-side h4 { font-size: clamp(1.5rem, 9vw, 2.2rem); }
}

/* ==========================================================
   MARQUEE STRIP
   ========================================================== */
.lp-strip {
    background: var(--motw-red);
    color: #fff;
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.lp-strip::before,
.lp-strip::after {
    content: "";
    display: block;
    height: 14px;
}

.lp-strip::before { margin: -14px 0 14px; }
.lp-strip::after  { margin: 14px 0 -14px; }

.lp-strip-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: lp-marquee 12s linear infinite;
    font-family: var(--font-heading, 'Sailor', sans-serif);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.5rem;
}

.lp-strip-track span {
    display: inline-flex;
    align-items: center;
    gap: 40px;
}

.lp-strip-track span::after {
    content: "•";
    color: var(--motw-orange);
    font-size: 1.4rem;
    line-height: 1;
}

@keyframes lp-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.lp-strip--green { background: var(--motw-green); }

.lp-strip--green::before,
.lp-strip--green::after {
    background-image: conic-gradient(var(--motw-green) 90deg,
            #fff 0 180deg, var(--motw-green) 0 270deg, #fff 0);
}

/* ==========================================================
   HOW IT WORKS
   ========================================================== */
.lp-how {
    padding: 0;
    background: var(--motw-cream);
}

.lp-how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 4vw, 50px);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    align-items: center;
}

.lp-how-grid > div:first-child { text-align: center; }

.lp-how h2 {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    color: var(--motw-red);
    font-size: clamp(2rem, 7vw, 6rem);
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 clamp(20px, 3vw, 40px);
}

.lp-how-step h4 {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    color: var(--motw-orange);
    text-transform: uppercase;
    font-size: clamp(1rem, 1.8vw, 1.6rem);
    margin: 0 0 8px;
    letter-spacing: 0.5px;
}

.lp-how-step p {
    color: #555;
    font-size: clamp(0.9rem, 1.4vw, 1.25rem);
    margin: 0;
    line-height: 1.6;
}

.lp-how-step { margin-bottom: clamp(16px, 2.5vw, 32px); }

.lp-how-img-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 0 0 8px 8px;
}

.lp-how-img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 8px 8px;
}

@media (max-width: 900px) {
    .lp-how-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    .lp-how-img-wrap img { max-height: 350px; }
    .lp-how h2 { font-size: clamp(2.5rem, 10vw, 4rem); }
}

/* ==========================================================
   IT'S THAT EASY
   ========================================================== */
.lp-easy {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 0;
    align-items: stretch;
    margin: 30px 0 0 0;
}

.lp-easy-img {
    background: var(--motw-red);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    border-radius: 8px 8px 0 0;
}

.lp-easy-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.lp-easy-text {
    background: var(--motw-cream);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 clamp(20px, 4vw, 60px);
}

.lp-easy-text h2 {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    color: var(--motw-orange);
    font-size: clamp(3rem, 8vw, 10.3rem); /* was fixed 10.3rem — now scales */
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 768px) {
    .lp-easy {
        grid-template-columns: 1fr;
        margin: 20px 0 0;
    }
    .lp-easy-img { min-height: 260px; border-radius: 8px 8px 0 0; }
    .lp-easy-text {
        justify-content: center;
        padding: 40px 24px;
        text-align: center;
    }
    .lp-easy-text h2 { font-size: clamp(3rem, 12vw, 5rem); }
}

@media (max-width: 480px) {
    .lp-easy-img { min-height: 200px; }
    .lp-easy-text { padding: 30px 16px; }
    .lp-easy-text h2 { font-size: clamp(2.5rem, 14vw, 4rem); }
}

/* ==========================================================
   THIS WEEK'S MENU
   ========================================================== */
.lp-menu {
    background: linear-gradient(to bottom, #fef1e5 50%, #ca1b20 50%);
    padding: 60px 40px 30px;
    text-align: center;
    overflow-x: clip;
    overflow-y: visible;
}

.lp-menu h2 {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    color: var(--motw-red);
    font-size: clamp(1.2rem, 3.5vw, 3rem);
    text-transform: uppercase;
    margin: 0 0 14vw;
    letter-spacing: 2px;
}

.lp-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(8px, 2vw, 20px);
    max-width: min(1000px, 90vw);
    width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
    align-items: end;
}

.lp-menu-card {
    border-radius: 16px;
    overflow: visible;
    text-align: center;
    position: relative;
    transition: transform 0.2s ease;
    background: transparent !important;
}

.lp-menu-card--red,
.lp-menu-card--cream,
.lp-menu-card--orange { background: transparent !important; }

.lp-menu-card:hover { transform: translateY(-5px); }

.lp-menu-img-wrap {
    margin-top: -12vw;
    padding: 0 clamp(4px, 1vw, 10px);
    position: relative;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
}

.lp-menu-img-wrap img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transform: scale(1.08);
    border-radius: 0;
}

.lp-menu-card h6 {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    text-transform: uppercase;
    font-size: clamp(0.8rem, 2.5vw, 2.3rem);
    letter-spacing: 0.5px;
    margin: 0;
    padding: clamp(6px, 1.5vw, 18px) clamp(4px, 1vw, 16px);
    line-height: 1.2;
    min-height: clamp(40px, 8vw, 110px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    background: transparent !important;
}

.lp-menu-cta { margin-top: 5px; }

.lp-menu-cta .lp-btn-cta {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    font-size: clamp(0.9rem, 2.5vw, 1.8rem);
    padding: clamp(10px, 2vw, 20px) clamp(24px, 5vw, 60px);
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .lp-menu {
        background: #ca1b20;
        padding: 30px 16px 20px;
    }
    .lp-menu h2 {
        color: #fef1e5;
        margin: 0 0 20px;
        font-size: clamp(1.4rem, 8vw, 2rem);
    }
    .lp-menu-grid {
        grid-template-columns: 1fr !important;
        max-width: 300px;
        gap: 16px;
        align-items: start;
    }
    .lp-menu-img-wrap {
        margin-top: 0;
        border-radius: 12px;
        overflow: hidden;
        padding: 0;
    }
    .lp-menu-card h6 {
        font-size: clamp(1.2rem, 7vw, 1.6rem);
        min-height: unset;
        padding: 10px 8px;
    }
    .lp-menu-cta .lp-btn-cta {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

/* ==========================================================
   NEWSLETTER
   ========================================================== */
.lp-newsletter-wrap {
    background: var(--motw-green);
    padding: 0;
    overflow: hidden;
}

.lp-newsletter {
    display: grid;
    grid-template-columns: clamp(200px, 30vw, 420px) 1fr; /* responsive image column */
    align-items: stretch;
    overflow: visible;
}

.lp-newsletter-img {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.lp-newsletter-img img {
    width: 92%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    margin-left: auto;
    margin-right: 0;
}

.lp-newsletter-body {
    padding: clamp(24px, 4vw, 40px) clamp(24px, 5vw, 60px);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lp-newsletter h3 {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    text-transform: uppercase;
    font-size: clamp(2rem, 5vw, 4.5rem); /* fixed broken clamp */
    margin: 0 0 12px;
    line-height: 1.1;
    color: #fff;
}

.lp-newsletter p {
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    margin: 0 0 24px;
    margin-top: 10px;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: #fff;
    opacity: 0.95;
}

.lp-newsletter-form {
    display: flex;
    gap: 0;
    background: var(--motw-cream, #FFF6E5);
    border-radius: 12px;
    /* margin-top: 40px; */
    max-width: clamp(280px, 45vw, 520px);
    overflow: hidden;
}

.lp-newsletter-form input {
    flex: 1;
    border: 0;
    padding: clamp(12px, 1.8vw, 22px) clamp(12px, 2vw, 24px);
    background: transparent;
    font-size: clamp(0.9rem, 1.5vw, 1.4rem);
    color: #333;
    border-radius: 0;
    outline: none;
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    text-align: left;
    min-width: 0;
}

.lp-newsletter-form input::placeholder {
    color: #555;
    text-align: left;
    opacity: 1;
}

.lp-newsletter-form button {
    background: var(--motw-red);
    color: #fff;
    border: 0;
    padding: clamp(10px, 1.8vw, 22px) clamp(16px, 3vw, 40px);
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0 12px 12px 0; /* sharp left, rounded right */    font-size: clamp(0.85rem, 1.4vw, 1.3rem);
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.lp-newsletter-form button:hover { background: var(--motw-red-dark); }

@media (max-width: 900px) {
    .lp-newsletter {
        grid-template-columns: clamp(160px, 35vw, 300px) 1fr;
    }
    .lp-newsletter-form { max-width: 100%; }
}

@media (max-width: 768px) {
    .lp-newsletter {
        grid-template-columns: 1fr;
    }
    .lp-newsletter-img {
        max-height: 250px;
        justify-content: center;
    }
    .lp-newsletter-img img {
        width: 100%;
        height: 100%;
        margin-left: 0;
        object-position: top;
    }
    .lp-newsletter-body {
        padding: 30px 24px 40px;
        text-align: center;
    }
    .lp-newsletter h3 { font-size: clamp(2rem, 8vw, 3rem); }
    .lp-newsletter-form { max-width: 100%; }
}

@media (max-width: 480px) {
    .lp-newsletter-form {
        flex-direction: column;
        border-radius: 12px;
        gap: 8px;
        background: transparent;
        padding: 0;
        max-width: 100%;
    }
    .lp-newsletter-form input {
        background: var(--motw-cream, #FFF6E5);
        border-radius: 10px;
        padding: 16px;
        font-size: 1rem;
    }
    .lp-newsletter-form button {
        border-radius: 10px;
        padding: 16px;
        width: 100%;
        font-size: 1rem;
    }
}

/* ==========================================================
   CONTACT
   ========================================================== */
.lp-contact {
    padding: clamp(40px, 6vw, 70px) clamp(16px, 3vw, 20px);
    background: var(--motw-cream);
}

.lp-contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(24px, 4vw, 50px);
    align-items: start;
}

.lp-contact h2 {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    color: var(--motw-red);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

.lp-contact-form .lp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.lp-contact-form input,
.lp-contact-form textarea {
    width: 100%;
    border: 1.5px solid var(--motw-orange);
    border-radius: 6px;
    padding: 12px 16px;
    background: transparent;
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
    color: #333;
    box-sizing: border-box;
}

.lp-contact-form input::placeholder,
.lp-contact-form textarea::placeholder { color: #b07a32; }

.lp-contact-form input:focus,
.lp-contact-form textarea:focus { border-color: var(--motw-red); }

.lp-contact-form textarea {
    min-height: 130px;
    resize: vertical;
    margin-bottom: 14px;
}

.lp-contact-submit {
    background: var(--motw-orange);
    color: #fff;
    border: 0;
    padding: 11px 38px;
    border-radius: 999px;
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.lp-contact-submit:hover { background: var(--motw-orange-dark); }

.lp-alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.lp-alert--success {
    background: #DFF1D8;
    color: #2F6E22;
    border: 1px solid #BFE1B4;
}

.lp-alert--error {
    background: #F8D7DA;
    color: #842029;
    border: 1px solid #F1AEB5;
}

@media (max-width: 900px) {
    .lp-contact-grid { grid-template-columns: 1fr; }
    .lp-contact-form .lp-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .lp-about-card,
    .lp-about-side { padding: 28px 24px; }
}

.lp-attribution {
    font-size: 0.5rem;
    color: var(--motw-red);
    background: var(--motw-red);
    text-align: center;
    padding: 0;
    line-height: 1;
    user-select: none;
}

.lp-attribution a {
    color: var(--motw-red);
    text-decoration: none;
    pointer-events: none;
}