:root {
    --red: #D20D11;
    --red-dark: #9C090C;
    --yellow: #FFD21F;
    --black: #111111;
    --ink: #1D130C;
    --paper: #FFF4D6;
    --muted: rgba(29, 19, 12, 0.72);
    --line: rgba(29, 19, 12, 0.16);
    --shadow: 0 20px 60px rgba(33, 12, 6, 0.22);
    --radius: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 116px; }
body {
    font-family: "Tajawal", system-ui, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.port-link {
    position: absolute;
    left: 14px;
    top: 150px;
    z-index: 30;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 244, 214, 0.94);
    color: var(--red-dark);
    text-decoration: none;
    font: 800 0.78rem "Inter", system-ui, sans-serif;
    box-shadow: var(--shadow);
}

.top-strip {
    min-height: 42px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 9px 5vw;
    background: var(--red);
    color: white;
    font-weight: 800;
}
.top-strip a { text-decoration: none; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 14px 5vw;
    background: rgba(17, 17, 17, 0.96);
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
}
.brand-mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    text-align: center;
    background: var(--yellow);
    color: var(--red);
    border: 3px solid var(--red);
    border-radius: 14px;
    font: 800 0.94rem "Noto Kufi Arabic", system-ui, sans-serif;
    line-height: 1.05;
    transform: rotate(-3deg);
}
.brand b {
    display: block;
    font: 800 1.05rem "Inter", system-ui, sans-serif;
}
.brand small {
    color: rgba(255, 255, 255, 0.66);
    font-weight: 700;
}
nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 800;
}
nav a { color: rgba(255, 255, 255, 0.82); text-decoration: none; }
.nav-cta {
    background: var(--yellow);
    color: var(--black);
    padding: 10px 16px;
    border-radius: 999px;
}

.hero {
    min-height: 620px;
    position: relative;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}
.hero-img,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-img { object-fit: cover; }
.hero-shade {
    background:
        linear-gradient(90deg, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.45) 50%, rgba(17, 17, 17, 0.92)),
        linear-gradient(0deg, rgba(17, 17, 17, 0.7), transparent 44%);
}
.hero-content {
    position: relative;
    width: min(690px, 90vw);
    margin: 34px auto 32px 5vw;
    color: white;
}
.service-line,
.section-kicker,
.section-head span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--black);
    font-weight: 900;
}
h1,
h2,
h3 {
    font-family: "Noto Kufi Arabic", "Tajawal", system-ui, sans-serif;
    line-height: 1.2;
}
h1 {
    max-width: 680px;
    margin: 18px 0;
    font-size: clamp(2.8rem, 6.4vw, 5.5rem);
}
.hero p {
    max-width: 590px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.14rem;
}
.hero-actions,
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-actions { margin-top: 26px; }
.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
}
.btn.primary { background: var(--yellow); color: var(--black); }
.btn.dark { background: white; color: var(--black); }
.trust-row {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 800;
}
.trust-row span {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.menu-section {
    padding: 86px 5vw 96px;
    background: var(--yellow);
}
.section-head {
    max-width: 780px;
    margin: 0 auto 40px;
    text-align: center;
}
.section-head h2,
.offer-copy h2,
.branch h2,
.order-panel h2 {
    margin-top: 14px;
    font-size: clamp(2rem, 4vw, 3.8rem);
}
.category-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.category-grid article {
    min-height: 230px;
    padding: 22px;
    border-radius: var(--radius);
    background: #FFF7DA;
    border: 2px solid rgba(17, 17, 17, 0.14);
    text-align: center;
    box-shadow: 8px 8px 0 rgba(17, 17, 17, 0.12);
}
.food-shape {
    width: 104px;
    height: 104px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 4px solid var(--black);
    background: var(--red);
}
.food-shape.pizza {
    background:
        radial-gradient(circle at 32% 32%, var(--red) 0 8px, transparent 9px),
        radial-gradient(circle at 70% 44%, var(--red) 0 8px, transparent 9px),
        radial-gradient(circle at 48% 70%, var(--red) 0 7px, transparent 8px),
        #F6B64D;
}
.food-shape.crepe {
    border-radius: 12px 54px 54px 12px;
    background: linear-gradient(135deg, #F6CA76, #A95D17);
}
.food-shape.sandwich {
    border-radius: 24px;
    background: linear-gradient(#F8C46B 0 33%, #2F8D3E 34% 42%, #D20D11 43% 52%, #65300D 53% 100%);
}
.food-shape.burger {
    background: linear-gradient(#E7A34E 0 32%, #2F8D3E 33% 40%, #A33B14 41% 60%, #FFD21F 61% 68%, #E7A34E 69% 100%);
}
.category-grid h3 { color: var(--red); font-size: 1.35rem; }
.category-grid p { color: var(--muted); margin-top: 8px; }

.offers {
    padding: 88px 5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    background: #FFF4D6;
}
.offer-copy p,
.branch p,
.order-panel p { margin-top: 14px; color: var(--muted); }
.offer-cards { display: grid; gap: 14px; }
.offer-cards article {
    padding: 22px;
    border-radius: var(--radius);
    background: white;
    border-right: 8px solid var(--red);
    box-shadow: var(--shadow);
}
.offer-cards b {
    display: block;
    color: var(--red);
    font-family: "Noto Kufi Arabic", system-ui, sans-serif;
    font-size: 1.3rem;
}
.offer-cards span { color: var(--muted); }

.branch {
    padding: 74px 5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    background: var(--red);
    color: white;
}
.branch .section-kicker { background: white; color: var(--red); }
.branch p { color: rgba(255, 255, 255, 0.82); }
.contact-card {
    display: grid;
    gap: 12px;
}
.contact-card a {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    background: white;
    color: var(--black);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 900;
}
.contact-card b { direction: ltr; font-family: "Inter", system-ui, sans-serif; }
.contact-card span { color: var(--muted); }

.order-panel {
    padding: 86px 5vw 96px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    background: #18110F;
    color: white;
}
.order-panel .section-kicker { background: var(--yellow); color: var(--black); }
.order-panel p { color: rgba(255, 255, 255, 0.74); }
.order-form {
    display: grid;
    gap: 14px;
    background: white;
    color: var(--ink);
    padding: 24px;
    border-radius: var(--radius);
}
label { display: grid; gap: 6px; font-weight: 900; }
input,
textarea {
    width: 100%;
    border: 2px solid rgba(17, 17, 17, 0.16);
    border-radius: 6px;
    padding: 12px 14px;
    font: 600 1rem "Tajawal", system-ui, sans-serif;
    background: #FFF8E8;
}
textarea { min-height: 96px; resize: vertical; }
button {
    border: none;
    border-radius: 999px;
    min-height: 48px;
    background: var(--red);
    color: white;
    font: 900 1rem "Tajawal", system-ui, sans-serif;
    cursor: pointer;
}
.form-ok {
    padding: 12px;
    border-radius: 6px;
    background: #FFF0C1;
    color: var(--black) !important;
    font-weight: 800;
}

.site-footer {
    padding: 28px 5vw 42px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    background: var(--black);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .site-header { align-items: flex-start; flex-direction: column; }
    .port-link { top: 260px; }
    nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
    .hero { min-height: 560px; }
    .hero-content { margin: 42px auto 40px; }
    .hero-shade {
        background:
            linear-gradient(0deg, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.18)),
            linear-gradient(90deg, rgba(17, 17, 17, 0.45), rgba(17, 17, 17, 0.62));
    }
    .category-grid,
    .offers,
    .branch,
    .order-panel { grid-template-columns: 1fr; }
    .trust-row { display: none; }
}

@media (max-width: 560px) {
    .category-grid { grid-template-columns: 1fr; }
    .top-strip { justify-content: flex-start; gap: 12px; }
}
