@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600&display=swap");

:root {
    --brand-red: #eb0233;
    --brand-red-dark: #990020;
    --leaf: #28724f;
    --leaf-dark: #1f563d;
    --sun: #f6c949;
    --ink: #222222;
    --muted: #5f646b;
    --paper: #ffffff;
    --soft: #f7f5ef;
    --line: #e2dfd7;
    --shadow: 0 18px 48px rgba(34, 34, 34, 0.12);
    --font-body: "Open Sans", Arial, sans-serif;
    --font-display: "Playfair Display", Georgia, serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

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

a {
    color: var(--brand-red);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 400;
}

strong,
b {
    font-weight: 500;
}

.container {
    width: min(1120px, calc(100% - 64px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 12px;
}

.site-nav a:hover,
.site-nav a:focus {
    color: var(--brand-red);
}

.site-nav .nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--brand-red);
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(235, 2, 51, 0.24);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus,
.button:hover,
.button:focus {
    background: var(--brand-red-dark);
    color: #ffffff;
}

.button.secondary {
    background: var(--leaf);
    box-shadow: 0 8px 20px rgba(40, 114, 79, 0.22);
}

.button.secondary:hover,
.button.secondary:focus {
    background: var(--leaf-dark);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.hero {
    min-height: 620px;
    display: grid;
    align-items: end;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.02)), url("/img/banana.jpg");
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.hero-content {
    max-width: 680px;
    padding: 92px 0;
}

.kicker {
    display: inline-block;
    margin: 0 0 14px;
    color: var(--sun);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero h1,
.page-hero h1,
.section-heading h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.08;
}

.hero h1 {
    font-size: clamp(2.2rem, 6vw, 4.1rem);
    max-width: 10ch;
}

.hero p {
    max-width: 560px;
    font-size: 1.16rem;
    margin: 20px 0 28px;
}

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

.section {
    padding: 76px 0;
}

.section.alt {
    background: var(--soft);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-heading h2 {
    font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.section-heading p {
    color: var(--muted);
    font-size: 1.02rem;
}

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

.service-card,
.quote-panel,
.notice-card,
.legal-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.notice-card::before,
.weekly-menu-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-red);
}

.service-card {
    padding: 28px;
    box-shadow: 0 10px 24px rgba(34, 34, 34, 0.07);
}

.service-card .mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--sun);
    color: var(--ink);
    font-weight: 500;
}

.service-card h3,
.quote-panel h2,
.notice-card h2,
.legal-card h2 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-weight: 400;
}

.legal-card h2:not(:first-child) {
    margin-top: 30px;
}

.service-card p,
.notice-card p,
.legal-card p,
.legal-card li {
    color: var(--muted);
}

.quote-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 34px;
    box-shadow: var(--shadow);
}

.contact-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.contact-list li {
    margin-bottom: 14px;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    font: inherit;
    color: var(--ink);
}

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

.contact-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.ghost-button {
    background: #ffffff;
    color: var(--brand-red);
    box-shadow: inset 0 0 0 2px var(--brand-red);
}

.text-link {
    color: var(--brand-red);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.86rem;
}

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

.split-section h2,
.menu-preview-section h2 {
    margin: 0 0 16px;
    color: var(--brand-red);
    font-family: var(--font-display);
    font-size: 1.95rem;
    font-weight: 400;
    line-height: 1.1;
}

.freshness-section {
    background: #fffaf0;
}

.process-list {
    display: grid;
    gap: 14px;
}

.process-list div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 14px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
}

.process-list span {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--brand-red);
    color: #ffffff;
    font-weight: 500;
}

.process-list strong {
    color: var(--ink);
}

.process-list p {
    margin: 0;
}

.menu-preview-section,
.parent-flow-section {
    background: #ffffff;
}

.menu-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.menu-preview-grid article {
    padding: 24px;
    border: 1px solid var(--line);
    background: #fffaf0;
}

.menu-preview-grid h3 {
    margin: 0 0 10px;
    color: var(--brand-red);
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
}

.menu-link-row {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.flow-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.flow-steps span {
    padding: 16px 18px;
    border-left: 5px solid var(--brand-red);
    background: #fffaf0;
    font-weight: 500;
}

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

.menu-layout .notice-card {
    width: min(100%, 860px);
    margin: 0 auto;
}

.weekly-menu-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid var(--line);
    background: #ffffff;
}

.menu-step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.menu-step-grid article,
.flow-card-grid article {
    padding: 22px;
    border: 1px solid var(--line);
    background: #fffaf0;
}

.menu-step-grid strong,
.flow-card-grid strong,
.contact-method strong,
.contact-method a {
    display: block;
    margin-top: 8px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
}

.menu-step-grid p,
.flow-card-grid p {
    margin: 10px 0 0;
    color: var(--muted);
}

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

.shop-next-section,
.contact-form-section {
    background: #fffaf0;
}

.shop-layout .notice-card {
    min-height: 100%;
    padding-top: 36px;
}

.contact-method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.contact-method {
    min-height: 126px;
    display: grid;
    align-content: center;
    padding: 26px;
    background: #ffffff;
}

.contact-success-section {
    padding: 28px 0 0;
    background: #ffffff;
}

.contact-success-banner {
    display: grid;
    gap: 6px;
    padding: 22px 26px;
    border: 2px solid #29a35a;
    border-radius: 8px;
    background: #effff4;
    box-shadow: 0 12px 26px rgba(41, 163, 90, 0.16);
}

.contact-success-banner span {
    color: #16733b;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-success-banner strong {
    color: #143f27;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 400;
    line-height: 1.25;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.order-step-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    margin: 8px 0 22px;
    border: 1px solid var(--line);
    background: var(--line);
}

.order-step-strip span {
    display: grid;
    min-height: 44px;
    place-items: center;
    background: #fffaf0;
    text-align: center;
}

.weekly-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.weekly-menu-head h2 {
    margin: 0;
    color: var(--brand-red);
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
}

.menu-table-wrap {
    overflow-x: auto;
}

.weekly-menu-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.weekly-menu-table th,
.weekly-menu-table td {
    border: 1px solid var(--line);
    padding: 14px 12px;
    text-align: left;
    vertical-align: top;
}

.weekly-menu-table thead th {
    background: #7a9a4a;
    color: #ffffff;
}

.weekly-menu-table tbody th {
    background: #fffaf0;
    color: var(--brand-red);
    font-family: var(--font-display);
    font-weight: 400;
}

.menu-disclaimer {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.order-section {
    background: #fffaf0;
}

.order-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.25fr 0.9fr;
    gap: 20px;
    align-items: start;
}

.order-grid-guest {
    grid-template-columns: minmax(0, 900px);
    justify-content: center;
}

.order-parent-intro {
    background: transparent;
}

.order-parent-intro .split-section {
    padding: 32px;
    border: 1px solid var(--line);
    background: #ffffff;
}

.parent-access {
    width: min(100%, 560px);
    justify-self: center;
}

.order-grid-active {
    grid-template-columns: minmax(0, 980px);
    justify-content: center;
}

.order-workspace {
    display: grid;
    gap: 18px;
}

.order-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.order-quote-row {
    display: flex;
    justify-content: center;
}

.login-chip {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.login-chip span {
    display: inline-block;
    margin-left: 8px;
    color: var(--brand-red);
    font-weight: 500;
    text-transform: capitalize;
}

.login-chip a {
    margin-left: 10px;
    color: var(--ink);
    font-weight: 500;
}

.access-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
}

.access-tabs button {
    min-height: 42px;
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--ink);
    font: inherit;
    font-weight: 500;
    cursor: pointer;
}

.access-tabs button.is-active {
    background: var(--brand-red);
    color: #ffffff;
    border-color: var(--brand-red);
}

.access-form {
    display: none;
    gap: 14px;
}

.access-form.is-active,
.order-builder,
.order-fields {
    display: grid;
}

.access-form label,
.order-builder label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 500;
}

.access-form input,
.access-form select,
.order-builder input,
.order-builder select,
.order-builder textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    font: inherit;
    color: var(--ink);
    background: #ffffff;
}

.order-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.day-picker {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 16px 0;
    padding: 16px;
    border: 1px solid var(--line);
}

.day-picker legend {
    padding: 0 6px;
    color: var(--ink);
    font-weight: 500;
}

.day-picker label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-size: 0.9rem;
}

.order-builder textarea {
    min-height: 92px;
    resize: vertical;
}

.calendar-picker {
    margin: 16px 0;
    padding: 18px;
    border: 1px solid var(--line);
}

.calendar-picker legend {
    padding: 0 6px;
    color: var(--ink);
    font-weight: 500;
}

.calendar-toolbar {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.calendar-toolbar strong {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    text-align: center;
}

.calendar-toolbar button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #ffffff;
    color: var(--ink);
    font: inherit;
    cursor: pointer;
}

.calendar-toolbar button:disabled {
    color: #b8b8b8;
    cursor: not-allowed;
}

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

.calendar-weekdays {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.78rem;
    text-align: center;
    text-transform: uppercase;
}

.calendar-day {
    min-height: 54px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-content: center;
    align-items: center;
    justify-items: start;
    gap: 4px 6px;
    padding: 8px;
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--ink);
    font-size: 0.88rem;
}

.calendar-day input {
    width: auto;
    margin: 0;
}

.calendar-day span {
    line-height: 1.1;
}

.calendar-day.is-disabled {
    background: #f4f2ec;
    color: #9a9489;
}

.calendar-day.is-blank {
    border-color: transparent;
    background: transparent;
}

.calendar-day small {
    grid-column: 1 / -1;
    color: inherit;
    font-size: 0.68rem;
    line-height: 1.1;
}

.cart-card {
    position: sticky;
    top: 18px;
}

.cart-popup {
    position: relative;
}

.cart-popup summary {
    list-style: none;
}

.cart-popup summary::-webkit-details-marker {
    display: none;
}

.cart-toggle-button {
    min-width: 138px;
}

.cart-popup-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 80;
    width: min(520px, calc(100vw - 32px));
    max-height: 72vh;
    overflow: auto;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(34, 34, 34, 0.22);
}

.cart-popup-panel h2 {
    margin-top: 0;
}

.cart-items {
    display: grid;
    gap: 12px;
}

.empty-cart {
    margin: 0;
    color: var(--muted);
}

.cart-line {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    padding: 12px;
    border: 1px solid var(--line);
    background: #ffffff;
}

.cart-line span {
    display: block;
    color: var(--muted);
    font-size: 0.86rem;
}

.cart-line form {
    grid-row: span 2;
}

.cart-line button {
    border: 0;
    background: transparent;
    color: var(--brand-red);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 22px 0;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 1.15rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 68px;
    background: #fffaf0;
    border-bottom: 1px solid var(--line);
}

.page-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 34vw);
    background: url("/img/banana.jpg") center / cover no-repeat;
    opacity: 0.16;
}

.page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 720px) minmax(220px, 320px);
    gap: 48px;
    align-items: end;
}

.page-hero h1 {
    font-size: clamp(1.95rem, 4vw, 3.2rem);
}

.page-hero p {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.05rem;
}

.page-hero-panel {
    padding: 22px 0 22px 24px;
    border-left: 1px solid var(--brand-red);
    color: var(--muted);
}

.page-hero-panel strong {
    display: block;
    margin-top: 10px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.42rem;
    font-weight: 400;
    line-height: 1.2;
}

.notice-card,
.legal-card {
    padding: 32px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: start;
}

.feature-list {
    margin: 18px 0 0;
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 10px;
}

.site-footer {
    background: #1f2521;
    color: #f7f5ef;
}

.site-footer a {
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 32px;
    padding: 52px 0 34px;
}

.footer-brand {
    color: #ffffff;
}

.footer-brand img {
    width: 50px;
    height: 50px;
}

.site-footer h2 {
    margin: 0 0 12px;
    font-size: 1rem;
    text-transform: uppercase;
}

.site-footer p,
.site-footer li {
    color: #d6ddd7;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 16px 0;
}

.footer-bottom p {
    margin: 0;
    color: #d6ddd7;
    font-size: 0.9rem;
}

@media (max-width: 840px) {
    .header-inner {
        min-height: 76px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px 16px 18px;
        background: #ffffff;
        border-bottom: 1px solid var(--line);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 12px;
    }

    .hero {
        min-height: 560px;
        background-position: center right;
    }

    .hero-content {
        padding: 70px 0;
    }

    .card-grid,
    .quote-panel,
    .shop-layout,
    .footer-grid,
    .page-hero-grid,
    .proof-strip,
    .menu-step-grid,
    .flow-card-grid,
    .contact-method-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 70px 0 52px;
    }

    .page-hero::after {
        width: 54vw;
        opacity: 0.1;
    }

    .page-hero-panel {
        padding: 18px 0 0;
        border-top: 1px solid var(--brand-red);
        border-left: 0;
    }

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

    .order-step-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 32px, 1120px);
    }

    .brand span {
        font-size: 1.05rem;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    .section {
        padding: 54px 0;
    }

    .quote-panel,
    .notice-card,
    .legal-card,
    .service-card {
        padding: 22px;
    }
}

/* NutriKids public-site look from the current live design */
.site-header {
    position: relative;
    background: #ffffff;
    border-bottom: 0;
    backdrop-filter: none;
}

.logo-row {
    display: flex;
    justify-content: center;
    padding: 54px 0 34px;
}

.brand {
    gap: 0;
}

.brand img {
    width: 190px;
    height: 190px;
    object-fit: contain;
}

.header-inner {
    min-height: 88px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.header-space {
    min-width: 160px;
}

.site-nav {
    justify-self: center;
    gap: 34px;
}

.site-nav a {
    padding: 8px 0;
    color: #222222;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.04em;
    font-weight: 400;
}

.site-nav a:first-child {
    color: var(--brand-red);
    font-weight: 500;
}

.utility-nav {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 160px;
    position: relative;
}

.icon-button {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #151515;
    cursor: pointer;
}

.icon-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.icon-button:hover,
.icon-button:focus {
    color: var(--brand-red);
}

.account-button {
    color: var(--brand-red);
}

.account-menu {
    position: relative;
}

.account-menu::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 29;
    width: 260px;
    height: 14px;
}

.account-dropdown {
    position: absolute;
    top: 35px;
    right: 0;
    z-index: 30;
    width: 240px;
    display: none;
    padding: 12px 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.32);
}

.account-menu:hover .account-dropdown,
.account-menu:focus-within .account-dropdown,
.account-menu.is-open .account-dropdown {
    display: block;
}

.account-dropdown a {
    display: block;
    padding: 8px 20px;
    color: #222222;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.35;
}

.account-dropdown a:hover,
.account-dropdown a:focus {
    color: var(--brand-red);
}

.account-dropdown span {
    display: block;
    height: 1px;
    margin: 7px 12px;
    background: #dddddd;
}

.hero {
    min-height: min(1096px, 106vw);
    display: grid;
    place-items: center;
    padding: 170px 16px 160px;
    background-image: url("/img/banana.jpg");
    background-size: cover;
    background-position: center center;
    color: var(--ink);
}

.hero-card {
    width: min(422px, calc(100vw - 48px));
    min-height: 356px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 34px 38px;
    background: #fffaf0;
    text-align: center;
}

.hero-phone {
    margin: 0 0 18px;
    color: #5c5c64;
    font-size: 22px;
    line-height: 1.2;
}

.hero h1 {
    max-width: none;
    color: var(--brand-red);
    font-size: 38px;
    line-height: 1.06;
    font-weight: 400;
}

.hero p:not(.hero-phone) {
    max-width: 310px;
    margin: 16px 0 26px;
    color: #252525;
    font-size: 21px;
    line-height: 1.18;
}

.hero .button {
    min-height: 56px;
    min-width: 132px;
    padding: 12px 28px;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 13px;
    box-shadow: none;
}

.products-section {
    padding: 60px 0 76px;
    background: #ffffff;
}

.home-proof {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}

.proof-strip div {
    min-height: 126px;
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 26px 28px;
    background: #ffffff;
}

.proof-strip span,
.page-hero-panel span,
.contact-method span,
.menu-step-grid span,
.flow-card-grid span,
.order-step-strip span {
    color: var(--brand-red);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proof-strip strong {
    max-width: 280px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.18;
}

.line-heading {
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 0 0 38px;
}

.line-heading:before,
.line-heading:after {
    content: "";
    height: 1px;
    flex: 1 1 0;
    background: var(--brand-red);
}

.line-heading h2 {
    color: var(--brand-red);
    font-size: 31px;
    font-weight: 400;
    white-space: nowrap;
}

.products-section .card-grid {
    margin-top: 10px;
}

@media (max-width: 840px) {
    .logo-row {
        padding: 30px 0 18px;
    }

    .brand img {
        width: 136px;
        height: 136px;
    }

    .header-inner {
        min-height: 72px;
        grid-template-columns: auto 1fr auto;
    }

    .header-space {
        display: none;
    }

    .nav-toggle {
        display: block;
        grid-column: 1;
        grid-row: 1;
        border-radius: 0;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 24px;
        background: #ffffff;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 14px 0;
    }

    .utility-nav {
        min-width: auto;
        gap: 14px;
    }

    .hero {
        min-height: 720px;
        padding: 110px 14px;
    }

    .proof-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .brand img {
        width: 118px;
        height: 118px;
    }

    .utility-nav {
        gap: 10px;
    }

    .icon-button,
    .icon-button svg {
        width: 22px;
        height: 22px;
    }

    .hero {
        min-height: 620px;
        padding: 78px 12px;
        background-position: center;
    }

    .hero-card {
        min-height: 318px;
        padding: 28px 24px;
    }

    .hero-phone {
        font-size: 20px;
    }

.hero h1 {
        font-size: 32px;
    }

    .hero p:not(.hero-phone) {
        font-size: 20px;
    }

    .line-heading {
        gap: 14px;
    }

.line-heading h2 {
        font-size: 26px;
    }
}

/* Live-site footer and message popup */
.site-footer {
    position: relative;
    padding: 62px 58px 43px;
    background: #f7f7f7;
    color: #222222;
    text-align: center;
}

.site-footer a {
    color: var(--brand-red);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 44px;
    font-size: 16px;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-top: 0;
    color: #666666;
    font-size: 14px;
}

.footer-legal p {
    margin: 0;
    color: #666666;
}

.footer-legal a {
    color: inherit;
}

.chat-widget {
    position: fixed;
    right: 20px;
    bottom: 14px;
    z-index: 30;
}

.chat-widget summary {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--brand-red);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    list-style: none;
}

.chat-widget summary::-webkit-details-marker {
    display: none;
}

.chat-widget summary svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

.chat-close-icon {
    display: none;
}

.chat-widget[open] summary {
    background: #555555;
}

.chat-widget[open] .chat-open-icon {
    display: none;
}

.chat-widget[open] .chat-close-icon {
    display: block;
}

.chat-panel {
    position: fixed;
    right: 18px;
    bottom: 88px;
    width: min(382px, calc(100vw - 32px));
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.chat-logo-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 124px;
    padding: 16px 24px 12px;
    background: #ffffff;
}

.chat-logo-bar img {
    width: 112px;
    height: 112px;
    object-fit: contain;
}

.chat-message {
    position: relative;
    margin: 0 24px 24px;
    padding: 16px;
    background: #ffc0cb;
    color: #333333;
    font-size: 16px;
    line-height: 1.4;
}

.chat-message:after {
    content: "";
    position: absolute;
    left: 12px;
    bottom: -10px;
    border-width: 10px 14px 0 0;
    border-style: solid;
    border-color: #ffc0cb transparent transparent transparent;
}

.chat-success {
    margin: -8px 24px 22px;
    padding: 12px 14px;
    border: 1px solid #b7e4c7;
    border-radius: 4px;
    background: #f0fff4;
    color: #1f7a3a;
    font-size: 13px;
    line-height: 1.45;
}

.chat-panel label {
    display: block;
    margin: 0 24px 24px;
}

.chat-panel label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.chat-panel input,
.chat-panel textarea {
    width: 100%;
    border: 1px solid #dddddd;
    border-radius: 3px;
    padding: 0 10px;
    font: inherit;
    color: #222222;
    background: #ffffff;
}

.chat-panel input {
    height: 51px;
}

.chat-panel textarea {
    min-height: 114px;
    padding-top: 12px;
    resize: vertical;
}

.chat-panel .button {
    min-width: 118px;
    min-height: 56px;
    display: flex;
    margin: 6px auto 30px;
    padding: 0 34px;
    border-radius: 999px;
    border: 0;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.popup-policy-note {
    margin: 0 24px 14px;
    color: #666666;
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
}

.popup-policy-note a {
    color: var(--brand-red);
}

@media (max-width: 720px) {
    .order-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .cart-popup {
        width: 100%;
    }

    .cart-toggle-button {
        width: 100%;
    }

    .cart-popup-panel {
        position: fixed;
        top: auto;
        right: 10px;
        bottom: 86px;
        left: 10px;
        width: auto;
        max-height: 70vh;
    }

    .site-footer {
        padding: 46px 24px 96px;
    }

    .footer-links,
    .footer-legal {
        flex-direction: column;
    }

    .footer-links {
        gap: 12px;
        margin-bottom: 38px;
    }

    .footer-legal {
        gap: 10px;
        margin-top: 0;
    }

    .chat-widget {
        right: 14px;
        bottom: 14px;
    }

    .chat-panel {
        right: 10px;
        bottom: 86px;
    }
}

@media (max-width: 980px) {
    .split-section,
    .menu-layout,
    .order-grid {
        grid-template-columns: 1fr;
    }

    .menu-preview-grid {
        grid-template-columns: 1fr;
    }

    .cart-card {
        position: static;
    }
}

@media (max-width: 620px) {
    .split-section h2,
    .menu-preview-section h2 {
        font-size: 1.75rem;
    }

    .menu-link-row,
    .weekly-menu-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .order-fields,
    .day-picker,
    .calendar-weekdays,
    .calendar-grid {
        grid-template-columns: 1fr;
    }

    .calendar-weekdays {
        display: none;
    }

    .calendar-day.is-blank {
        display: none;
    }
}
