/* ================================================================
   I M PATEL CATERING — Premium Redesign v2
   Logo-integrated theme: exact colours from the Ganesha logo
   ================================================================ */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Exact palette pulled from the logo */
  --purple:    #6B3FA0;   /* logo's dominant purple circle */
  --blue:      #1E5CB3;   /* logo's deep blue circle */
  --gold:      #C8902A;   /* Ganesha gold motif */
  --gold-lt:   #D4A64A;   /* lighter gold tint */
  --coral:     #E8617A;   /* logo's coral/pink circle */
  --wordmark:  #3B1F7A;   /* "I M PATEL" deep indigo-purple */

  /* Surfaces */
  --ivory:     #FAF8F5;
  --ivory-alt: #F4F1EC;
  --white:     #FFFFFF;
  --charcoal:  #1E1A2E;
  --text:      #2D2640;
  --muted:     #6B6480;

  /* Utility */
  --border:    rgba(107,63,160,.13);
  --border-lt: rgba(107,63,160,.07);

  /* Type */
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Poppins', system-ui, sans-serif;

  /* Spacing */
  --section-pad: 112px;

  /* Radius */
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  28px;
  --r-xl:  40px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(107,63,160,.10);
  --shadow-md: 0 6px 32px rgba(107,63,160,.14);
  --shadow-lg: 0 16px 56px rgba(107,63,160,.18);

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --t: 0.32s;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--ivory);
  color: var(--text);
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--ff-body); border: none; }

/* ── Shared ─────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 36px; }
.section-pad { padding: var(--section-pad) 0; }
.bg-ivory-alt { background: var(--ivory-alt); }

.section-eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 600;
  color: var(--wordmark);
  line-height: 1.12;
  margin-bottom: 20px;
}
.section-sub {
  font-size: .95rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }

.body-lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: all var(--t) var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(200,144,42,.30);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,144,42,.45);
  background: linear-gradient(135deg, #e0b055, #b87820);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-sm {
  padding: 10px 24px;
  font-size: .75rem;
}
.btn-outline-purple {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn-outline-purple:hover {
  background: var(--purple);
  color: var(--white);
}

/* ── Reveal animation ───────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-delay="1"] { transition-delay: .12s; }
[data-delay="2"] { transition-delay: .24s; }
[data-delay="3"] { transition-delay: .36s; }

/* ================================================================
   NAV
   ================================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
/* On hero: transparent over the light ivory hero bg */
#navbar.nav-at-top { background: transparent; }
#navbar.nav-scrolled {
  background: rgba(250,248,245,.94);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 1px 0 var(--border-lt), 0 4px 20px rgba(107,63,160,.06);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 36px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo in nav — the key fix: full logo displayed elegantly on light bg */
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--t);
}
.nav-logo-img:hover { opacity: .88; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--wordmark);
  transition: color var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--t) var(--ease);
  transform-origin: left;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold)) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .75rem !important;
  letter-spacing: .06em !important;
  box-shadow: 0 3px 12px rgba(200,144,42,.28);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,144,42,.4) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--wordmark);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

.nav-toggle span {
    transition: all .3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}



/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #fdfbf8 0%, #f5f0fa 40%, #ece8f8 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 110px; /* nav height */
}

/* Decorative background orbs (from logo circles palette) */
.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hbo {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
}
.hbo-purple {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(107,63,160,.16) 0%, transparent 65%);
  top: -80px; right: 5%;
}
.hbo-blue {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(30,92,179,.13) 0%, transparent 65%);
  top: 10%; right: 20%;
}
.hbo-gold {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(200,144,42,.14) 0%, transparent 65%);
  top: 5%; right: 35%;
}
.hbo-coral {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,97,122,.12) 0%, transparent 65%);
  top: 30%; right: 12%;
}
/* Small accent dots */
.hbo-sm-purple {
  width: 24px; height: 24px;
  background: rgba(107,63,160,.55);
  top: 18%; right: 8%;
}
.hbo-sm-blue {
  width: 16px; height: 16px;
  background: rgba(30,92,179,.5);
  top: 60%; right: 42%;
}
.hbo-sm-gold {
  width: 20px; height: 20px;
  background: rgba(200,144,42,.6);
  bottom: 25%; right: 22%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 36px;
  align-items: center;
  min-height: calc(100vh - 110px);
}

/* ── Hero Logo Feature (left side) ── */
.hero-logo-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px;
}
.hero-logo-glow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.logo-glow-ring {
  position: absolute;
  border-radius: 50%;
  animation: ringPulse 4s ease-in-out infinite;
}
.lg-r1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(107,63,160,.08) 0%, transparent 60%);
  animation-delay: 0s;
}
.lg-r2 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(200,144,42,.10) 0%, transparent 60%);
  animation-delay: 2s;
}
@keyframes ringPulse {
  0%,100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.06); opacity: 1; }
}
.hero-logo-wrap {
  position: relative;
  z-index: 2;
  /* white card with subtle shadow to lift logo off background */
  background: var(--white);
  border-radius: 50%;
  padding: 36px;
  width: 340px; height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(107,63,160,.08),
    0 8px 48px rgba(107,63,160,.14),
    0 32px 80px rgba(107,63,160,.10);
}
.hero-logo-img {
  width: 260px;
  height: auto;
  object-fit: contain;
}

/* ── Hero Content (right side) ── */
.hero-content {
  padding: 60px 0 60px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(107,63,160,.08);
  border: 1px solid rgba(107,63,160,.18);
  color: var(--purple);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 600;
  color: var(--wordmark);
  line-height: 1.04;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-item strong {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--wordmark);
  line-height: 1;
}
.trust-item span {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-top: 3px;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--purple);
  animation: bounceDown 2.5s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }
@keyframes bounceDown {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

/* ================================================================
   BRAND STRIP
   ================================================================ */
.brand-strip {
  background: linear-gradient(135deg, var(--wordmark) 0%, var(--purple) 100%);
  overflow: hidden;
  padding: 14px 0;
}
.brand-strip-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: stripScroll 24s linear infinite;
  width: max-content;
}
.brand-strip-inner span {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.bs-dot {
  width: 4px !important; height: 4px !important;
  border-radius: 50%;
  background: var(--gold-lt) !important;
  flex-shrink: 0;
}
@keyframes stripScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================================================================
   ABOUT
   ================================================================ */
.about { position: relative; overflow: hidden; }
.about-deco { position: absolute; inset: 0; pointer-events: none; }
.ad-orb {
  position: absolute;
  border-radius: 50%;
}
.ad-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,63,160,.07) 0%, transparent 65%);
  top: -100px; right: -100px;
}
.ad-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,144,42,.08) 0%, transparent 65%);
  bottom: 0; left: -50px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Visual panel — logo-circle composition */
.about-visual { position: relative; }
.av-frame {
  width: 100%;
  aspect-ratio: 1;
  max-width: 440px;
  position: relative;
  margin: 0 auto;
}
/* The four overlapping circles that mirror the logo */
.av-circles { position: absolute; inset: 0; }
.avc {
  position: absolute;
  border-radius: 50%;
  opacity: .22;
}
.avc-purple {
  width: 72%; height: 72%;
  background: var(--purple);
  top: 0; left: 0;
}
.avc-blue {
  width: 68%; height: 68%;
  background: var(--blue);
  bottom: 0; left: 12%;
}
.avc-gold {
  width: 60%; height: 60%;
  background: var(--gold);
  top: 5%; right: 0;
}
.avc-coral {
  width: 52%; height: 52%;
  background: var(--coral);
  bottom: 5%; right: 5%;
}
/* Logo badge in centre */
.av-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: var(--white);
  border-radius: 50%;
  padding: 28px;
  width: 55%; aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px rgba(107,63,160,.10), var(--shadow-lg);
}
.av-badge-logo { width: 100%; height: auto; }

/* Floating stat cards */
.av-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-lt);
  z-index: 20;
}
.av-sc-top { top: 0; right: -20px; }
.av-sc-bot { bottom: 0; left: -20px; }
.sc-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}
.sc-label {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-top: 3px;
}

/* Text column */
.about-text { padding: 20px 0; }
.about-text p { color: var(--muted); margin-bottom: 14px; font-size: .95rem; }
.about-stats {
  display: flex;
  gap: 36px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 24px 0 32px;
}
.stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--wordmark);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-top: 4px;
}

/* ================================================================
   SERVICES
   ================================================================ */
.services { position: relative; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 40px 28px 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-lt);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
/* Coloured top accent bar — uses each logo colour */
.sc-accent-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--r-md) var(--r-md) 0 0;
}
.sc-blue .sc-accent-bar { background: linear-gradient(90deg, var(--blue), #4A8BE0); }
.sc-purple .sc-accent-bar { background: linear-gradient(90deg, var(--purple), #9B6FD4); }
.sc-gold .sc-accent-bar { background: linear-gradient(90deg, var(--gold), var(--gold-lt)); }
.sc-coral .sc-accent-bar { background: linear-gradient(90deg, var(--coral), #F09AAB); }

.sc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.sc-blue .sc-icon-wrap { background: rgba(30,92,179,.1); color: var(--blue); }
.sc-purple .sc-icon-wrap { background: rgba(107,63,160,.1); color: var(--purple); }
.sc-gold .sc-icon-wrap { background: rgba(200,144,42,.1); color: var(--gold); }
.sc-coral .sc-icon-wrap { background: rgba(232,97,122,.1); color: var(--coral); }
.sc-icon-wrap svg { width: 26px; height: 26px; }

.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--wordmark);
  margin-bottom: 12px;
  line-height: 1.25;
}
.service-card p { font-size: .86rem; color: var(--muted); line-height: 1.65; }
.sc-index {
  position: absolute;
  bottom: 20px; right: 24px;
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  opacity: .05;
  color: var(--wordmark);
  pointer-events: none;
  user-select: none;
}

/* ================================================================
   CUISINE
   ================================================================ */
.cuisine { position: relative; overflow: hidden; }
.cuisine-deco { position: absolute; inset: 0; pointer-events: none; }
.cd-orb { position: absolute; border-radius: 50%; }
.cd-o1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,63,160,.07) 0%, transparent 65%);
  top: -200px; right: -100px;
}
.cd-o2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,144,42,.08) 0%, transparent 65%);
  bottom: -100px; left: -100px;
}

.cuisine-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.tab-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 11px 26px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
  transition: all var(--t) var(--ease);
}
.tab-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: rgba(107,63,160,.04);
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--purple), #9B6FD4);
  border-color: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(107,63,160,.30);
}

.cuisine-panels { position: relative; z-index: 2; }
.cuisine-panel { display: none; }
.cuisine-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.cuisine-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cuisine-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--r-sm);
  border: 1px solid var(--border-lt);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
}
.cuisine-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.ci-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ci-purple { background: var(--purple); }
.ci-blue   { background: var(--blue); }
.ci-gold   { background: var(--gold); }
.ci-coral  { background: var(--coral); }

/* Feature panel with mini logo circles */
.cuisine-feature {
  background: linear-gradient(145deg, #f9f6ff, var(--ivory-alt));
  border-radius: var(--r-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(107,63,160,.10);
}
.cf-circles { position: absolute; top: -30px; right: -30px; pointer-events: none; }
.cfc {
  position: absolute;
  border-radius: 50%;
  opacity: .18;
}
.cfc-p { width: 140px; height: 140px; background: var(--purple); top: 0; right: 0; }
.cfc-b { width: 110px; height: 110px; background: var(--blue); top: 20px; right: 50px; }
.cfc-g { width: 90px; height: 90px; background: var(--gold); top: 50px; right: 10px; }
.cf-quote {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--wordmark);
  line-height: 1.6;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  quotes: none;
}

/* ================================================================
   WHY US
   ================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 36px 28px;
  border: 1px solid var(--border-lt);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
/* Icon ring: circle with logo colour */
.wc-icon-ring {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.wc-ring-purple { background: rgba(107,63,160,.10); color: var(--purple); }
.wc-ring-blue   { background: rgba(30,92,179,.10); color: var(--blue); }
.wc-ring-gold   { background: rgba(200,144,42,.12); color: var(--gold); }
.wc-ring-coral  { background: rgba(232,97,122,.10); color: var(--coral); }
.wc-icon-ring svg { width: 24px; height: 24px; }
.why-card h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--wordmark);
  margin-bottom: 10px;
}
.why-card p { font-size: .87rem; color: var(--muted); line-height: 1.65; }

/* ================================================================
   GALLERY
   ================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 240px 240px;
  gap: 14px;
}
.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item:hover .gi-overlay { opacity: 1; }
.gallery-item:hover .gi-content { opacity: 1; transform: none; }

/* Individual gallery cells */
.gi-1 { grid-column: 1 / 8; background: linear-gradient(135deg, rgba(107,63,160,.3) 0%, rgba(30,92,179,.35) 100%), repeating-linear-gradient(45deg, rgba(200,144,42,.06) 0px 2px, transparent 2px 28px); }
.gi-2 { grid-column: 8 / 13; background: linear-gradient(135deg, rgba(232,97,122,.3) 0%, rgba(107,63,160,.3) 100%); }
.gi-3 { grid-column: 1 / 5; background: linear-gradient(135deg, rgba(200,144,42,.25) 0%, rgba(30,92,179,.3) 100%); }
.gi-4 { grid-column: 5 / 9; background: linear-gradient(135deg, rgba(30,92,179,.3) 0%, rgba(232,97,122,.28) 100%); }
.gi-5 { grid-column: 9 / 13; background: linear-gradient(135deg, rgba(107,63,160,.28) 0%, rgba(200,144,42,.25) 100%), repeating-linear-gradient(-45deg, rgba(232,97,122,.05) 0px 2px, transparent 2px 28px); }

.gi-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(59,31,122,.65) 0%, rgba(59,31,122,.1) 60%, transparent 100%);
  opacity: 0;
  transition: opacity var(--t);
}
.gi-content {
  position: absolute;
  bottom: 20px; left: 22px; right: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t), transform var(--t) var(--ease);
}
.gi-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
}
.gi-arrow {
  width: 26px; height: 26px;
  color: var(--gold-lt);
  flex-shrink: 0;
}
.gallery-note {
  text-align: center;
  margin-top: 28px;
  font-size: .85rem;
  color: var(--muted);
  font-style: italic;
}
.gallery-note a { color: var(--purple); border-bottom: 1px solid currentColor; }
.gallery-note a:hover { color: var(--gold); }

/* ================================================================
   CONTACT
   ================================================================ */
.contact { position: relative; overflow: hidden; }
.contact-deco { position: absolute; inset: 0; pointer-events: none; }
.ctd-orb { position: absolute; border-radius: 50%; }
.ctd-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,63,160,.07) 0%, transparent 65%);
  top: -100px; right: -100px;
}
.ctd-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(200,144,42,.07) 0%, transparent 65%);
  bottom: -80px; left: -80px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.contact-lead {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.75;
}
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-lt);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
}
a.contact-detail:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-sm);
}
.cd-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cd-blue   { background: rgba(30,92,179,.1); color: var(--blue); }
.cd-purple { background: rgba(107,63,160,.1); color: var(--purple); }
.cd-gold   { background: rgba(200,144,42,.1); color: var(--gold); }
.cd-coral  { background: rgba(232,97,122,.1); color: var(--coral); }
.cd-icon svg { width: 18px; height: 18px; }
.cd-label {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1px;
}
.cd-value {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
}

/* Form card */
.contact-form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cfc-header {
  background: linear-gradient(135deg, var(--wordmark), var(--purple));
  padding: 20px 32px;
}
.cfc-header p {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,.9);
  letter-spacing: .02em;
}
.contact-form { padding: 32px; display: flex; flex-direction: column; gap: 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group-full { margin-bottom: 20px; }
label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
}
input, select, textarea {
  font-family: var(--ff-body);
  font-size: .88rem;
  color: var(--text);
  background: var(--ivory);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107,63,160,.10);
  background: var(--white);
}
textarea { resize: vertical; min-height: 108px; }
.btn-form-submit {
  width: 100%;
  padding: 15px;
  font-size: .82rem;
  letter-spacing: .07em;
  margin-top: 4px;
}
.form-note {
  text-align: center;
  font-size: .73rem;
  color: var(--muted);
  margin-top: 12px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}
.footer-deco { position: absolute; inset: 0; pointer-events: none; }
.fd-orb { position: absolute; border-radius: 50%; }
.fd-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,63,160,.25) 0%, transparent 65%);
  top: -100px; right: -100px;
}
.fd-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(30,92,179,.2) 0%, transparent 65%);
  bottom: -50px; left: 20%;
}
.fd-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,144,42,.18) 0%, transparent 65%);
  top: 50%; left: -50px;
}

.footer-main { padding: 72px 0 60px; position: relative; z-index: 2; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  height: 140px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;

  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;

  filter: drop-shadow(0 8px 20px rgba(0,0,0,.25));
}
.footer-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-lt);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.48);
  line-height: 1.75;
  max-width: 320px;
}
.footer-col h5 {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--gold-lt); }
.footer-contact-link {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 8px;
  transition: color var(--t);
}
.footer-contact-link:hover { color: var(--gold-lt); }
.footer-hours {
  font-size: .78rem;
  color: rgba(255,255,255,.38);
  margin-top: 8px;
}
.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: .73rem;
  color: rgba(255,255,255,.3);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 24px; }
  .hero-logo-wrap { width: 280px; height: 280px; padding: 28px; }
  .hero-logo-img { width: 210px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
      position: fixed;
      top: 110px;
      left: 0;
      right: 0;

      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;

      background: rgba(250,248,245,.98);
      backdrop-filter: blur(14px);

      padding: 35px 20px;

      opacity: 0;
      visibility: hidden;
      transform: translateY(-30px);

      transition:
        opacity .4s ease,
        transform .4s ease,
        visibility .4s ease;
  }

  .nav-links.open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }
}

  .nav-links a {
    transition: all .3s ease;
}

.nav-links a:hover {
    transform: translateX(5px);
}


@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; text-align: center; }
  .cuisine-tabs { gap: 6px; }
  .tab-btn { padding: 9px 18px; font-size: .72rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card .cfc-header { padding: 16px 20px; }
  .contact-form { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ================================================================
   REVIEWS + CALL CARD UPDATES
   ================================================================ */
.btn-outline-dark {
  background: transparent;
  color: var(--wordmark);
  border-color: var(--wordmark);
}
.btn-outline-dark:hover {
  background: var(--wordmark);
  color: var(--white);
}
.reviews { position: relative; }
.reviews-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 36px;
  text-align: center;
}
.reviews-stars {
  color: var(--gold);
  letter-spacing: .18em;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.reviews-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.contact-call-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.call-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.call-card-body p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 8px;
}
.contact-call-card .btn {
    background: #fff;
    color: var(--wordmark);
    border: 2px solid var(--purple);
    font-weight: 600;
}

.contact-call-card .btn:hover {
    background: var(--purple);
    color: #fff;
    transform: translateY(-2px);
}
.instagram-link {
    color: var(--purple);
    font-size: 1.5rem;
    transition: 0.3s;
}

.instagram-link:hover {
    color: var(--gold);
    transform: scale(1.1);
}
.instagram-footer {
    display: flex;
    align-items: center;
    gap: 8px;
}