/* ============================================================
   ביס מרוקאי - Catering Ordering System
   Colors drawn from the brand logo:
   - Cream background, terracotta accents, deep red, warm dark brown
   ============================================================ */

:root {
    /* Brand palette */
    --bg-cream:        #FBE8D3;
    --bg-cream-soft:   #FDF1E1;
    --bg-warm:         #F4D6A8;
    --terracotta:      #C75D2C;
    --terracotta-dark: #A04420;
    --terracotta-light:#E08758;
    --red-deep:        #9C2B26;
    --gold:            #C9A961;
    --gold-light:      #E5C97A;
    --text-dark:       #2B1A14;
    --text-soft:       #5A3E2E;
    --white:           #FFFFFF;
    --shadow-warm:     0 12px 30px rgba(123, 56, 23, 0.15);
    --shadow-soft:     0 4px 14px rgba(123, 56, 23, 0.10);
    --shadow-strong:   0 18px 45px rgba(123, 56, 23, 0.28);

    /* Fonts */
    --font-heading: 'Frank Ruhl Libre', 'Heebo', Georgia, serif;
    --font-body:    'Heebo', 'Frank Ruhl Libre', Arial, sans-serif;

    /* Layout */
    --max-width: 1200px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle Moroccan tile-inspired background pattern */
body {
    background-color: var(--bg-cream);
    background-image:
        radial-gradient(circle at 20% 20%, rgba(199, 93, 44, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(201, 169, 97, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(156, 43, 38, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.25;
}

ul { list-style: none; padding: 0; margin: 0; }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: linear-gradient(180deg, var(--bg-cream-soft) 0%, var(--bg-cream) 100%);
    padding: 24px 32px 8px;
    border-bottom: 1px solid rgba(199, 93, 44, 0.12);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.logo-wrap {
    grid-column: 1;          /* rightmost column in RTL */
    justify-self: start;     /* hug the right edge in RTL */
    display: inline-block;
    transition: transform 0.3s ease;
}
.logo-wrap:hover { transform: scale(1.02); }

.logo-img {
    max-width: 220px;
    width: 100%;
    height: auto;
}

.tagline-block {
    grid-column: 2;          /* middle column - truly centered */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3cm;              /* ornament sits 0.3cm under tagline */
}

.tagline {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-soft);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-align: center;
}

.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--terracotta);
    font-size: 0.9rem;
}
.ornament-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
    display: inline-block;
}
.ornament-line-light {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    text-align: center;
    padding: 40px 20px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.hero-title::before,
.hero-title::after {
    content: "◆";
    color: var(--terracotta);
    font-size: 0.6em;
    vertical-align: middle;
    margin: 0 18px;
    opacity: 0.7;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-soft);
    margin: 0;
    font-weight: 400;
}

/* ============================================================
   HOME PAGE — hero, about, kashrot, choose-path, modal
   ============================================================ */

/* ----------- Hero (home page enhancements) ----------- */
.hero-home {
    padding: 56px 20px 38px;
    position: relative;
    overflow: hidden;
}
.hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(199, 93, 44, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.10) 0%, transparent 40%);
    pointer-events: none;
}
.hero-home .hero-title {
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    line-height: 1.1;
    position: relative;
}
.hero-home .hero-sub { position: relative; }

.hero-credentials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    position: relative;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-cream-soft);
    border: 1.5px solid rgba(199, 93, 44, 0.32);
    color: var(--text-dark);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(199, 93, 44, 0.10);
}
.hero-pill-icon {
    color: var(--terracotta);
    font-size: 0.95em;
}

/* ----------- Section divider ----------- */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 44px 0 36px;
}
.section-divider-line {
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
}
.section-divider-cluster {
    color: var(--terracotta);
    font-size: 0.95rem;
    letter-spacing: 8px;
    opacity: 0.6;
}

/* ----------- About the business ----------- */
.about-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    margin-bottom: 36px;
    box-shadow: var(--shadow-warm);
    border: 1px solid rgba(199, 93, 44, 0.12);
    position: relative;
    overflow: hidden;
}
.about-section::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.about-section::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(199, 93, 44, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.about-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.about-title::before,
.about-title::after {
    content: "❖";
    color: var(--terracotta);
    font-size: 0.6em;
    margin: 0 14px;
    vertical-align: middle;
    opacity: 0.75;
}

.about-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: right;
}
.about-content p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text-dark);
    margin: 0 0 18px;
}
.about-content p:last-child { margin-bottom: 0; }
.about-content strong {
    color: var(--terracotta);
    font-weight: 700;
}

.about-stamp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px dashed rgba(199, 93, 44, 0.25);
    position: relative;
    z-index: 1;
}
.about-stamp-year {
    background: var(--terracotta);
    color: var(--bg-cream-soft);
    padding: 7px 24px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 12px rgba(199, 93, 44, 0.32);
}
.about-stamp-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
    flex: 1;
    max-width: 100px;
}

/* ----------- Kashrot section (no inline image — opens modal) ----------- */
.kashrot-section {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a0f0a 100%);
    color: var(--bg-cream-soft);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-warm);
    border: 2px solid var(--gold);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.kashrot-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.kashrot-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: var(--text-dark);
    border-radius: 50%;
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0 auto 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32);
    position: relative;
    z-index: 1;
}
.kashrot-title {
    color: var(--gold-light);
    font-size: 2rem;
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}
.kashrot-note {
    font-size: 1.05rem;
    color: rgba(253, 241, 225, 0.88);
    margin: 0 auto 22px;
    line-height: 1.55;
    max-width: 540px;
    position: relative;
    z-index: 1;
}

.kashrot-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--text-dark);
    padding: 13px 28px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
    position: relative;
    z-index: 1;
}
.kashrot-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.42);
}
.kashrot-btn-icon { font-size: 1.05em; line-height: 1; }
.kashrot-btn-arrow {
    font-size: 1.15em;
    line-height: 1;
    transition: transform 0.25s ease;
}
.kashrot-btn:hover .kashrot-btn-arrow {
    transform: translateX(-5px);
}

/* ----------- Choose your path ----------- */
.choose-path {
    margin: 8px 0 40px;
}
.choose-path-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.choose-path-title::before,
.choose-path-title::after {
    content: "◆";
    color: var(--terracotta);
    font-size: 0.55em;
    margin: 0 18px;
    vertical-align: middle;
    opacity: 0.7;
}
.choose-path-sub {
    text-align: center;
    font-size: 1.08rem;
    color: var(--text-soft);
    margin: 0 auto 32px;
    max-width: 520px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 920px;
    margin: 0 auto;
    align-items: stretch;
}

/* Option card — same look as the package cards (arch + features list + CTA) */
.option-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 56px 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-warm);
    border: 1px solid rgba(199, 93, 44, 0.12);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.option-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 16px;
    background: var(--terracotta);
    border-radius: 0 0 80px 80px;
    opacity: 0.9;
}
.option-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(199, 93, 44, 0.4);
}

.option-icon-wrap {
    width: 100px;
    height: 100px;
    margin: 8px auto 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream-soft) 100%);
    border-radius: 50%;
    border: 2px solid rgba(201, 169, 97, 0.45);
    box-shadow: 0 6px 18px rgba(199, 93, 44, 0.18);
}
.option-icon {
    font-size: 3.4rem;
    line-height: 1;
    filter: drop-shadow(0 4px 10px rgba(123, 56, 23, 0.2));
}

.option-title {
    font-size: 1.9rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
    font-family: var(--font-heading);
}
.option-subtitle {
    font-size: 1rem;
    color: var(--terracotta);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.option-features {
    flex: 1;
    margin: 14px 0 18px;
    text-align: right;
    padding: 0 8px;
    list-style: none;
}
.option-features li {
    padding: 11px 0;
    border-bottom: 1px dashed rgba(199, 93, 44, 0.18);
    font-size: 1.02rem;
    color: var(--text-dark);
    line-height: 1.45;
}
.option-features li:last-child { border-bottom: none; }
.option-features .diamond {
    color: var(--terracotta);
    margin-left: 10px;
    font-size: 0.7em;
    display: inline-block;
    transform: translateY(-2px);
}

.option-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--terracotta);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 4px;
    transition: all 0.25s ease;
    align-self: center;
    box-shadow: 0 6px 16px rgba(199, 93, 44, 0.3);
    letter-spacing: 0.02em;
}
.option-cta-arrow {
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.25s ease;
}
.option-card:hover .option-cta {
    background: var(--terracotta-dark);
    box-shadow: 0 10px 24px rgba(199, 93, 44, 0.45);
}
.option-card:hover .option-cta-arrow {
    transform: translateX(-6px); /* slides forward in RTL */
}

/* ----------- Modal (kashrot certificate viewer) ----------- */
.modal {
    border: none;
    padding: 0;
    background: transparent;
    max-width: 92vw;
    max-height: 92vh;
    overflow: visible;
    position: relative;
}
.modal::backdrop {
    background: rgba(15, 8, 4, 0.88);
    backdrop-filter: blur(6px);
}
.modal[open] {
    animation: modal-appear 0.28s ease-out;
}
@keyframes modal-appear {
    from { opacity: 0; transform: scale(0.96); }
    to   { opacity: 1; transform: scale(1); }
}
.modal-image {
    max-width: 92vw;
    max-height: 88vh;
    display: block;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    border: 4px solid var(--gold);
}
.modal-close {
    position: absolute;
    top: -54px;
    right: 0;
    background: var(--gold);
    color: var(--text-dark);
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
    transition: all 0.2s ease;
    font-family: var(--font-body);
    font-weight: 700;
    padding-bottom: 4px;
}
.modal-close:hover {
    background: var(--gold-light);
    transform: scale(1.08);
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 20px 60px;
}

/* ============================================================
   PACKAGES GRID
   ============================================================ */
.packages {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 36px;
    padding-top: 36px; /* room for ribbon on featured card */
}

/* ----------- Package card base ----------- */
.package {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 24px 28px;
    text-align: center;
    box-shadow: var(--shadow-warm);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(199, 93, 44, 0.12);
}

/* Moroccan arch decoration on top */
.package::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 14px;
    background: var(--terracotta);
    border-radius: 0 0 80px 80px;
    opacity: 0.85;
}

.package:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.package-top {
    margin-bottom: 22px;
}

.package-name {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    color: var(--terracotta);
    font-family: var(--font-heading);
    line-height: 1;
}
.price-num {
    font-size: 3.4rem;
    font-weight: 900;
}
.price-currency {
    font-size: 1.8rem;
    font-weight: 700;
}
.price-note {
    color: var(--text-soft);
    font-size: 0.92rem;
    margin: 6px 0 0;
    font-weight: 400;
}

.package-items {
    flex: 1;
    margin: 8px 0 24px;
    text-align: right;
    padding: 0 8px;
}
.package-items li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(199, 93, 44, 0.18);
    font-size: 1.02rem;
    color: var(--text-dark);
    line-height: 1.5;
}
.package-items li:last-child { border-bottom: none; }
.package-items li small {
    color: var(--text-soft);
    font-size: 0.85rem;
    font-weight: 300;
}

.diamond {
    color: var(--terracotta);
    margin-left: 10px;
    font-size: 0.7em;
    display: inline-block;
    transform: translateY(-2px);
}

/* ----------- CTA Button ----------- */
.package-cta {
    background: var(--terracotta);
    color: var(--white);
    padding: 14px 22px;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(199, 93, 44, 0.3);
}
.package-cta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(199, 93, 44, 0.45);
}
.package-cta:active { transform: translateY(0); }

/* ============================================================
   FEATURED (MIDDLE) PACKAGE
   ============================================================ */
.package-featured {
    background: linear-gradient(160deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
    color: var(--bg-cream-soft);
    transform: scale(1.04);
    box-shadow: var(--shadow-strong);
    border: 2px solid var(--gold);
    z-index: 2;
}
.package-featured:hover {
    transform: scale(1.06) translateY(-4px);
}
.package-featured::before {
    background: var(--gold);
    width: 110px;
    height: 16px;
}

.package-featured .package-name {
    color: var(--bg-cream-soft);
    font-size: 2rem;
}
.package-featured .package-price { color: var(--gold-light); }
.package-featured .price-note    { color: rgba(253, 241, 225, 0.85); }
.package-featured .package-items li {
    color: var(--bg-cream-soft);
    border-bottom-color: rgba(253, 241, 225, 0.25);
    font-size: 1.08rem;
}
.package-featured .diamond { color: var(--gold); }

.package-cta-featured {
    background: var(--gold);
    color: var(--text-dark);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.package-cta-featured:hover {
    background: var(--gold-light);
    color: var(--text-dark);
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

.featured-note {
    margin: 14px 0 0;
    font-size: 0.88rem;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* Ribbon on top of featured */
.ribbon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red-deep);
    color: var(--bg-cream-soft);
    padding: 9px 24px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 16px rgba(156, 43, 38, 0.4);
    white-space: nowrap;
    z-index: 3;
}

/* ============================================================
   KIDS PACKAGE
   ============================================================ */
.kids-package {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream-soft) 100%);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-bottom: 36px;
    box-shadow: var(--shadow-warm);
    border: 2px dashed var(--gold);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
    position: relative;
}
.kids-package::before {
    content: "";
    position: absolute;
    top: 0;
    right: 30px;
    width: 60px;
    height: 10px;
    background: var(--gold);
    border-radius: 0 0 60px 60px;
}

.kids-icon {
    font-size: 3rem;
    line-height: 1;
}

.kids-content { min-width: 0; }

.kids-header {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.kids-title {
    font-size: 1.7rem;
    color: var(--text-dark);
}

.kids-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--terracotta);
    font-family: var(--font-heading);
    line-height: 1;
}
.kids-price .price-num     { font-size: 2.2rem; font-weight: 900; }
.kids-price .price-currency{ font-size: 1.2rem; font-weight: 700; }

.kids-items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 22px;
}
.kids-items li {
    font-size: 1rem;
    color: var(--text-dark);
}

/* ============================================================
   ADD-ONS
   ============================================================ */
.addons {
    background: var(--bg-cream-soft);
    border-radius: var(--radius-lg);
    padding: 32px 32px 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(199, 93, 44, 0.12);
    margin-bottom: 36px;
}

.section-title {
    text-align: center;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.title-ornament {
    color: var(--terracotta);
    font-size: 0.8em;
    opacity: 0.8;
}

.addons-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
    max-width: 920px;
    margin: 0 auto;
}
.addons-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border-right: 3px solid var(--terracotta);
    font-size: 0.98rem;
    line-height: 1.5;
}
.addons-list li strong {
    color: var(--red-deep);
    font-weight: 700;
}

.addon-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background: var(--terracotta);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
}

/* ============================================================
   SIGNATURE DISH (mains page hero card)
   ============================================================ */
.signature-dish {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
    color: var(--bg-cream-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 48px;
    box-shadow: var(--shadow-strong);
    border: 2px solid var(--gold);
}

.signature-image {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #c89165 0%, #8c5a37 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.signature-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.18) 2px, transparent 3px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.12) 2px, transparent 3px);
    background-size: 38px 38px;
}
.signature-icon {
    font-size: 5rem;
    z-index: 1;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.signature-content {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.signature-badge {
    align-self: flex-start;
    background: var(--gold);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.signature-name {
    font-size: 2.4rem;
    color: var(--bg-cream-soft);
    margin: 0;
    line-height: 1.15;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.01em;
}

.signature-desc {
    font-size: 1.1rem;
    color: rgba(253, 241, 225, 0.94);
    margin: 0;
    line-height: 1.55;
}

.signature-tag {
    font-size: 0.92rem;
    color: var(--gold-light);
    margin: 4px 0 0;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Menu section spacing (tortillas, additional sandwiches, etc.) */
.menu-section {
    margin-bottom: 16px;
}
.menu-section .section-title {
    margin-top: 8px;
    margin-bottom: 28px;
    font-size: 1.8rem;
}
.menu-section + .menu-section {
    margin-top: 28px;
}

/* Vegetarian badge variant */
.menu-badge-veg {
    background: #4a7c3a;
    box-shadow: 0 4px 10px rgba(74, 124, 58, 0.35);
}

/* Parve (kosher non-dairy non-meat) badge variant */
.menu-badge-parve {
    background: var(--gold);
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(201, 169, 97, 0.4);
}

/* "Continue to next step" CTA at the bottom of a menu page */
.menu-cta-wrap {
    text-align: center;
    margin: 28px 0 0;
}
.menu-cta-next {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--terracotta);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 20px rgba(199, 93, 44, 0.32);
    transition: all 0.25s ease;
}
.menu-cta-next:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(199, 93, 44, 0.45);
}
.menu-cta-next .arrow {
    font-size: 1.3rem;
    line-height: 1;
    transition: transform 0.25s ease;
}
.menu-cta-next:hover .arrow {
    transform: translateX(-6px);  /* slides forward in RTL */
}

/* ============================================================
   MENU CARDS (used on salads + mains pages)
   ============================================================ */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-warm);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(199, 93, 44, 0.12);
    position: relative;
}
.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.menu-image {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-warm);
    position: relative;
    overflow: hidden;
}

.menu-image-placeholder {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream-soft) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-image-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(199, 93, 44, 0.18) 1.5px, transparent 2.5px),
        radial-gradient(circle at 75% 75%, rgba(201, 169, 97, 0.22) 1.5px, transparent 2.5px);
    background-size: 32px 32px;
    opacity: 0.9;
}

/* color variants for placeholder backgrounds */
.menu-image-green {
    background: linear-gradient(135deg, #d4dba0 0%, #f0e3c6 100%);
}
.menu-image-purple {
    background: linear-gradient(135deg, #c7a5c4 0%, #e8d2cf 100%);
}
.menu-image-chocolate {
    background: linear-gradient(135deg, #8b5a2b 0%, #d4a574 100%);
}
.menu-image-honey {
    background: linear-gradient(135deg, #d4a55c 0%, #f0e0a8 100%);
}

/* 2-column grid variant — for pages with even, small item counts */
.menu-grid-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.placeholder-icon {
    font-size: 3.4rem;
    z-index: 1;
    filter: drop-shadow(0 4px 10px rgba(80, 40, 20, 0.18));
}

.menu-info {
    padding: 18px 20px 22px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.menu-item-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.35;
    font-family: var(--font-heading);
}

.menu-item-desc {
    font-size: 0.92rem;
    color: var(--text-soft);
    margin: 4px 0 0;
    line-height: 1.45;
    font-weight: 400;
}

/* Meta row inside .menu-card: quantity pill + price */
.menu-item-meta {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px dashed rgba(199, 93, 44, 0.22);
}
.menu-item-qty {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    background: var(--bg-cream-soft);
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(199, 93, 44, 0.18);
    white-space: nowrap;
}
.menu-item-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--terracotta);
    font-family: var(--font-heading);
    line-height: 1;
    white-space: nowrap;
}
.menu-item-price .currency {
    font-size: 0.62em;
    font-weight: 700;
    margin-right: 3px;
    color: var(--terracotta-dark);
}

/* Bowl-only badge */
.menu-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--red-deep);
    color: var(--bg-cream-soft);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 10px rgba(156, 43, 38, 0.35);
    z-index: 2;
}

.menu-note {
    background: var(--bg-cream-soft);
    border-right: 4px solid var(--red-deep);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--text-dark);
    font-size: 0.98rem;
    margin: 0 0 36px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-soft);
}
.note-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background: var(--red-deep);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    font-style: normal;
}

/* ============================================================
   FOOTER / CONTACT
   ============================================================ */
.site-footer {
    background: linear-gradient(180deg, var(--text-dark) 0%, #1a0f0a 100%);
    color: var(--bg-cream-soft);
    padding: 40px 20px 24px;
    text-align: center;
    margin-top: 40px;
}

.footer-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.contact {
    max-width: 600px;
    margin: 0 auto;
}

.contact-title {
    color: var(--gold-light);
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 8px;
    color: var(--bg-cream-soft);
    font-weight: 700;
}

.contact-phone {
    font-size: 1.3rem;
    margin: 0 0 10px;
    direction: ltr; /* phone numbers LTR */
}
.contact-phone a {
    color: var(--gold-light);
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}
.contact-phone a:hover { color: var(--white); }

.contact-note {
    color: rgba(253, 241, 225, 0.75);
    font-size: 0.98rem;
    margin: 0 0 22px;
}

.contact-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-soft);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}
.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-phone {
    background: var(--terracotta);
    color: var(--white);
}
.btn-phone:hover {
    background: var(--terracotta-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199, 93, 44, 0.4);
}

.btn-icon { font-size: 1.2rem; }

.disclaimer {
    margin-top: 30px;
    font-size: 0.85rem;
    color: rgba(253, 241, 225, 0.5);
    letter-spacing: 0.03em;
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 960px) {
    .packages {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 28px;
    }

    .package-featured {
        transform: scale(1);
        order: -1; /* show featured on top on mobile */
    }
    .package-featured:hover { transform: translateY(-4px); }

    .kids-package {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
        padding: 26px 22px;
    }
    .kids-header { justify-content: center; }
    .kids-items  { justify-content: center; }

    .addons-list { grid-template-columns: 1fr; }

    .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    .signature-dish { grid-template-columns: 1fr; }
    .signature-image { aspect-ratio: 16 / 9; }
    .signature-content { padding: 28px 26px; }
    .signature-name { font-size: 2rem; }

    .options-grid { grid-template-columns: 1fr; gap: 22px; max-width: 480px; }
    .hero-credentials { gap: 8px; }
    .hero-pill { font-size: 0.88rem; padding: 7px 14px; }
    .section-divider-line { width: 50px; }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 12px;
    }
    .logo-wrap     { grid-column: 1; justify-self: center; }
    .tagline-block { grid-column: 1; }
}

@media (max-width: 600px) {
    .site-header { padding: 20px 16px 14px; }
    .logo-img    { max-width: 200px; }
    .tagline     { font-size: 1rem; }

    .hero { padding: 28px 16px 18px; }
    .hero-title { font-size: 1.9rem; }
    .hero-title::before, .hero-title::after { margin: 0 10px; }
    .hero-sub { font-size: 1rem; }

    .container { padding: 14px 14px 40px; }

    .package { padding: 42px 20px 24px; }
    .package-name { font-size: 1.55rem; }
    .price-num { font-size: 2.8rem; }
    .price-currency { font-size: 1.4rem; }

    .ribbon {
        font-size: 0.82rem;
        padding: 6px 18px;
    }

    .kids-title { font-size: 1.4rem; }
    .kids-icon  { font-size: 2.4rem; }
    .kids-price .price-num { font-size: 1.9rem; }

    .addons { padding: 24px 18px 20px; }
    .section-title { font-size: 1.3rem; }
    .addons-list li { font-size: 0.93rem; }

    .contact-title { font-size: 1.2rem; }
    .contact-name  { font-size: 1.3rem; }
    .contact-phone { font-size: 1.15rem; }
    .btn-contact   { width: 100%; max-width: 320px; justify-content: center; }

    .menu-grid     { grid-template-columns: 1fr; gap: 18px; }
    .menu-image    { aspect-ratio: 16 / 9; }
    .menu-item-name { font-size: 1.1rem; }
    .menu-note     { font-size: 0.9rem; padding: 12px 14px; }

    .signature-dish    { margin-bottom: 32px; }
    .signature-content { padding: 22px 20px; gap: 10px; }
    .signature-name    { font-size: 1.7rem; }
    .signature-desc    { font-size: 1rem; }
    .signature-icon    { font-size: 3.6rem; }
    .menu-section .section-title { font-size: 1.5rem; }

    .about-section    { padding: 30px 22px; }
    .about-title      { font-size: 1.6rem; }
    .about-content p  { font-size: 0.98rem; line-height: 1.75; }
    .about-stamp-year { font-size: 0.9rem; padding: 6px 18px; }

    .kashrot-section { padding: 28px 20px; }
    .kashrot-title   { font-size: 1.55rem; }
    .kashrot-note    { font-size: 0.95rem; }
    .kashrot-icon    { width: 48px; height: 48px; font-size: 1.6rem; }
    .kashrot-btn     { font-size: 0.98rem; padding: 12px 22px; }

    .choose-path-title { font-size: 1.7rem; }
    .choose-path-sub   { font-size: 0.98rem; margin-bottom: 22px; }
    .option-card       { padding: 46px 22px 24px; }
    .option-title      { font-size: 1.55rem; }
    .option-subtitle   { font-size: 0.92rem; }
    .option-icon-wrap  { width: 80px; height: 80px; }
    .option-icon       { font-size: 2.8rem; }
    .option-features li { font-size: 0.95rem; padding: 9px 0; }

    .modal-close { width: 40px; height: 40px; font-size: 1.5rem; top: -50px; }

    .section-divider { margin: 32px 0 24px; }
    .section-divider-cluster { letter-spacing: 6px; font-size: 0.85rem; }
}

/* ============================================================
   PRINT - clean version for menus
   ============================================================ */
@media print {
    body { background: white; }
    .package-cta, .kids-cta, .contact-buttons { display: none; }
    .package, .kids-package, .addons { box-shadow: none; border: 1px solid #ccc; }
    .site-footer { background: white; color: var(--text-dark); }
    .contact-title, .contact-name, .contact-phone a { color: var(--text-dark); }
}
