/* ============================================
   GIGI'S ITALIAN KITCHEN
   Stylesheet — refined, dark, classic Italian
   ============================================ */

:root {
  /* Palette — drawn from the menu PDF and logo */
  --ink:        #14110f;            /* near-black, warm */
  --ink-2:      #1c1916;
  --ink-3:      #2a2521;
  --cream:      #f5efe6;            /* soft ivory paper */
  --cream-2:    #ebe3d5;
  --paper:      #faf6ef;
  --gold:       #c9a96a;            /* warm accent */
  --gold-deep:  #a98545;
  --forest:     #1f4d2e;            /* italian flag green, deepened */
  --forest-2:   #2d5e3d;
  --wine:       #7a1f24;            /* italian flag red, deepened */
  --rule:       rgba(20,17,15,0.12);
  --rule-light: rgba(245,239,230,0.18);

  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-italic:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max: 1240px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.section-eyebrow {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  text-transform: lowercase;
  margin: 0 0 14px;
}
.section-eyebrow.light { color: var(--gold); }

.section-title {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  margin: 0 0 18px;
}
.section-title.light { color: var(--cream); }

.section-lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  color: rgba(20,17,15,0.7);
}

.section-head {
  text-align: center;
  margin: 0 auto 70px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all .3s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--gold-deep);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,239,230,0.55);
}
.btn-ghost:hover { background: var(--cream); color: var(--ink); }
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--gold);
  font-size: 12px;
  padding: 12px 24px;
}
.btn-outline-light:hover { background: var(--gold); color: var(--ink); }

/* ============ NAVIGATION ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(20, 17, 15, 0.0);
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: rgba(20, 17, 15, 0.96);
  padding: 12px 0;
  box-shadow: 0 6px 28px rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
}
.nav-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { height: 54px; width: auto; }
.logo-link { display: inline-flex; }

.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  gap: 38px;
  justify-content: center;
}
.main-nav a {
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 50%;
  width: 0; height: 1px; background: var(--gold);
  transform: translateX(-50%);
  transition: width .3s ease;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 24px; }

.nav-cta {
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  white-space: nowrap;
  transition: background .25s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }
.nav-cta i { margin-right: 8px; font-size: 12px; }

.nav-toggle {
  display: none;
  background: none; border: 0;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  transition: all .25s ease;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.85) 100%),
    linear-gradient(to bottom, rgba(20,17,15,0.65) 0%, rgba(20,17,15,0.55) 50%, rgba(20,17,15,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 120px 32px 60px;
  animation: heroFadeUp 1.2s cubic-bezier(.2,.7,.2,1) .2s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-flag-bar {
  display: inline-flex;
  height: 3px;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.flag-stripe { width: 24px; height: 100%; display: inline-block; }
.flag-stripe.green { background: #009246; }
.flag-stripe.white { background: #f5efe6; }
.flag-stripe.red   { background: #ce2b37; }

.hero-eyebrow {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 28px;
  letter-spacing: -0.015em;
  color: var(--cream);
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero-title span { display: block; }
.hero-italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 42px;
  color: rgba(245,239,230,0.85);
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(245,239,230,0.6);
}
.hero-scroll-cue span {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; top: -20px; left: 0;
  width: 1px; height: 20px;
  background: var(--cream);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: -20px; }
  100% { top: 50px; }
}

/* ============ INTRO STRIP ============ */
.intro-strip {
  background: var(--cream);
  padding: 70px 0;
  border-bottom: 1px solid var(--rule);
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.intro-stat {
  text-align: center;
}
.intro-stat i {
  font-size: 28px;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.intro-stat h4 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 8px;
}
.intro-stat p {
  font-size: 15px;
  color: rgba(20,17,15,0.65);
  margin: 0;
}

/* ============ MENU SECTION ============ */
.menu-section {
  background: var(--paper);
  padding: 120px 0;
  position: relative;
}
.menu-section::before {
  content: '';
  position: absolute; top: 60px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: var(--gold);
}

.menu-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 100px;
}
.menu-feature-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}
.menu-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(20,17,15,0.15);
}
.mf-image {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.mf-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.3) 100%);
}
.mf-body { padding: 30px 30px 34px; }
.mf-tag {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}
.mf-body h3 {
  font-size: 26px;
  margin: 0 0 12px;
  line-height: 1.2;
}
.mf-body > p {
  font-size: 15px;
  color: rgba(20,17,15,0.7);
  margin: 0 0 18px;
  line-height: 1.6;
}
.mf-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--forest);
  font-weight: 600;
}

/* Full menu — 2 column with break-inside avoid */
.menu-full {
  column-count: 2;
  column-gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.menu-block {
  break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 56px;
  padding-bottom: 8px;
}
.menu-block-title {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--forest);
  text-align: center;
  margin: 0 0 8px;
  position: relative;
  padding-bottom: 18px;
}
.menu-block-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 36px; height: 1px;
  background: var(--gold);
}
.menu-block-note {
  text-align: center;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  color: rgba(20,17,15,0.55);
  margin: 0 0 28px;
}
.menu-list { display: flex; flex-direction: column; gap: 22px; }
.menu-list-compact { gap: 14px; }
.menu-list li { padding: 0; }

.ml-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.ml-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.ml-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(20,17,15,0.3);
  height: 1px;
  position: relative;
  top: -4px;
}
.ml-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-deep);
}
.ml-desc {
  font-size: 14px;
  color: rgba(20,17,15,0.62);
  line-height: 1.55;
  margin: 0;
  font-style: italic;
  font-family: var(--font-italic);
}

.menu-disclaimer {
  margin: 60px auto 0;
  text-align: center;
  max-width: 760px;
  font-size: 13px;
  color: rgba(20,17,15,0.55);
  font-style: italic;
  font-family: var(--font-italic);
  padding: 24px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.menu-disclaimer i { color: var(--gold-deep); margin-right: 8px; }

/* ============ PHILOSOPHY ============ */
.philosophy {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: var(--ink);
  color: var(--cream);
}
.philosophy-image {
  background-size: cover;
  background-position: center;
  position: relative;
}
.philosophy-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0) 60%, rgba(20,17,15,0.5) 100%);
}
.philosophy-content {
  padding: 110px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
}
.philosophy-content p {
  font-size: 16.5px;
  line-height: 1.85;
  color: rgba(245,239,230,0.78);
  margin: 0 0 22px;
}
.signature {
  margin-top: 24px;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
}

/* ============ ABOUT SECTION ============ */
.about-section {
  background: var(--cream);
  padding: 130px 0;
}
.about-grid {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.about-text h2 { margin-bottom: 26px; }
.about-text p {
  font-size: 16.5px;
  line-height: 1.8;
  color: rgba(20,17,15,0.72);
  margin: 0 0 32px;
}
.about-features {
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
}
.about-features i {
  color: var(--gold-deep);
  width: 22px;
  text-align: center;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
  background: var(--ink);
  color: var(--cream);
  padding: 130px 0 100px;
}
.contact-section .section-head { margin-bottom: 70px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}
.contact-card {
  background: var(--ink-2);
  border: 1px solid rgba(201,169,106,0.18);
  padding: 50px 36px;
  text-align: center;
  transition: border-color .3s ease, transform .3s ease;
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.contact-icon {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 22px;
}
.contact-card h3 {
  color: var(--cream);
  font-size: 26px;
  margin: 0 0 22px;
}
.hours-list {
  text-align: left;
  max-width: 280px;
  margin: 0 auto;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(245,239,230,0.08);
  font-size: 14px;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list span {
  color: rgba(245,239,230,0.6);
  letter-spacing: 0.05em;
}
.hours-list em {
  font-style: normal;
  color: var(--cream);
  font-weight: 500;
}

.contact-address {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cream);
  line-height: 1.7;
  margin: 0 0 26px;
}
.contact-phone {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0 0 8px;
}
.contact-phone a {
  color: var(--gold);
  transition: color .25s ease;
}
.contact-phone a:hover { color: var(--cream); }
.contact-note {
  font-size: 14px;
  color: rgba(245,239,230,0.6);
  margin: 0 0 24px;
  font-style: italic;
  font-family: var(--font-italic);
}
.social-row {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.social-row a {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,169,106,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 16px;
  transition: all .25s ease;
}
.social-row a:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.map-wrap {
  border: 1px solid rgba(201,169,106,0.25);
  overflow: hidden;
  filter: grayscale(0.2) contrast(1.05);
}

/* ============ FOOTER ============ */
.site-footer {
  background: #0d0b09;
  color: rgba(245,239,230,0.7);
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(245,239,230,0.08);
}
.footer-logo {
  height: 60px;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
}
.footer-col h4 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 14px;
}
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(245,239,230,0.45);
}
.footer-flag {
  display: inline-flex;
  height: 14px;
}
.footer-flag .flag-stripe { width: 16px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .menu-feature-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
  .menu-full { column-count: 1; }
  .philosophy { grid-template-columns: 1fr; }
  .philosophy-image { min-height: 380px; }
  .philosophy-content { padding: 80px 40px; max-width: none; }
  .about-grid { max-width: 760px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 22px; }
  .nav-container { padding: 0 22px; gap: 18px; }
  .main-nav,
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(20,17,15,0.97);
    padding: 24px 22px;
  }
  .main-nav.open ul {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }

  .nav-logo { height: 44px; }
  .hero-content { padding: 140px 22px 80px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }

  .intro-grid { grid-template-columns: 1fr; gap: 36px; }

  .menu-section { padding: 80px 0; }
  .about-section { padding: 80px 0; }
  .contact-section { padding: 80px 0 60px; }

  .section-head { margin-bottom: 50px; }
  .philosophy-content { padding: 60px 24px; }
  .about-features { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
