/* 
 * Napoli's Pizzeria — Modern Redesign
 * Complete stylesheet
 */

/* ============================================================
   FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary: #1C1410;
  --accent: #C8441A;
  --accent-dk: #A03614;
  --accent-lt: #E05A30;
  --cream: #FAF6F0;
  --cream-dk: #F0E8DC;
  --gold: #C9963C;
  --sage: #5C7A52;
  --white: #FFFFFF;
  --off-white: #FDFBF8;
  --light-grey: #F5F0E8;
  --mid-grey: #7A6E66;
  --charcoal: #2A2420;
  --text-secondary: #5A5450;

  /* Legacy aliases for backward compat */
  --red: var(--accent);
  --espresso: var(--primary);
  --espresso-lt: var(--charcoal);
  --gold-lt: #E4C070;
  --basil: var(--sage);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 4px rgba(28,20,16,0.08);
  --shadow: 0 4px 16px rgba(28,20,16,0.10);
  --shadow-md: 0 8px 32px rgba(28,20,16,0.14);
  --shadow-lg: 0 16px 48px rgba(28,20,16,0.18);

  --transition: all 0.25s ease;
  --transition-slow: all 0.4s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-dk); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; }
p { margin-bottom: 1rem; color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }
.lead {
  font-size: 1.2rem;
  color: var(--mid-grey);
  line-height: 1.8;
  font-weight: 300;
}
.highlight { color: var(--accent); }
.highlight-gold { color: var(--gold); }
blockquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--primary);
  background: var(--cream-dk);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}
kbd {
  background: var(--cream-dk);
  border: 1px solid var(--mid-grey);
  border-radius: 4px;
  padding: 0.1em 0.4em;
  font-size: 0.85em;
  font-family: monospace;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--cream-dk); }
.section--dark { background: var(--primary); color: var(--cream); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream); }
.section--dark p { color: rgba(250,246,240,0.75); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header, .section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-label, .section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200,68,26,0.1);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.section-header h2, .section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-header p, .section__subtitle {
  font-size: 1.1rem;
  color: var(--mid-grey);
  line-height: 1.7;
}

/* ============================================================
   PROMO STRIP / ANNOUNCEMENT BAR
   ============================================================ */
.promo-strip {
  background: var(--primary);
  color: var(--cream);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1001;
}
.promo-strip a { color: var(--gold); }
.promo-strip a:hover { color: var(--gold-lt); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(28, 20, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(250,246,240,0.08);
  transition: var(--transition);
}
.nav-header.scrolled {
  background: rgba(28, 20, 16, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.has-promo .nav-header { top: 0; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav__logo:hover { color: var(--gold-lt); }
.nav__logo-icon { font-size: 1.4rem; }
.nav__logo-text { color: inherit; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav__link {
  color: rgba(250,246,240,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.nav__link:hover, .nav__link.active {
  color: var(--cream);
  background: rgba(250,246,240,0.1);
}
.nav__link--cta {
  background: var(--accent);
  color: white !important;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
}
.nav__link--cta:hover { background: var(--accent-dk) !important; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__search-btn {
  background: none;
  border: none;
  color: rgba(250,246,240,0.8);
  font-size: 1rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.nav__search-btn:hover { color: var(--cream); background: rgba(250,246,240,0.1); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,68,26,0.35);
}
.btn--secondary {
  background: var(--primary);
  color: var(--cream);
  border-color: var(--primary);
}
.btn--secondary:hover {
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
}
.btn--gold {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
  font-weight: 600;
}
.btn--gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,150,60,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: white;
}
.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--primary);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,20,16,0.55) 0%,
    rgba(28,20,16,0.35) 40%,
    rgba(28,20,16,0.7) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem 1.5rem;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero__title em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(250,246,240,0.88);
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 300;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__badge {
  background: rgba(250,246,240,0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(250,246,240,0.25);
}

/* Page hero (inner pages) */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  background-color: var(--primary);
  background-size: cover;
  background-position: center;
  padding-top: 70px;
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,20,16,0.65);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; }
.page-hero p { color: rgba(250,246,240,0.85); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.breadcrumb a { color: rgba(250,246,240,0.65); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(250,246,240,0.4); }

/* ============================================================
   FEATURES / ICON CARDS
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--cream-dk);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.feature-card__icon {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.feature-card__text { font-size: 0.95rem; color: var(--mid-grey); line-height: 1.6; margin: 0; }

/* ============================================================
   MENU CARDS
   ============================================================ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--cream-dk);
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.menu-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.menu-card__img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--cream-dk), var(--light-grey));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.menu-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-card__badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
}
.badge--veg { background: rgba(92,122,82,0.15); color: var(--sage); }
.badge--spicy { background: rgba(200,68,26,0.12); color: var(--accent); }
.badge--new { background: rgba(201,150,60,0.15); color: var(--gold); }
.badge--popular { background: rgba(28,20,16,0.08); color: var(--charcoal); }
.badge--gf { background: rgba(92,122,82,0.1); color: var(--sage); }

.menu-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.menu-card__desc {
  font-size: 0.9rem;
  color: var(--mid-grey);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}
.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--cream-dk);
  margin-top: auto;
}
.menu-card__price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}
.menu-card__dietary {
  font-size: 0.8rem;
  color: var(--mid-grey);
}

/* ============================================================
   MENU FILTERS
   ============================================================ */
.menu-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem;
}
.menu-filters__label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  margin-right: 0.5rem;
}
.filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid var(--cream-dk);
  background: var(--white);
  color: var(--mid-grey);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200,68,26,0.06);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,20,16,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: white;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: var(--transition);
}
.lightbox__close:hover { opacity: 1; transform: rotate(90deg); }
.lightbox__caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-align: center;
}

/* ============================================================
   ABOUT / HERITAGE SECTION
   ============================================================ */
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.heritage-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.heritage-img img { width: 100%; height: 500px; object-fit: cover; }
.heritage-placeholder {
  background: linear-gradient(135deg, var(--cream-dk), var(--light-grey));
  border-radius: var(--radius-xl);
  padding: 2rem;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--cream-dk);
}
.timeline__item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 2.5rem;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--accent);
}
.timeline__year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.timeline__title { font-weight: 600; color: var(--primary); margin-bottom: 0.25rem; }
.timeline__text { color: var(--mid-grey); line-height: 1.6; font-size: 0.95rem; }

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--cream-dk);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-dk), var(--gold-lt));
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  border: 3px solid white;
  box-shadow: var(--shadow-sm);
}
.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.team-card__role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.team-card__bio { color: var(--mid-grey); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.team-card__quote {
  font-style: italic;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  border-top: 1px solid var(--cream-dk);
  padding-top: 1rem;
}

/* ============================================================
   AWARDS
   ============================================================ */
.awards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.award-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ============================================================
   VALUES GRID
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dk);
  border-top: 4px solid var(--accent);
}
.value-card__icon { font-size: 3.5rem; margin-bottom: 1.25rem; display: block; }
.value-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.value-card__text { color: var(--mid-grey); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS CAROUSEL
   ============================================================ */
.testimonials { overflow: hidden; position: relative; }
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 100%;
  padding: 1rem;
}
.testimonial-inner {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.testimonial-stars { font-size: 1.25rem; margin-bottom: 1rem; color: var(--gold); }
.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testimonial-author { font-weight: 600; color: var(--primary); }
.testimonial-meta { font-size: 0.875rem; color: var(--mid-grey); margin: 0; }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--cream-dk);
  background: white;
  color: var(--primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.carousel-dots {
  display: flex;
  gap: 0.5rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dk);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dk);
}
.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-dk);
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon { font-size: 1.25rem; flex-shrink: 0; }
.contact-info__label { font-weight: 600; font-size: 0.875rem; color: var(--primary); margin-bottom: 0.2rem; }
.contact-info__text { font-size: 0.9rem; color: var(--mid-grey); line-height: 1.5; }
.contact-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dk);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--cream-dk);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--primary);
  background: var(--off-white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================================
   DEAL CARDS (PROMOTIONS)
   ============================================================ */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.deal-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dk);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.deal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.deal-card__header {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: white;
  text-align: center;
}
.deal-card__header--gold {
  background: linear-gradient(135deg, var(--gold), #A07828);
}
.deal-card__icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.deal-card__title { font-family: var(--font-heading); font-size: 1.5rem; color: white; margin-bottom: 0.25rem; }
.deal-card__subtitle { font-size: 0.875rem; color: rgba(255,255,255,0.85); }
.deal-card__body { padding: 1.5rem; flex: 1; }
.deal-card__desc { color: var(--mid-grey); line-height: 1.6; margin-bottom: 1rem; }
.deal-card__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
}
.deal-card__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--cream-dk);
  background: var(--light-grey);
}
.deal-card__note { font-size: 0.8rem; color: var(--mid-grey); }

/* ============================================================
   COUNTDOWN TIMER
   ============================================================ */
.countdown {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.countdown__unit {
  text-align: center;
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  min-width: 80px;
  border: 1px solid var(--cream-dk);
}
.countdown__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.countdown__label { font-size: 0.75rem; color: var(--mid-grey); text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter { background: var(--primary); padding: 4rem 0; }
.newsletter h2, .newsletter__title { color: white; font-family: var(--font-heading); }
.newsletter p, .newsletter__subtitle { color: rgba(250,246,240,0.75); }
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(250,246,240,0.2);
  border-radius: var(--radius-sm);
  background: rgba(250,246,240,0.08);
  color: white;
  font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: rgba(250,246,240,0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,20,16,0.95);
  backdrop-filter: blur(10px);
  z-index: 9000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.search-overlay__inner { width: 100%; max-width: 600px; padding: 0 1.5rem; }
.search-overlay__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(250,246,240,0.6);
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.search-overlay__close:hover { color: white; }
.search-overlay__input {
  width: 100%;
  background: rgba(250,246,240,0.08);
  border: 2px solid rgba(250,246,240,0.2);
  color: white;
  font-size: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  margin-bottom: 1rem;
}
.search-overlay__input::placeholder { color: rgba(250,246,240,0.4); }
.search-overlay__input:focus { outline: none; border-color: var(--gold); }
.search-results { max-height: 400px; overflow-y: auto; }
.search-result-item {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search-result-item:hover { background: rgba(250,246,240,0.1); }
.search-result-item__icon { font-size: 1.25rem; }
.search-result-item__title { color: white; font-weight: 500; margin: 0; }
.search-result-item__page { color: rgba(250,246,240,0.5); font-size: 0.8rem; }
.search-hint { color: rgba(250,246,240,0.4); font-size: 0.875rem; text-align: center; margin-top: 1.5rem; }

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.toast {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  background: var(--primary);
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: slideInRight 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 320px;
  border-left: 4px solid var(--accent);
}
.toast--success { border-left-color: var(--sage); }
.toast--error { border-left-color: #e05252; }
.toast--info { border-left-color: var(--gold); }

/* ============================================================
   ACCORDION / FAQ
   ============================================================ */
.accordion { max-width: 720px; margin: 0 auto; }
.accordion__item {
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: white;
}
.accordion__toggle {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  transition: var(--transition);
}
.accordion__toggle:hover { background: var(--light-grey); }
.accordion__icon { transition: var(--transition); font-size: 0.875rem; }
.accordion__item.open .accordion__icon { transform: rotate(180deg); }
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion__content p { padding: 0 1.25rem 1.25rem; color: var(--mid-grey); line-height: 1.7; margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary);
  color: var(--cream);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250,246,240,0.1);
}
.footer__brand p { color: rgba(250,246,240,0.6); font-size: 0.9rem; line-height: 1.7; margin: 1rem 0 1.5rem; }
.footer__brand-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(250,246,240,0.08);
  color: rgba(250,246,240,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--accent);
  color: white;
}
.footer__heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a {
  color: rgba(250,246,240,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__links a:hover { color: white; padding-left: 4px; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: rgba(250,246,240,0.6);
  font-size: 0.875rem;
  line-height: 1.5;
}
.footer__contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(250,246,240,0.4);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__bottom a { color: rgba(250,246,240,0.6); }
.footer__bottom a:hover { color: white; }

/* ============================================================
   FADE-IN ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   ANIMATIONS (KEYFRAMES)
   ============================================================ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ============================================================
   MEDIA QUERIES
   ============================================================ */

/* Large desktops: 1200px */
@media (max-width: 1200px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* Tablets / small desktops: 992px */
@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .history-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--tall { grid-row: span 1; aspect-ratio: 4/3; }
  .hero__title { font-size: clamp(2.5rem, 5vw, 4rem); }
}

/* Tablets: 768px */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0.5rem;
    transition: right 0.35s ease;
    z-index: 999;
    box-shadow: -8px 0 40px rgba(0,0,0,0.3);
  }
  .nav__links.open { right: 0; }
  .nav__link { font-size: 1.1rem; padding: 0.75rem 1rem; width: 100%; }
  .hamburger { display: flex; z-index: 1000; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}

/* Mobile: 576px */
@media (max-width: 576px) {
  .container { padding: 0 1rem; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__badge { font-size: 0.78rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .deals-grid { grid-template-columns: 1fr; }
  .countdown { gap: 0.75rem; }
  .countdown__unit { padding: 0.85rem 1rem; min-width: 65px; }
  .countdown__number { font-size: 2rem; }
  .team-grid { grid-template-columns: 1fr; }
}
