/* ═══════════════════════════════════════════════════════════════════
   CHEFZ DOGZ — COMPONENTS CSS
   Nav · Hero · Ticker · About · Schedule · Menu · Chef · Footer
═══════════════════════════════════════════════════════════════════ */

/* ─── NAV ────────────────────────────────────────────────────────── */
.cd-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(15,61,26,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 3px solid var(--cd-yellow);
  transition: background 0.3s;
}

.cd-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.cd-nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.cd-nav__logo {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  border: 2px solid var(--cd-yellow);
  object-fit: cover;
}

.cd-nav__wordmark {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.9rem;
  letter-spacing: 2px;
  color: var(--cd-white);
  line-height: 1;
}
.cd-nav__wordmark span { color: var(--cd-red-bright); }

.cd-nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.cd-nav__links a {
  color: var(--cd-cream);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}
.cd-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--cd-yellow);
  transition: width 0.3s;
}
.cd-nav__links a:hover,
.cd-nav__links .current-menu-item a { color: var(--cd-yellow); }
.cd-nav__links a:hover::after,
.cd-nav__links .current-menu-item a::after { width: 100%; }

/* Hamburger */
.cd-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.cd-nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--cd-yellow);
  border-radius: 2px;
  transition: all 0.3s;
}
.cd-nav__hamburger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.cd-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.cd-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────────────── */
.cd-hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(26,92,37,0.55) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(200,32,10,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 85%, rgba(245,200,0,0.12) 0%, transparent 50%),
    linear-gradient(160deg, #0a2a10 0%, #111111 60%, #1a0a05 100%);
  display: flex;
  align-items: center;
  padding: 120px 8% 80px;
  position: relative;
  overflow: hidden;
  gap: 40px;
}

.cd-hero__bg-rings {
  position: absolute;
  right: -180px; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 2px solid rgba(245,200,0,0.1);
  box-shadow:
    0 0 0 60px  rgba(245,200,0,0.04),
    0 0 0 120px rgba(245,200,0,0.025),
    0 0 0 180px rgba(245,200,0,0.01);
  pointer-events: none;
}

.cd-hero__logo-wrap {
  flex-shrink: 0;
  animation: floatLogo 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(245,200,0,0.3));
  order: 2;
}

.cd-hero__logo {
  width: clamp(220px, 28vw, 400px);
  height: auto;
  border-radius: 50%;
}

.cd-hero__logo-placeholder {
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--cd-green-mid);
  border: 5px solid var(--cd-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.cd-hero__text {
  flex: 1;
  animation: fadeUp 0.9s ease both;
}

.cd-hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cd-yellow);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow-line {
  display: inline-block;
  width: 40px; height: 2px;
  background: var(--cd-yellow);
  flex-shrink: 0;
}

.cd-hero__heading {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(4.5rem, 10vw, 8rem);
  line-height: 0.88;
  color: var(--cd-white);
  margin-bottom: 10px;
}

.cd-hero__tagline {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  letter-spacing: 5px;
  color: var(--cd-yellow);
  margin-bottom: 26px;
  border-left: 4px solid var(--cd-red-bright);
  padding-left: 16px;
}

.cd-hero__desc {
  font-size: 1.05rem;
  line-height: 1.78;
  color: rgba(255,248,231,0.78);
  max-width: 480px;
  margin-bottom: 40px;
}

.cd-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── TICKER ─────────────────────────────────────────────────────── */
.cd-ticker {
  background: var(--cd-yellow);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid var(--cd-yellow-deep);
  border-bottom: 3px solid var(--cd-yellow-deep);
}
.cd-ticker__track {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}
.cd-ticker__item {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.15rem;
  letter-spacing: 3px;
  color: var(--cd-charcoal);
  margin-right: 0;
  padding-right: 60px;
}
.cd-ticker__dot { color: var(--cd-red); margin-right: 0; }

/* ─── ABOUT ──────────────────────────────────────────────────────── */
.cd-about {
  background: var(--cd-green-dark);
  padding: 90px 0;
  border-bottom: 4px solid var(--cd-yellow);
}
.cd-about__inner {
  display: flex;
  gap: 70px;
  align-items: center;
}
.cd-about__text { flex: 1; }
.cd-about__heading {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin-bottom: 20px;
}
.cd-about__text p {
  color: rgba(255,248,231,0.78);
  line-height: 1.82;
  font-size: 1rem;
  max-width: 520px;
}

.cd-about__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

.cd-stat-card {
  background: var(--cd-green-mid);
  border: 2px solid rgba(245,200,0,0.25);
  padding: 22px 36px;
  text-align: center;
  min-width: 190px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.cd-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--cd-yellow);
}
.cd-stat-card:hover { transform: translateX(6px); border-color: var(--cd-yellow); }

.cd-stat-card__num {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.2rem;
  color: var(--cd-yellow);
  display: block;
  line-height: 1;
}
.cd-stat-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,248,231,0.6);
  margin-top: 5px;
}

/* ─── SECTION HEADER (shared) ────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}
.section-header p {
  color: rgba(255,248,231,0.6);
  font-size: 1rem;
  max-width: 520px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ─── SCHEDULE GRID ──────────────────────────────────────────────── */
.cd-schedule-preview {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at top left, rgba(26,92,37,0.25) 0%, transparent 55%),
    #0d0d0d;
}

.cd-schedule-page {
  padding: 60px 0 100px;
  background: #0d0d0d;
}

.cd-schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.cd-schedule-grid--preview {
  margin-bottom: 40px;
}

/* ─── SCHEDULE CARD ──────────────────────────────────────────────── */
.cd-schedule-card {
  background: var(--cd-green-dark);
  border: 2px solid rgba(245,200,0,0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.cd-schedule-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,200,0,0.7);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(245,200,0,0.1);
}
.cd-schedule-card--today {
  border-color: var(--cd-yellow);
  box-shadow: 0 0 0 1px var(--cd-yellow), 0 20px 60px rgba(245,200,0,0.18);
}

/* Banner */
.cd-schedule-card__banner {
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.banner-open   { background: var(--cd-green-mid); }
.banner-closed { background: var(--cd-red); }
.banner-coming { background: #7a4a00; }

.cd-schedule-card__day {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.25rem;
  letter-spacing: 2px;
  color: var(--cd-white);
  flex: 1;
}

.cd-schedule-card__status {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  background: rgba(0,0,0,0.25);
  color: var(--cd-white);
  border-radius: 2px;
}
.status-open   { background: rgba(0,200,80,0.35);  color: #7fff7f; }
.status-closed { background: rgba(200,0,0,0.4);    color: #ffaaaa; }
.status-coming { background: rgba(245,200,0,0.3);  color: var(--cd-yellow); }

.cd-schedule-card__photo {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-bottom: 3px solid rgba(245,200,0,0.25);
}
.cd-schedule-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.cd-schedule-card:hover .cd-schedule-card__photo img {
  transform: scale(1.04);
}
.cd-schedule-card__photo-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--cd-yellow);
  color: var(--cd-charcoal);
  padding: 4px 10px;
  border-radius: 2px;
  animation: pulse 2s ease-in-out infinite;
}

/* Date row */
.cd-schedule-card__date {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  font-weight: 700;
  color: rgba(245,200,0,0.85);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.cd-schedule-card__date svg { flex-shrink: 0; }

.cd-schedule-card__today-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--cd-yellow);
  color: var(--cd-charcoal);
  padding: 3px 10px;
  border-radius: 2px;
  animation: pulse 2s ease-in-out infinite;
}

/* Body */
.cd-schedule-card__body { padding: 24px 22px 20px; }

.cd-schedule-card__name {
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--cd-yellow);
  margin-bottom: 8px;
  font-family: 'Bebas Neue', cursive;
}

.cd-schedule-card__address {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.83rem;
  color: rgba(255,248,231,0.55);
  margin-bottom: 20px;
  line-height: 1.5;
}
.cd-schedule-card__address svg { flex-shrink: 0; margin-top: 2px; }

.cd-schedule-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.cd-meta-item {
  background: rgba(255,255,255,0.04);
  padding: 12px 14px;
  border-left: 3px solid var(--cd-yellow);
}
.cd-meta-item__label {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,248,231,0.4);
  margin-bottom: 4px;
}
.cd-meta-item__value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cd-cream);
}

.cd-schedule-card__desc {
  font-size: 0.85rem;
  color: rgba(255,248,231,0.6);
  line-height: 1.68;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 16px;
  margin-bottom: 16px;
}

.cd-schedule-card__map-btn {
  display: block;
  background: transparent;
  border: 1.5px solid rgba(245,200,0,0.4);
  color: var(--cd-yellow);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  width: 100%;
}
.cd-schedule-card__map-btn:hover {
  background: var(--cd-yellow);
  color: var(--cd-charcoal);
}

/* ─── SCHEDULE PAGE — CONTROLS ───────────────────────────────────── */
.cd-page-hero {
  padding: 140px 0 60px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(26,92,37,0.5) 0%, transparent 70%),
    linear-gradient(180deg, #0a2a10 0%, #0d0d0d 100%);
  border-bottom: 3px solid var(--cd-yellow);
}
.cd-page-hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 16px;
}
.cd-page-hero p {
  color: rgba(255,248,231,0.65);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.cd-today-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(245,200,0,0.1);
  border: 1px solid rgba(245,200,0,0.3);
  border-left: 4px solid var(--cd-yellow);
  padding: 14px 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.cd-today-bar__label { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,248,231,0.5); }
.cd-today-bar__day { font-family: 'Bebas Neue', cursive; font-size: 1.4rem; letter-spacing: 2px; color: var(--cd-yellow); }
.cd-today-bar__sep { color: rgba(255,248,231,0.3); }
.cd-today-bar__hint { font-size: 0.85rem; color: rgba(255,248,231,0.55); }

/* Day filter tabs */
.cd-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.cd-tab {
  background: transparent;
  border: 2px solid rgba(245,200,0,0.25);
  color: rgba(255,248,231,0.55);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.cd-tab:hover { border-color: rgba(245,200,0,0.6); color: var(--cd-yellow); }
.cd-tab.active { background: var(--cd-yellow); border-color: var(--cd-yellow); color: var(--cd-charcoal); }
.cd-tab--today { border-color: rgba(245,200,0,0.5); color: rgba(255,248,231,0.8); }
.cd-tab__dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--cd-yellow);
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
}
.cd-tab.active .cd-tab__dot { background: var(--cd-charcoal); }

.cd-results-bar {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,248,231,0.4);
  margin-bottom: 28px;
  min-height: 24px;
}

/* Empty state */
.cd-empty {
  text-align: center;
  padding: 80px 20px;
  border: 2px dashed rgba(245,200,0,0.2);
}
.cd-empty__icon { font-size: 3.5rem; margin-bottom: 20px; }
.cd-empty h3 { font-size: 2rem; color: var(--cd-yellow); margin-bottom: 12px; }
.cd-empty p { color: rgba(255,248,231,0.5); margin-bottom: 24px; }

/* Admin bar */
.cd-admin-bar {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(245,200,0,0.15);
}
.cd-admin-btn {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,248,231,0.7);
  text-decoration: none;
  transition: all 0.2s;
}
.cd-admin-btn:hover { background: rgba(255,255,255,0.1); color: var(--cd-cream); }
.cd-admin-btn--green { border-color: rgba(245,200,0,0.4); color: var(--cd-yellow); }
.cd-admin-btn--green:hover { background: var(--cd-green-dark); color: var(--cd-yellow); }

/* Schedule preview CTA */
.cd-schedule-preview__cta { text-align: center; margin-top: 12px; }

/* ─── MENU ───────────────────────────────────────────────────────── */
.cd-menu {
  padding: 100px 0;
  background: var(--cd-green-dark);
  border-top: 4px solid var(--cd-yellow);
}
.cd-menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 0;
}
.cd-menu__card {
  background: var(--cd-green-mid);
  border: 2px solid rgba(245,200,0,0.12);
  padding: 32px 24px;
  transition: all 0.3s;
  position: relative;
}
.cd-menu__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cd-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.cd-menu__card:hover { transform: translateY(-5px); border-color: rgba(245,200,0,0.5); }
.cd-menu__card:hover::after { transform: scaleX(1); }

.cd-menu__emoji { font-size: 2.5rem; display: block; margin-bottom: 14px; }
.cd-menu__card h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.55rem;
  letter-spacing: 1px;
  color: var(--cd-yellow);
  margin-bottom: 10px;
}
.cd-menu__card p { font-size: 0.88rem; color: rgba(255,248,231,0.65); line-height: 1.65; margin-bottom: 0; }
.cd-menu__origin {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cd-red-bright);
  padding: 3px 10px;
  border: 1px solid rgba(224,42,16,0.5);
}

/* ─── CHEF ───────────────────────────────────────────────────────── */
.cd-chef {
  padding: 100px 0;
  background: var(--cd-charcoal);
}
.cd-chef__inner {
  display: flex;
  gap: 70px;
  align-items: center;
}
.cd-chef__badge {
  flex-shrink: 0;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--cd-green-mid);
  border: 5px solid var(--cd-yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 0 14px rgba(245,200,0,0.06), 0 20px 60px rgba(0,0,0,0.5);
}
.cd-chef__icon { font-size: 3rem; margin-bottom: 10px; }
.cd-chef__name { font-family: 'Bebas Neue', cursive; font-size: 1.1rem; letter-spacing: 1px; color: var(--cd-yellow); line-height: 1.25; }
.cd-chef__title { font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,248,231,0.45); margin-top: 5px; }

.cd-chef__text { flex: 1; }
.cd-chef__text h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 18px; }
.cd-chef__text p { color: rgba(255,248,231,0.75); line-height: 1.82; font-size: 1rem; margin-bottom: 14px; }

/* ─── SOCIAL BANNER ──────────────────────────────────────────────── */
.cd-social-banner {
  background: var(--cd-green-dark);
  border-top: 4px solid var(--cd-yellow);
  padding: 70px 0;
  text-align: center;
}
.cd-social-banner h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 12px; }
.cd-social-banner p { color: rgba(255,248,231,0.6); margin-bottom: 32px; }
.cd-social-banner__links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cd-social-btn {
  display: inline-block;
  background: var(--cd-green-mid);
  border: 2px solid var(--cd-yellow);
  color: var(--cd-yellow);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 30px;
  text-decoration: none;
  transition: all 0.2s;
}
.cd-social-btn:hover { background: var(--cd-yellow); color: var(--cd-charcoal); }
.cd-social-btn--fb { border-color: rgba(245,200,0,0.4); }

/* ─── HOW IT WORKS ───────────────────────────────────────────────── */
.cd-how {
  padding: 90px 0;
  background: var(--cd-green-dark);
  border-top: 4px solid var(--cd-yellow);
}
.cd-how__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 50px;
}
.cd-how__step {
  text-align: center;
  position: relative;
  padding-top: 20px;
}
.cd-how__num {
  font-family: 'Bebas Neue', cursive;
  font-size: 5rem;
  color: rgba(245,200,0,0.12);
  line-height: 1;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cd-how__step h3 { font-size: 1.5rem; color: var(--cd-yellow); margin-bottom: 12px; }
.cd-how__step p { color: rgba(255,248,231,0.6); font-size: 0.92rem; line-height: 1.72; }

/* ─── CATERING CTA ───────────────────────────────────────────────── */
.cd-catering-cta {
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(135deg, #0a2a10 0%, #111 60%, #1a0a05 100%);
  border-top: 3px solid rgba(245,200,0,0.2);
}
.cd-catering-cta h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 16px; }
.cd-catering-cta p { color: rgba(255,248,231,0.6); margin-bottom: 36px; font-size: 1rem; }

/* ─── NO SCHEDULE ────────────────────────────────────────────────── */
.cd-no-schedule {
  text-align: center;
  padding: 50px 20px;
  color: rgba(255,248,231,0.4);
  border: 2px dashed rgba(245,200,0,0.2);
  margin-bottom: 40px;
}

/* ─── GENERIC CONTENT ────────────────────────────────────────────── */
.cd-content { padding: 80px 0; }
.cd-article { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cd-article h2 a { color: var(--cd-yellow); text-decoration: none; }
.cd-article__excerpt { color: rgba(255,248,231,0.65); margin-top: 12px; }
.cd-page-content { color: rgba(255,248,231,0.8); line-height: 1.8; }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.cd-footer {
  background: var(--cd-green-dark);
  border-top: 4px solid var(--cd-yellow);
  padding: 70px 0 30px;
}
.cd-footer__inner {}
.cd-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.cd-footer__logo {
  height: 90px; width: 90px;
  border-radius: 50%;
  border: 2px solid var(--cd-yellow);
  object-fit: cover;
  margin-bottom: 16px;
}
.cd-footer__tagline {
  color: rgba(255,248,231,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 0;
}
.cd-footer__col h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.25rem;
  letter-spacing: 2px;
  color: var(--cd-yellow);
  margin-bottom: 18px;
}
.cd-footer__links { list-style: none; }
.cd-footer__links li { margin-bottom: 10px; }
.cd-footer__links a {
  color: rgba(255,248,231,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.cd-footer__links a:hover { color: var(--cd-yellow); }

.cd-footer__contact { list-style: none; }
.cd-footer__contact li {
  color: rgba(255,248,231,0.6);
  font-size: 0.88rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cd-footer__contact a { color: rgba(255,248,231,0.6); text-decoration: none; }
.cd-footer__contact a:hover { color: var(--cd-yellow); }

.cd-footer__bottom {
  border-top: 1px solid rgba(245,200,0,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.cd-footer__bottom p { color: rgba(255,248,231,0.3); font-size: 0.82rem; margin: 0; }
.cd-footer__motto {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.2rem;
  letter-spacing: 3px;
  color: var(--cd-yellow);
}

/* ─── ANIMATIONS ─────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%       { transform: translateY(-16px) rotate(1.5deg); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.65; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cd-about__inner { flex-direction: column; }
  .cd-about__stats { flex-direction: row; flex-wrap: wrap; }
  .cd-stat-card { min-width: 150px; flex: 1; }
  .cd-chef__inner { gap: 40px; }
  .cd-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .cd-nav__links { display: none; flex-direction: column; gap: 0; }
  .cd-nav__links.is-open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(15,61,26,0.99);
    padding: 20px 5%;
    border-bottom: 3px solid var(--cd-yellow);
  }
  .cd-nav__links.is-open li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .cd-nav__hamburger { display: flex; }

  .cd-hero {
    flex-direction: column;
    padding: 110px 5% 60px;
    text-align: center;
  }
  .cd-hero__logo-wrap { order: -1; }
  .cd-hero__logo { width: 200px; }
  .cd-hero__eyebrow { justify-content: center; }
  .cd-hero__tagline { text-align: left; }
  .cd-hero__desc { max-width: 100%; }
  .cd-hero__cta { justify-content: center; }

  .cd-chef__inner { flex-direction: column; text-align: center; }
  .cd-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .cd-footer__bottom { flex-direction: column; text-align: center; }
  .cd-schedule-grid { grid-template-columns: 1fr; }
  .cd-tabs { gap: 6px; }
  .cd-tab { padding: 8px 14px; font-size: 0.72rem; }
}
