/* ===================================================================
   Lee's Kitchen — Stylesheet
   Palette: deep charcoal + warm gold + Vietnamese red accent
=================================================================== */

:root {
  --bg:        #0f0d0b;
  --bg-2:      #16120e;
  --bg-card:   #1c1714;
  --bg-soft:   #221b16;
  --line:      rgba(232,176,75,.16);
  --text:      #f4ece2;
  --text-dim:  #c2b6a6;
  --muted:     #8d8377;
  --gold:      #e8b04b;
  --gold-2:    #f6cf86;
  --gold-deep: #c8902f;
  --red:       #d33a2f;
  --green:     #4fae6b;
  --radius:    18px;
  --shadow:    0 24px 60px -20px rgba(0,0,0,.7);
  --maxw:      1200px;
  --ease:      cubic-bezier(.2,.7,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.12; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
em { font-style: italic; color: var(--gold); }

::selection { background: var(--gold); color: #1a1209; }

/* ---------- Shared section bits ---------- */
.section-eyebrow {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: .2rem;
}
.section-title {
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  letter-spacing: -.01em;
  margin-bottom: 1.1rem;
}
.section-title.center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto 3.2rem; text-align: center; }
.section-lead, .section-head .section-eyebrow { text-align: center; }
.section-lead { color: var(--text-dim); }

/* ===================================================================
   NAVBAR
=================================================================== */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 1.1rem 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(15,13,11,.86);
  backdrop-filter: blur(14px);
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 40px -24px rgba(0,0,0,.9);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.4rem);
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: .6rem; color: var(--gold); transition: opacity .25s var(--ease); }
.brand:hover { opacity: .85; }
.brand-sticks { width: 40px; height: 27px; flex: none; }
.brand-word {
  font-family: 'Jost', sans-serif; font-weight: 300; font-size: 1.32rem;
  letter-spacing: .24em; color: var(--gold); white-space: nowrap; line-height: 1;
}
.brand-space { letter-spacing: .4em; }
.navbar.scrolled .brand-sticks { width: 36px; }

/* full framed logo (footer) */
.footer-logo { display: inline-block; color: var(--gold); }
.logo-full { width: 250px; max-width: 100%; height: auto; display: block; color: var(--gold); }
.logo-word { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 38px; letter-spacing: 9px; fill: currentColor; }
.logo-tag { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 11px; letter-spacing: 4px; fill: currentColor; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .95rem; font-weight: 400; color: var(--text-dim); position: relative; transition: color .25s; }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--text); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  padding: .55rem 1.3rem; border: 1px solid var(--gold);
  border-radius: 50px; color: var(--gold) !important; font-weight: 500;
  transition: all .3s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: #1a1209 !important; box-shadow: 0 8px 22px -8px rgba(232,176,75,.7); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   HERO
=================================================================== */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; text-align: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: var(--bg-2) url('../images/hero.jpg') center/cover no-repeat;
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.18); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 8%, rgba(15,13,11,.30), rgba(15,13,11,.78) 60%, rgba(15,13,11,.97) 100%),
    linear-gradient(180deg, rgba(15,13,11,.55), rgba(15,13,11,.4));
}
.hero-content { position: relative; z-index: 2; max-width: 880px; padding: 6rem 1.4rem 5rem; }
.hero-eyebrow {
  font-family: 'Dancing Script', cursive; font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold-2); margin-bottom: .4rem;
}
.hero-title { font-size: clamp(2.8rem, 8.5vw, 6rem); font-weight: 900; letter-spacing: -.02em; margin-bottom: 1.3rem; }
.hero-title .script { display: block; font-weight: 700; }
.hero-title .big {
  display: block;
  background: linear-gradient(120deg, var(--gold-2), var(--gold), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { max-width: 620px; margin: 0 auto 2.2rem; color: var(--text-dim); font-size: clamp(1rem, 1.6vw, 1.18rem); font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.6rem; }

/* ===================================================================
   ★ ANIMATED CTA BUTTON ★
=================================================================== */
.btn-cta {
  --pulse: rgba(232,176,75,.55);
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1.05rem 2.4rem; border-radius: 60px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.05rem;
  color: #1a1209; cursor: pointer; overflow: hidden;
  background: linear-gradient(120deg, var(--gold-2) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  background-size: 200% 100%;
  box-shadow: 0 14px 34px -10px rgba(232,176,75,.6);
  animation: ctaPulse 2.4s var(--ease) infinite, ctaHue 6s linear infinite;
  transition: transform .25s var(--ease), filter .25s var(--ease);
}
.btn-cta-label { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: .6rem; }

/* pulsing ring */
@keyframes ctaPulse {
  0%   { box-shadow: 0 14px 34px -10px rgba(232,176,75,.6), 0 0 0 0 var(--pulse); }
  70%  { box-shadow: 0 14px 34px -10px rgba(232,176,75,.6), 0 0 0 22px rgba(232,176,75,0); }
  100% { box-shadow: 0 14px 34px -10px rgba(232,176,75,.6), 0 0 0 0 rgba(232,176,75,0); }
}
/* gradient drift */
@keyframes ctaHue { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* moving shine sweep */
.btn-cta-shine {
  position: absolute; top: 0; left: -120%; z-index: 1;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  animation: ctaShine 3.4s var(--ease) infinite;
}
@keyframes ctaShine { 0% { left: -120%; } 55%,100% { left: 160%; } }

.btn-cta:hover {
  transform: translateY(-4px) scale(1.04);
  filter: brightness(1.07) saturate(1.06);
}
.btn-cta:active { transform: translateY(-1px) scale(1.01); }
.btn-cta.inline { margin-top: .6rem; }

/* secondary buttons */
.btn-ghost, .btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 1.05rem 2rem; border-radius: 60px; font-weight: 500; font-size: 1.02rem;
  border: 1.5px solid rgba(244,236,226,.35); color: var(--text);
  transition: all .3s var(--ease); background: rgba(255,255,255,.03);
}
.btn-ghost:hover, .btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(232,176,75,.08); transform: translateY(-2px); }
.btn-outline { border-color: var(--gold); color: var(--gold); }

/* hero rating mini-badge */
.hero-rating {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: .55rem 1.1rem; border-radius: 50px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px); transition: all .3s var(--ease);
}
.hero-rating:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.hero-rating-score { font-weight: 600; color: var(--gold-2); }
.hero-rating-count { font-size: .9rem; color: var(--text-dim); }

/* star widget (shared) */
.hero-stars, .gb-stars {
  --size: 16px;
  position: relative; display: inline-block;
  width: calc(var(--size) * 5); height: var(--size);
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.22) 0 var(--size), transparent 0);
  -webkit-mask: var(--star-mask); mask: var(--star-mask);
  -webkit-mask-size: var(--size); mask-size: var(--size);
}
.stars-fill { position: absolute; inset: 0; height: 100%; background: #fbbc05; }
:root {
  --star-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.26 6.86.6-5.2 4.52 1.56 6.7L12 16.9 5.88 20.6l1.56-6.7L2.24 9.4l6.86-.6z'/%3E%3C/svg%3E"); }

/* scroll cue */
.scroll-cue { position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%); z-index: 6; width: 26px; height: 42px; border: 2px solid rgba(244,236,226,.5); border-radius: 14px; }
.scroll-cue span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: var(--gold); border-radius: 4px; transform: translateX(-50%); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 24px; } 100% { opacity: 0; } }

/* ===================================================================
   USP STRIP
=================================================================== */
.usp-strip {
  max-width: var(--maxw); margin: -3.2rem auto 0; position: relative; z-index: 5;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  width: calc(100% - 2.8rem);
}
.usp { display: flex; align-items: center; gap: .9rem; padding: 1.5rem 1.4rem; background: var(--bg-card); }
.usp-ic { font-size: 1.7rem; }
.usp strong { display: block; font-size: 1rem; }
.usp small { color: var(--muted); font-size: .82rem; }

/* ===================================================================
   ABOUT
=================================================================== */
.about {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1rem, 4vw, 2.4rem);
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.about-media { position: relative; }
.about-media img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-media::after {
  content: ''; position: absolute; inset: 14px -14px -14px 14px; z-index: -1;
  border: 1.5px solid var(--gold); border-radius: var(--radius); opacity: .5;
}
.about-media-badge {
  position: absolute; right: -14px; bottom: 28px;
  background: linear-gradient(140deg, var(--gold), var(--gold-deep)); color: #1a1209;
  padding: 1rem 1.4rem; border-radius: 14px; text-align: center; line-height: 1.2;
  box-shadow: 0 16px 30px -10px rgba(0,0,0,.6);
}
.about-media-badge .years { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.about-media-badge .num { display: block; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; }
.about-media-badge .txt { font-size: .75rem; }
.about-text p { color: var(--text-dim); margin-bottom: 1.1rem; }
.about-text strong { color: var(--text); }
.about-points { list-style: none; margin: 1.4rem 0 2rem; }
.about-points li { position: relative; padding-left: 1.8rem; margin-bottom: .7rem; color: var(--text-dim); }
.about-points li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); }

/* ===================================================================
   MENU
=================================================================== */
.menu { background: var(--bg-2); padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1rem, 4vw, 2.4rem); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.menu-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem;
}
.dish {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.dish:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(232,176,75,.4); }
.dish-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.dish:hover .dish-img img { transform: scale(1.08); }
.dish-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: #1a1209; font-size: .72rem; font-weight: 600;
  padding: .25rem .7rem; border-radius: 50px; text-transform: uppercase; letter-spacing: .05em;
}
.dish-tag.green { background: var(--green); color: #06210f; }
.dish-body { padding: 1.4rem 1.5rem 1.6rem; }
.dish-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: .5rem; }
.dish-head h3 { font-size: 1.32rem; }
.dish-price { color: var(--gold); font-weight: 600; font-family: 'Playfair Display', serif; font-size: 1.2rem; white-space: nowrap; }
.dish-body p { color: var(--text-dim); font-size: .94rem; font-weight: 300; }

.menu-foot { text-align: center; margin-top: 3rem; }
.menu-foot p { color: var(--muted); font-size: .9rem; margin-bottom: 1.1rem; }

/* ===================================================================
   REVIEWS
=================================================================== */
.reviews { max-width: var(--maxw); margin: 0 auto; padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1rem, 4vw, 2.4rem); }

.google-badge {
  display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
  max-width: 640px; margin: 0 auto 3.5rem;
  background: #fff; color: #202124; border-radius: 16px;
  padding: 1.5rem 1.8rem; box-shadow: 0 24px 60px -20px rgba(0,0,0,.6);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.google-badge:hover { transform: translateY(-5px); box-shadow: 0 30px 70px -20px rgba(0,0,0,.75); }
.gb-mid { flex: 1; min-width: 180px; }
.gb-title { font-size: .82rem; color: #5f6368; font-weight: 500; }
.gb-score-row { display: flex; align-items: center; gap: .6rem; margin: .15rem 0; }
.gb-score { font-size: 2.1rem; font-weight: 700; color: #e7711b; font-family: 'Poppins', sans-serif; line-height: 1; }
.gb-stars { --size: 22px; background-image: repeating-linear-gradient(90deg, #dadce0 0 22px, transparent 0); }
.gb-count { font-size: .9rem; color: #5f6368; }
.gb-count strong { color: #202124; }
.gb-right { width: 100%; padding-top: .9rem; border-top: 1px solid #ececec; text-align: center; }
.gb-cta { color: #1a73e8; font-weight: 500; font-size: .95rem; }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; max-width: var(--maxw); margin: 0 auto; }
.tcard { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; transition: transform .35s var(--ease), border-color .35s; }
.tcard:hover { transform: translateY(-6px); border-color: rgba(232,176,75,.4); }
.tstars { color: var(--gold); letter-spacing: 3px; margin-bottom: .9rem; }
.tcard blockquote { font-size: 1.02rem; color: var(--text); font-style: italic; font-family: 'Playfair Display', serif; margin-bottom: 1rem; }
.tcard figcaption { color: var(--muted); font-size: .88rem; }

/* ===================================================================
   CONTACT
=================================================================== */
.contact { background: var(--bg-2); border-top: 1px solid var(--line); padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1rem, 4vw, 2.4rem); }
.contact-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.contact-list { list-style: none; margin: 1.4rem 0 2rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.3rem; }
.ci-ic { font-size: 1.4rem; width: 46px; height: 46px; flex: none; display: grid; place-items: center; background: var(--bg-card); border: 1px solid var(--line); border-radius: 12px; }
.contact-list strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: .15rem; }
.contact-list a, .contact-list span { color: var(--text-dim); }
.contact-list a:hover { color: var(--gold); }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 420px; box-shadow: var(--shadow); }
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; filter: grayscale(.3) contrast(1.05); }

/* ===================================================================
   FOOTER
=================================================================== */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: 3.5rem clamp(1rem, 4vw, 2.4rem) 0; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.8rem; }
.footer-brand p { color: var(--muted); margin-top: 1rem; max-width: 320px; font-size: .92rem; }
.footer-col h4 { font-family: 'Poppins'; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 1rem; }
.footer-col a, .footer-col span { display: block; color: var(--text-dim); font-size: .92rem; margin-bottom: .6rem; transition: color .25s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; border-top: 1px solid var(--line); padding: 1.4rem 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; color: var(--muted); font-size: .85rem; }

/* ===================================================================
   FLOATING CALL BTN (mobile)
=================================================================== */
.float-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: none;
  place-items: center; color: #1a1209;
  background: linear-gradient(140deg, var(--gold-2), var(--gold-deep));
  box-shadow: 0 12px 28px -8px rgba(232,176,75,.7);
  animation: ctaPulse 2.4s var(--ease) infinite;
}

/* ===================================================================
   SCROLL REVEAL
=================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===================================================================
   RESPONSIVE
=================================================================== */
@media (max-width: 980px) {
  .usp-strip { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .about-media { max-width: 560px; margin: 0 auto; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; max-width: 560px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: rgba(15,13,11,.97); backdrop-filter: blur(16px);
    padding: 2rem 2.2rem; transform: translateX(100%); transition: transform .4s var(--ease);
    border-left: 1px solid var(--line);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; }
  .nav-toggle { display: flex; z-index: 101; }
  .menu-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .float-call { display: grid; }
  .scroll-cue { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-cta, .btn-ghost { justify-content: center; }
  .about-media img { height: 380px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-bg { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
