/* =========================================================
   Sheikh Al Arab — Catalogue site
   كافيه شيخ العرب · simple static HTML
   Arabic RTL · cream + gold + ink
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Tajawal:wght@300;400;500;700;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  /* ---- Cream: warm paper, unchanged ---- */
  --bg-cream:    #F3EDE0;   /* page — warm linen */
  --bg-paper:    #FAF6EE;   /* cards — warm paper */
  --bg-sand:     #E5DCCA;   /* sand accent */

  /* ---- Deep navy (replaces espresso) ---- */
  --bg-ink:      #0E1C38;   /* deepest — footer base, body of dark sections */
  --bg-ink-soft: #152948;   /* header & raised dark surfaces */
  --bg-ink-warm: #1E3255;   /* lifted accent on dark, for inner gradients */

  /* ---- Navy inks (text) ---- */
  --ink-1:       #0E1C38;
  --ink-2:       #1E3255;
  --ink-3:       #5A7099;
  --ink-on-dark: #F3EDE0;
  --ink-on-dark-2: #B0C0D8;

  /* ---- Gold: unchanged — the soul of the brand ---- */
  --gold:        #CFA24C;   /* primary */
  --gold-deep:   #9C7423;   /* hover / pressed on light bg */
  --gold-soft:   #E8CE8A;   /* tint */
  --gold-wash:   #F2E2B8;   /* very light fill */

  /* ---- Optional accent: deep persimmon for tiny moments ---- */
  --accent:      #B85A2D;

  /* ---- Lines & shadows (navy-tinted) ---- */
  --line:        rgba(14, 28, 56, 0.10);
  --line-strong: rgba(14, 28, 56, 0.22);

  --shadow-sm:   0 1px 2px rgba(14,28,56,.06);
  --shadow-md:   0 8px 22px rgba(14,28,56,.10), 0 2px 4px rgba(14,28,56,.05);
  --shadow-lg:   0 24px 56px rgba(14,28,56,.18), 0 6px 12px rgba(14,28,56,.08);

  --font-display: "Amiri", "Cormorant Garamond", serif;
  --font-body:    "Tajawal", system-ui, -apple-system, sans-serif;
  --font-latin:   "Cormorant Garamond", "Tajawal", serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { direction: rtl; }
body {
  background: var(--bg-cream);
  color: var(--ink-1);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 160ms ease, opacity 160ms ease; }
a:hover { color: var(--gold-deep); }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold-soft); color: var(--ink-1); }

/* =================== Typography =================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-1);
  line-height: 1.15;
  margin: 0;
}
h1 { font-size: clamp(40px, 6vw, 88px); letter-spacing: -0.005em; }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2.4vw, 28px); }
p  { color: var(--ink-2); font-size: 16px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
}
.tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink-3);
  font-weight: 400;
}
.latin {
  font-family: var(--font-latin);
  direction: ltr;
  unicode-bidi: isolate;
  font-variant-numeric: lining-nums;
}

/* =================== Layout =================== */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

section { padding: 96px 0; }

/* =================== Header =================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg-ink-soft);
  border-bottom: 1px solid rgba(207, 162, 76, 0.45);
  color: var(--ink-on-dark);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px; max-width: 1240px; margin: 0 auto; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img {
  width: 56px; height: 56px; object-fit: contain;
  background: var(--bg-cream); border-radius: 50%; padding: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.brand-text { line-height: 1; flex-shrink: 0; }
.brand-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; color: var(--ink-on-dark);
  white-space: nowrap;
}
.brand-sub {
  margin-top: 4px; font-size: 11px; letter-spacing: 0.22em;
  color: var(--gold); font-weight: 600;
  white-space: nowrap;
}
nav.main-nav { display: flex; gap: 36px; align-items: center; }
nav.main-nav a {
  font-size: 15px; font-weight: 500; color: var(--ink-on-dark);
  position: relative; padding: 8px 2px;
}
nav.main-nav a:hover { color: var(--gold); }
nav.main-nav a.active { color: var(--gold); }
nav.main-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold); border-radius: 2px;
}

/* =================== Buttons =================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; border: none;
  font-family: var(--font-body); font-weight: 700;
  font-size: 14px; letter-spacing: 0.04em;
  white-space: nowrap;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease;
}
.btn:hover  { filter: brightness(0.97); }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--ink-1); color: var(--ink-on-dark); }
.btn-gold {
  background: var(--gold); color: var(--ink-1);
  box-shadow: 0 10px 28px rgba(166,130,46,0.32);
}
.btn-outline {
  background: transparent; color: var(--ink-1);
  border: 1px solid var(--ink-1);
}

/* =================== Ornament divider =================== */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; color: var(--gold-deep); margin: 32px auto;
}
.ornament::before, .ornament::after {
  content: ""; flex: 1; max-width: 120px; height: 1px;
  background: currentColor; opacity: 0.5;
}
.ornament svg { width: 28px; height: 28px; }

/* =================== Arabesque pattern bg =================== */
.bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  color: var(--gold); opacity: 0.13;
}

/* =================== Cards =================== */
.card {
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

/* =================== Hero =================== */
.hero {
  position: relative; overflow: hidden;
  padding: 80px 0 100px;
  background: var(--bg-cream);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-eyebrow { margin-bottom: 24px; }
.hero h1 { margin-bottom: 18px; }
.hero h1 em { color: var(--gold-deep); font-style: italic; }
.hero-lede {
  font-size: 19px; line-height: 1.7; color: var(--ink-2);
  max-width: 520px; margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-status {
  display: flex; align-items: center; gap: 8px;
  margin-right: 8px; font-size: 13px; color: var(--ink-3);
}
.hero-status::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: #7AB87A;
}

.hero-photo {
  position: relative; aspect-ratio: 4/5;
  border-radius: 16px 16px 280px 280px;
  background:
    url('https://images.unsplash.com/photo-1485808191679-5f86510681a2?w=1200&auto=format&fit=crop&q=80') center/cover,
    #0E1C38;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo .photo-ring {
  position: absolute; inset: 22px; pointer-events: none;
  border: 1px solid rgba(245,239,228,0.22);
  border-radius: 8px 8px 260px 260px;
}
.hero-photo .photo-caption {
  position: absolute; left: 0; right: 0; top: 64px; text-align: center;
  color: var(--ink-on-dark);
  text-shadow: 0 2px 12px rgba(0,0,0,0.65);
}
.hero-photo .photo-caption .wordmark {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 4.5vw, 52px); color: var(--gold-soft);
  line-height: 1;
}
.hero-photo .photo-caption .wordmark-sub {
  margin-top: 18px; font-size: 11px; letter-spacing: 0.32em;
  color: var(--ink-on-dark); font-weight: 600;
}
.hero-photo .photo-ring {
  position: absolute; inset: 22px; pointer-events: none;
  border: 1px solid rgba(201,162,75,0.32);
  border-radius: 8px 8px 260px 260px;
}
.hero-photo .photo-caption {
  position: absolute; left: 0; right: 0; bottom: 28px; text-align: center;
  color: var(--ink-on-dark);
}
.hero-photo .photo-caption .badge {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.32em; color: var(--gold-soft);
  border: 1px solid rgba(201,162,75,0.45);
  border-radius: 999px; padding: 5px 14px;
}

.hero-quote {
  position: absolute; right: -28px; bottom: -32px;
  width: 280px; padding: 22px 24px;
  background: var(--bg-paper); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-md);
}
.hero-quote-text {
  font-family: var(--font-display); font-style: italic;
  font-size: 19px; line-height: 1.45; color: var(--ink-1);
}
.hero-quote-meta {
  margin-top: 12px; font-size: 11px; letter-spacing: 0.22em;
  color: var(--gold-deep); font-weight: 700;
}

/* =================== Pillars =================== */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  text-align: center;
}
.pillar-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 36px; color: var(--gold); font-weight: 500;
}
.pillar-title {
  margin-top: 10px; font-family: var(--font-display); font-weight: 700;
  font-size: 24px; color: var(--ink-1);
}
.pillar-desc {
  margin-top: 8px; font-size: 15px; color: var(--ink-3); line-height: 1.7;
}

/* =================== Featured menu =================== */
.featured-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: var(--bg-paper); border: 1px solid var(--line);
  border-radius: 16px; padding: 28px; transition: transform 220ms ease, box-shadow 220ms ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-mark {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold-wash); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
}
.feature-mark svg { width: 28px; height: 28px; }
.feature-name {
  margin-top: 18px; font-family: var(--font-display); font-weight: 700;
  font-size: 24px; color: var(--ink-1);
}
.feature-desc {
  margin-top: 8px; font-size: 14px; color: var(--ink-3); line-height: 1.6;
}
.feature-foot {
  margin-top: 18px; display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.feature-price {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; color: var(--gold-deep);
}
.feature-price small {
  font-family: var(--font-body); font-size: 11px;
  color: var(--ink-3); margin-right: 4px; font-weight: 600;
}

/* =================== Dark section =================== */
.section-dark {
  background: var(--bg-ink); color: var(--ink-on-dark);
  position: relative; overflow: hidden;
}
.section-dark h2, .section-dark h3 { color: var(--ink-on-dark); }
.section-dark p { color: rgba(242, 232, 210, 0.72); }

/* =================== CTA bar =================== */
.cta-bar {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px;
  align-items: center; position: relative;
}
.cta-info-row {
  display: flex; align-items: flex-start; gap: 14px; margin-top: 28px;
}
.cta-info-row + .cta-info-row { padding-top: 24px; border-top: 1px solid rgba(245,239,228,0.12); }
.cta-info-label {
  font-size: 11px; letter-spacing: 0.22em; color: var(--gold); font-weight: 700;
  min-width: 110px;
}
.cta-info-value { font-size: 16px; color: var(--ink-on-dark); line-height: 1.7; flex: 1; }

/* =================== Menu page =================== */
.menu-page-head {
  text-align: center; padding: 120px 0 56px;
  background: var(--bg-paper); border-bottom: 1px solid var(--line);
}
.menu-page-head h1 { margin-bottom: 14px; }
.menu-page-head .tagline { max-width: 640px; margin: 0 auto; }

.menu-tabs {
  position: sticky; top: 88px; z-index: 40;
  background: rgba(251,248,241,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.menu-tabs-inner {
  display: flex; gap: 6px; overflow-x: auto;
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
  scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
}
.menu-tabs-inner a {
  flex-shrink: 0; padding: 8px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  border: 1px solid transparent;
  white-space: nowrap;
}
.menu-tabs-inner a:hover { background: var(--gold-wash); color: var(--gold-deep); }

.menu-section { padding: 80px 0; }
.menu-section:nth-child(even) { background: var(--bg-paper); }
.menu-section-head { text-align: center; margin-bottom: 56px; }
.menu-section-head h2 { margin-bottom: 12px; }
.menu-section-head .latin {
  font-size: 13px; letter-spacing: 0.32em; color: var(--gold-deep);
  text-transform: uppercase; font-weight: 600;
}

.menu-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: 64px; row-gap: 28px;
}
.menu-item {
  display: grid; grid-template-columns: 1fr auto; gap: 12px;
  align-items: baseline; padding-bottom: 8px;
}
.menu-item-head {
  display: flex; align-items: baseline; gap: 12px;
  min-width: 0;
}
.menu-item-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; color: var(--ink-1);
  flex-shrink: 0;
}
.menu-item-tag {
  flex-shrink: 0;
  padding: 3px 9px; background: var(--gold-wash); color: var(--gold-deep);
  border-radius: 999px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em;
}
.menu-item-dots {
  flex: 1; min-width: 24px;
  border-bottom: 1px dotted rgba(26,22,18,0.25);
  transform: translateY(-4px);
}
.menu-item-price {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; color: var(--gold-deep);
  white-space: nowrap;
}
.menu-item-price small {
  font-family: var(--font-body); font-size: 11px;
  color: var(--ink-3); margin-right: 4px; font-weight: 600;
}
.menu-item-desc {
  grid-column: 1 / -1;
  margin-top: 2px; font-size: 13px; color: var(--ink-3); line-height: 1.6;
}

/* =================== About page =================== */
.about-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: var(--bg-paper);
}
.about-hero h1 em { color: var(--gold-deep); font-style: italic; }
.about-lede {
  max-width: 720px; margin: 24px auto 0;
  font-size: 19px; line-height: 1.8; color: var(--ink-2);
}
.about-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 1/1;
  background:
    url('assets/storefront.png') 75% center/cover,
    #0E1C38;
  border-radius: 16px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo .photo-tag {
  position: absolute; bottom: 24px; right: 24px;
  font-size: 11px; letter-spacing: 0.32em; color: var(--ink-on-dark);
  background: rgba(26,22,18,0.55); backdrop-filter: blur(6px);
  border: 1px solid rgba(201,162,75,0.45);
  border-radius: 999px; padding: 8px 16px;
}
.about-photo .photo-tag {
  position: absolute; bottom: 24px; right: 24px;
  font-size: 11px; letter-spacing: 0.32em; color: var(--gold-soft);
  border: 1px solid rgba(201,162,75,0.4);
  border-radius: 999px; padding: 6px 14px;
}

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 48px;
}
.value-card {
  background: var(--bg-paper); border: 1px solid var(--line);
  border-radius: 16px; padding: 32px;
}
.value-icon {
  width: 48px; height: 48px; color: var(--gold-deep); margin-bottom: 16px;
}
.value-card h3 { margin-bottom: 10px; }
.value-card p { color: var(--ink-3); line-height: 1.7; }

/* =================== Contact page =================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
}
.contact-block { padding: 0 0 24px; }
.contact-block + .contact-block { padding-top: 24px; border-top: 1px solid var(--line); }
.contact-label {
  font-size: 11px; letter-spacing: 0.32em; color: var(--gold-deep); font-weight: 700;
  margin-bottom: 10px;
}
.contact-value { font-size: 19px; color: var(--ink-1); line-height: 1.7; }
.contact-value a:hover { color: var(--gold-deep); }

.hours-table {
  width: 100%; border-collapse: collapse;
}
.hours-table tr { border-bottom: 1px solid var(--line); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 14px 0; font-size: 15px; }
.hours-table td:first-child { color: var(--ink-1); font-weight: 600; }
.hours-table td:last-child { color: var(--ink-2); text-align: left; font-family: var(--font-latin); font-variant-numeric: lining-nums; }
.hours-table tr.today { color: var(--gold-deep); }
.hours-table tr.today td { color: var(--gold-deep); font-weight: 700; }

.map-frame {
  aspect-ratio: 4/3;
  background: var(--bg-ink);
  border-radius: 16px; overflow: hidden;
  position: relative;
}
.map-frame iframe { width: 100%; height: 100%; border: none; }

.order-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 24px;
}
.order-link {
  background: var(--bg-paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: border-color 200ms, background 200ms, transform 200ms;
}
.order-link:hover { background: var(--gold-wash); border-color: var(--gold); transform: translateY(-2px); }
.order-link-name {
  font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink-1);
}
.order-link-meta { font-size: 12px; color: var(--ink-3); margin-top: 2px; }

/* =================== Footer =================== */
.site-footer {
  background: var(--bg-ink-soft);
  color: rgba(242, 232, 210, 0.72);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(207, 162, 76, 0.45);
  position: relative; overflow: hidden;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { width: 84px; opacity: 0.95; margin-bottom: 16px; }
.footer-brand p { color: rgba(242, 232, 210, 0.6); max-width: 280px; }
.footer-col h4 {
  color: var(--gold); font-size: 12px; letter-spacing: 0.22em;
  font-family: var(--font-body); font-weight: 700; margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--ink-on-dark); font-size: 14px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(242, 232, 210, 0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(242, 232, 210, 0.5);
}

/* =================== Atmosphere / Gallery =================== */
.atmos-grid {
  display: grid; grid-template-columns: 1fr 1.65fr;
  gap: 80px; align-items: center;
}
.atmos-photos {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px; height: 460px;
}
.atmos-photo-main {
  grid-row: 1 / 3; border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.atmos-photo-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.atmos-photo-sm { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); }
.atmos-photo-sm img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =================== Reviews =================== */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.review-card {
  background: var(--bg-cream); border: 1px solid var(--line);
  border-radius: 16px; padding: 28px;
  display: flex; flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars {
  color: var(--gold); font-size: 15px;
  letter-spacing: 3px; margin-bottom: 16px;
}
.review-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: 19px; line-height: 1.55; color: var(--ink-1);
  margin: 0 0 auto; padding-bottom: 20px;
}
.review-author { padding-top: 16px; border-top: 1px solid var(--line); }
.review-name { font-weight: 700; font-size: 14px; color: var(--ink-1); }
.review-meta { font-size: 12px; color: var(--ink-3); margin-top: 3px; }

/* =================== Nav Toggle (hamburger) =================== */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer;
  padding: 6px; border-radius: 8px; color: var(--ink-on-dark);
  transition: background 160ms;
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform 240ms cubic-bezier(.23,1,.32,1), opacity 200ms;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =================== Mobile · 880px =================== */
@media (max-width: 880px) {
  section { padding: 64px 0; }
  .wrap, .wrap-narrow { padding-left: 20px; padding-right: 20px; }
  .header-inner { padding: 14px 20px; }
  .menu-tabs-inner { padding-left: 20px; padding-right: 20px; }

  .brand img { width: 44px; height: 44px; }
  .brand-name { font-size: 18px; }

  .hero { padding: 48px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { aspect-ratio: 5/4; border-radius: 12px 12px 200px 200px; }
  .hero-quote { position: static; width: auto; margin-top: 20px; }
  .hero-lede { font-size: 17px; }

  .pillars { grid-template-columns: 1fr; gap: 32px; }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .atmos-grid { grid-template-columns: 1fr; gap: 40px; }
  .atmos-photos { height: 280px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .cta-bar { grid-template-columns: 1fr; gap: 40px; }

  .menu-grid { grid-template-columns: 1fr; column-gap: 0; }
  .menu-tabs { top: 72px; }
  .menu-page-head { padding: 80px 0 40px; }

  .about-hero { padding: 80px 0 48px; }
  .about-cols { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .order-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }

  h1 { font-size: 42px; }
  h2 { font-size: 30px; }
}

/* =================== Mobile · 768px (hamburger nav) =================== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  nav.main-nav {
    display: none;
    position: absolute; top: 100%; right: 0; left: 0;
    background: linear-gradient(180deg, var(--bg-ink) 0%, rgba(14,28,56,0.98) 100%);
    flex-direction: column; gap: 0;
    border-top: 2px solid var(--gold);
    padding: 12px 8px 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(207,162,76,0.1);
    z-index: 49;
  }
  nav.main-nav.is-open { display: flex; }
  nav.main-nav a {
    padding: 14px 20px; font-size: 16px;
    color: var(--ink-on-dark);
    border: none;
    position: relative;
    transition: all 220ms cubic-bezier(0.23,1,0.32,1);
    margin: 3px 8px;
    border-radius: 12px;
  }
  nav.main-nav a:hover {
    background: rgba(207,162,76,0.18);
    transform: scale(0.95) translateX(-3px);
    color: var(--gold);
    box-shadow: inset 0 0 10px rgba(207,162,76,0.15);
  }
  nav.main-nav a.active {
    background: rgba(207,162,76,0.3);
    color: var(--gold);
    font-weight: 600;
    box-shadow: inset 0 0 14px rgba(207,162,76,0.25);
    border-inline-end: 3px solid var(--gold);
    padding-inline-end: 17px;
  }
  nav.main-nav a.active::after { display: none; }
}

/* =================== Mobile · 480px (small phones) =================== */
@media (max-width: 480px) {
  section { padding: 48px 0; }
  .wrap, .wrap-narrow { padding-left: 16px; padding-right: 16px; }
  .header-inner { padding: 12px 16px; }
  .menu-tabs-inner { padding-left: 16px; padding-right: 16px; }

  h1 { font-size: clamp(28px, 8vw, 38px); }
  h2 { font-size: clamp(22px, 6vw, 28px); }

  .hero { padding: 32px 0 48px; }
  .hero-lede { font-size: 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }

  .featured-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .order-grid { grid-template-columns: 1fr; }
  .atmos-photos { height: 220px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  .menu-tabs { top: 68px; }
  .cta-info-label { min-width: 80px; font-size: 10px; }
}
