/* ============================================================
   LE CINQ — style.css
   Black · Gold · White lines
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

:root {
  --black:      #080808;
  --charcoal:   #111111;
  --card-bg:    #0e0e0e;
  --gold:       #A08840;
  --gold-light: #C4AA62;
  --gold-dim:   rgba(160,136,64,.12);
  --gold-glow:  rgba(160,136,64,.18);
  --white:      #ffffff;
  --white-soft: rgba(255,255,255,.75);
  --white-dim:  rgba(255,255,255,.06);
  --line:       rgba(255,255,255,.13);
  --nav-h:      68px;
  --radius:     4px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  transition: background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(12px);
  border-color: var(--line);
}
nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 2.5rem; max-width: 1200px; margin: 0 auto;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none;
}
.logo-mark {
  position: relative; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 44px; height: 44px; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-le {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: .6rem;
  letter-spacing: .35em;
  color: rgba(160,136,64,.7);
  text-transform: uppercase;
  margin-bottom: 1px;
}
.logo-cinq {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: .22em;
  color: var(--gold);
}

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.nav-links li a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-links li a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right var(--transition);
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--gold); }
.nav-links li a:hover::after,
.nav-links li a.active::after { right: 0; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--gold-light);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO — index.html
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: var(--nav-h) 2rem 4rem;
  position: relative; overflow: hidden;
}

/* Animated background lines */
.hero-lines {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-lines svg { width: 100%; height: 100%; opacity: .08; }

/* Big logo mark */
.hero-emblem {
  position: relative; z-index: 1;
  width: 160px; height: 160px;
  margin-bottom: 2.5rem;
  animation: fadeUp .9s .1s both;
}
.hero-emblem svg { width: 100%; height: 100%; }

/* "LE" small */
.hero-le {
  position: relative; z-index: 1;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: .75rem;
  letter-spacing: .55em;
  color: rgba(160,136,64,.65);
  text-transform: uppercase;
  margin-bottom: .4rem;
  animation: fadeUp .9s .2s both;
}
/* "CINQ" big */
.hero-cinq {
  position: relative; z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: .18em;
  color: var(--gold);
  line-height: 1;
  animation: fadeUp .9s .3s both;
}

/* White divider line */
.hero-rule {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 1.2rem;
  margin: 2rem 0;
  animation: fadeUp .9s .4s both;
}
.hero-rule span { display: block; width: 80px; height: 1px; background: rgba(255,255,255,.18); }
.hero-rule em { font-style: normal; color: var(--gold); font-size: .7rem; letter-spacing: .3em; }

.hero-tagline {
  position: relative; z-index: 1;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: .8rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 3rem;
  animation: fadeUp .9s .5s both;
}

/* Chips */
.hero-chips {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: center;
  margin-bottom: 3rem;
  animation: fadeUp .9s .55s both;
}
.chip {
  display: flex; align-items: center; gap: .45rem;
  padding: .45rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.chip svg { width: 13px; height: 13px; color: var(--gold); }

/* Gold button */
.btn-gold {
  position: relative; z-index: 1;
  display: inline-block;
  padding: .9rem 2.8rem;
  border: 1px solid var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: .68rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  transition: background var(--transition), color var(--transition);
  overflow: hidden;
  animation: fadeUp .9s .65s both;
}
.btn-gold:hover { background: var(--gold); color: var(--black); }

/* Section button (back/secondary) */
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.4rem;
  border: 1px solid var(--line);
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: border-color var(--transition), color var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline svg { width: 12px; height: 12px; }

/* ============================================================
   SECTION TITLE
   ============================================================ */
.sec-title {
  text-align: center;
  padding: 4rem 2rem 2.5rem;
}
.sec-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: .62rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.sec-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: .05em;
  color: var(--white);
  line-height: 1.1;
}
.sec-line {
  display: block;
  width: 40px; height: 1px;
  background: rgba(255,255,255,.2);
  margin: 1.4rem auto 0;
}

/* ============================================================
   FEATURES GRID — index.html
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feat-card {
  background: var(--black);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: background var(--transition);
}
.feat-card:hover { background: var(--card-bg); }
.feat-icon { font-size: 2rem; display: block; margin-bottom: 1.2rem; }
.feat-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: .05em;
  color: var(--gold-light);
  margin-bottom: .6rem;
}
.feat-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .05em;
  line-height: 1.8;
}

/* ============================================================
   ABOUT — index.html
   ============================================================ */
.about-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
  text-align: center;
}
.about-wrap p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 2;
  margin-bottom: 1rem;
}
.about-wrap p strong { color: var(--gold); font-weight: 400; }

/* ============================================================
   MENU HUB — menu.html
   ============================================================ */
.menu-hub {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.hub-card {
  background: var(--black);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column;
  gap: .6rem;
  transition: background var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.hub-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right .4s ease;
}
.hub-card:hover::before { right: 0; }
.hub-card:hover { background: var(--card-bg); }
.hub-emoji { font-size: 1.8rem; }
.hub-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: .05em;
  color: var(--white);
}
.hub-count {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hub-arrow {
  position: absolute; right: 1.5rem; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.15);
  font-size: 1.2rem;
  transition: color var(--transition), right var(--transition);
}
.hub-card:hover .hub-arrow { color: var(--gold); right: 1.2rem; }

/* ============================================================
   SECTION PAGE HEADER
   ============================================================ */
.section-hero {
  padding: calc(var(--nav-h) + 3rem) 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 3rem;
}
.section-hero-left { display: flex; flex-direction: column; gap: .5rem; }
.section-emoji { font-size: 2.5rem; }
.section-label {
  font-size: .62rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: .06em;
  color: var(--white);
  line-height: 1;
}

/* ============================================================
   DISH CARDS GRID
   ============================================================ */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 1200px;
  margin: 0 auto 6rem;
  padding: 0 2rem;
}

/* ─ Individual dish card ─ */
.dish-card {
  background: var(--black);
  display: flex; flex-direction: column;
  transition: background var(--transition);
}
.dish-card:hover { background: var(--card-bg); }

/* 3D viewer area */
.dish-3d {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--charcoal);
  overflow: hidden;
}
model-viewer {
  width: 100%; height: 100%;
  background: transparent;
  --progress-bar-color: var(--gold);
  --progress-mask: transparent;
}

/* Poster overlay */
.dish-poster {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .6rem;
  background: var(--charcoal);
  cursor: pointer;
  transition: opacity var(--transition);
  z-index: 2;
}
.dish-poster.hidden { opacity: 0; pointer-events: none; }
.dish-poster-icon { font-size: 2.8rem; opacity: .4; }
.dish-poster-label {
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: .3rem .8rem;
}
.dish-poster:hover .dish-poster-label {
  background: var(--gold-dim);
}

/* AR button inside model-viewer */
.ar-btn {
  position: absolute; bottom: .8rem; right: .8rem;
  padding: .3rem .75rem;
  background: var(--gold);
  color: var(--black);
  font-family: 'Jost', sans-serif;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: none; cursor: pointer; border-radius: 2px;
}

/* Info area */
.dish-info {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex; flex-direction: column; gap: .4rem;
  border-top: 1px solid var(--line);
}
.dish-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: .04em;
  color: var(--white);
}
.dish-desc {
  font-size: .72rem;
  color: rgba(255,255,255,.38);
  line-height: 1.7;
  letter-spacing: .03em;
}
.dish-price {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .8rem;
  letter-spacing: .12em;
  color: var(--gold);
  margin-top: .3rem;
}

/* Pizza sizes */
.dish-sizes {
  display: flex; gap: .6rem; flex-wrap: wrap;
  margin-top: .3rem;
}
.size-tag {
  font-size: .62rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  padding: .18rem .5rem;
  border: 1px solid var(--line);
  border-radius: 2px;
}
.size-tag span { color: var(--gold); margin-left: .3rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 1px;
}
.c-card {
  background: var(--black);
  padding: 2.5rem;
}
.c-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: .06em;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--line);
}
.info-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--white-dim);
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .03em;
}
.info-row i { color: var(--gold); width: 16px; flex-shrink: 0; margin-top: 2px; }
.info-row a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.info-row a:hover { color: var(--gold); }

/* Social links */
.social-links { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.social-link {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .45rem 1rem;
  border: 1px solid var(--line);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  border-radius: 2px;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.social-link i { font-size: .85rem; }

/* Contact form */
.contact-form-el { display: flex; flex-direction: column; gap: 1rem; }
.contact-form-el input,
.contact-form-el textarea {
  background: var(--white-dim);
  border: 1px solid var(--line);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  font-weight: 300;
  letter-spacing: .05em;
  padding: .85rem 1.1rem;
  outline: none;
  border-radius: 2px;
  transition: border-color var(--transition);
}
.contact-form-el input::placeholder,
.contact-form-el textarea::placeholder { color: rgba(255,255,255,.25); }
.contact-form-el input:focus,
.contact-form-el textarea:focus { border-color: var(--gold); }
.contact-form-el textarea { resize: vertical; min-height: 130px; }

/* Map */
.map-wrap {
  width: 100%; height: 340px;
  border: 1px solid var(--line);
  overflow: hidden;
  margin-top: 1px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(1) invert(1) contrast(.85); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--line);
  background: var(--charcoal);
}
.footer-inner {
  display: flex; justify-content: space-between; gap: 2rem;
  max-width: 1200px; margin: 0 auto;
  padding: 3rem 2.5rem 2rem;
}
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: .8rem;
}
.footer-col p {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  line-height: 1.9;
  letter-spacing: .05em;
}
.footer-col a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  padding: 1.2rem 2rem;
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  border-top: 1px solid var(--line);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 1; }
.reveal.pre { opacity: 0; transform: translateY(22px); }
.reveal.in  { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .6s ease; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:900px){
  .feat-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .dishes-grid { grid-template-columns: repeat(auto-fill,minmax(230px,1fr)); }
  .section-hero { flex-direction: column; align-items: flex-start; }
}
@media(max-width:768px){
  .nav-links {
    display: none; flex-direction: column; gap: 1.5rem;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(8,8,8,.98); padding: 2rem;
    border-bottom: 1px solid var(--line);
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .menu-hub { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; }
  .section-hero { padding: calc(var(--nav-h) + 2rem) 1.5rem 2rem; }
  .dishes-grid { padding: 0 1.5rem; }
}
@media(max-width:480px){
  nav { padding: 0 1.2rem; }
  .hero { padding: calc(var(--nav-h) + 2rem) 1.2rem 3rem; }
  .hero-emblem { width: 110px; height: 110px; }
  .hero-cinq { font-size: 3.5rem; }
  .menu-hub { grid-template-columns: 1fr; padding: 1.5rem 1.2rem; }
  .dishes-grid { grid-template-columns: 1fr; padding: 0 1.2rem; }
  .c-card { padding: 1.5rem 1.2rem; }
  .contact-wrap { padding: 0 1.2rem 4rem; }
  .section-hero { padding: calc(var(--nav-h) + 1.5rem) 1.2rem 1.5rem; }
  .footer-inner { padding: 2rem 1.2rem 1.5rem; }
  .section-name { font-size: 2.5rem; }
}
