/* Little Persia — sister craft to Reflets, own brand (not teal clone) */
:root {
  --primary: #8B1E3F;
  --primary-dark: #6E1832;
  --primary-deep: #4A1022;
  --saffron: #C8922A;
  --saffron-deep: #9A6E1C;
  --ink: #1A1412;
  --ink-2: #3A302C;
  --muted: #6B5E56;
  --bg: #F7F1EA;
  --surface: #FFFCF8;
  --surface-2: #F0E6DA;
  --border: #E2D4C4;
  --accent: var(--saffron);
  --on-dark: #FBF6F0;
  --night: #2A1520;
  --night-deep: #1F0F18;
  --night-soft: #3A1C2A;
  --header-h: 100px;
  --logo-h: 92px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(26,20,18,.08);
  --shadow-lg: 0 22px 50px rgba(26,20,18,.12);
  --font-d: "Playfair Display SC", Georgia, serif;
  --font-b: Karla, system-ui, sans-serif;
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --max: 1180px;
  --focus: 2px solid var(--saffron);
  --t: .18s ease;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, a, .btn { cursor: pointer; }
h1,h2,h3,h4 {
  font-family: var(--font-d);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .04em;
  margin: 0;
  text-transform: uppercase;
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.skip {
  position: absolute; left: -999px; top: 0;
  background: #000; color: #fff; padding: .6rem 1rem; z-index: 99;
}
.skip:focus { left: .75rem; top: .75rem; outline: var(--focus); }
.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: #2A1520;
  min-height: var(--header-h);
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(200,146,42,.28);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem 1rem;
  width: min(var(--max), calc(100% - 1.5rem));
  margin-inline: auto;
  padding: .35rem 0;
  min-height: var(--header-h);
  position: relative;
}
.logo {
  display: flex; align-items: center; gap: .85rem;
  text-decoration: none; color: var(--on-dark);
}
.logo img {
  height: var(--logo-h); width: auto; max-width: min(190px, 42vw);
  object-fit: contain;
}

.logo-link {
  display: flex; align-items: center; gap: .85rem;
  text-decoration: none; color: var(--on-dark);
  flex-shrink: 0;
}
.logo-link img {
  height: var(--logo-h);
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
  display: block;
}

.logo-text { display: none; }
.nav {
  display: flex; align-items: center; gap: .15rem .85rem;
  list-style: none; margin: 0; padding: 0;
}
.nav a {
  color: rgba(251,246,240,.88);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  padding: .45rem .2rem;
  border-bottom: 2px solid transparent;
}
.nav a[aria-current="page"], .nav a:hover {
  color: #fff;
  border-bottom-color: var(--saffron);
}
.header-actions { display: flex; align-items: center; gap: .65rem; }
.nav-toggle {
  display: none;
  background: transparent; border: 1px solid rgba(251,246,240,.35);
  color: var(--on-dark); border-radius: 999px;
  padding: .55rem .9rem; font: inherit;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4rem;
  min-height: 44px;
  padding: .7rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit; font-weight: 600;
  text-decoration: none;
  transition: transform var(--t), background var(--t), color var(--t), border-color var(--t);
}
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: var(--focus); outline-offset: 3px;
}
.btn-primary {
  background: var(--saffron); color: #1a1208; border-color: var(--saffron);
}
.btn-primary:hover { background: #d9a53a; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--on-dark); }
.btn-dark {
  background: var(--primary-deep); color: var(--on-dark); border-color: var(--primary-deep);
}
.btn-ghost {
  background: transparent; color: var(--on-dark); border-color: rgba(251,246,240,.4);
}
.nav-cta { white-space: nowrap; }
main { flex: 1; }
.hero {
  position: relative; min-height: min(78vh, 720px);
  display: grid; align-items: end;
  color: var(--on-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  object-position: 55% 48%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,10,12,.72) 0%, rgba(20,10,12,.45) 38%, rgba(20,10,12,.18) 62%, rgba(20,10,12,.28) 100%),
    linear-gradient(180deg, rgba(18,10,10,.20) 0%, rgba(18,10,10,.35) 40%, rgba(18,10,10,.72) 100%);
}
.hero .wrap {
  position: relative; z-index: 1;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}
.kicker, .badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: var(--saffron);
  margin: 0 0 .85rem;
}
.hero .kicker { color: #f0d49a; }
.hero h1 {
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  max-width: 14ch;
  margin-bottom: 1rem;
}
.hero-meta, .lead {
  max-width: 38rem;
  font-size: 1.05rem;
  color: rgba(251,246,240,.9);
}
.lead { color: var(--ink-2); }
.hero-actions, .actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-top: 1.35rem;
}
.section {
  padding: clamp(2.75rem, 6vw, 4.75rem) 0;
}
.section-tight { padding: clamp(2rem, 4vw, 3rem) 0; }
.band { background: var(--surface); }
.band-soft { background: var(--surface-2); }
.band-dark {
  background: linear-gradient(160deg, #1F0F18 0%, #2A1520 50%, #3A1C2A 100%);
  color: var(--on-dark);
}
.band-dark .kicker { color: #e8c57a; }
.band-dark .lead, .band-dark p { color: rgba(251,246,240,.86); }
.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.grid-2.rev > :first-child { order: 2; }
.grid-2.rev > :last-child { order: 1; }
.media {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface-2);
}
.media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.media.portrait img { aspect-ratio: 3/4; }
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex; flex-direction: column;
}
.card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.card-body { padding: 1rem 1.05rem 1.15rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.card h3 { font-size: 1rem; }
.card p { color: var(--muted); font-size: .95rem; }
.card-link { text-decoration: none; color: inherit; height: 100%; display: block; }
.card-link:hover .card { border-color: rgba(139,30,63,.35); transform: translateY(-2px); }
.card-link .card { transition: transform var(--t), border-color var(--t); }
.page-hero {
  padding: clamp(2.2rem, 5vw, 3.5rem) 0 1.25rem;
}
.page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin-bottom: .75rem;
}
.page-hero .lead { max-width: 40rem; }
.menu-cat { margin: 2.25rem 0 0; }
.menu-cat h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  color: var(--primary-deep);
  border-bottom: 1px solid var(--border);
  padding-bottom: .55rem;
  margin-bottom: .85rem;
}
.dish {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .35rem 1rem;
  padding: .85rem 0;
  border-bottom: 1px dashed rgba(139,30,63,.14);
}
.dish h3 {
  font-family: var(--font-b);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.02rem;
  font-weight: 700;
}
.dish .desc { color: var(--muted); font-size: .94rem; grid-column: 1 / -1; }
.dish .price {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}
.menu-index {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 1rem 0 1.5rem;
}
.menu-index a {
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: .45rem .85rem;
  font-size: .9rem;
}
.menu-index a:hover { border-color: var(--primary); color: var(--primary); }
.fait-maison {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.5rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
  margin: 1.25rem 0 2rem;
}
.fait-maison img { width: 96px; height: auto; }
.fait-maison h2 {
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: .02em;
  font-family: var(--font-b);
  color: var(--primary-deep);
  margin-bottom: .4rem;
}
.fait-maison ul { margin: .6rem 0 0; padding-left: 1.1rem; color: var(--ink-2); }
.order-ribbon {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem;
  background: #1F0F18;
  color: var(--on-dark);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin: 1rem 0 1.5rem;
}
.order-ribbon h2 {
  font-family: var(--font-b);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.15rem;
  margin: .15rem 0;
}
.order-ribbon p { color: rgba(251,246,240,.78); font-size: .92rem; margin: 0; }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}
.gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.video-wrap {
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
}
.video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  background: #0b1f2a;
  box-shadow: var(--shadow-lg);
}
.video iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}
.contact-card, .form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}
.contact-chip {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.contact-chip:last-child { border-bottom: 0; }
.contact-chip-k { color: var(--muted); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-chip-v { font-weight: 600; text-align: right; }
.field { display: grid; gap: .35rem; margin-bottom: .9rem; }
.field label { font-weight: 600; font-size: .92rem; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .7rem .8rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-note { color: var(--muted); font-size: .9rem; margin-top: .5rem; }
.contact-map {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-map iframe { width: 100%; height: 360px; border: 0; display: block; }
.hours { list-style: none; padding: 0; margin: .5rem 0 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .35rem 0; border-bottom: 1px dashed var(--border);
}
.footer {
  background: #2A1520;
  color: rgba(251,246,240,.86);
  margin-top: auto;
  padding: 2.25rem 0 1.1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr 1fr 1.1fr;
  gap: 1.5rem 1.25rem;
}
.footer h3 {
  font-family: var(--font-b);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  color: var(--saffron);
  margin-bottom: .7rem;
}
.footer a { color: rgba(251,246,240,.88); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin: .35rem 0; }
.footer-brand p { color: rgba(251,246,240,.72); font-size: .92rem; max-width: 28ch; }
.footer-brand img { height: 72px; width: auto; margin-bottom: .65rem; }
.sister {
  display: flex; gap: .75rem; align-items: center;
  border: 1px solid rgba(200,146,42,.35);
  border-radius: 12px;
  padding: .75rem .8rem;
  background: rgba(255,255,255,.03);
  text-decoration: none;
}
.sister img { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; background: #fff; }
.sister strong { display: block; color: #fff; font-size: .95rem; }
.sister span { display: block; color: rgba(251,246,240,.7); font-size: .82rem; }
.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem; color: rgba(251,246,240,.6);
}
.credit-link { color: rgba(251,246,240,.75); }
.note { color: var(--muted); font-size: .9rem; }
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-2.rev, .contact-layout, .footer-grid {
    grid-template-columns: 1fr;
  }
  .grid-2.rev > :first-child, .grid-2.rev > :last-child { order: initial; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  :root { --header-h: 84px; --logo-h: 72px; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + .35rem);
    right: 0;
    left: 0;
    background: #2A1520;
    border: 1px solid rgba(200,146,42,.25);
    border-radius: 14px;
    padding: .75rem;
    flex-direction: column;
    align-items: stretch;
    gap: .15rem;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .7rem .55rem; border-bottom: 0; }
  .header-inner { flex-wrap: wrap; }
  .cards, .gallery { grid-template-columns: 1fr; }
  .fait-maison { grid-template-columns: 1fr; }
  :root { --header-h: 72px; --logo-h: 56px; }
}


/* ===== MOBILE HAMBURGER ICON (surgical) ===== */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(251, 246, 240, 0.35);
  color: var(--on-dark);
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
}
.nav-toggle__bars {
  display: grid;
  gap: 5px;
  width: 18px;
}
.nav-toggle__bars span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--safran, #c8922a);
  outline-offset: 2px;
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
}
/* ===== /MOBILE HAMBURGER ICON ===== */

/* ===== KERVIA CREDIT (surgical, discrete) ===== */
.site-credit,
.footer-bottom .site-credit,
.footer-bottom .badge.site-credit {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.72;
}
.footer-bottom .credit-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  opacity: 0.9;
}
.footer-bottom .credit-link:hover,
.footer-bottom .credit-link:focus-visible {
  opacity: 1;
  outline: none;
}

