/* ============================================================
   Piccadilly Cafe · Bar — styles
   Design system with CSS custom properties (easy re-theme).
   ============================================================ */

:root {
  /* Brand colours */
  --bg:        #141210;   /* espresso black */
  --bg-section:#191612;   /* default section */
  --bg-2:      #1f1a15;   /* raised surface */
  --surface:   #251f19;   /* cards */
  --surface-2: #2a241c;
  --line:      #3a3128;   /* hairline borders */
  --text:      #f5efe4;   /* warm off-white */
  --muted:     #b7a992;   /* secondary text */
  --gold:      #e0b354;   /* primary accent (brass) */
  --gold-deep: #b8862f;
  --gold-soft: rgba(224,179,84,0.12);
  --wine:      #8a3b3b;

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "DM Sans", "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Layout */
  --container: 1160px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 18px 50px rgba(0,0,0,0.45);
  --shadow-sm: 0 6px 20px rgba(0,0,0,0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; overflow-x: clip; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
::-webkit-scrollbar-thumb:active { background: var(--gold-deep); }
@supports (scrollbar-color: auto) {
  * { scrollbar-color: var(--line) var(--bg); scrollbar-width: thin; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; margin: 0 0 .4em; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: #201607;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(224,179,84,0.28); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--gold); box-shadow: none; color: var(--gold); }
.btn--sm { padding: .6rem 1.1rem; font-size: .9rem; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav.scrolled {
  background: rgba(20,18,16,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.nav.scrolled .brand__logo {
  filter: drop-shadow(0 0 8px rgba(224,179,84,0.25)) brightness(1.15);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__logo { height: 34px; width: auto; display: block; transition: transform .4s var(--ease); }
.brand:hover .brand__logo { transform: scale(1.04); }
.brand__tag { font-family: var(--font-body); font-size: .6rem; letter-spacing: .3em; color: var(--muted); text-transform: uppercase; padding-left: .7rem; border-left: 1px solid var(--line); }

.nav__cta { display: flex; align-items: center; gap: .5rem; }
@media (min-width: 900px) { .nav__cta { gap: 1rem; } }

.nav__toggle {
  display: inline-flex; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px;
  background: transparent; cursor: pointer; padding: 0; align-items: center; justify-content: center;
}
.nav__cta .btn:not(.nav__toggle) { display: none; }

.lang-switch {
  display: inline-flex; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 10px;
  background: transparent; cursor: pointer; padding: 0; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: .78rem; font-weight: 700; color: var(--muted); letter-spacing: .04em;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.lang-switch:hover { border-color: var(--gold); color: var(--gold); }
.lang-switch:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.nav__links {
  position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0; align-items: stretch;
  background: rgba(20,18,16,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
  padding: 1rem 24px 1.6rem; transform: translateY(-120%); transition: transform .38s var(--ease); box-shadow: var(--shadow);
  display: flex; list-style: none; margin: 0;
}
body.nav-open .nav__links { transform: translateY(0); }
.nav__links a { font-size: .95rem; color: var(--text); padding: .95rem 0; border-bottom: 1px solid var(--line); display: block; }
.nav__links a::after { display: none; }

@media (min-width: 900px) {
  .nav__toggle { display: none; }
  .nav__cta .btn:not(.nav__toggle) { display: inline-flex; }
  .nav__links {
    position: static; flex-direction: row; gap: 1.5rem; align-items: center;
    background: none; backdrop-filter: none; border-bottom: none;
    padding: 0; transform: none; transition: none; box-shadow: none;
    display: flex;
  }
  body.nav-open .nav__links { transform: none; }
  .nav__links a { padding: .3rem 0; border-bottom: none; opacity: .88; }
  .nav__links a::after { display: block; }
  .nav__links a:hover { opacity: 1; }
  .nav__links a:hover::after { width: 100%; }
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--text); position: relative; transition: transform .3s, opacity .3s;
}
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }
body.nav-open .nav__toggle span { background: transparent; }
body.nav-open .nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav__toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: grid; align-items: center;
  color: var(--text); overflow: hidden;
  background: var(--bg);
}
.hero__carousel { position: absolute; inset: 0; z-index: 0; }
.hero__carousel img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}
.hero__carousel img.active { opacity: 1; }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 30%, transparent 45%, rgba(0,0,0,0.65) 100%),
    linear-gradient(180deg, rgba(20,18,16,0.4) 0%, transparent 30%, transparent 70%, rgba(20,18,16,0.5) 100%);
}
.hero__bokeh { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; }
.hero__inner { position: relative; z-index: 2; padding-block: 100px 90px; max-width: 760px; }
@media (min-width: 600px) { .hero__inner { padding-block: 120px 100px; } }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.4rem;
  font-size: .8rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
}
.hero__eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: .7; }
.hero h1 { font-size: clamp(3.2rem, 9vw, 6.2rem); letter-spacing: .01em; margin-bottom: .2em; }
.hero h1 .amp { color: var(--gold); font-style: italic; }
.hero__sub { font-size: clamp(1.05rem, 2.2vw, 1.35rem); color: var(--muted); max-width: 32ch; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* Open-now pill */
.status {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem .7rem; border-radius: 999px; font-size: .78rem; font-weight: 600;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line); white-space: nowrap;
}
#status .status__text small { display: none; }
.status__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--muted); box-shadow: 0 0 0 0 rgba(0,0,0,0); }
.status.is-open .status__dot { background: #6fca7d; box-shadow: 0 0 0 4px rgba(111,202,125,0.18); animation: pulse 2.2s infinite; }
.status.is-closed .status__dot { background: #d9705f; }
.status__text small { display: block; font-weight: 400; color: var(--muted); font-size: .78rem; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(111,202,125,0.18);} 50% { box-shadow: 0 0 0 7px rgba(111,202,125,0);} }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; color: var(--muted); font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
@media (max-height: 700px) { .scroll-cue { display: none; } }
.scroll-cue::after { content: ""; width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%,100%{ opacity:.3; transform: scaleY(.6);} 50%{ opacity:1; transform: scaleY(1);} }

/* ---------- Section scaffolding ---------- */
.section {
  padding-block: clamp(64px, 9vw, 120px); position: relative;
  background: var(--bg-section);
}
.section--alt { background: var(--bg-section); }
.section--glow { overflow: hidden; }
.section__glow { position: absolute; border-radius: 50%; filter: blur(3px); opacity: .7; pointer-events: none; z-index: 1; }
.section--glow > .container, .section--glow > *:not(.section__glow) { position: relative; z-index: 2; }
.section > .container { position: relative; z-index: 2; }
.section__head { max-width: 640px; margin: 0 auto 3.2rem; text-align: center; }
.section__eyebrow { display: inline-block; font-size: .78rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; }
.section__title { font-size: clamp(2rem, 4.5vw, 3rem); }
.section__lead { color: var(--muted); font-size: 1.05rem; }

/* ---------- Highlights ---------- */
.highlights { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
@media (min-width: 600px) { .highlights { grid-template-columns: repeat(3, 1fr); } }
.hl {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 1.8rem; text-align: center; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.hl:hover { transform: translateY(-6px); border-color: rgba(224,179,84,0.5); box-shadow: var(--shadow-sm); }
.hl__img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .08; }
.hl:hover .hl__img { opacity: .14; }
.hl__icon { position: relative; width: 58px; height: 58px; margin: 0 auto 1.2rem; color: var(--gold); z-index: 1; }
.hl h3 { position: relative; z-index: 1; font-size: 1.5rem; }
.hl p { position: relative; z-index: 1; color: var(--muted); margin: 0; }

/* ---------- Menu ---------- */
.menu__content { display: flex; flex-direction: column; gap: 2rem; align-items: center; background-size: cover; background-position: center; background-repeat: no-repeat; }
@media (min-width: 900px) { .menu__content { background-image: none !important; } }
@media (min-width: 900px) { .menu__content { flex-direction: row; align-items: flex-start; } }
.menu__panels { flex: 1; min-width: 0; }
.menu__photo-wrap { max-width: 320px; flex-shrink: 0; }
.menu__cat-photo { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--line); display: block; }
.menu__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-bottom: 2.8rem; }
.menu__tab {
  font-family: var(--font-body); font-size: .95rem; font-weight: 600; color: var(--muted);
  background: transparent; border: 1px solid var(--line); border-radius: 999px;
  padding: .6rem 1.35rem; cursor: pointer; transition: all .25s var(--ease);
}
.menu__tab:hover { color: var(--text); border-color: var(--gold); }
.menu__tab.active { background: var(--gold); color: #201607; border-color: var(--gold); }
.menu__tab:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.menu__panel { display: none; }
.menu__panel.active { display: block; animation: fade .4s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: none; } }
.menu__note { text-align: center; color: var(--muted); font-style: italic; margin-bottom: 2rem; }

.menu__grid { display: grid; grid-template-columns: 1fr; gap: 0; max-width: 940px; margin-inline: auto; }
@media (min-width: 600px) { .menu__grid { grid-template-columns: 1fr 1fr; gap: 0 3.5rem; } }
.menu__item { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.menu__item .row { display: flex; align-items: baseline; gap: .6rem; }
.menu__item .name { font-weight: 600; font-size: 1.05rem; }
.menu__item .leaders { flex: 1; border-bottom: 1px dotted rgba(183,169,146,0.4); transform: translateY(-4px); min-width: 14px; }
.menu__item .desc { color: var(--muted); font-size: .9rem; margin-top: .2rem; padding-right: 2.4rem; }
.menu__item .price { font-family: var(--font-display); color: var(--gold); font-size: 1.1rem; white-space: nowrap; }
.menu__item .price::before { content: "€ "; opacity: .7; font-size: .85em; }

@media (max-width: 899px) {
  .menu__photo-wrap { display: none; }
  .menu__content {
    position: relative;
    isolation: isolate;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
  }
  .menu__content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20,18,16,.72);
    border-radius: var(--radius);
    z-index: 0;
  }
  .menu__tabs {
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
    gap: .2rem .4rem;
    margin-bottom: 1.8rem;
  }
  .menu__tab {
    font-size: .82rem;
    padding: .35rem .6rem;
    border: 1px solid transparent;
    border-radius: 999px;
    white-space: nowrap;
    color: rgba(245,239,228,.4);
    letter-spacing: .03em;
  }
  .menu__tab:hover { color: rgba(245,239,228,.7); }
  .menu__tab.active {
    background: transparent;
    color: var(--gold);
    border-color: rgba(224,179,84,.4);
    box-shadow: 0 0 14px rgba(224,179,84,.06);
  }
  .menu__panels { position: relative; z-index: 1; }
}

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .about { grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); } }
.about__media { position: relative; max-width: 460px; margin-inline: auto; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }
.about__media .badge {
  position: absolute; right: 12px; bottom: 28px; background: var(--gold); color: #201607;
  border-radius: var(--radius-sm); padding: 1rem 1.3rem; text-align: center; box-shadow: var(--shadow-sm);
}
.about__media .badge b { font-family: var(--font-display); font-size: 1.8rem; display: block; line-height: 1; }
.about__media .badge span { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; }
.about h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.about p { color: var(--muted); font-size: 1.05rem; }
.about .stats { display: flex; gap: 2.5rem; margin-top: 1.8rem; flex-wrap: wrap; }
.about .stat b { font-family: var(--font-display); font-size: 2rem; color: var(--gold); display: block; }
.about .stat span { color: var(--muted); font-size: .9rem; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; max-width: 1000px; margin-inline: auto; }
@media (min-width: 600px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; margin: 0; display: flex; flex-direction: column; gap: .6rem; transition: transform .3s var(--ease), border-color .3s; }
.review-card:hover { transform: translateY(-4px); border-color: rgba(224,179,84,0.4); }
.review-card__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; line-height: 1; }
.review-card__text { color: var(--muted); font-size: .95rem; line-height: 1.6; margin: 0; flex: 1; }
.review-card__text::before { content: "\201C"; color: var(--gold); font-family: var(--font-display); font-size: 1.4rem; }
.review-card__author { font-style: normal; color: var(--text); font-weight: 600; font-size: .9rem; }
.reviews-footer { text-align: center; margin-top: 2.2rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
@media (min-width: 600px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.gallery button {
  padding: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; cursor: pointer;
  background: var(--surface); position: relative; aspect-ratio: 4/3; transition: transform .35s var(--ease);
}
.gallery button img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), filter .35s; }
.gallery button::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(0,0,0,0.35)); opacity: 0; transition: opacity .3s; }
.gallery button:hover img { transform: scale(1.06); }
.gallery button:hover::after { opacity: 1; }
.gallery__caption { position: absolute; left: 0; right: 0; bottom: 0; padding: .6rem .8rem; font-size: .82rem; font-weight: 500; color: #fff; text-align: left; opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s var(--ease); pointer-events: none; z-index: 1; }
.gallery button:hover .gallery__caption, .gallery button:focus-visible .gallery__caption { opacity: 1; transform: translateY(0); }
.gallery button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; padding: 5vw; background: rgba(8,6,4,0.9); backdrop-filter: blur(6px); }
.lightbox.open { display: flex; animation: fade .3s var(--ease); }
.lightbox img { max-width: 100%; max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow); }
.lightbox__close { position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,0.06); color: var(--text); font-size: 1.4rem; cursor: pointer; }
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Location & Hours ---------- */
.location { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: stretch; }
@media (min-width: 768px) { .location { grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 4vw, 3.5rem); } }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem clamp(1.5rem, 3vw, 2.4rem); }
.hours { list-style: none; margin: 0 0 1.6rem; padding: 0; }
.hours li { display: flex; justify-content: space-between; padding: .7rem 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 1rem; }
.hours li:last-child { border-bottom: 0; }
.hours li.today { color: var(--text); font-weight: 600; }
.hours li.today .day::before { content: "•"; color: var(--gold); margin-right: .5rem; }
.hours li .time { font-variant-numeric: tabular-nums; }

.contact-row { display: flex; align-items: flex-start; gap: .8rem; padding: .7rem 0; color: var(--muted); }
.contact-row svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 3px; }
.contact-row a { color: var(--text); }
.contact-row a:hover { color: var(--gold); }
.info-card .actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }

.reviews-summary { text-align: center; margin-bottom: 2rem; }
.reviews-summary__stars { font-size: 1.5rem; letter-spacing: 3px; color: var(--gold); margin-bottom: .3rem; }
.reviews-summary__rating { color: var(--muted); font-size: 1.1rem; margin-bottom: 1rem; }
.reviews-summary__rating b { color: var(--text); font-size: 1.3rem; }
.reviews-summary .btn { margin: 0 auto; }

.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 380px; box-shadow: var(--shadow-sm); }
.map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: grayscale(0.2) contrast(1.05); }

/* ---------- Footer ---------- */
.footer { background: #100c08; border-top: 1px solid var(--line); padding-block: 3.5rem 2rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
@media (min-width: 600px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; } }
.footer h4 { font-family: var(--font-body); text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; color: var(--muted); margin: 0 0 1.1rem; }
.footer .brand { font-size: 1.6rem; margin-bottom: .8rem; }
.footer p { color: var(--muted); margin: 0 0 .5rem; }
.footer a { color: var(--muted); transition: color .2s; }
.footer a:hover { color: var(--gold); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.socials { display: flex; gap: .8rem; margin-top: 1rem; }
.socials a { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--text); transition: all .25s var(--ease); }
.socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid var(--line); padding-top: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; color: var(--muted); font-size: .85rem; }
.footer__credit { width: 100%; text-align: center; margin-top: .4rem; font-size: .78rem; }
.footer__credit a { color: var(--muted); }
.footer__credit a:hover { color: var(--gold); }

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

/* ============================================================
   Interactivity & motion (v2)
   ============================================================ */

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Scroll progress bar */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 70; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); box-shadow: 0 0 12px rgba(224,179,84,.5); transition: width .08s linear; }

/* Nav scrollspy + scrolled logo */
.nav__links a.active { opacity: 1; color: var(--gold); }
.nav__links a.active::after { width: 100%; }
.nav.scrolled .brand__logo { height: 30px; }

/* Button sheen */
.btn--shine { position: relative; overflow: hidden; }
.btn--shine::after { content: ""; position: absolute; top: 0; left: -130%; width: 60%; height: 100%; transform: skewX(-20deg); background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent); transition: left .6s var(--ease); }
.btn--shine:hover::after { left: 150%; }

/* Hero: entrance, logo, particles, parallax */
.hero-anim { opacity: 0; transform: translateY(22px); animation: heroIn .9s var(--ease) forwards; animation-delay: var(--d, 0ms); }
@keyframes heroIn { to { opacity: 1; transform: none; } }

.hero__logo { margin: 0 0 1.6rem; }
.hero__logo img { width: clamp(240px, 42vw, 440px); height: auto; filter: drop-shadow(0 10px 34px rgba(224,179,84,.16)); animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.hero__particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.particle { position: absolute; bottom: -12px; border-radius: 50%; background: radial-gradient(circle, rgba(224,179,84,.85), rgba(224,179,84,0)); opacity: 0; animation: rise linear infinite; }
@keyframes rise { 0% { transform: translateY(0) scale(.5); opacity: 0; } 12% { opacity: .8; } 100% { transform: translateY(-92vh) scale(1); opacity: 0; } }
.hero__bokeh { transition: transform .25s ease-out; }

/* Hero background photo (added when a hero-*.jpg exists) */
.hero__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.hero.has-bg::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(160deg, rgba(18,12,7,.66), rgba(12,9,6,.9)); }
.hero.has-bg .hero__logo img { filter: drop-shadow(0 12px 40px rgba(0,0,0,.5)); }

/* Marquee */
.marquee { background: var(--gold); color: #201607; overflow: hidden; white-space: nowrap; border-block: 1px solid var(--gold-deep); }
.marquee__track { display: inline-flex; will-change: transform; animation: marquee 28s linear infinite; }
.marquee__track span { display: inline-block; padding: .85rem 0; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Delivery cards */
.delivery { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 600px) { .delivery { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; } }
.delivery__card { position: relative; overflow: hidden; display: flex; flex-direction: column; gap: .5rem; min-height: 210px; padding: 2rem 1.8rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.delivery__card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent); border-radius: 0 3px 3px 0; }
.delivery__card::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); background: radial-gradient(ellipse 140% 80% at 80% 50%, color-mix(in srgb, var(--accent) 8%, transparent), transparent); opacity: 0; transition: opacity .4s var(--ease); }
.delivery__card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--accent) 50%, var(--line)); box-shadow: var(--shadow-sm); }
.delivery__card:hover::after { opacity: 1; }
.delivery__name { font-family: var(--font-display); font-size: 1.9rem; color: var(--text); margin-bottom: .2rem; }
.delivery__name small { color: var(--accent); font-size: .65rem; letter-spacing: .12em; display: block; font-family: var(--font-body); font-weight: 600; text-transform: uppercase; margin-bottom: .15rem; }
.delivery__desc { color: var(--muted); margin: 0; }
.delivery__go { margin-top: auto; display: inline-flex; align-items: center; gap: .45rem; color: var(--gold); font-weight: 600; }
.delivery__go svg { transition: transform .3s var(--ease); }
.delivery__card:hover .delivery__go svg { transform: translateX(5px); }

/* Tilt */
.tilt { transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }

/* Count-up stats */
.stat b.count { font-variant-numeric: tabular-nums; }

/* Lightbox extras */
.lightbox__figure { margin: 0; max-width: 92vw; text-align: center; }
.lightbox__figure figcaption { margin-top: .9rem; color: var(--muted); font-size: .95rem; letter-spacing: .02em; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.06); color: var(--text); font-size: 1.9rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: all .25s var(--ease); }
.lightbox__nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__prev { left: 3vw; }
.lightbox__next { right: 3vw; }
.lightbox__counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: var(--muted); font-size: .85rem; letter-spacing: .12em; }

/* Back to top */
.to-top { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: rgba(20,18,16,.82); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: var(--gold); cursor: pointer; display: grid; place-items: center; opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity .3s, transform .3s, border-color .3s; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { border-color: var(--gold); transform: translateY(-3px); }

/* Demo banner */
.demo-banner {
  position: fixed; inset: 0; z-index: 90;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(8,6,4,0.85); backdrop-filter: blur(8px);
  animation: fade .4s var(--ease);
}
.demo-banner__content {
  background: var(--surface); border: 1px solid var(--gold);
  border-radius: var(--radius); padding: 2.8rem 2.4rem;
  max-width: 460px; width: 100%; text-align: center;
  box-shadow: 0 0 60px rgba(224,179,84,0.15);
}
.demo-banner__title {
  font-size: 1.8rem; color: var(--gold); margin-bottom: .8rem;
}
.demo-banner__text {
  color: var(--muted); line-height: 1.6; margin-bottom: 1.8rem;
}
.demo-banner__text strong {
  color: var(--text);
}
.demo-banner.hidden {
  display: none;
}

/* Footer logo */
.footer__logo { height: 56px; width: auto; margin-bottom: 1.1rem; }

/* Reveal: directions + stagger */
.reveal[data-reveal-dir="left"]  { transform: translateX(-40px); }
.reveal[data-reveal-dir="right"] { transform: translateX(40px); }
.reveal.in { transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 90ms); }

@media (min-width: 768px) {
  .about__media { max-width: none; margin-inline: 0; }
  .about__media .badge { right: -18px; }
}
@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
  .brand__tag { display: none; }
  .lightbox__prev { left: 8px; } .lightbox__next { right: 8px; }
  .lightbox__nav { width: 44px; height: 44px; }
}
@media (max-width: 600px) {
  .marquee__track span { font-size: .95rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
