/* Cairo Table Dining Guide — utility-first (.flex/.col/.pad-l). Breakpoints 940/660/420. */

:root {
  --pom: #7a1f2b;
  --pom-d: #5c141d;
  --pom-soft: #f3e0e2;
  --herb: #3f8e4f;
  --herb-d: #2f6e3c;
  --herb-soft: #e2f0e4;
  --cream: #fdf6ef;
  --paper: #ffffff;
  --paper-2: #f4ebe0;
  --ink: #2a1d1a;
  --ink-2: #5f5048;
  --line: #e6dacb;
  --line-2: #cdbca7;
  --rad: 12px;
  --rad-sm: 7px;
  --sh: 0 14px 36px rgba(92,20,29,0.13);
  --sh-sm: 0 3px 14px rgba(92,20,29,0.08);
  --wrap: 1160px;
  --f-head: "Playfair Display", "Georgia", "Hoefler Text", serif;
  --f-body: "PT Sans", "Arial", "Liberation Sans", sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: var(--f-body); font-size: 17px; line-height: 1.7; color: var(--ink); background: var(--cream); }
h1, h2, h3, h4 { font-family: var(--f-head); line-height: 1.18; color: var(--pom); margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: 2.9rem; }
h2 { font-size: 2.05rem; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.05em; }
a { color: var(--pom); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--herb-d); }
img { max-width: 100%; height: auto; display: block; }
:focus-visible { outline: 3px solid var(--herb); outline-offset: 2px; }

/* Utilities */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.flex { display: flex; gap: 22px; flex-wrap: wrap; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.col { display: flex; flex-direction: column; }
.grid { display: grid; gap: 24px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.pad-l { padding: 60px 0; }
.pad-l--cream { background: var(--paper-2); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mw-720 { max-width: 720px; }
.mt-s { margin-top: 8px; }
.mt-m { margin-top: 22px; }
.mb-0 { margin-bottom: 0; }
.txt-lead { font-size: 1.14rem; color: var(--ink-2); }
.txt-sm { font-size: .85rem; }
.muted { color: var(--ink-2); }
.eyebrow { display: inline-block; font-family: var(--f-body); font-size: .73rem; letter-spacing: .18em; text-transform: uppercase; color: var(--herb-d); font-weight: 700; margin-bottom: .8em; }

/* Buttons — soft rounded */
.btn { display: inline-block; font-family: var(--f-body); font-size: .95rem; font-weight: 700; padding: 13px 28px; border-radius: var(--rad-sm); border: 2px solid transparent; text-decoration: none; cursor: pointer; transition: background .15s, color .15s, transform .15s; }
.btn-pom { background: var(--pom); color: #fff; }
.btn-pom:hover { background: var(--pom-d); color: #fff; transform: translateY(-2px); }
.btn-herb { background: var(--herb); color: #fff; }
.btn-herb:hover { background: var(--herb-d); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--pom); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--pom); }

/* Header */
.site-head { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; }
.site-head__in { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand__mark { width: 42px; height: 42px; border-radius: 50%; background: var(--pom); color: #fff; display: grid; place-items: center; font-family: var(--f-head); font-weight: 700; font-size: 1.2rem; }
.brand__name { font-family: var(--f-head); font-weight: 700; font-size: 1.18rem; color: var(--pom); }
.nav { display: flex; align-items: center; gap: 3px; }
.nav a { font-size: .91rem; font-weight: 700; color: var(--ink-2); text-decoration: none; padding: 9px 13px; border-radius: var(--rad-sm); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--pom); background: var(--pom-soft); }
.nav a.nav-cta { background: var(--herb); color: #fff; margin-left: 8px; }
.nav a.nav-cta:hover { background: var(--herb-d); }
.burger { display: none; background: none; border: 2px solid var(--line-2); border-radius: var(--rad-sm); padding: 8px 11px; cursor: pointer; font-size: 1.1rem; color: var(--pom); }

/* Hero — two-column equal */
.hero { padding: 56px 0; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.hero h1 { font-size: 3.1rem; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.dish-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dish-grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--rad); }
.dish-grid img:first-child { grid-column: span 2; aspect-ratio: 2/1; }

/* Section head */
.sec-head { max-width: 720px; margin-bottom: 36px; }

/* Cards */
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--rad); overflow: hidden; box-shadow: var(--sh-sm); transition: transform .18s, box-shadow .18s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.card__media { aspect-ratio: 4/3; background: var(--pom-soft); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card__tag { font-size: .69rem; text-transform: uppercase; letter-spacing: .11em; color: var(--herb-d); font-weight: 700; margin-bottom: 8px; }
.card__link { margin-top: auto; font-weight: 700; }

/* Step */
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--rad); padding: 26px 24px; text-align: center; }
.step__num { width: 48px; height: 48px; margin: 0 auto 14px; border-radius: 50%; background: var(--herb-soft); color: var(--herb-d); display: grid; place-items: center; font-family: var(--f-head); font-weight: 700; font-size: 1.3rem; }

/* Callout */
.callout { background: var(--pom); color: #fff; border-radius: var(--rad); padding: 30px 28px; }
.callout h3 { color: #fff; }
.callout p { color: rgba(255,255,255,0.9); }

/* Table */
.table-wrap { overflow-x: auto; }
table.menu { width: 100%; border-collapse: collapse; background: var(--paper); border: 1px solid var(--line); border-radius: var(--rad-sm); overflow: hidden; font-size: .93rem; }
table.menu th, table.menu td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
table.menu th { background: var(--pom-soft); color: var(--pom); font-family: var(--f-head); }
table.menu tr:last-child td { border-bottom: 0; }

/* FAQ */
.faq { max-width: 820px; }
.faq__item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--rad-sm); margin-bottom: 12px; overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 18px 22px; font-family: var(--f-head); font-size: 1.08rem; font-weight: 700; color: var(--pom); cursor: pointer; display: flex; justify-content: space-between; gap: 16px; }
.faq__ic { color: var(--herb-d); transition: transform .2s; }
.faq__q[aria-expanded="true"] .faq__ic { transform: rotate(45deg); }
.faq__a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .25s, padding .25s; }
.faq__a[data-open="true"] { padding: 0 22px 20px; max-height: 640px; }

/* Plans */
.plan { background: var(--paper); border: 1px solid var(--line); border-radius: var(--rad); padding: 30px 26px; }
.plan--feat { border-color: var(--herb); box-shadow: var(--sh); }
.plan__price { font-family: var(--f-head); font-size: 2.2rem; color: var(--pom); }
.plan__price span { font-size: .88rem; color: var(--ink-2); font-family: var(--f-body); }
.plan__list { list-style: none; padding: 0; margin: 16px 0 22px; }
.plan__list li { padding: 8px 0 8px 24px; position: relative; border-bottom: 1px solid var(--line); font-size: .92rem; }
.plan__list li::before { content: "✦"; position: absolute; left: 0; color: var(--herb-d); }

/* Form */
.form { display: grid; gap: 16px; max-width: 640px; }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--f-head); font-weight: 700; font-size: .92rem; color: var(--pom); }
.field input, .field select, .field textarea { font-family: var(--f-body); font-size: .96rem; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: var(--rad-sm); background: var(--paper); color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pom); outline: none; box-shadow: 0 0 0 3px var(--pom-soft); }
.form-status { display: none; padding: 13px 16px; border-radius: var(--rad-sm); background: var(--herb-soft); color: var(--herb-d); font-weight: 700; font-size: .9rem; }
.form-status[data-show="true"] { display: block; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--ink-2); }
.consent input { margin-top: 3px; }

/* Banner */
.banner { background: var(--pom); color: #fff; padding: 50px 0; }
.banner h1 { color: #fff; }
.banner p { color: rgba(255,255,255,0.86); max-width: 680px; margin: 0; }
.crumb { font-size: .82rem; color: rgba(255,255,255,0.72); margin-bottom: 12px; }
.crumb a { color: #fff; }

.prose { max-width: 820px; }
.prose h2 { margin-top: 1.6em; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 9px; }

/* Footer */
.site-foot { background: var(--pom-d); color: rgba(255,255,255,0.8); padding: 52px 0 28px; margin-top: 10px; }
.site-foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.site-foot h4 { color: #fff; font-family: var(--f-head); font-size: 1.05rem; margin-bottom: 14px; }
.site-foot ul { list-style: none; padding: 0; margin: 0; }
.site-foot li { margin-bottom: 9px; }
.site-foot a { color: rgba(255,255,255,0.78); text-decoration: none; font-size: .9rem; }
.site-foot a:hover { color: #fff; }
.site-foot address { font-style: normal; font-size: .89rem; line-height: 1.8; }
.site-foot__legal { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 20px; font-size: .8rem; color: rgba(255,255,255,0.6); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 940px) {
  h1 { font-size: 2.3rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .g2, .g3, .g4 { grid-template-columns: repeat(2, 1fr); }
  .site-foot__grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--paper); flex-direction: column; align-items: stretch; padding: 12px 22px 18px; border-bottom: 1px solid var(--line); gap: 2px; }
  .nav[data-open="true"] { display: flex; }
  .nav a.nav-cta { margin-left: 0; margin-top: 6px; text-align: center; }
  .burger { display: block; }
}

@media (max-width: 660px) {
  h1 { font-size: 2rem; }
  .hero h1 { font-size: 2.1rem; }
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .site-foot__grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .wrap { padding: 0 16px; }
  .dish-grid { grid-template-columns: 1fr; }
  .dish-grid img:first-child { grid-column: span 1; aspect-ratio: 2/1; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01s !important; transition-duration: 0.01s !important; }
}
