/* ==========================================================================
   La Reine de Saba — shared stylesheet
   One design system for every page: home, menu, booking, contact.
   Palette: deep coffee brown, berbere red, injera gold, warm cream.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Noto+Sans+Ethiopic:wght@400;600&display=swap');

/* ---------- Tokens ---------- */
:root {
  --brown-900: #241511;
  --brown-800: #2e1d1d;
  --brown-700: #442c2e;
  --brown-500: #6b4a3f;

  --gold-600: #a67c1a;
  --gold-500: #c9a227;
  --gold-400: #d4af37;
  --gold-100: #f0e2b8;

  --red-600: #9c3a25;
  --green-700: #2f5d3f;

  --cream-50: #fdfaf5;
  --cream-100: #f7f1e7;
  --cream-200: #efe6d7;
  --line: #e3d8c6;

  --ink: #3a2f2a;
  --ink-soft: #6d5f57;

  --shadow-sm: 0 2px 8px rgba(36, 21, 17, .06);
  --shadow-md: 0 10px 30px rgba(36, 21, 17, .10);
  --shadow-lg: 0 24px 60px rgba(36, 21, 17, .16);

  --radius: 14px;
  --radius-lg: 22px;
  --wrap: 1140px;
  --header-h: 74px;

  --serif: 'Cormorant Garamond', 'Noto Sans Ethiopic', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', 'Noto Sans Ethiopic', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ethiopic: 'Noto Sans Ethiopic', 'Nyala', 'Kefa', sans-serif;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold-600); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--brown-700);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 4.5rem 0; }
.section--tight { padding: 3rem 0; }
.section--cream { background: var(--cream-50); }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: .9rem;
}

.section-title { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: .35em; }
.section-lede { color: var(--ink-soft); max-width: 62ch; }

.center { text-align: center; }
.center .section-lede { margin-left: auto; margin-right: auto; }

/* Small gold rule used under centred headings */
.rule {
  width: 64px; height: 3px; border: 0; margin: 1.2rem auto 2.5rem;
  background: linear-gradient(90deg, var(--gold-400), var(--red-600));
  border-radius: 3px;
}
.rule--left { margin-left: 0; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--gold-400); color: var(--brown-900);
  padding: .75rem 1.25rem; font-weight: 600; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--brown-800);
  border-bottom: 3px solid var(--gold-500);
  box-shadow: 0 2px 18px rgba(0,0,0,.28);
}

.site-header__inner {
  max-width: var(--wrap); margin: 0 auto; padding: .7rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; }

.brand__mark {
  width: 44px; height: 44px; flex: 0 0 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, var(--gold-400), var(--gold-600));
  color: var(--brown-900);
  font-family: var(--ethiopic); font-weight: 600; font-size: 1.15rem;
  box-shadow: 0 0 0 2px rgba(212,175,55,.25);
}

.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  color: var(--gold-400); letter-spacing: .12em; text-transform: uppercase; margin: 0;
}
.brand__tag {
  font-size: .62rem; letter-spacing: .28em; text-transform: uppercase;
  color: #cbb9a6; margin-top: .2rem;
}

.nav__list { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }

.nav__list a {
  display: block; padding: .6rem .95rem;
  font-family: var(--serif); font-size: 1.15rem; font-weight: 500;
  color: #e4dbd0; text-decoration: none; border-radius: 8px;
  position: relative; transition: color .25s ease, background-color .25s ease;
}
.nav__list a::after {
  content: ''; position: absolute; left: 50%; bottom: .32rem; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gold-400); transition: width .25s ease;
}
.nav__list a:hover { color: var(--gold-400); }
.nav__list a:hover::after { width: calc(100% - 1.9rem); }
.nav__list a[aria-current="page"] { color: var(--gold-400); font-weight: 700; }
.nav__list a[aria-current="page"]::after { width: calc(100% - 1.9rem); }

.nav__cta {
  margin-left: .6rem; padding: .55rem 1.15rem !important;
  background: var(--gold-400); color: var(--brown-900) !important;
  font-family: var(--sans) !important; font-size: .85rem !important;
  font-weight: 600 !important; letter-spacing: .04em; border-radius: 999px;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: #e6c860; }

.burger {
  display: none; width: 42px; height: 42px; border: 0; border-radius: 8px;
  background: transparent; cursor: pointer; padding: 10px;
  flex-direction: column; justify-content: space-between;
}
.burger span { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.7rem; border: 2px solid transparent; border-radius: 999px;
  font-family: var(--sans); font-size: .95rem; font-weight: 600; letter-spacing: .02em;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: transform .2s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold { background: var(--gold-400); color: var(--brown-900); box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: #e6c860; box-shadow: var(--shadow-md); }

.btn--dark { background: var(--brown-800); color: #fff; }
.btn--dark:hover { background: var(--brown-900); }

.btn--ghost { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: #fff; color: var(--brown-800); border-color: #fff; }

.btn--outline { background: transparent; color: var(--brown-700); border-color: var(--line); }
.btn--outline:hover { border-color: var(--gold-400); color: var(--gold-600); }

.btn--block { display: flex; width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(78vh, 660px); display: grid; overflow: hidden; }

.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.4s ease-in-out;
  background-size: cover; background-position: center;
  transform: scale(1.04);
}
.hero__slide.is-active { opacity: 1; }

.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,21,17,.72) 0%, rgba(36,21,17,.55) 45%, rgba(36,21,17,.86) 100%);
}

.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--wrap); margin: 0 auto; padding: 5rem 1.5rem 4rem;
  align-self: center; color: #fff; text-align: center;
}

.hero__kicker {
  font-size: .78rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-400); margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  color: #fff; margin: 0 0 .3em; letter-spacing: .02em;
}

.hero__sub {
  font-family: var(--serif); font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  color: #f0e6d8; max-width: 34ch; margin: 0 auto 1.6rem; line-height: 1.5;
}

.hero__meta {
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: center;
  font-size: .92rem; color: #e6dbcd; margin-bottom: 1.8rem;
}
.hero__meta span { display: inline-flex; align-items: center; gap: .45rem; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* Google rating badge */
.rating-badge {
  display: inline-flex; align-items: center; gap: .85rem;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
  padding: .6rem 1.1rem; border-radius: 999px; text-decoration: none;
  color: #fff; margin-bottom: 1.5rem; transition: background-color .25s ease;
}
.rating-badge:hover { background: rgba(255,255,255,.2); }
.rating-badge__score { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--gold-400); line-height: 1; }
.rating-badge__stars { color: var(--gold-400); letter-spacing: .08em; font-size: .9rem; }
.rating-badge__label { font-size: .78rem; color: #ddd2c4; }

/* ---------- Quick action strip ---------- */
.actions-strip { background: var(--brown-900); padding: 0; }
.actions-strip__grid {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.action-tile {
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
  padding: 1.6rem 1rem; text-decoration: none; color: #efe6da;
  border-right: 1px solid rgba(255,255,255,.09);
  transition: background-color .25s ease, color .25s ease;
}
.action-tile:last-child { border-right: 0; }
.action-tile:hover { background: rgba(212,175,55,.14); color: var(--gold-400); }
.action-tile__icon { font-size: 1.4rem; line-height: 1; }
.action-tile__label { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
.action-tile__note { font-size: .76rem; color: #a89684; letter-spacing: .04em; }
.action-tile:hover .action-tile__note { color: #cbb590; }

/* ---------- Split (about) ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 100%; object-fit: cover; max-height: 560px; }
.split__media::before {
  content: ''; position: absolute; inset: 18px -18px -18px 18px;
  border: 2px solid var(--gold-400); border-radius: var(--radius-lg); z-index: -1;
}

/* Monogram seal sitting on the corner of the portrait */
.split__badge {
  position: absolute; left: -28px; bottom: 34px; z-index: 3;
  width: 96px; height: 96px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 35% 28%, var(--gold-400), var(--gold-600));
  color: var(--brown-900);
  font-family: var(--ethiopic); font-size: 2.5rem; font-weight: 600; line-height: 1;
  box-shadow: 0 12px 30px rgba(36, 21, 17, .38), 0 0 0 7px var(--cream-100);
}

.about-facts { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: .7rem; }
.about-facts li { display: flex; gap: .75rem; align-items: flex-start; }
.about-facts li::before { content: '◆'; color: var(--gold-400); font-size: .7rem; margin-top: .55em; }

/* ---------- Cards / dishes ---------- */
.grid { display: grid; gap: 1.75rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.dish-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dish-card__img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.dish-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.dish-card__body h3 { font-size: 1.45rem; margin-bottom: .15rem; }
.dish-card__native { font-size: .9rem; color: var(--gold-600); margin: 0 0 .7rem; letter-spacing: .02em; }
.dish-card__body p { margin: 0 0 1.2rem; font-size: .95rem; color: var(--ink-soft); }
.dish-card__price {
  margin-top: auto; font-family: var(--serif); font-size: 1.3rem;
  font-weight: 700; color: var(--brown-700);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 1rem;
}
.gallery figure {
  margin: 0; position: relative; overflow: hidden;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  aspect-ratio: 1;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.8rem .9rem .85rem; font-size: .85rem; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(36,21,17,.85));
}
/* The lead image takes a 2×2 block on the left */
.gallery .gallery__feature { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* ---------- Reviews ---------- */
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.9rem; box-shadow: var(--shadow-sm); position: relative;
}
.review-card::before {
  content: '\201C'; position: absolute; top: -.15em; right: .35em;
  font-family: var(--serif); font-size: 6rem; color: var(--cream-200); line-height: 1;
}
.review-card__stars { color: var(--gold-400); letter-spacing: .12em; margin-bottom: .8rem; }
.review-card blockquote { margin: 0 0 1rem; font-family: var(--serif); font-size: 1.2rem; line-height: 1.55; color: var(--brown-700); position: relative; z-index: 1; }
.review-card__trans { font-size: .9rem; color: var(--ink-soft); font-style: italic; margin: 0 0 1rem; }
.review-card cite { font-size: .82rem; color: var(--ink-soft); font-style: normal; letter-spacing: .04em; }

/* ---------- Info panel (hours / address) ---------- */
.info-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }

.info-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 2rem 1.75rem; box-shadow: var(--shadow-sm);
}
.info-card h3 { font-size: 1.6rem; margin-bottom: 1rem; }

.hours-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours-table th, .hours-table td { padding: .6rem 0; text-align: left; border-bottom: 1px dashed var(--line); font-weight: 400; }
.hours-table td { text-align: right; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.hours-table tr.is-today th, .hours-table tr.is-today td { color: var(--gold-600); font-weight: 600; }

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list .ic { font-size: 1.15rem; line-height: 1.4; }
.contact-list a { color: var(--brown-700); text-decoration: none; border-bottom: 1px solid var(--gold-400); }
.contact-list a:hover { color: var(--gold-600); }
.contact-list small { display: block; color: var(--ink-soft); font-size: .82rem; }

.map-embed { border: 0; width: 100%; height: 320px; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-top: 1.5rem; }

/* ---------- Ribbon CTA ---------- */
.ribbon {
  background: linear-gradient(135deg, var(--brown-800), var(--brown-900) 60%, #3b2420);
  color: #fff; text-align: center; padding: 4rem 1.5rem;
  border-top: 3px solid var(--gold-500); border-bottom: 3px solid var(--gold-500);
}
.ribbon h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); }
.ribbon p { color: #ddd0c0; max-width: 52ch; margin: 0 auto 1.8rem; }
.ribbon .btn-row { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Menu page ---------- */
.page-head {
  background: var(--brown-800); color: #fff; padding: 3.5rem 1.5rem 3rem; text-align: center;
  border-bottom: 3px solid var(--gold-500);
}
.page-head h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: .25em; }
.page-head p { color: #ddd0c0; max-width: 60ch; margin: 0 auto; }

.menu-nav {
  position: sticky; top: var(--header-h); z-index: 900;
  background: var(--cream-50); border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.menu-nav__scroll {
  max-width: var(--wrap); margin: 0 auto; padding: .75rem 1.5rem;
  display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: thin;
}
.menu-nav a {
  flex: 0 0 auto; padding: .45rem 1rem; border-radius: 999px;
  border: 1px solid var(--line); font-size: .85rem; font-weight: 500;
  color: var(--brown-700); text-decoration: none; white-space: nowrap;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.menu-nav a:hover { background: var(--gold-400); border-color: var(--gold-400); color: var(--brown-900); }

.menu-course { padding: 3.5rem 0 0; }
.menu-course__head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 2rem; }
.menu-course__head h2 { font-size: 2.1rem; margin: 0; white-space: nowrap; max-width: 100%; }
.menu-course__head::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.menu-course__note { font-size: .88rem; color: var(--ink-soft); margin: -1.2rem 0 2rem; }

.menu-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: .25rem 3rem; }

.menu-row {
  display: grid; grid-template-columns: 1fr auto; gap: .5rem 1rem;
  padding: 1.1rem 0; border-bottom: 1px dashed var(--line); align-items: baseline;
}
.menu-row__name { font-family: var(--serif); font-size: 1.28rem; font-weight: 600; color: var(--brown-700); margin: 0; }
.menu-row__latin { font-family: var(--ethiopic); font-size: .82rem; color: var(--gold-600); letter-spacing: .04em; margin: .18rem 0 0; }
.dish-card__native { font-family: var(--ethiopic); }
.menu-row__desc { grid-column: 1 / -1; font-size: .9rem; color: var(--ink-soft); margin: .45rem 0 0; max-width: 52ch; }
.menu-row__price { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--brown-700); white-space: nowrap; }

.tag {
  display: inline-block; margin-left: .5rem; padding: .1rem .5rem;
  font-family: var(--sans); font-size: .62rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; border-radius: 4px; vertical-align: middle;
}
.tag--veg { background: #e6f0e6; color: var(--green-700); }
.tag--spicy { background: #f8e4de; color: var(--red-600); }
.tag--raw { background: var(--cream-200); color: var(--brown-500); }

.drink-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: .1rem 2.5rem; }
.drink-row { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 1px dashed var(--line); font-size: .96rem; }
.drink-row span:last-child { font-weight: 600; color: var(--brown-700); white-space: nowrap; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.15rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }

label { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--brown-500); margin-bottom: .4rem; }

input, select, textarea {
  width: 100%; padding: .85rem 1rem; font-family: var(--sans); font-size: 1rem;
  color: var(--ink); background: var(--cream-50);
  border: 1px solid var(--line); border-radius: 10px;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none; background: #fff;
  border-color: var(--gold-400); box-shadow: 0 0 0 3px rgba(212,175,55,.18);
}
textarea { resize: vertical; min-height: 120px; }

.form-note { font-size: .84rem; color: var(--ink-soft); margin-top: 1rem; }

.alert {
  display: none; margin-top: 1.25rem; padding: 1rem 1.25rem;
  border-radius: 10px; font-size: .95rem; font-weight: 500;
  opacity: 0; transform: translateY(-6px); transition: opacity .4s ease, transform .4s ease;
}
.alert.is-visible { display: block; opacity: 1; transform: translateY(0); }
.alert--ok { background: #eaf5ec; border: 1px solid #7fb98d; color: #25603a; }
.alert--err { background: #fbeae7; border: 1px solid #d98b78; color: #8f3320; }

.aside-card {
  background: var(--brown-800); color: #eee3d6; border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-md);
}
.aside-card h3 { color: var(--gold-400); font-size: 1.5rem; }
.aside-card a { color: var(--gold-400); }
.aside-card .hours-table th, .aside-card .hours-table td { border-bottom-color: rgba(255,255,255,.14); color: #eee3d6; }
.aside-card .hours-table tr.is-today th, .aside-card .hours-table tr.is-today td { color: var(--gold-400); }
.aside-card .contact-list a { color: #fff; border-bottom-color: var(--gold-400); }

.form-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 2.5rem; align-items: start; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brown-900); color: #cbbcae; padding: 4rem 0 0; border-top: 3px solid var(--gold-500); }
.site-footer h4 {
  color: var(--gold-400); font-family: var(--sans); font-size: .78rem;
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-grid a { color: #cbbcae; text-decoration: none; font-size: .93rem; }
.footer-grid a:hover { color: var(--gold-400); }
.footer-about p { font-size: .93rem; line-height: 1.7; margin: .5rem 0 0; }
.footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: .3rem; }

.footer-bottom {
  margin-top: 3rem; border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0; font-size: .82rem; color: #9a8b7d;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split__media::before { display: none; }
  .split__badge { left: auto; right: 20px; bottom: 20px; width: 78px; height: 78px; font-size: 2rem; box-shadow: 0 10px 24px rgba(36,21,17,.4), 0 0 0 5px rgba(247,241,231,.92); }
  .info-panel { grid-template-columns: 1fr; gap: 1.75rem; }
  .form-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .gallery__feature { grid-column: span 2; grid-row: span 1; aspect-ratio: 16 / 10; }
}

@media (max-width: 860px) {
  .burger { display: flex; }

  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--brown-800); border-bottom: 3px solid var(--gold-500);
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
  }
  .nav.is-open { max-height: 70vh; overflow-y: auto; }
  .nav__list { flex-direction: column; align-items: stretch; padding: .5rem 1rem 1.25rem; gap: 0; }
  .nav__list a { padding: .95rem .5rem; border-bottom: 1px solid rgba(255,255,255,.08); border-radius: 0; }
  .nav__list a::after { display: none; }
  .nav__cta { margin: .9rem 0 0; border-radius: 10px; text-align: center; }

  .actions-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .action-tile:nth-child(2) { border-right: 0; }
  .action-tile:nth-child(1), .action-tile:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.09); }

  .menu-nav { top: 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 3.25rem 0; }
  .brand__name { font-size: 1.05rem; letter-spacing: .08em; }
  .brand__tag { font-size: .55rem; }
  .hero { min-height: 74vh; }
  .hero__inner { padding: 4rem 1.25rem 3rem; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.75rem 1.35rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .gallery { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .menu-course__head { display: block; }
  .menu-course__head h2 { white-space: normal; font-size: 1.7rem; }
  .menu-course__head::after { display: block; content: ''; height: 1px; background: var(--line); margin-top: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
