/* Le Dahlia · dark base, oxblood + cream + Chinese red + gold + dahlia pink accent */

:root {
  --ink: #18080a;
  --bg: #1f0e10;
  --bg-2: #2c1316;
  --bg-3: #3a181c;
  --cream: #f4ead2;
  --paper: #fbf6e8;
  --soft: #b29a76;
  --accent: #c92929;
  --accent-deep: #971b1b;
  --gold: #d4a738;
  --pink: #e89695;
  --line: rgba(244, 234, 210, 0.12);
  --shadow-soft: 0 18px 40px -20px rgba(10,3,4,.5);
  --shadow-card: 0 24px 60px -28px rgba(10,3,4,.7);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
  --motion-fast: 200ms;
  --motion-base: 400ms;
  --ease-out: cubic-bezier(.22,.61,.36,1);
  --ease-quart: cubic-bezier(.25,1,.5,1);
  --max: min(1280px, 92vw);
  --gutter: clamp(1rem, 4vw, 2.5rem);
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--cream); font-family: var(--font-body); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, picture, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; transition: color var(--motion-fast) var(--ease-out); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; letter-spacing: -.015em; margin: 0; line-height: 1.05; }
em { font-style: italic; color: var(--accent); }
p { margin: 0; }

.container { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.kicker { font-family: var(--font-body); font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.skip-link { position: absolute; top: -100px; left: var(--gutter); background: var(--cream); color: var(--ink); padding: .75rem 1.25rem; border-radius: 4px; z-index: 1000; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 50; background: color-mix(in oklch, var(--bg) 92%, transparent); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav__inner { max-width: var(--max); margin: 0 auto; padding: .85rem var(--gutter); display: flex; align-items: center; gap: 1.5rem; justify-content: space-between; }
.nav__mark { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-size: 1.2rem; }
.nav__bloom { color: var(--pink); font-size: 1.4rem; }
.nav__links { display: flex; gap: 1.5rem; font-size: .92rem; font-weight: 500; }
.nav__links a { color: color-mix(in oklch, var(--cream) 80%, transparent); }
.nav__links a:hover { color: var(--gold); }
.nav__phone { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1.1rem; background: var(--accent); color: var(--cream); border-radius: 999px; font-weight: 700; font-size: .9rem; letter-spacing: .02em; box-shadow: 0 8px 18px -10px rgba(201,41,41,.7); }
.nav__phone:hover { background: var(--gold); color: var(--ink); }
@media (max-width: 720px) { .nav__links { display: none; } .nav__inner { gap: 1rem; } }

/* HERO */
.hero { min-height: 100svh; position: relative; display: grid; place-items: center; overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7) saturate(1.15); }
.hero__scrim { position: absolute; inset: 0; z-index: -1; background:
  radial-gradient(ellipse at center, transparent 0%, rgba(24,8,10,.5) 80%),
  linear-gradient(to bottom, rgba(24,8,10,.2) 0%, rgba(24,8,10,.65) 100%);
}
.hero__inner { width: 100%; max-width: 60ch; padding: 2rem var(--gutter); display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; color: var(--cream); }
.hero__kicker { font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin: 0; }
.hero__title { font-size: clamp(3.5rem, 12vw, 8.5rem); line-height: .95; letter-spacing: -.02em; color: var(--cream); }
.hero__title em { color: var(--pink); font-style: italic; }
.hero__tagline { font-family: var(--font-display); font-style: italic; font-size: clamp(1.05rem, 3.2vw, 1.5rem); color: color-mix(in oklch, var(--cream) 88%, transparent); }
.hero__cta { display: flex; flex-direction: column; gap: .55rem; width: 100%; max-width: 22rem; margin-top: 1rem; align-items: stretch; }
@media (min-width: 820px) { .hero__cta { flex-direction: row; flex-wrap: wrap; max-width: none; width: auto; justify-content: center; gap: .75rem; align-items: center; } }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .8rem 1.3rem; border-radius: 999px; font-size: .82rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; transition: transform var(--motion-fast) var(--ease-out), background var(--motion-fast) var(--ease-out), color var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out), border-color var(--motion-fast) var(--ease-out); border: 1px solid transparent; min-height: 44px; width: 100%; white-space: nowrap; }
@media (min-width: 820px) { .btn { width: auto; padding: .95rem 1.6rem; font-size: .88rem; } }
.btn--primary { background: var(--cream); color: var(--ink); box-shadow: 0 12px 28px -10px rgba(244,234,210,.4); }
.btn--primary:hover { background: var(--gold); }
.btn--ghost { background: transparent; color: var(--cream); border-color: color-mix(in oklch, var(--gold) 60%, transparent); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--accent { background: var(--accent); color: var(--cream); box-shadow: 0 12px 28px -10px rgba(201,41,41,.7); }
.btn--accent:hover { background: var(--accent-deep); }

/* MARQUEE */
.strip { background: var(--accent); color: var(--cream); overflow: hidden; padding: 1.4rem 0; }
.strip__track { display: flex; width: max-content; gap: 2rem; align-items: center; white-space: nowrap; animation: marquee-scroll 28s linear infinite; will-change: transform; transform: translateZ(0); }
.strip__track > * { flex-shrink: 0; }
.strip__track span { font-family: var(--font-display); font-style: italic; font-size: clamp(1.4rem, 4vw, 2.4rem); }
.strip__track .sep { color: var(--gold); font-style: normal; font-size: 1.1rem; }
@keyframes marquee-scroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@media (prefers-reduced-motion: reduce) { .strip__track { animation: none; } }

section { padding-block: clamp(4rem, 9vw, 8rem); }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease-quart), transform .9s var(--ease-quart); }
[data-revealed] { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* CARTE · printed-menu photo gallery (lightbox-only thumbs) */
.carte { background: var(--ink); padding-block: clamp(4rem, 9vw, 7rem); }
.carte__intro { max-width: 720px; margin-bottom: 2.5rem; }
.carte__title { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-top: .75rem; color: var(--cream); }
.carte__lede { color: color-mix(in oklch, var(--cream) 70%, transparent); margin-top: 1rem; max-width: 52ch; }
.carte__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; max-width: 600px; margin: 0 auto; }
.thumb { position: relative; border-radius: 10px; overflow: hidden; cursor: zoom-in; aspect-ratio: 3/4; background: var(--bg-2); border: 1px solid var(--line); transition: transform var(--motion-fast) var(--ease-out), border-color var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out); padding: 0; }
.thumb:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--shadow-soft); }
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--motion-base) var(--ease-quart); }
.thumb:hover img { transform: scale(1.03); }

/* MEALS · uniform photo grid (Joe specials pattern) */
.menu { background: var(--bg-2); }
.menu__intro { max-width: 720px; margin-bottom: 2.5rem; }
.menu__title { font-size: clamp(2.5rem, 5.5vw, 4rem); margin-top: .75rem; color: var(--cream); }
.menu__lede { color: color-mix(in oklch, var(--cream) 75%, transparent); margin-top: 1rem; max-width: 52ch; }
.menu__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card { position: relative; border-radius: 14px; overflow: hidden; background: var(--bg-3); text-align: left; cursor: zoom-in; box-shadow: var(--shadow-soft); border: 1px solid var(--line); transition: transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out), border-color var(--motion-fast) var(--ease-out); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--gold); }
.card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--ink); }
.card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,3,4,0) 55%, rgba(10,3,4,.55) 100%); pointer-events: none; }
.card img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transition: transform var(--motion-base) var(--ease-quart); }
.card:hover img { transform: scale(1.06); }
.card__body { padding: 1.3rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .45rem; }
.card__day { font-family: var(--font-body); font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin: 0; }
.card__name { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 1.55rem; line-height: 1.05; color: var(--cream); margin: 0; }
.card__desc { font-size: .92rem; color: color-mix(in oklch, var(--cream) 70%, transparent); line-height: 1.5; margin: 0; }
.menu__allergens { margin-top: 2.5rem; font-size: .82rem; opacity: .5; font-style: italic; text-align: center; color: var(--cream); }

/* HOURS */
.hours { background: var(--ink); }
.hours__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; }
.hours__title { font-size: clamp(2.2rem, 5vw, 3.5rem); margin: 1rem 0 2rem; color: var(--cream); }
.hours__list { display: grid; grid-template-columns: 8rem 1fr; gap: .65rem 1.5rem; margin: 0; }
.hours__list dt { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--gold); }
.hours__list dd { margin: 0; color: color-mix(in oklch, var(--cream) 78%, transparent); font-size: 1rem; font-variant-numeric: tabular-nums; }
.hours__action { display: flex; flex-direction: column; gap: 1rem; align-items: start; padding-top: 2rem; border-top: 1px solid var(--line); }
@media (min-width: 820px) { .hours__action { padding-top: 0; border-top: 0; padding-left: 2rem; border-left: 1px solid var(--line); } }
.hours__badge { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--pink); }
@media (max-width: 820px) { .hours__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ACCESS */
.access { background: var(--bg); }
.access__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.access__title { font-size: clamp(2.2rem, 5vw, 3.5rem); margin: 1rem 0 1.5rem; color: var(--cream); }
.access__address { font-style: normal; font-size: 1.1rem; line-height: 1.6; color: color-mix(in oklch, var(--cream) 70%, transparent); margin-bottom: 1.5rem; }
.access__socials { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; gap: .75rem; }
.access__socials a { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: var(--cream); transition: background var(--motion-fast) var(--ease-out); }
.access__socials a:hover { background: var(--gold); color: var(--ink); }
.access__map { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-card); }
@media (max-width: 820px) { .access__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* FOOTER */
.foot { background: var(--ink); padding: 3rem 0 2rem; border-top: 1px solid var(--line); }
.foot__inner { display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; }
.foot__brand { display: flex; flex-direction: column; gap: .35rem; }
.foot__mark { font-family: var(--font-display); font-size: 1.3rem; }
.foot__meta { font-size: .85rem; color: color-mix(in oklch, var(--cream) 60%, transparent); letter-spacing: .12em; text-transform: uppercase; }
.foot__credit { font-size: .85rem; color: color-mix(in oklch, var(--cream) 70%, transparent); padding-top: 1rem; border-top: 1px solid var(--line); width: 100%; max-width: 320px; }
.foot__credit a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.foot__credit a:hover { color: var(--cream); }
.foot__rights { font-size: .75rem; color: color-mix(in oklch, var(--cream) 50%, transparent); }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(10,3,4,.96); display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox[aria-hidden="false"] { display: flex; }
body.lightbox-open { overflow: hidden; }
.lightbox__stage { width: 100%; max-width: 1100px; max-height: 80vh; display: flex; align-items: center; justify-content: center; }
.lightbox__stage img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 6px; box-shadow: 0 30px 80px rgba(0,0,0,.7); }
.lightbox__close, .lightbox__prev, .lightbox__next { position: absolute; background: rgba(255,255,255,.08); color: var(--cream); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transition: background var(--motion-fast) var(--ease-out); }
.lightbox__close { top: 1.25rem; right: 1.25rem; }
.lightbox__prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--accent); }
.lightbox__info { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); color: var(--cream); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; opacity: .65; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
