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

:root {
  --red:      #C0392B;
  --red-dark: #962d22;
  --red-light:#e74c3c;
  --gold:     #D4A017;
  --dark:     #1a1a1a;
  --dark2:    #2c2c2c;
  --gray:     #6b7280;
  --light:    #f9f5f2;
  --white:    #ffffff;
  --nav-h:    72px;
  --radius:   12px;
  --transition: .25s ease;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.bg-light { background: var(--light); }

.label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}

.sec-hdr {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.sec-hdr h2 { margin-bottom: .75rem; }

.sec-sub {
  color: var(--gray);
  font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn-white:hover { background: #f0f0f0; }

.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; }

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--nav-h);
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav__logo { flex-shrink: 0; }

.nav__logo-img {
  height: 44px;
  width: auto;
  transition: opacity var(--transition);
}

/* White logo visible by default, color logo hidden */
.nav__logo-white { display: block; }
.nav__logo-color { display: none; }

/* Scrolled: show color logo, hide white */
.nav--scrolled .nav__logo-white { display: none; }
.nav--scrolled .nav__logo-color { display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.nav__link {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--red-light);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav__link:hover::after { transform: scaleX(1); }

.nav--scrolled .nav__link { color: var(--dark); }

.nav__link:hover { color: var(--white); }
.nav--scrolled .nav__link:hover { color: var(--red); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--red);
  color: var(--white);
  padding: .55rem 1.2rem;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

.nav__cta svg { width: 15px; height: 15px; }
.nav__cta:hover { background: var(--red-dark); transform: translateY(-1px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  margin-left: auto;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav--scrolled .nav__burger span { background: var(--dark); }

.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mob-link {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
  padding: .4rem 0;
  transition: color var(--transition);
}

.nav__mob-link:hover { color: var(--red-light); }

.nav__mob-cta {
  margin-top: 1.5rem;
  background: var(--red);
  color: var(--white);
  padding: .8rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: background var(--transition);
}

.nav__mob-cta:hover { background: var(--red-dark); }

/* ===== NAV SOCIAL ===== */
.nav__social {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.nav__soc-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}

.nav__soc-link:hover { color: var(--white); }
.nav--scrolled .nav__soc-link { color: var(--gray); }
.nav--scrolled .nav__soc-link:hover { color: var(--red); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #111;
}

/* Video fills the full hero area */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,.65) 0%, rgba(0,0,0,.5) 60%, rgba(0,0,0,.75) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
  max-width: 720px;
}

.hero__logo-wrap {
  margin-bottom: 2rem;
}

.hero__logo {
  height: 120px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.4));
}

.hero__tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero__sub {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.hero__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero__social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.hero__soc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.85);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.hero__soc:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.6));
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(.5); transform-origin: top; }
  50%       { opacity: 1; transform: scaleY(1);  transform-origin: top; }
}

/* ===== STRIP ===== */
.strip {
  background: var(--red);
  color: var(--white);
  padding: 1.25rem 0;
}

.strip__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.strip__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem;
}

.strip__item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  opacity: .85;
}

.strip__label {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: .15rem;
}

.strip__val {
  font-weight: 600;
  font-size: .95rem;
}

.strip__val a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== MENU CARD ===== */
.menu-card {
  display: flex;
  justify-content: center;
  padding: 3rem;
}

/* ===== DELIVERY BANNER ===== */
.delivery-banner {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0;
}

.delivery-banner__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.delivery-banner__icon {
  flex-shrink: 0;
  background: var(--red);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-banner__icon svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

.delivery-banner h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .25rem;
}

.delivery-banner p {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
}

.delivery-banner .btn { margin-left: auto; }

/* ===== TWO COL ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* ===== INFO CARD ===== */
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.info-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(192,57,43,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.info-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--red);
}

.info-card h3 { margin-bottom: 1.5rem; }

/* ===== HOURS ===== */
.hours-list { display: flex; flex-direction: column; gap: .5rem; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem .75rem;
  border-radius: 6px;
  background: var(--light);
  font-size: .9rem;
}

.hours-day { font-weight: 500; }
.hours-time { color: var(--gray); }

.hours-row--closed .hours-day { color: var(--gray); }
.hours-row--closed .hours-time { color: #dc2626; font-weight: 600; }

/* ===== CONTACT LIST ===== */
.contact-list { display: flex; flex-direction: column; gap: 1rem; }

.contact-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
}

.contact-row svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
}

.contact-row a { color: var(--dark); font-weight: 500; }
.contact-row a:hover { color: var(--red); }

/* ===== MAP ===== */
.map-section {
  height: 420px;
  position: relative;
}

.map-section iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark2);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__logo {
  height: 72px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.65);
}

.footer__social {
  display: flex;
  gap: .75rem;
}

.footer__soc {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  transition: background var(--transition), color var(--transition);
}

.footer__soc svg { width: 16px; height: 16px; }
.footer__soc:hover { background: var(--red); color: var(--white); }

.footer__col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer__lnk {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

.footer__lnk:hover { color: var(--white); }

.footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

.footer__credit {
  color: rgba(255,255,255,.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.footer__credit:hover { color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .strip__inner { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .delivery-banner .btn { margin-left: 0; width: 100%; justify-content: center; }
}

@media (max-width: 700px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .nav__logo-img { height: 36px; }

  .hero__logo { height: 86px; }

  .strip__inner { grid-template-columns: 1fr 1fr; }

  .menu-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .delivery-banner__inner { flex-direction: column; text-align: center; }
  .delivery-banner__icon { margin: 0 auto; }

  .footer__main { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: auto; }

  .map-section { height: 300px; }
}

@media (max-width: 460px) {
  .strip__inner { grid-template-columns: 1fr; }
  .hero__btns { flex-direction: column; align-items: center; }
}
