/* ─── RESET & ROOT ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold:      #c9a84c;
  --gold-lt:   #e0c270;
  --gold-dim:  rgba(201,168,76,.15);
  --black:     #080808;
  --dark:      #0d0d0d;
  --dark2:     #111111;
  --dark3:     #181818;
  --dark4:     #222222;
  --cream:     #f0ebe0;
  --cream-dim: rgba(240,235,224,.6);
  --muted:     rgba(240,235,224,.35);
  --wa:        #25D366;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── UTILITY ─── */
.eyebrow {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
}
.heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--cream);
}
.heading em { font-style: italic; color: var(--gold); }
.rule {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 1.2rem 0 1.8rem;
}
.rule.c { margin-left: auto; margin-right: auto; }
.body-text {
  font-size: .93rem;
  line-height: 1.85;
  color: var(--cream-dim);
  max-width: 500px;
}
.fade   { opacity: 0; transform: translateY(24px);  transition: opacity .75s ease, transform .75s ease; }
.fade-l { opacity: 0; transform: translateX(-24px); transition: opacity .75s ease, transform .75s ease; }
.fade-r { opacity: 0; transform: translateX(24px);  transition: opacity .75s ease, transform .75s ease; }
.fade.in, .fade-l.in, .fade-r.in { opacity: 1; transform: none; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform .2s, background .25s, color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold  { background: var(--gold);  color: var(--black); }
.btn-gold:hover { background: var(--gold-lt); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(240,235,224,.3); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-wa    { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #1ebe5d; }
.btn svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

/* ─── NAVBAR ─── */
#nav {
  position: fixed; inset: 0 0 auto;
  z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 76px;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}
#nav.stuck {
  background: rgba(8,8,8,.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,.12);
}
.nav-logo img { height: 89px; width: auto; margin-top: 39%; }
.nav-links { display: flex; gap: 2.8rem; list-style: none; }
.nav-links a {
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  padding-bottom: 3px;
  transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; gap: .8rem; align-items: center; }
.nav-phone {
  display: flex; align-items: center; gap: .5rem;
  font-size: .76rem; font-weight: 500;
  color: var(--cream-dim);
  letter-spacing: .05em;
  transition: color .3s;
}
.nav-phone svg { width: 14px; height: 14px; fill: var(--gold); }
.nav-phone:hover { color: var(--gold); }
.nav-wa-btn {
  display: flex; align-items: center; gap: .45rem;
  background: var(--wa); color: #fff;
  padding: .45rem 1.1rem;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background .3s;
}
.nav-wa-btn svg { width: 14px; height: 14px; fill: #fff; }
.nav-wa-btn:hover { background: #1ebe5d; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.burger span { width: 22px; height: 1.5px; background: var(--gold); transition: .3s; }

/* ─── HERO ─── */
#hero {
  position: relative;
  height: 100vh; min-height: 640px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1529042410759-befb1204b468?auto=format&fit=crop&w=1920&q=85') center/cover no-repeat;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,  rgba(8,8,8,.92) 0%, rgba(8,8,8,.55) 55%, rgba(8,8,8,.2) 100%),
    linear-gradient(0deg,   rgba(8,8,8,.9)  0%, transparent 40%);
}
.hero-body {
  position: relative; z-index: 1;
  padding: 0 5%;
  max-width: 700px;
}
.hero-body .eyebrow { margin-bottom: 1.4rem; display: flex; align-items: center; gap: .8rem; }
.hero-body .eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 1.6rem;
}
.hero-title em { font-style: italic; color: var(--gold); display: block; }
.hero-sub {
  font-size: .96rem;
  line-height: 1.8;
  color: var(--cream-dim);
  max-width: 420px;
  margin-bottom: 2.8rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-logo {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.hero-logo img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 0 50px rgba(201,168,76,.35)) drop-shadow(0 0 120px rgba(201,168,76,.12));
  animation: logo-float 4s ease-in-out infinite;
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  color: var(--muted);
  font-size: .62rem; letter-spacing: .28em; text-transform: uppercase;
  animation: pulse-down 2.2s ease-in-out infinite;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 36px;
  background: linear-gradient(var(--gold), transparent);
}
@keyframes pulse-down {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: .7; }
  50%       { transform: translateX(-50%) translateY(5px); opacity: 1; }
}

/* ─── USP STRIP ─── */
#usp {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,.12);
  border-bottom: 1px solid rgba(201,168,76,.12);
  padding: 2.2rem 5%;
}
.usp-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 1100px; margin: 0 auto;
}
.usp-item {
  flex: 1 1 200px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 1rem 1.5rem;
  position: relative;
}
.usp-item + .usp-item::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(201,168,76,.15);
}
.usp-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .8rem;
}
.usp-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.usp-label {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream);
  margin-bottom: .25rem;
}
.usp-desc { font-size: .78rem; color: var(--cream-dim); }

/* ─── ABOUT ─── */
#about {
  background: var(--dark2);
  padding: 8rem 5%;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-img { position: relative; }
.about-img img {
  width: 100%; height: 600px;
  object-fit: cover;
  position: relative; z-index: 1;
}
.about-img .corner-tl {
  position: absolute; top: -16px; left: -16px;
  width: 120px; height: 120px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  z-index: 0; opacity: .5;
}
.about-img .corner-br {
  position: absolute; bottom: -16px; right: -16px;
  width: 120px; height: 120px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  z-index: 0; opacity: .5;
}
.about-img .badge {
  position: absolute; bottom: 2rem; left: -2rem;
  z-index: 2;
  background: var(--gold);
  color: var(--black);
  padding: 1.2rem 1.4rem;
  text-align: center;
  min-width: 100px;
}
.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700;
  line-height: 1;
}
.badge-lbl { font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.about-text .body-text { margin-bottom: 1.2rem; }
.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 2.8rem;
  padding-top: 2.8rem;
  border-top: 1px solid rgba(201,168,76,.12);
}
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: .3rem;
}
.stat-l {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream-dim);
}

/* ─── MENU ─── */
#menu {
  background: var(--dark);
  padding: 8rem 5%;
}
.menu-head {
  text-align: center;
  max-width: 540px; margin: 0 auto 5rem;
}
.menu-head .rule.c { margin-top: 1rem; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1300px; margin: 0 auto 4rem;
}
.dish {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: default;
}
.dish img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
  filter: brightness(.75);
}
.dish:hover img { transform: scale(1.06); filter: brightness(.9); }
.dish-info {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.95) 0%, rgba(8,8,8,.3) 45%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem 1.6rem;
}
.dish-cat {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5rem;
}
.dish-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  line-height: 1.2; margin-bottom: .5rem;
}
.dish-desc {
  font-size: .78rem; color: var(--cream-dim); line-height: 1.6;
  max-height: 0; overflow: hidden;
  transition: max-height .45s ease, margin .3s;
}
.dish:hover .dish-desc { max-height: 56px; margin-bottom: .6rem; }
.dish-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: .6rem;
}
.dish-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--gold);
}
.dish-tag {
  font-size: .6rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--gold-dim); color: var(--gold);
  padding: .25rem .65rem; border: 1px solid rgba(201,168,76,.25);
}
.menu-cta { text-align: center; }

/* ─── GALLERY ─── */
#gallery {
  background: var(--dark2);
  padding: 8rem 5%;
}
.gallery-head {
  text-align: center;
  max-width: 540px; margin: 0 auto 5rem;
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 240px 240px;
  gap: 4px;
  max-width: 1300px; margin: 0 auto;
}
.gp { overflow: hidden; }
.gp img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .5s;
  filter: brightness(.78) saturate(.9);
}
.gp:hover img { transform: scale(1.05); filter: brightness(1) saturate(1); }
.gp1 { grid-column: 1/5;  grid-row: 1/2; }
.gp2 { grid-column: 5/8;  grid-row: 1/2; }
.gp3 { grid-column: 8/13; grid-row: 1/3; }
.gp4 { grid-column: 1/4;  grid-row: 2/3; }
.gp5 { grid-column: 4/8;  grid-row: 2/3; }

/* ─── ORDER CTA STRIP ─── */
#order-strip {
  background: var(--black);
  padding: 6rem 5%;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,.1);
  border-bottom: 1px solid rgba(201,168,76,.1);
  position: relative;
  overflow: hidden;
}
#order-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}
.strip-inner { position: relative; z-index: 1; }
.strip-inner .heading { margin: 1rem 0 .8rem; }
.strip-inner p {
  font-size: .93rem; color: var(--cream-dim);
  max-width: 480px; margin: 0 auto 2.8rem; line-height: 1.8;
}
.order-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ─── FIND US ─── */
#findus {
  background: var(--dark);
  padding: 8rem 5%;
}
.findus-inner { max-width: 1200px; margin: 0 auto; }
.findus-head { text-align: center; margin-bottom: 5rem; }
.findus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.info-col { display: flex; flex-direction: column; gap: 2rem; }
.info-card {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,.1);
  padding: 2rem 2.2rem;
  transition: border-color .3s;
}
.info-card:hover { border-color: rgba(201,168,76,.3); }
.info-card-head {
  display: flex; align-items: center; gap: .9rem;
  margin-bottom: 1.4rem;
}
.info-card-head svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }
.info-card-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600;
  letter-spacing: .03em;
}
.hours-list { width: 100%; border-collapse: collapse; }
.hours-list tr { border-bottom: 1px solid rgba(201,168,76,.07); }
.hours-list tr:last-child { border-bottom: none; }
.hours-list td { padding: .6rem 0; font-size: .86rem; color: var(--cream-dim); }
.hours-list td:last-child { text-align: right; color: var(--gold); font-weight: 500; }
.open-tag {
  display: inline-block;
  background: rgba(37,211,102,.12);
  color: var(--wa);
  font-size: .6rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .2rem .6rem;
  border: 1px solid rgba(37,211,102,.25);
  margin-left: .6rem;
  vertical-align: middle;
}
.contact-rows { display: flex; flex-direction: column; gap: .9rem; }
.crow { display: flex; align-items: center; gap: 1rem; }
.crow-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,.2);
  display: flex; align-items: center; justify-content: center;
}
.crow-icon svg { width: 15px; height: 15px; fill: var(--gold); }
.crow-text { font-size: .87rem; color: var(--cream-dim); }
.crow-text a { color: var(--gold); }
.crow-text a:hover { text-decoration: underline; }
.order-box {
  background: var(--dark4);
  border: 1px solid rgba(201,168,76,.12);
  padding: 2.2rem;
  text-align: center;
}
.order-box-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600;
  margin-bottom: .6rem;
}
.order-box p { font-size: .86rem; color: var(--cream-dim); line-height: 1.7; margin-bottom: 1.8rem; }
.order-box-btns { display: flex; flex-direction: column; gap: .9rem; }
.wa-big, .phone-big {
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  padding: 1rem;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  transition: transform .2s, background .25s;
  cursor: pointer;
}
.wa-big:hover, .phone-big:hover { transform: translateY(-2px); }
.wa-big  { background: var(--wa); color: #fff; }
.wa-big:hover { background: #1ebe5d; }
.phone-big { background: transparent; color: var(--cream); border: 1px solid rgba(201,168,76,.25); }
.phone-big:hover { border-color: var(--gold); color: var(--gold); }
.wa-big svg, .phone-big svg { width: 18px; height: 18px; fill: currentColor; }
.map-col { display: flex; flex-direction: column; gap: 1rem; }
.map-frame {
  width: 100%; height: 380px;
  border: none;
  filter: grayscale(70%) brightness(.75) contrast(1.1);
  transition: filter .5s;
}
.map-frame:hover { filter: grayscale(20%) brightness(.95); }
.map-label {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,.1);
  padding: 1.1rem 1.4rem;
  display: flex; align-items: center; gap: .9rem;
}
.map-label svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }
.map-label-text { font-size: .86rem; color: var(--cream-dim); line-height: 1.55; }
.map-label-text a { color: var(--gold); font-weight: 500; }
.map-label-text a:hover { text-decoration: underline; }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,.1);
  padding: 5rem 5% 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(201,168,76,.08);
  margin-bottom: 2rem;
}
.footer-brand img { height: 60px; margin-bottom: 1.4rem; }
.footer-brand p { font-size: .84rem; color: var(--cream-dim); line-height: 1.8; max-width: 260px; }
.footer-socials { display: flex; gap: .7rem; margin-top: 1.6rem; }
.footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(201,168,76,.2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, background .3s;
}
.footer-socials a:hover { border-color: var(--gold); background: rgba(201,168,76,.08); }
.footer-socials svg { width: 13px; height: 13px; fill: var(--gold); }
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a { font-size: .84rem; color: var(--cream-dim); transition: color .3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .75rem; color: var(--muted);
}
.footer-bottom a { color: var(--gold); }

/* ─── MOBILE NAV OVERLAY ─── */
.mobile-nav {
  display: none;
  position: fixed; inset: 76px 0 0;
  background: rgba(8,8,8,.98);
  backdrop-filter: blur(12px);
  z-index: 998;
  flex-direction: column;
  padding: 3rem 5%;
  gap: 1.8rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.1rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream-dim); border-bottom: 1px solid rgba(201,168,76,.08);
  padding-bottom: 1.2rem;
  transition: color .3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-ctas { display: flex; flex-direction: column; gap: .8rem; margin-top: 1rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { gap: 4rem; }
}
@media (max-width: 820px) {
  .hero-logo { display: none; }
  .hero-body { max-width: 100%; }
  .nav-links, .nav-actions { display: none; }
  .burger { display: flex; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img img { height: 360px; }
  .about-img .badge { left: 1rem; }
  .findus-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .gp1,.gp2,.gp3,.gp4,.gp5 { grid-column: auto; grid-row: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; }
  .about-stats { grid-template-columns: repeat(3,1fr); gap: 1rem; }
  .usp-item + .usp-item::before { display: none; }
}
