/* ============================================================
   DEJEN GURSHA — Ethiopian Food Truck | Boston, MA
   style.css — Premium Glossy Redesign
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --olive-dark:    #4A4E2A;
  --olive:         #545830;
  --olive-light:   #6B7038;
  --gold:          #C9A24B;
  --gold-bright:   #D4AF37;
  --gold-light:    #F0D080;
  --cream:         #F3EDD8;
  --charcoal:      #2C2C24;
  --rust:          #B5651D;
  --white:         #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  --container-max: 1280px;
  --nav-height:    80px;
  --nav-height-sm: 64px;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-pill:50px;

  /* Glossy shadows */
  --shadow-sm:   0 2px 12px rgba(0,0,0,.10);
  --shadow-md:   0 8px 32px rgba(0,0,0,.18);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.25);
  --shadow-gold: 0 4px 24px rgba(201,162,75,.35);
  --shadow-glow: 0 0 40px rgba(201,162,75,.2);

  --transition-fast: 0.2s ease;
  --transition-med:  0.35s cubic-bezier(.4,0,.2,1);

  /* Glossy gradients */
  --glass-bg:    rgba(255,255,255,.08);
  --glass-border:rgba(255,255,255,.15);
  --gold-gradient: linear-gradient(135deg, #F0D080 0%, #C9A24B 40%, #A07828 100%);
  --olive-gradient:linear-gradient(135deg, #6B7038 0%, #4A4E2A 60%, #2C2C24 100%);
}

/* ============================================================
   2. 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(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section { padding: var(--space-xl) 0; }
.section--cream   { background-color: var(--cream); }
.section--white   { background-color: #fff; }
.section--olive   { background: var(--olive-gradient); }
.section--dark    { background: linear-gradient(160deg, #1e2010 0%, var(--olive-dark) 60%, #2c2c1a 100%); }
.section--texture {
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(201,162,75,.10) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(74,78,42,.07) 0%, transparent 55%);
}

/* Glossy glass card bg */
.section--glass {
  background: linear-gradient(135deg, rgba(74,78,42,.95) 0%, rgba(44,44,36,.98) 100%);
  backdrop-filter: blur(12px);
}

.grid-2 { display: grid; gap: var(--space-lg); }
.grid-3 { display: grid; gap: var(--space-md); }
.grid-4 { display: grid; gap: var(--space-md); }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.text-center  { text-align: center; }
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  display: block;
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--olive-dark);
  margin-bottom: var(--space-sm);
  /* Subtle text shadow for depth */
  text-shadow: 0 1px 2px rgba(0,0,0,.06);
}

.section-title--light { color: var(--cream); text-shadow: 0 2px 8px rgba(0,0,0,.3); }

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: #666;
  max-width: 620px;
  line-height: 1.72;
}

.section-subtitle--light { color: rgba(243,237,216,.78); }

.section-header { margin-bottom: var(--space-lg); }
.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Gold shimmer divider */
.divider {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-sm) 0 var(--space-lg);
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider-icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }

/* ============================================================
   5. GLOSSY BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  min-height: 48px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Glossy sheen overlay */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn:hover::before { left: 150%; }

/* Primary gold glossy */
.btn-primary {
  background: var(--gold-gradient);
  color: var(--olive-dark);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(201,162,75,.4), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #F5DB90 0%, #D4AF37 40%, #B08020 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,75,.55), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-primary:active { transform: translateY(0); }

/* Secondary outline */
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: inset 0 0 0 0 var(--gold);
}
.btn-secondary:hover {
  background: var(--gold-gradient);
  color: var(--olive-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,75,.4);
}

/* Ghost on dark */
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--cream);
  border-color: rgba(243,237,216,.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(243,237,216,.7);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; min-height: 54px; }

/* ============================================================
   6. GLOSSY NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: linear-gradient(90deg, rgba(36,39,18,.97) 0%, rgba(60,64,30,.97) 50%, rgba(36,39,18,.97) 100%);
  border-bottom: 1px solid rgba(201,162,75,.25);
  /* Glossy glass effect */
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 4px 24px rgba(0,0,0,.35), inset 0 1px 0 rgba(201,162,75,.15);
  transition: height var(--transition-med), box-shadow var(--transition-med);
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), var(--gold), transparent);
  opacity: 0.6;
}

.navbar.scrolled {
  height: var(--nav-height-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,.5), inset 0 1px 0 rgba(201,162,75,.2);
}

.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO — using logo circle.png ===== */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__logo-emblem {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform var(--transition-fast), filter var(--transition-fast);
  /* Gold ring glow */
  filter: drop-shadow(0 0 8px rgba(201,162,75,.6));
}

.navbar__logo-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
}

.navbar.scrolled .navbar__logo-emblem { width: 46px; height: 46px; }

.navbar__logo:hover .navbar__logo-emblem {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 0 14px rgba(201,162,75,.85));
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.navbar__logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
  /* Gold shimmer effect */
  background: linear-gradient(90deg, #C9A24B, #F0D080, #C9A24B);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 4s linear infinite;
}

@keyframes gold-shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.navbar__logo-tagline {
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(243,237,216,.6);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* Desktop Nav */
.navbar__nav { display: none; }

.navbar__nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.navbar__nav a {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(243,237,216,.82);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
  border-radius: 1px;
}

.navbar__nav a:hover,
.navbar__nav a.active { color: var(--gold-bright); }

.navbar__nav a:hover::after,
.navbar__nav a.active::after { width: 100%; }

/* Hamburger */
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  cursor: pointer;
  background: none; border: none; padding: 0;
  flex-shrink: 0;
}

.hamburger-line {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cream));
  border-radius: 2px;
  transition: all var(--transition-fast);
  transform-origin: center;
}

.navbar__hamburger.open .hamburger-line:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.navbar__hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Menu */
.navbar__mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: linear-gradient(160deg, rgba(36,39,18,.98) 0%, rgba(60,64,30,.98) 100%);
  border-top: 1px solid rgba(201,162,75,.2);
  border-bottom: 2px solid var(--gold);
  backdrop-filter: blur(16px);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-med), opacity var(--transition-med);
  z-index: 999;
}

.navbar__mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.navbar__mobile-menu a {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(243,237,216,.85);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(201,162,75,.1);
  letter-spacing: 0.05em;
  transition: all var(--transition-fast);
  text-transform: uppercase;
}

.navbar__mobile-menu a:hover,
.navbar__mobile-menu a.active {
  color: var(--gold-bright);
  background: rgba(201,162,75,.1);
  padding-left: 2rem;
}

@media (min-width: 768px) {
  .navbar__nav { display: block; }
  .navbar__hamburger { display: none; }
}

/* ============================================================
   7. HERO SECTION — Video + Image support
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: calc(var(--nav-height) + 2rem) 0 3rem;
}

.hero--short {
  min-height: 75vh;
  padding: calc(var(--nav-height) + 3rem) 0 4rem;
}

/* Background image */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Background VIDEO */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Overlay — 100% transparent as requested */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 1;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201,162,75,.22);
  border: 1px solid rgba(201,162,75,.55);
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0.85rem;
  text-shadow: 0 3px 16px rgba(0,0,0,.85), 0 1px 3px rgba(0,0,0,.9);
}

.hero__title span {
  color: var(--gold-bright);
  text-shadow: 0 3px 16px rgba(0,0,0,.85), 0 0 20px rgba(201,162,75,.4);
}

.hero__subtitle {
  font-size: clamp(0.9rem, 1.25vw, 1.02rem);
  color: rgba(243,237,216,.95);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  max-width: 520px;
  text-shadow: 0 2px 10px rgba(0,0,0,.85);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero__cta .btn {
  padding: 0.75rem 1.75rem;
  font-size: 0.88rem;
  min-height: 44px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(243,237,216,.45);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   8. GLOSSY CARDS
   ============================================================ */

/* Dish Card — premium glass-morphism */
.dish-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm), 0 1px 0 rgba(255,255,255,.8) inset;
  border: 1px solid rgba(201,162,75,.18);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Glossy top sheen */
.dish-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
  z-index: 2;
}

.dish-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-md), var(--shadow-gold), 0 1px 0 rgba(255,255,255,.8) inset;
}

.dish-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.dish-card__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.dish-card:hover .dish-card__image { transform: scale(1.07); }

.dish-card__badge {
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  background: var(--gold-gradient);
  color: var(--olive-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(201,162,75,.5);
  letter-spacing: 0.04em;
}

.dish-card__body {
  padding: 1.2rem var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dish-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--olive-dark);
  margin-bottom: 0.4rem;
}

.dish-card__desc {
  font-size: 0.855rem;
  color: #777;
  line-height: 1.58;
  flex: 1;
  margin-bottom: var(--space-sm);
}

.dish-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(201,162,75,.18);
}

.dish-card__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--rust);
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

.dish-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--olive);
  background: linear-gradient(135deg, rgba(84,88,48,.12), rgba(84,88,48,.06));
  border: 1px solid rgba(84,88,48,.2);
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

/* Team Card */
.team-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(145deg, #fff 0%, rgba(243,237,216,.4) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm), 0 1px 0 rgba(255,255,255,.9) inset;
  border: 1px solid rgba(201,162,75,.18);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.team-card__avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-md);
  border: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(201,162,75,.4), 0 0 0 6px rgba(201,162,75,.1);
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--olive-dark);
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-sm);
}

.team-card__bio {
  font-size: 0.875rem;
  color: #777;
  line-height: 1.62;
}

/* ============================================================
   LUXURY GLOWING PRICING TIERS (.package-card)
   ============================================================ */
.package-card {
  background: linear-gradient(160deg, #ffffff 0%, #faf6eb 100%);
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,1);
  border: 1.5px solid rgba(201,162,75,.3);
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--gold-gradient);
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-bright);
  box-shadow: 0 20px 45px rgba(201,162,75,.25), 0 8px 20px rgba(0,0,0,.12);
}

.package-card.featured {
  background: linear-gradient(160deg, #ffffff 0%, #fffbf0 60%, #f9edd4 100%);
  border: 2.5px solid var(--gold-bright);
  transform: scale(1.05);
  box-shadow: 0 15px 45px rgba(201,162,75,.35), 0 0 0 1px rgba(201,162,75,.4);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 24px 60px rgba(201,162,75,.45), 0 0 25px rgba(201,162,75,.3);
}

.package-card__badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: linear-gradient(135deg, var(--rust), #e07a2a);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(181,101,29,.4);
  z-index: 2;
}

.package-card__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--olive-dark);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.package-card__price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--rust);
  margin-bottom: 0.2rem;
  line-height: 1.1;
  text-shadow: 0 1px 2px rgba(0,0,0,.08);
}

.package-card__price sup {
  font-size: 1.25rem;
  font-weight: 700;
  vertical-align: super;
}

.package-card__serves {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--olive);
  background: rgba(84,88,48,.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 1.4rem;
}

.package-card__features {
  list-style: none;
  margin-bottom: 1.8rem;
  flex: 1;
}

.package-card__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--charcoal);
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(201,162,75,.2);
}

.package-card__features li:last-child {
  border-bottom: none;
}

.package-card__features li::before {
  content: '✓';
  color: #2d6b1e;
  font-weight: 800;
  background: #e8f5e0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.package-card__features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* ============================================================
   CREATIVE & GLOSSY MENU GRID CARDS
   ============================================================ */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
}

.menu-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  border: 1px solid rgba(201,162,75,.22);
  transition: all var(--transition-med);
  display: flex;
  flex-direction: column;
  position: relative;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold-gradient);
  z-index: 2;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.16), 0 0 0 1px var(--gold);
}

.menu-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--olive-dark);
}

.menu-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}

.menu-card:hover .menu-card__img {
  transform: scale(1.08);
}

.menu-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold-gradient);
  color: var(--olive-dark);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  z-index: 2;
}

.menu-card__price-badge {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: linear-gradient(135deg, rgba(44,44,36,.92), rgba(20,23,10,.95));
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201,162,75,.4);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  z-index: 2;
}

.menu-card__body {
  padding: 1.25rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card__title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--olive-dark);
  margin-bottom: 0.4rem;
}

.menu-card__desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.menu-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* Fallback backward compatibility for menu-item row layout */
.menu-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0.75rem;
  border-bottom: 1px solid rgba(201,162,75,.12);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: linear-gradient(90deg, rgba(201,162,75,.06), transparent); }
.menu-item__image { width: 88px; height: 88px; border-radius: var(--radius-md); object-fit: cover; flex-shrink: 0; }
.menu-item__info { flex: 1; }
.menu-item__name { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; color: var(--olive-dark); }
.menu-item__desc { font-size: 0.82rem; color: #777; line-height: 1.52; }
.menu-item__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.4rem; }

.tag {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-pill);
}

.tag--veg   { background: linear-gradient(135deg,#e8f5e0,#d4edcc); color: #2d6b1e; border: 1px solid rgba(45,107,30,.2); }
.tag--spicy { background: linear-gradient(135deg,#fde8e0,#fad4c8); color: #b52a1d; border: 1px solid rgba(181,42,29,.2); }
.tag--gf    { background: linear-gradient(135deg,#fff3e0,#ffe0b2); color: #a05a00; border: 1px solid rgba(160,90,0,.2); }
.tag--pop   { background: linear-gradient(135deg,#f0e8ff,#e0d0ff); color: #6b2ab5; border: 1px solid rgba(107,42,181,.2); }

.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--rust);
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
  padding-left: var(--space-sm);
}

/* Menu category header */
.menu-cat {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid transparent;
  border-image: var(--gold-gradient) 1;
}

.menu-cat__icon { font-size: 1.5rem; }

.menu-cat__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--olive-dark);
}

/* ============================================================
   9. TESTIMONIALS CAROUSEL
   ============================================================ */
.testimonial-carousel { position: relative; overflow: hidden; }

.testimonial-track {
  display: flex;
  transition: transform var(--transition-med);
}

.testimonial-slide { min-width: 100%; padding: 0 var(--space-xs); }

.testimonial-card {
  background: linear-gradient(145deg, #fff 0%, rgba(243,237,216,.5) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-md), 0 1px 0 rgba(255,255,255,.9) inset;
  border: 1px solid rgba(201,162,75,.2);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0;
  color: rgba(201,162,75,.12);
  position: absolute;
  top: 3rem; left: 1.5rem;
}

.testimonial-stars {
  color: var(--gold-bright);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 6px rgba(201,162,75,.4);
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.72;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.testimonial-author { font-weight: 700; color: var(--olive-dark); font-size: 0.92rem; }
.testimonial-author-sub { font-size: 0.78rem; color: #999; margin-top: 0.2rem; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.carousel-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(201,162,75,.4);
  background: rgba(255,255,255,.7);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}

.carousel-btn:hover {
  background: var(--gold-gradient);
  color: var(--olive-dark);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.08);
}

.carousel-dots { display: flex; gap: 0.5rem; align-items: center; }

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,162,75,.3);
  cursor: pointer; border: none;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background: var(--gold-bright);
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(201,162,75,.5);
}

/* ============================================================
   10. FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 820px; margin: 0 auto; }

.faq-item {
  background: linear-gradient(145deg, #fff, rgba(248,244,234,.8));
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,162,75,.2);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast);
}

.faq-item:hover { box-shadow: var(--shadow-md), 0 0 0 1px rgba(201,162,75,.25); }
.faq-item.open  { box-shadow: var(--shadow-md), 0 0 0 2px var(--gold); }

.faq-question {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-sm);
  padding: 1.1rem var(--space-lg);
  cursor: pointer; text-align: left;
  transition: background var(--transition-fast);
}

.faq-question:hover { background: rgba(201,162,75,.05); }

.faq-question-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--olive-dark);
  line-height: 1.4;
}

.faq-chevron {
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--rust); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-md);
  font-size: 0.9rem;
  color: #666;
  line-height: 1.72;
}

/* ============================================================
   11. GALLERY & LIGHTBOX
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--olive-dark);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md), 0 0 0 2px var(--gold);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(36,39,18,.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex; align-items: flex-end;
  padding: var(--space-sm);
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__label { font-size: 0.78rem; font-weight: 700; color: var(--cream); letter-spacing: 0.04em; }

.gallery-item__zoom {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 48px; height: 48px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--olive-dark);
  font-size: 1.2rem;
  opacity: 0;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 16px rgba(201,162,75,.5);
}

.gallery-item:hover .gallery-item__zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition-fast);
  backdrop-filter: blur(6px);
}

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

.lightbox__img {
  max-width: 92vw; max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 90px rgba(0,0,0,.7), 0 0 0 1px rgba(201,162,75,.3);
  transition: opacity var(--transition-fast);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--cream);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(4px);
}

.lightbox__close { top: 1.5rem; right: 1.5rem; width: 50px; height: 50px; font-size: 1.4rem; }
.lightbox__prev  { top: 50%; left: 1rem;  width: 54px; height: 54px; font-size: 1.5rem; transform: translateY(-50%); }
.lightbox__next  { top: 50%; right: 1rem; width: 54px; height: 54px; font-size: 1.5rem; transform: translateY(-50%); }

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--gold-gradient);
  color: var(--olive-dark);
  border-color: var(--gold);
  transform: translateY(0) scale(1.08);
}

.lightbox__prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__next:hover { transform: translateY(-50%) scale(1.08); }

.lightbox__caption {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  background: rgba(36,39,18,.85);
  color: var(--cream);
  font-size: 0.85rem;
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  border: 1px solid rgba(201,162,75,.3);
}

/* ============================================================
   12. GLOSSY CONTACT FORM
   ============================================================ */
.contact-form {
  background: linear-gradient(145deg, #fff 0%, rgba(243,237,216,.4) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md), 0 1px 0 rgba(255,255,255,.9) inset;
  border: 1px solid rgba(201,162,75,.2);
  max-width: 720px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold-gradient);
}

.form-grid { display: grid; gap: var(--space-md); }
.form-grid.cols-2 { grid-template-columns: 1fr; }

@media (min-width: 640px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-label .required { color: var(--rust); margin-left: 0.2rem; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid rgba(201,162,75,.28);
  border-radius: var(--radius-md);
  background: linear-gradient(to bottom, rgba(255,255,255,.95), rgba(243,237,216,.5));
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  outline: none;
  appearance: none;
  box-shadow: 0 2px 6px rgba(0,0,0,.05), inset 0 1px 0 rgba(255,255,255,.8);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,.18), 0 2px 6px rgba(0,0,0,.05), inset 0 1px 0 rgba(255,255,255,.9);
  background: white;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}

.form-error { font-size: 0.75rem; color: #c0392b; display: none; margin-top: 0.2rem; }
.form-error.visible { display: block; }

.form-textarea { resize: vertical; min-height: 130px; }

.form-select {
  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 fill='%23C9A24B' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  min-height: 54px;
  margin-top: var(--space-sm);
}

.form-success { display: none; text-align: center; padding: var(--space-xl); }
.form-success.visible { display: block; }
.form-success__icon { font-size: 3.5rem; margin-bottom: var(--space-md); display: block; }
.form-success__title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--olive-dark); margin-bottom: var(--space-sm); }
.form-success__message { color: #666; line-height: 1.65; max-width: 440px; margin: 0 auto var(--space-md); }

/* ============================================================
   13. CONTACT INFO CARDS
   ============================================================ */
.contact-info-grid { display: grid; gap: var(--space-md); }

@media (min-width: 640px)  { .contact-info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-info-grid { grid-template-columns: repeat(3, 1fr); } }

.contact-info-card {
  background: linear-gradient(145deg, #fff, rgba(248,244,234,.8));
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid rgba(201,162,75,.2);
  box-shadow: var(--shadow-sm), 0 1px 0 rgba(255,255,255,.9) inset;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.contact-info-card__icon { font-size: 2.2rem; margin-bottom: var(--space-sm); display: block; }
.contact-info-card__label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--rust); margin-bottom: 0.5rem; }
.contact-info-card__value { font-size: 0.95rem; color: var(--charcoal); font-weight: 500; line-height: 1.5; }
.contact-info-card__value a { color: var(--olive); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   14. MAP
   ============================================================ */
.map-embed {
  width: 100%; height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(201,162,75,.3);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   15. STEPS (HOW BOOKING WORKS)
   ============================================================ */
.steps-grid { display: grid; gap: var(--space-lg); position: relative; }

@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card { text-align: center; padding: var(--space-md); }

.step-number {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--olive-dark);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: 0 6px 24px rgba(201,162,75,.45), 0 0 0 6px rgba(201,162,75,.12);
}

.step-icon { font-size: 1.9rem; margin-bottom: var(--space-sm); display: block; }

.step-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--olive-dark); margin-bottom: 0.4rem; }
.step-desc  { font-size: 0.85rem; color: #777; line-height: 1.62; }

/* ============================================================
   16. CREATIVE EVENT TYPES WITH IMAGES
   ============================================================ */
.event-type-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) { .event-type-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .event-type-grid { grid-template-columns: repeat(3, 1fr); } }

.event-type-card {
  background: linear-gradient(145deg, rgba(36,39,18,.85) 0%, rgba(20,23,10,.95) 100%);
  border: 1.5px solid rgba(201,162,75,.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  transition: all var(--transition-med);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.event-type-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(201,162,75,.25), 0 0 0 1px var(--gold);
}

.event-type-card__img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}

.event-type-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}

.event-type-card:hover .event-type-card__img {
  transform: scale(1.08);
}

.event-type-card__body {
  padding: 1.4rem;
  flex: 1;
}

.event-type-card__name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--gold-bright);
  margin-bottom: 0.4rem;
}

.event-type-card__desc {
  font-size: 0.86rem;
  color: rgba(243,237,216,.78);
  line-height: 1.6;
}

/* ============================================================
   17. CTA BANNER — glossy
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #1a1d0d 0%, var(--olive-dark) 40%, var(--olive) 70%, #1a1d0d 100%);
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,162,75,.14) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -5%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(181,101,29,.12) 0%, transparent 70%);
  border-radius: 50%;
}

/* Glossy top stripe */
.cta-banner > .container::before {
  content: none;
}

.cta-banner__content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.cta-banner__text {
  color: rgba(243,237,216,.72);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  line-height: 1.68;
}

.cta-banner__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; }

/* ============================================================
   18. PREMIUM GLOSSY FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(160deg, #1a1d0d 0%, #2c2f18 30%, #1e2010 100%);
  color: rgba(243,237,216,.72);
  padding: var(--space-xl) 0 0;
  border-top: 1px solid rgba(201,162,75,.22);
  position: relative;
  overflow: hidden;
}

/* Subtle texture overlay */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0.8;
}

.footer::after {
  content: '';
  position: absolute;
  top: 0; left: -10%;
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(201,162,75,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer__grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
  padding-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

@media (min-width: 640px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* ===== FOOTER LOGO — full lockup with real logo circle.png ===== */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  margin-bottom: var(--space-md);
}

.footer__logo-emblem {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(201,162,75,.4), 0 6px 24px rgba(0,0,0,.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  filter: drop-shadow(0 4px 12px rgba(201,162,75,.3));
}

.footer__logo-emblem img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
}

.footer__logo:hover .footer__logo-emblem {
  transform: scale(1.06);
  box-shadow: 0 0 0 3px var(--gold), 0 8px 32px rgba(0,0,0,.5);
}

.footer__logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.footer__logo-sub {
  font-size: 0.65rem;
  color: rgba(243,237,216,.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.2rem;
}

.footer__tagline {
  font-size: 0.92rem;
  line-height: 1.68;
  margin-bottom: var(--space-md);
  color: rgba(243,237,216,.6);
}

.footer__service-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gold-bright);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--space-md);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,162,75,.2);
  position: relative;
}

.footer__links { display: flex; flex-direction: column; gap: 0.65rem; }

.footer__links a {
  font-size: 0.875rem;
  color: rgba(243,237,216,.58);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer__links a:hover { color: var(--gold-bright); padding-left: 4px; }

.footer__links a::before { content: '›'; color: var(--gold); font-size: 1rem; }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(243,237,216,.6);
  margin-bottom: 0.7rem;
}

.footer__contact-item strong {
  color: var(--cream);
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.1rem;
}

/* ===== COLORFUL SOCIAL ICONS ===== */
.footer__social { display: flex; gap: 0.75rem; margin-top: var(--space-md); }

.social-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

/* Instagram — gradient */
.social-icon--instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(220,39,67,.4);
}
.social-icon--instagram:hover { transform: translateY(-3px) scale(1.1); box-shadow: 0 8px 24px rgba(220,39,67,.6); }

/* Facebook — blue */
.social-icon--facebook {
  background: linear-gradient(135deg, #1877F2, #0d5fd4);
  color: white;
  box-shadow: 0 4px 14px rgba(24,119,242,.4);
}
.social-icon--facebook:hover { transform: translateY(-3px) scale(1.1); box-shadow: 0 8px 24px rgba(24,119,242,.6); }

/* TikTok — gradient dark */
.social-icon--tiktok {
  background: linear-gradient(135deg, #010101 0%, #1a1a1a 50%, #69C9D0 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(105,201,208,.3);
  border: 1px solid rgba(105,201,208,.3);
}
.social-icon--tiktok:hover { transform: translateY(-3px) scale(1.1); box-shadow: 0 8px 24px rgba(105,201,208,.5); }

/* Twitter/X — black/white */
.social-icon--twitter {
  background: linear-gradient(135deg, #14171A, #1DA1F2);
  color: white;
  box-shadow: 0 4px 14px rgba(29,161,242,.35);
}
.social-icon--twitter:hover { transform: translateY(-3px) scale(1.1); box-shadow: 0 8px 24px rgba(29,161,242,.55); }

.footer__bottom {
  border-top: 1px solid rgba(201,162,75,.12);
  padding: var(--space-md) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  position: relative;
  z-index: 1;
}

.footer__copyright { font-size: 0.78rem; color: rgba(243,237,216,.38); }

.footer__bottom-links { display: flex; gap: var(--space-md); }

.footer__bottom-links a { font-size: 0.75rem; color: rgba(243,237,216,.38); transition: color var(--transition-fast); }
.footer__bottom-links a:hover { color: var(--gold); }

/* ============================================================
   19. CREATIVE & GLOSSY VALUES / FEATURES
   ============================================================ */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.6rem 1.4rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.95) 0%, rgba(250,246,236,.85) 100%);
  border: 1.5px solid rgba(201,162,75,.28);
  box-shadow: 0 4px 18px rgba(0,0,0,.05), inset 0 1px 0 rgba(255,255,255,1);
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(201,162,75,.2), 0 4px 12px rgba(0,0,0,.06);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(201,162,75,.22) 100%);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(201,162,75,.25);
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(201,162,75,.4);
}

.feature-content__title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--olive-dark);
  margin-bottom: 0.35rem;
}

.feature-content__desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.62;
}

/* ============================================================
   20. IMAGE STRIP
   ============================================================ */
.image-strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: var(--space-sm);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.image-strip__item {
  flex-shrink: 0;
  width: 280px; height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(201,162,75,.2);
  box-shadow: var(--shadow-sm);
}

.image-strip__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-med);
}

.image-strip__item:hover img { transform: scale(1.06); }

/* ============================================================
   21. NEIGHBORHOODS
   ============================================================ */
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px)  { .neighborhood-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .neighborhood-grid { grid-template-columns: repeat(4, 1fr); } }

.neighborhood-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(201,162,75,.1);
  border: 1px solid rgba(201,162,75,.22);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  transition: all var(--transition-fast);
  backdrop-filter: blur(4px);
}

.neighborhood-pill:hover {
  background: rgba(201,162,75,.22);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(201,162,75,.2);
}

.neighborhood-pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(201,162,75,.6);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 6px rgba(201,162,75,.6); }
  50%       { opacity: .6; transform: scale(.85); box-shadow: 0 0 2px rgba(201,162,75,.3); }
}

/* ============================================================
   22. SCROLL REVEAL
   ============================================================ */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

.gold-text  { color: var(--gold); }
.rust-text  { color: var(--rust); }
.cream-text { color: var(--cream); }

/* ============================================================
   23. RESPONSIVE
   ============================================================ */
@media (min-width: 768px) {
  .hero { min-height: 90vh; }
  .hero--short { min-height: 62vh; }
  .section { padding: calc(var(--space-xl) * 1.25) 0; }
}

@media (min-width: 1024px) {
  .section { padding: calc(var(--space-xl) * 1.5) 0; }
}

@media (min-width: 1440px) {
  :root { --space-xl: 5rem; }
}

/* ============================================================
   24. MOBILE POLISH
   ============================================================ */
@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .btn-lg { padding: .85rem 1.6rem; font-size: .9rem; }
  .contact-form { padding: var(--space-lg) var(--space-md); }
  .testimonial-card { padding: var(--space-lg); }
  .package-card.featured { transform: scale(1); }
}

/* ============================================================
   25. COMPREHENSIVE RESPONSIVENESS & MOBILE/TABLET/DESKTOP POLISH
   ============================================================ */
@media (max-width: 991px) {
  .navbar__nav { display: none; }
  .navbar__hamburger { display: flex; }
  .hero__title { font-size: 2.4rem; line-height: 1.2; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 767px) {
  .hero { min-height: 75vh; padding-top: 5rem; }
  .hero__title { font-size: 2.1rem; }
  .hero__tagline { font-size: 0.95rem; }
  .hero__actions { flex-direction: column; width: 100%; max-width: 320px; margin: 1.5rem auto 0; gap: 0.75rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { min-height: 70vh; }
  .hero__title { font-size: 1.75rem; }
  .navbar__logo img { width: 38px; height: 38px; }
  .navbar__logo-text { font-size: 1.1rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .customer-card { padding: 1.8rem 1.2rem; }
  .otp-input { width: 38px; height: 46px; font-size: 1.25rem; }
}
