/* =============================================
   PIZZERIA DA NAPOLI — CSS
   Design System + Full Page Styles
   ============================================= */

/* ===== VARIABLES ===== */
:root {
  /* Brand Colors */
  --red:           #C41E3A;
  --red-dark:      #9B1528;
  --red-light:     #FDF0F2;
  --green:         #2D6A4F;
  --green-light:   #52B788;
  --gold:          #D4A853;
  --gold-light:    #FDF5E4;

  /* Neutrals */
  --white:         #FFFFFF;
  --off-white:     #FAF8F5;
  --cream:         #F5F0E8;
  --gray-100:      #F3F4F6;
  --gray-200:      #E5E7EB;
  --gray-400:      #9CA3AF;
  --gray-500:      #6B7280;
  --gray-700:      #374151;
  --gray-800:      #1F2937;
  --dark:          #111111;

  /* Typography */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-script:   'Dancing Script', cursive;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-w:         1240px;
  --section-py:    96px;

  /* Shapes */
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --radius-full:   9999px;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(0,0,0,0.07);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 6px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.15);
  --shadow-red: 0 8px 24px rgba(196,30,58,0.35);

  /* Transitions */
  --t-fast:  150ms ease;
  --t:       300ms ease;
  --t-slow:  500ms ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== UTILITIES ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-label--light { color: rgba(255,255,255,0.6); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--red);
}

.section-title--light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header--light .section-title { color: var(--white); }
.section-header--light .section-subtitle { color: rgba(255,255,255,0.6); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--t), color var(--t), border-color var(--t),
              transform var(--t), box-shadow var(--t);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn--sm  { padding: 9px 20px; font-size: 0.85rem; }
.btn--lg  { padding: 17px 38px; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn--outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn--outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background var(--t), padding var(--t), box-shadow var(--t);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(0,0,0,0.07);
  padding: 12px 0;
}

.navbar__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--t);
  letter-spacing: -0.01em;
}

.navbar.scrolled .navbar__logo { color: var(--dark); }

.navbar__logo-icon { font-size: 1.8rem; line-height: 1; }

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar__link {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: var(--radius-full);
  transition: color var(--t-fast), background var(--t-fast);
}

.navbar__link:hover { color: var(--white); background: rgba(255,255,255,0.12); }

.navbar.scrolled .navbar__link { color: var(--gray-700); }
.navbar.scrolled .navbar__link:hover { color: var(--dark); background: var(--gray-100); }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
  position: relative;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t), background var(--t);
  transform-origin: center;
}

.navbar.scrolled .navbar__hamburger span { background: var(--dark); }
.navbar__hamburger.open span { background: var(--white) !important; }

.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero.loaded .hero__img { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,8,5,0.25) 0%,
    rgba(10,8,5,0.55) 50%,
    rgba(10,8,5,0.72) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 720px;
  padding: 0 24px;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__badge {
  display: inline-block;
  padding: 7px 18px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.9);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8.5vw, 5.8rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: italic;
  color: #F7D070;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: scrollPulse 2.2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.55));
}

@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(7px); opacity: 1; }
}

/* ===== FEATURES BAR ===== */
.features-bar {
  background: var(--dark);
  padding: 36px 0;
}

.features-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.feature-item:last-child { border-right: none; }

.feature-item__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.feature-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-item__text strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.feature-item__text span {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.45);
}

/* ===== ABOUT ===== */
.about {
  padding: var(--section-py) 0;
  background: var(--off-white);
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__images {
  position: relative;
  padding: 24px 32px 48px 0;
}

.about__img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
}

.about__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.about__img-main:hover img { transform: scale(1.04); }

.about__img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 175px;
  height: 175px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}

.about__img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__badge-float {
  position: absolute;
  top: 48px;
  left: -16px;
  background: var(--red);
  color: var(--white);
  padding: 16px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.2;
}

.about__years {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about__badge-float span:last-child {
  font-size: 0.72rem;
  opacity: 0.9;
  margin-top: 4px;
}

.about__content { padding: 16px 0; }

.about__lead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 18px;
}

.about__text {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}

.about__highlight {
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--red);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t), box-shadow var(--t);
}

.about__highlight:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.about__highlight strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.about__highlight span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ===== MENU SECTION ===== */
.menu-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.menu-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-500);
  border: 2px solid transparent;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t-fast);
}

.filter-btn:hover {
  background: var(--red-light);
  color: var(--red);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Pizza Card */
.pizza-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t), box-shadow var(--t);
}

.pizza-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl);
}

.pizza-card.hidden { display: none; }

.pizza-card.entering {
  animation: cardEnter 0.35s ease both;
}

@keyframes cardEnter {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.pizza-card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.pizza-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.pizza-card:hover .pizza-card__img-wrap img { transform: scale(1.09); }

.pizza-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  backdrop-filter: blur(6px);
  letter-spacing: 0.02em;
}

.badge--hot     { background: rgba(196,30,58,0.85); }
.badge--white   { background: rgba(45,106,79,0.85); }
.badge--special { background: rgba(212,168,83,0.92); color: #3D2B00; }
.badge--premium {
  background: linear-gradient(135deg, #D4A853, #C8963E);
  color: #3D2B00;
}

.pizza-card__body { padding: 20px 22px; }

.pizza-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.pizza-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.pizza-card__price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}

.pizza-card__desc {
  font-size: 0.845rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 14px;
}

.pizza-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tag--veg     { background: #DCFCE7; color: #166534; }
.tag--spicy   { background: #FEE2E2; color: #991B1B; }
.tag--chef    { background: #FEF9C3; color: #854D0E; }
.tag--premium { background: linear-gradient(135deg, #FEF3C7, #FDE68A); color: #78350F; }

.menu-cta {
  text-align: center;
  margin-top: 56px;
  padding: 44px 40px;
  background: var(--off-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}

.menu-cta p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gray-500);
  margin-bottom: 20px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-py) 0;
  background: #0E0E0E;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.testimonial-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform var(--t), background var(--t);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-5px);
}

.testimonial-card--featured {
  background: var(--red);
  border-color: var(--red);
}

.testimonial-card--featured:hover { background: var(--red-dark); border-color: var(--red-dark); }

.testimonial-card__stars {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #F7C948;
  margin-bottom: 18px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-card--featured .testimonial-card__text { color: rgba(255,255,255,0.95); }

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card--featured .testimonial-card__avatar { background: rgba(255,255,255,0.22); }

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2px;
}

.testimonial-card__author span {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.45);
}

.testimonial-card--featured .testimonial-card__author span { color: rgba(255,255,255,0.7); }

/* Rating badge */
.testimonials__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
}

.rating-badge__score {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.rating-badge__info { display: flex; flex-direction: column; gap: 3px; }

.rating-badge__stars { color: #F7C948; letter-spacing: 2px; font-size: 0.9rem; }

.rating-badge__info span:last-child {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.rating-platforms {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.rating-platforms span:not(:nth-child(2)):not(:nth-child(4)) {
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}

/* ===== GALLERY ===== */
.gallery {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 270px 270px;
  gap: 14px;
}

/* First item spans 2 rows */
.gallery__item--tall { grid-row: span 2; }

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--gray-200);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery__item:hover img { transform: scale(1.08); }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
  opacity: 0;
  transition: opacity var(--t);
}

.gallery__item:hover .gallery__overlay { opacity: 1; }

.gallery__overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== CONTACT ===== */
.contact {
  padding: var(--section-py) 0;
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 1.4;
}

.contact__info-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact__info-item span,
.contact__info-item a {
  font-size: 1rem;
  color: var(--gray-800);
}

.contact__info-item a:hover { color: var(--red); }

.contact__hours {
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  margin-top: 4px;
}

.contact__hours h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.hours-list { display: flex; flex-direction: column; gap: 10px; }

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.845rem;
  color: var(--gray-500);
}

.hours-row span:first-child { font-weight: 500; color: var(--gray-700); }
.hours-row--closed span:last-child { color: var(--red); font-weight: 600; }
.hours-row--highlight span:first-child { color: var(--green); font-weight: 600; }
.hours-row--highlight span:last-child { font-weight: 600; }

/* Form */
.contact__form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}

.contact__form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,30,58,0.09);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.form-group textarea { resize: vertical; min-height: 88px; }

.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* ===== FOOTER ===== */
.footer {
  background: #0A0A0A;
  color: rgba(255,255,255,0.55);
  padding-top: 80px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__logo span:first-child { font-size: 1.6rem; }

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 290px;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: background var(--t), color var(--t), transform var(--t);
}

.footer__social a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__links h4,
.footer__contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links ul { display: flex; flex-direction: column; gap: 10px; }

.footer__links a {
  font-size: 0.875rem;
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.footer__links a:hover { color: var(--white); padding-left: 4px; }

.footer__contact p {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 10px;
}

.footer__contact a:hover { color: var(--white); }

.footer__hours-note {
  margin-top: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  font-size: 0.8rem !important;
  line-height: 1.55 !important;
  border-left: 2px solid var(--red);
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__bottom p,
.footer__bottom-links a {
  font-size: 0.78rem;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a:hover { color: var(--white); }

/* ===== FLOATING CTA (mobile) ===== */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 900;
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 32px rgba(196,30,58,0.4);
  align-items: center;
  gap: 8px;
  transition: transform var(--t), box-shadow var(--t), opacity var(--t);
  opacity: 0;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.floating-cta:hover {
  box-shadow: 0 12px 40px rgba(196,30,58,0.55);
  transform: translateX(-50%) translateY(-2px);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .about__grid { gap: 56px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  :root { --section-py: 72px; }

  .testimonials__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 48px; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }

  .gallery__item--tall { grid-row: span 2; }

  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; }

  /* Mobile nav */
  .navbar__menu {
    position: fixed;
    inset: 0;
    background: rgba(12,10,8,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transform: translateX(100%);
    transition: transform var(--t);
    z-index: 999;
  }

  .navbar__menu.open { transform: translateX(0); }

  .navbar__link {
    font-size: 1.25rem;
    padding: 14px 40px;
    color: rgba(255,255,255,0.75);
    width: 100%;
    text-align: center;
  }

  .navbar__link:hover { color: var(--white); background: rgba(255,255,255,0.08); }

  .navbar__menu .btn--primary {
    margin-top: 12px;
    padding: 14px 44px;
    font-size: 1rem;
  }

  .navbar__hamburger { display: flex; }

  /* Hero */
  .hero__subtitle br { display: none; }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  /* Features bar */
  .features-bar__grid { grid-template-columns: 1fr 1fr; }
  .feature-item { border-right: none; padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .feature-item:nth-child(3),
  .feature-item:nth-child(4) { border-bottom: none; }

  /* About */
  .about__grid { grid-template-columns: 1fr; gap: 56px; }
  .about__images { max-width: 480px; margin: 0 auto; }
  .about__badge-float { left: 0; }
  .about__highlights { grid-template-columns: 1fr 1fr; }

  /* Menu */
  .menu-grid { grid-template-columns: 1fr 1fr; }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Floating CTA */
  .floating-cta { display: flex; }
}

@media (max-width: 560px) {
  .hero__title { font-size: clamp(2.6rem, 10vw, 3.5rem); }

  .menu-grid { grid-template-columns: 1fr; }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery__item,
  .gallery__item--tall {
    grid-row: span 1;
    height: 220px;
  }

  .contact__form-wrap { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }

  .about__highlights { grid-template-columns: 1fr; }

  .features-bar__grid { grid-template-columns: 1fr; }
  .feature-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .feature-item:last-child { border-bottom: none; }

  .menu-filters { gap: 6px; }
  .filter-btn { padding: 8px 16px; font-size: 0.82rem; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__img { transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
