@charset "UTF-8";
/* ==========================================================================
   PASHA TURKISH RESTAURANT
   Ted's Xara design, rebuilt responsive.

   Palette sampled directly from the Xara render (index-full.png) so the colours
   match his build exactly — do not "improve" these by eye:
     tan/brown bar  #a37355     page ground    #333333
     cream panel    #d1cabc     sand panel     #c6c0b2
     light panel    #e5e3df     footer         #191919
     grid gap       #000000

   Type: Oswald (condensed, uppercase) for headings — the closest match to the
   condensed face in his Xara build. Inter for body copy (house rule 3).

   ORDER MATTERS: base rules first, mobile overrides LAST. A same-specificity
   base rule later in the file silently defeats an earlier media query.
   ========================================================================== */

:root{
  --ink:#333333;
  --tan:#a37355;
  --tan-dark:#8a5f45;
  --tan-light:#c08f6d;
  --cream:#d1cabc;
  --sand:#c6c0b2;
  --paper:#e5e3df;
  --footer:#191919;
  --gap:#000000;
  --text:#2b2b2b;
  --text-invert:#f4f1ec;
  --grid-gap:6px;
  --nav-h:70px;
  --radius:4px;
  --shadow:0 6px 22px rgba(0,0,0,.35);
  --maxw:1440px;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;
  background:var(--ink);
  color:var(--text-invert);
  font:400 16px/1.6 Inter,system-ui,-apple-system,"Segoe UI",sans-serif;
  /* clip, not hidden — hidden on body can break position:sticky descendants */
  overflow-x:clip;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit}

h1,h2,h3,.display{
  font-family:Oswald,"Arial Narrow",Inter,sans-serif;
  font-weight:500;
  letter-spacing:.02em;
  text-transform:uppercase;
  margin:0;
  line-height:1.15;
}

.skip{
  position:absolute;left:-9999px;top:0;z-index:200;
  background:var(--tan);color:#fff;padding:10px 16px;
}
.skip:focus{left:8px;top:8px}

/* ── NAV — house rule 4 ───────────────────────────────────────────────────
   Ted's tan bar, but with real links + phone/Order pills on desktop instead of
   a hamburger-only bar. No full-width info bar above it, ever.               */
.topnav{
  position:sticky;top:0;z-index:60;
  display:flex;align-items:center;gap:18px;
  padding:0 18px;min-height:var(--nav-h);
  background:var(--tan);
  border-bottom:3px solid #000;
}
.topnav .nav-links{display:flex;align-items:center;gap:4px;flex:1}
.topnav .nav-links a{
  font-family:Oswald,"Arial Narrow",sans-serif;
  text-transform:uppercase;letter-spacing:.06em;font-size:15px;
  text-decoration:none;color:#fff;opacity:.86;
  padding:9px 13px;border-radius:var(--radius);
  transition:opacity .15s,background .15s;
}
.topnav .nav-links a:hover{opacity:1;background:rgba(0,0,0,.16)}
.topnav .nav-links a.on{opacity:1;background:rgba(0,0,0,.26)}

.nav-right{display:flex;align-items:center;gap:12px}

.social{display:flex;align-items:center;gap:9px}
.social a{display:flex;opacity:.85;transition:opacity .15s,transform .15s}
.social a:hover{opacity:1;transform:translateY(-1px)}
.social svg{width:21px;height:21px;fill:#fff}

.lang{display:flex;align-items:center;gap:5px;font-size:13px;font-weight:600}
.lang .on,.lang .off{
  display:inline-flex;align-items:center;gap:5px;
  padding:5px 9px;border-radius:999px;text-decoration:none;
}
.lang .on{background:rgba(0,0,0,.3);color:#fff}
.lang .off{color:#fff;opacity:.72}
.lang .off:hover{opacity:1;background:rgba(0,0,0,.16)}
.lang .fi{width:18px;height:13px;border-radius:2px}

.pill{
  display:inline-flex;align-items:center;justify-content:center;
  padding:9px 16px;border-radius:999px;
  font-size:14px;font-weight:600;text-decoration:none;white-space:nowrap;
  border:1.5px solid rgba(255,255,255,.75);color:#fff;
  transition:background .15s,color .15s;
}
.pill:hover{background:rgba(255,255,255,.16)}
.pill.order{background:#191919;border-color:#191919}
.pill.order:hover{background:#000}

.brand img{width:56px;height:56px;border-radius:50%;background:#fff}

.burger{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  width:46px;height:46px;padding:0 11px;
  background:transparent;border:1.5px solid rgba(255,255,255,.8);
  border-radius:50%;cursor:pointer;
}
.burger span{display:block;height:2px;background:#fff;border-radius:2px;transition:transform .2s,opacity .2s}
.burger.x span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.x span:nth-child(2){opacity:0}
.burger.x span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.nav-drawer{
  display:none;flex-direction:column;
  position:sticky;top:var(--nav-h);z-index:55;
  background:#241a14;border-bottom:3px solid #000;
}
.nav-drawer.open{display:flex}
.nav-drawer a{
  font-family:Oswald,sans-serif;text-transform:uppercase;letter-spacing:.06em;
  padding:15px 20px;text-decoration:none;color:#fff;
  border-bottom:1px solid rgba(255,255,255,.09);
}
.nav-drawer a.on{background:rgba(255,255,255,.08)}
.drawer-ctas{display:flex;flex-direction:column;align-items:center;gap:10px;padding:16px 20px 20px}

/* ── Buttons — rule 13: pill groups are IDENTICAL size, never ragged ────── */
.btn-solid,.btn-line{
  display:inline-flex;align-items:center;justify-content:center;
  padding:13px 22px;border-radius:999px;
  font-weight:600;font-size:15px;text-decoration:none;white-space:nowrap;
  transition:transform .15s,background .15s,color .15s;
}
.btn-solid{background:var(--tan);color:#fff;border:2px solid var(--tan)}
.btn-solid:hover{background:var(--tan-dark);border-color:var(--tan-dark);transform:translateY(-1px)}
.btn-line{background:transparent;color:#fff;border:2px solid rgba(255,255,255,.75)}
.btn-line:hover{background:rgba(255,255,255,.14);transform:translateY(-1px)}
.btn-row{display:flex;gap:12px}
.btn-row>*{flex:1}                      /* desktop row = equal widths */

/* ── MOSAIC — the heart of Ted's design ──────────────────────────────────
   Two columns on black, narrow left / wide right, exactly as the Xara build. */
.mosaic{
  display:flex;flex-direction:column;gap:var(--grid-gap);
  background:var(--gap);
  padding:var(--grid-gap) 0;
}
/* A band is one horizontal slice: narrow left column, wide right column.
   Each side is a .stack, so the two columns can hold different tile counts
   without the whole page becoming one rigid grid (which is what forced Xara
   into pixel positioning in the first place). */
.band{display:grid;grid-template-columns:5fr 8fr;gap:var(--grid-gap);align-items:stretch}
.stack{display:flex;flex-direction:column;gap:var(--grid-gap);min-width:0}
.stack>.tile.photo{flex:1}
.tile{position:relative;overflow:hidden;background:var(--ink);min-width:0}
.tile.full{grid-column:1 / -1}
.tilepad{padding:16px;background:var(--ink)}
.cater-soon{
  margin:0;color:#fff;font-size:16px;text-shadow:0 2px 12px rgba(0,0,0,.85);
}
.cater-soon a{font-weight:700;color:#fff}
.tile img.cover{width:100%;height:100%;object-fit:cover}

/* Photo tiles keep a sane shape without ever being 100vh */
.tile.photo{aspect-ratio:16/10}
.tile.photo.tall{aspect-ratio:4/3}
/* Brand art (logo on the olive board) must never be cropped — it renders at its
   own aspect and opts out of the stack's stretch. */
.tile.natural{aspect-ratio:auto;flex:0 0 auto}
.tile.natural img{width:100%;height:auto;object-fit:contain}

/* Flat colour/text bars */
.bar{
  display:flex;align-items:center;justify-content:center;
  text-align:center;padding:16px 18px;
  font-family:Oswald,sans-serif;text-transform:uppercase;letter-spacing:.04em;
}
.bar.cream{background:var(--cream);color:var(--text)}
.bar.sand{background:var(--sand);color:var(--text)}
.bar.paper{background:var(--paper);color:var(--text)}
.bar.tan{background:var(--tan);color:#fff}
.bar.phone{font-size:clamp(22px,2.4vw,30px);font-weight:600}
.bar.phone a{text-decoration:none}
.bar.address{font-size:clamp(14px,1.4vw,18px);font-weight:400;letter-spacing:.03em}
.bar.strip{gap:clamp(14px,3vw,44px);background:#fff;color:#111;font-size:clamp(13px,1.4vw,17px);font-weight:600}

/* Welcome block */
.welcome{background:var(--sand);color:var(--text);padding:26px 22px;text-align:center}
.welcome h1{font-size:clamp(24px,2.6vw,34px);margin-bottom:14px}
.welcome .rule{width:120px;height:2px;background:var(--text);margin:14px auto;opacity:.6}
.welcome p{margin:6px 0;font-size:clamp(15px,1.5vw,18px)}

/* Tan copy block */
.tanblock{background:var(--tan);color:#fff;padding:26px 24px}
.tanblock p{margin:0 0 14px;font-size:clamp(15px,1.4vw,17px);line-height:1.75}
.tanblock p:last-child{margin-bottom:0}

/* A photo tile with a button floated on it (Order / Menu / Gallery / Catering) */
.tile.cta{display:flex;align-items:flex-start;justify-content:flex-start;padding:22px}
.tile.cta .tile-bg{position:absolute;inset:0}
.tile.cta .tile-bg img{width:100%;height:100%;object-fit:cover}
.tile.cta .tile-btn{
  position:relative;z-index:2;
  display:inline-flex;align-items:center;gap:10px;
  padding:12px 20px;border:2px solid #fff;border-radius:var(--radius);
  background:rgba(0,0,0,.34);backdrop-filter:blur(2px);
  color:#fff;text-decoration:none;font-weight:600;
  font-family:Oswald,sans-serif;text-transform:uppercase;letter-spacing:.05em;
  transition:background .15s,transform .15s;
}
.tile.cta .tile-btn:hover{background:var(--tan);border-color:var(--tan);transform:translateY(-1px)}
.tile.cta .tile-btn.disabled{
  background:rgba(0,0,0,.5);border-color:rgba(255,255,255,.5);
  color:rgba(255,255,255,.85);cursor:default;
}
.tile.cta .tile-note{
  position:absolute;left:22px;right:22px;bottom:20px;z-index:2;
  font-size:14px;color:#fff;text-shadow:0 2px 10px rgba(0,0,0,.85);
}

/* ── Home slider ─────────────────────────────────────────────────────────
   THE POINT OF THIS BLOCK: the slider declares NO aspect-ratio and NO height.
   It is a flex child of .stack inside a stretched grid row, so its height is
   whatever the LEFT column comes to. That is what keeps the two columns
   bottoming out together at every viewport width — the dead gap Ted marked
   came from this tile having a fixed 4/3 ratio while the left column did not.
   Do not give .tile.slider an aspect-ratio; it will drift apart again.        */
.tile.slider{
  aspect-ratio:auto;
  flex:1 1 auto;
  min-height:260px;          /* only a floor, never a fixed height */
  display:block;
  padding:0;
}
.tile.slider .slides{position:absolute;inset:0}
.tile.slider .slide{
  position:absolute;inset:0;margin:0;
  opacity:0;visibility:hidden;
  transition:opacity .55s ease;
}
.tile.slider .slide.on{opacity:1;visibility:visible}
.tile.slider .slide img{width:100%;height:100%;object-fit:cover;object-position:center}
.tile.slider .slide figcaption{
  position:absolute;left:0;right:0;bottom:0;
  padding:34px 22px 16px;
  background:linear-gradient(0deg,rgba(0,0,0,.72),rgba(0,0,0,0));
  font-size:15px;color:#fff;
}
/* The Order button sits above the slides, pinned where it was before. */
.tile.slider>.tile-btn{position:absolute;top:22px;left:22px;z-index:3}

.sl-arrow{
  position:absolute;top:50%;transform:translateY(-50%);z-index:3;
  width:44px;height:44px;border-radius:50%;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  background:rgba(0,0,0,.42);border:1.5px solid rgba(255,255,255,.7);
  color:#fff;font-size:26px;line-height:1;
  transition:background .15s,opacity .15s;opacity:.85;
}
.sl-arrow:hover{background:var(--tan);border-color:var(--tan);opacity:1}
.sl-arrow.prev{left:14px}
.sl-arrow.next{right:14px}

.sl-dots{
  position:absolute;left:0;right:0;bottom:12px;z-index:3;
  display:flex;justify-content:center;gap:9px;
}
.sl-dots button{
  width:11px;height:11px;padding:0;border-radius:50%;cursor:pointer;
  background:rgba(255,255,255,.42);border:1px solid rgba(255,255,255,.75);
  transition:background .15s,transform .15s;
}
.sl-dots button.on{background:#fff;transform:scale(1.18)}

/* Category list overlaying the menu tile — right-aligned, as in the Xara build */
.cat-list{
  position:absolute;top:0;right:0;bottom:0;z-index:2;
  display:flex;flex-direction:column;justify-content:center;align-items:flex-end;
  gap:2px;padding:18px 22px;
  background:linear-gradient(90deg,rgba(0,0,0,0) 0%,rgba(0,0,0,.55) 42%,rgba(0,0,0,.72) 100%);
}
.cat-list a{
  font-family:Oswald,sans-serif;text-transform:uppercase;letter-spacing:.03em;
  font-size:clamp(12px,1.35vw,21px);line-height:1.32;
  color:#fff;text-decoration:none;opacity:.93;
}
.cat-list a:hover{opacity:1;color:var(--tan-light)}

/* ── Specials band (home) — only exists when the owner has active specials ─ */
.specials-band{background:var(--paper);color:var(--text)}
.specials-inner{max-width:1180px;margin:0 auto;padding:38px 22px}
.band-head{text-align:center;margin-bottom:26px}
.band-head h2{font-size:clamp(24px,2.6vw,32px);color:var(--tan-dark)}
.band-head p{margin:8px 0 0;font-size:16px;opacity:.75}
.specials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px}
.special-card{
  background:#fff;border-radius:var(--radius);overflow:hidden;
  border-top:4px solid var(--tan);box-shadow:0 3px 14px rgba(0,0,0,.14);
  display:flex;flex-direction:column;
}
.special-img{aspect-ratio:16/10;overflow:hidden}
.special-img img{width:100%;height:100%;object-fit:cover}
.special-body{padding:18px 20px}
.special-body h3{font-size:20px;color:var(--tan-dark);margin-bottom:8px}
.special-body p{margin:0;font-size:15px;line-height:1.65;color:#444}

/* ── Events block (home) — the whole block is one link ──────────────────── */
.events-block{
  position:relative;display:block;text-decoration:none;color:#fff;
  min-height:280px;overflow:hidden;
}
.events-block .tile-bg{position:absolute;inset:0}
.events-block .tile-bg img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.events-block::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.82) 0%,rgba(0,0,0,.62) 48%,rgba(0,0,0,.34) 100%);
}
.events-block:hover .tile-bg img{transform:scale(1.04)}
.events-inner{
  position:relative;z-index:2;
  display:flex;flex-direction:column;align-items:flex-start;gap:12px;
  padding:clamp(28px,4vw,52px);max-width:820px;
}
.events-kicker{
  font-family:Oswald,sans-serif;text-transform:uppercase;letter-spacing:.22em;
  font-size:13px;color:var(--tan-light);
}
.events-inner h2{
  font-size:clamp(26px,3.4vw,44px);line-height:1.12;
  text-shadow:0 2px 16px rgba(0,0,0,.7);
}
.events-date{
  display:inline-block;margin-right:12px;padding:2px 12px;
  background:var(--tan);border-radius:4px;font-size:.72em;vertical-align:middle;
}
.events-cta{
  display:inline-flex;align-items:center;gap:9px;margin-top:4px;
  padding:12px 22px;border:2px solid #fff;border-radius:999px;
  font-family:Oswald,sans-serif;text-transform:uppercase;letter-spacing:.05em;
  font-size:15px;font-weight:600;transition:background .15s,border-color .15s;
}
.events-block:hover .events-cta{background:var(--tan);border-color:var(--tan)}

/* ── Events page ────────────────────────────────────────────────────────── */
.event-list{display:flex;flex-direction:column;gap:20px}
.event-card{
  display:grid;grid-template-columns:300px 1fr;gap:0;
  background:#2a2a2a;border-radius:var(--radius);overflow:hidden;
  border-left:4px solid var(--tan);
}
.event-card.no-img{grid-template-columns:1fr}
.event-img{overflow:hidden}
.event-img img{width:100%;height:100%;object-fit:cover;min-height:190px}
.event-body{padding:22px 24px}
.event-when{
  margin:0 0 8px;font-family:Oswald,sans-serif;text-transform:uppercase;
  letter-spacing:.06em;font-size:14px;color:var(--tan-light);
}
.event-time{margin-left:10px;opacity:.8}
.event-body h2{font-size:clamp(20px,2.2vw,27px);margin-bottom:10px}
.event-text{margin:0;font-size:16px;line-height:1.7;opacity:.88}

/* Catering strip */
.catering-strip{position:relative;min-height:230px;display:flex;align-items:center;justify-content:center}
.catering-strip .tile-bg{position:absolute;inset:0}
.catering-strip .tile-bg img{width:100%;height:100%;object-fit:cover}
.catering-strip .inner{
  position:relative;z-index:2;display:flex;align-items:center;gap:18px;flex-wrap:wrap;
  justify-content:center;text-align:center;padding:20px;
}
.catering-strip h2{font-size:clamp(22px,2.6vw,34px);color:#fff;text-shadow:0 2px 14px rgba(0,0,0,.8)}

/* App badges */
.badges{display:flex;align-items:center;justify-content:center;gap:14px;background:var(--cream);padding:16px}
.badges img{height:44px;width:auto}

/* ── Page sections (non-home) ───────────────────────────────────────────── */
.page-head{
  background:var(--tan);padding:38px 22px;text-align:center;border-bottom:3px solid #000;
}
.page-head h1{font-size:clamp(28px,3.4vw,44px);color:#fff}
.page-head p{margin:10px 0 0;color:rgba(255,255,255,.92);font-size:17px}

.wrap{max-width:1180px;margin:0 auto;padding:40px 22px}
.prose p{font-size:17px;line-height:1.8}

/* ── Menu ───────────────────────────────────────────────────────────────── */
.menu-nav{
  position:sticky;top:var(--nav-h);z-index:40;
  display:flex;flex-wrap:wrap;gap:8px;justify-content:center;
  padding:14px 16px;background:#2a2a2a;border-bottom:1px solid #000;
}
.menu-nav a{
  font-family:Oswald,sans-serif;text-transform:uppercase;font-size:13px;letter-spacing:.05em;
  padding:7px 14px;border-radius:999px;border:1px solid rgba(255,255,255,.28);
  color:#fff;text-decoration:none;opacity:.88;
}
.menu-nav a:hover{background:var(--tan);border-color:var(--tan);opacity:1}

.menu-cat{margin:0 0 46px}
.menu-cat h2{
  font-size:clamp(22px,2.4vw,30px);color:var(--tan-light);
  padding-bottom:10px;border-bottom:2px solid rgba(163,115,85,.5);
}
.menu-cat .cat-note{margin:12px 0 0;font-size:15px;font-style:italic;opacity:.82}
.menu-list{list-style:none;margin:22px 0 0;padding:0;display:grid;gap:18px}
.menu-item{display:flex;gap:16px;align-items:baseline}
.menu-item .mi-main{flex:1;min-width:0}
.menu-item .mi-name{font-weight:600;font-size:17px}
.menu-item .mi-desc{margin:4px 0 0;font-size:15px;line-height:1.6;opacity:.8}
.menu-item .mi-dots{flex:1;border-bottom:1px dotted rgba(255,255,255,.28);transform:translateY(-4px)}
.menu-item .mi-price{
  font-family:Oswald,sans-serif;font-size:17px;color:var(--tan-light);
  white-space:nowrap;font-variant-numeric:tabular-nums;
}

/* ── Gallery — natural-aspect masonry (rule 1i).
   232 photos processed: 122 portrait vs 100 landscape, so a fixed-ratio grid
   would crop the majority. Columns preserve each photo's own shape.          */
.gallery-grid{columns:4;column-gap:var(--grid-gap)}
.gallery-grid figure{break-inside:avoid;margin:0 0 var(--grid-gap);position:relative;cursor:zoom-in}
.gallery-grid img{width:100%;height:auto;display:block}
.gallery-grid figcaption{
  position:absolute;left:0;right:0;bottom:0;padding:10px 12px;
  background:linear-gradient(0deg,rgba(0,0,0,.78),rgba(0,0,0,0));
  font-size:13px;opacity:0;transition:opacity .18s;
}
.gallery-grid figure:hover figcaption{opacity:1}

.lightbox{
  position:fixed;inset:0;z-index:120;display:none;
  align-items:center;justify-content:center;padding:24px;
  background:rgba(0,0,0,.93);
}
.lightbox.open{display:flex}
.lightbox img{max-width:96vw;max-height:92vh;width:auto;height:auto;object-fit:contain}
.lightbox button{
  position:absolute;top:18px;right:22px;
  background:transparent;border:0;color:#fff;font-size:38px;line-height:1;cursor:pointer;
}

/* ── Forms ──────────────────────────────────────────────────────────────── */
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field{display:flex;flex-direction:column;gap:6px}
.field.wide{grid-column:1 / -1}
.field label{font-size:14px;font-weight:600;letter-spacing:.02em}
.field input,.field select,.field textarea{
  padding:12px 14px;border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.24);
  background:#2a2a2a;color:#fff;font:inherit;font-size:16px;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:2px solid var(--tan-light);outline-offset:1px;border-color:transparent;
}
.field textarea{min-height:120px;resize:vertical}
.note{font-size:14px;opacity:.75}
/* Honeypot: off-screen rather than display:none, so bots that skip hidden
   fields still fill it. Never remove the label — screen readers announce it. */
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.alert{padding:14px 16px;border-radius:var(--radius);margin:0 0 20px;font-size:15px}
.alert.ok{background:rgba(70,140,80,.22);border:1px solid rgba(120,200,130,.5)}
.alert.err{background:rgba(150,60,60,.22);border:1px solid rgba(220,120,120,.5)}

/* Coming-soon panel (catering, until the owner sends the menu) */
.soon{
  background:var(--paper);color:var(--text);
  padding:44px 26px;text-align:center;border-radius:var(--radius);
}
.soon h2{font-size:clamp(22px,2.4vw,30px);margin-bottom:12px}
.soon p{font-size:17px;margin:0 auto 20px;max-width:620px}

/* ── Info cards (contact / about) ───────────────────────────────────────── */
.info-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:var(--grid-gap)}
.info-card{background:#2a2a2a;padding:26px 22px;border-top:3px solid var(--tan)}
.info-card h2{font-size:19px;color:var(--tan-light);margin-bottom:14px;letter-spacing:.06em}
.info-card p{margin:0 0 14px;font-size:16px;line-height:1.7}
.info-card .hours{font-size:15px}
.big-phone{font-family:Oswald,sans-serif;font-size:26px}
.big-phone a{text-decoration:none}

.about-split{display:grid;grid-template-columns:1.4fr 1fr;gap:30px;align-items:start}
.about-side img{width:100%;height:auto;margin-bottom:var(--grid-gap)}

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list{display:flex;flex-direction:column;gap:10px}
.faq-item{
  background:#2a2a2a;border-left:4px solid var(--tan);
  border-radius:var(--radius);overflow:hidden;
}
.faq-item summary{
  cursor:pointer;list-style:none;padding:18px 22px;
  font-family:Oswald,sans-serif;font-size:clamp(16px,1.8vw,19px);
  letter-spacing:.02em;display:flex;align-items:center;gap:12px;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:"+";margin-left:auto;color:var(--tan-light);
  font-size:24px;line-height:1;flex:0 0 auto;
}
.faq-item[open] summary::after{content:"\2013"}
.faq-item summary:hover{background:rgba(255,255,255,.04)}
.faq-a{padding:0 22px 20px;font-size:16px;line-height:1.75;opacity:.9}

/* ── Careers ────────────────────────────────────────────────────────────── */
.job-list{display:flex;flex-direction:column;gap:14px}
.job-card{background:#2a2a2a;border-left:4px solid var(--tan);border-radius:var(--radius);padding:20px 22px}
.job-head{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:8px}
.job-head h3{font-size:clamp(18px,2vw,23px)}
.job-type{
  padding:4px 12px;border-radius:999px;background:rgba(163,115,85,.35);
  font-size:13px;font-weight:600;letter-spacing:.03em;
}
.job-card p{margin:0;font-size:16px;line-height:1.7;opacity:.88}

/* ── Map ────────────────────────────────────────────────────────────────── */
.mapwrap{line-height:0;border-top:3px solid #000}
.mapwrap iframe{width:100%;height:380px;border:0;display:block;filter:grayscale(.2)}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer{background:var(--footer);color:#e9e5df}
.foot-grid{
  max-width:var(--maxw);margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);gap:30px;
  padding:44px 26px 30px;
}
.foot-col h3{font-size:16px;color:var(--tan-light);margin-bottom:14px;letter-spacing:.08em}
.foot-col p{margin:0 0 10px;font-size:15px;line-height:1.7;opacity:.9}
.foot-col a{color:inherit;text-decoration:none}
.foot-col a:hover{color:var(--tan-light)}
.foot-logo{width:84px;height:84px;border-radius:50%;background:#fff;margin-bottom:12px}
.foot-tag{font-family:Oswald,sans-serif;text-transform:uppercase;letter-spacing:.06em;opacity:.85}
.foot-pills{display:flex;gap:10px;margin-top:14px}
.foot-pills>*{flex:1;padding:10px 14px;font-size:14px}
.foot-links{list-style:none;margin:0;padding:0}
.foot-links li{margin-bottom:8px;font-size:15px}
.foot-social{display:flex;gap:14px;margin-top:14px;font-size:14px;opacity:.85}
.hours{margin:0;font-size:15px}
.hours dt{font-weight:600;opacity:.95}
.hours dd{margin:0 0 10px;opacity:.8}

.foot-bar{
  border-top:1px solid rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
  max-width:var(--maxw);margin:0 auto;padding:16px 26px 22px;
}
.foot-bar p{margin:0;font-size:13px;opacity:.72}
.owner-login{
  display:inline-block;margin-left:10px;padding:4px 12px;
  border:1px solid rgba(255,255,255,.28);border-radius:999px;
  font-size:12px;text-decoration:none;opacity:.8;
}
.owner-login:hover{opacity:1;border-color:var(--tan-light);color:var(--tan-light)}

/* LOS signature — identical on every LOS site: 28px tall, .42 opacity,
   brighten on hover. Do not restyle per client. */
.los-sig{display:inline-flex;align-items:center;gap:9px;text-decoration:none}
.los-sig span{font-size:11px;letter-spacing:.12em;text-transform:uppercase;opacity:.42}
.los-sig img{height:28px;width:auto;opacity:.42;transition:opacity .2s,filter .2s}
.los-sig:hover img{opacity:1;filter:brightness(1.15)}
.los-sig:hover span{opacity:.75}

/* ==========================================================================
   RESPONSIVE — everything below here is an override and MUST stay last.
   Rule 12: on mobile no content section gets 100vh or a fixed height. Every
   section is content-sized so blocks push each other in normal flow and
   overlap is impossible. Verify at 390x660, not just 390x844.
   ========================================================================== */

@media (max-width:1100px){
  .topnav .nav-links a{font-size:14px;padding:8px 10px}
  .gallery-grid{columns:3}
  .foot-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:900px){
  .topnav .nav-links{display:none}
  .burger{display:flex}

  /* One column. `display:contents` dissolves the band/stack wrappers so every
     tile becomes a direct flex child of .mosaic and can be re-ordered — which
     is how Order Online is lifted to the top on a phone (rule 4: the opening
     of the page carries Order first, then the phone pill). */
  .band,.stack{display:contents}
  /* Baseline first: anything not explicitly ordered sorts AFTER the ordered
     tiles. Same specificity as .m-N and declared earlier, so .m-N wins.
     ⚠ EVERY direct child of .mosaic must be listed here. A child left out gets
     the default order:0 and leaps to the very top of the page — which is
     exactly what Specials and the Events block did when they were first added. */
  .tile,.bar,.welcome,.tanblock,.badges,
  .specials-band,.events-block,.catering-strip{order:8}
  .m-1{order:1} .m-2{order:2} .m-3{order:3} .m-4{order:4}
  .m-5{order:5} .m-6{order:6} .m-7{order:7}

  .tile.photo,.tile.photo.tall{aspect-ratio:16/9}

  /* Once the columns collapse there is no left column to take height from, so
     the slider needs its own shape. 3:2 matches the source photos exactly, so
     nothing is cropped on a phone. */
  .tile.slider{aspect-ratio:3/2;flex:0 0 auto;min-height:0}

  /* The category list stops being an overlay and becomes a block under the
     Menu button. The tile must therefore go content-sized (rule 12) and stack
     in a column — otherwise the list sits beside the button and the last
     categories are clipped off the bottom. */
  .tile.cta.has-list{
    aspect-ratio:auto;height:auto;min-height:0;
    flex-direction:column;align-items:stretch;gap:14px;
  }
  .cat-list{
    position:static;width:100%;background:rgba(0,0,0,.55);
    align-items:center;padding:22px 16px;
  }
}

@media (max-width:760px){
  :root{--nav-h:62px}

  /* Rule 4 — mobile nav is logo + language toggle (+ burger) ONLY.
     The mosaic's opening tiles carry Order, phone and address instead. */
  .topnav .pill,
  .topnav .social{display:none}
  .topnav{gap:10px;padding:0 12px}
  .nav-right{gap:10px;margin-left:auto}
  .brand img{width:46px;height:46px}

  /* Rule 12 — nothing is fixed-height on a phone. */
  .tile.photo,.tile.photo.tall{aspect-ratio:4/3;height:auto;min-height:0}
  /* Must be repeated here: this block is LATER in the file than the 900px one,
     so at equal specificity the 4/3 rule above would otherwise win and clip the
     category list again. */
  .tile.cta.has-list{aspect-ratio:auto;height:auto;min-height:0}
  /* Repeated here for the same reason — this block is later in the file. */
  .tile.slider{aspect-ratio:3/2;flex:0 0 auto;min-height:0}
  .tile.slider>.tile-btn{top:14px;left:14px;padding:10px 16px;font-size:14px}
  .sl-arrow{width:38px;height:38px;font-size:22px}
  .sl-arrow.prev{left:8px}
  .sl-arrow.next{right:8px}
  /* Extra bottom padding lifts the caption clear of the dots — at 390px the
     left-aligned caption text and the centred dots share the same line. */
  .tile.slider .slide figcaption{font-size:13px;padding:26px 14px 32px}
  .catering-strip{min-height:0;height:auto;padding:0}
  .catering-strip .inner{flex-direction:column;padding:34px 18px}

  .welcome,.tanblock{padding:22px 18px}
  .wrap{padding:28px 18px}
  .page-head{padding:26px 18px}

  .bar.strip{flex-wrap:wrap;gap:10px 18px;padding:14px}
  .cat-list{padding:18px 14px}
  .cat-list a{font-size:14px}

  .menu-nav{top:var(--nav-h);padding:10px 12px;gap:6px}
  .menu-nav a{font-size:12px;padding:6px 11px}
  .menu-item{flex-wrap:wrap;gap:6px}
  .menu-item .mi-dots{display:none}
  .menu-item .mi-price{margin-left:auto}

  .gallery-grid{columns:2;column-gap:4px}
  .gallery-grid figure{margin-bottom:4px}
  .gallery-grid figcaption{opacity:1;font-size:12px;padding:8px 9px}

  .form-grid{grid-template-columns:1fr}
  .about-split{grid-template-columns:1fr;gap:22px}

  /* Rule 12 — content-sized, never a fixed height, on a phone. */
  .events-block{min-height:0;height:auto}
  .events-inner{padding:26px 18px;max-width:none}
  .events-block::after{
    background:linear-gradient(0deg,rgba(0,0,0,.86) 0%,rgba(0,0,0,.55) 70%,rgba(0,0,0,.4) 100%);
  }
  .events-cta{width:min(320px,86vw);justify-content:center}   /* rule 13 */

  .specials-inner{padding:28px 18px}
  .event-card,.event-card.no-img{grid-template-columns:1fr}
  .event-img img{min-height:0;aspect-ratio:16/10}
  .event-body{padding:18px}

  /* Rule 13 — stacked pill groups are uniform width and centred, never ragged. */
  .btn-row,.foot-pills,.drawer-ctas{
    flex-direction:column;align-items:center;gap:10px;
  }
  .btn-row>*,.foot-pills>*,.drawer-ctas>*{
    width:min(320px,86vw);flex:0 0 auto;
  }

  .foot-grid{grid-template-columns:1fr;gap:26px;padding:32px 18px 24px;text-align:center}
  .foot-logo{margin-left:auto;margin-right:auto}
  .foot-social{justify-content:center}
  .foot-bar{flex-direction:column;text-align:center;padding:16px 18px 22px}
  .mapwrap iframe{height:300px}
}

@media (max-width:420px){
  .bar.phone{font-size:21px}
  .badges img{height:38px}
  .gallery-grid{columns:1}
}

@media (prefers-reduced-motion:reduce){
  *{animation-duration:.01ms !important;transition-duration:.01ms !important}
}
