/* =============================================
   CHEF4U — SHARED DESIGN SYSTEM
   Premium Personal Chef & Caterer, Birmingham
   ============================================= */

/* DESIGN TOKENS */
:root {
  --burgundy:       #6B2D3E;
  --burgundy-dark:  #4A1F2C;
  --burgundy-light: #8B3D52;
  --cream:          #FAF5EE;
  --cream-dark:     #F0E8D8;
  --gold:           #C9A028;
  --gold-light:     #E8C54B;
  --charcoal:       #2D2D2D;
  --charcoal-light: #555555;
  --white:          #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;
  --font-ui:      'Nunito Sans', sans-serif;

  --nav-h:        80px;
  --section-pad:  clamp(64px, 9vw, 128px);
  --container-w:  1320px;

  --ease-expo:    cubic-bezier(0.19, 1, 0.22, 1);
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: none; font-family: inherit; }

/* CURSOR */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}
.cursor-ring {
  position: fixed; width: 38px; height: 38px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%, -50%);
  opacity: 0.55;
}
.cursor.hovered { width: 6px; height: 6px; }
.cursor-ring.hovered { width: 58px; height: 58px; border-color: var(--burgundy); opacity: 0.25; }

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.12; }

.tag {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: inline-block;
  margin-bottom: 14px;
}
.tag::before { content: '— '; }

/* LAYOUT */
.container {
  width: min(100%, var(--container-w));
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 34px;
  font-family: var(--font-ui); font-size: 12.5px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  position: relative; overflow: hidden;
  transition: color .3s var(--ease-smooth);
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; transition: transform .3s var(--ease-expo); }
.btn:hover svg { transform: translateX(4px); }

.btn-gold {
  background: var(--gold); color: var(--charcoal);
}
.btn-gold::after {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-light);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-expo); z-index: 0;
}
.btn-gold:hover::after { transform: scaleX(1); }
.btn-gold span, .btn-gold svg { position: relative; z-index: 1; }

.btn-outline-cream {
  border: 1.5px solid rgba(250,245,238,.45); color: var(--cream);
  transition: border-color .3s, background .3s, color .3s;
}
.btn-outline-cream:hover { background: var(--cream); color: var(--burgundy); border-color: var(--cream); }

.btn-outline-dark {
  border: 1.5px solid var(--charcoal); color: var(--charcoal);
  transition: background .3s, color .3s;
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--cream); }

/* NAVIGATION */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.nav.scrolled {
  background: rgba(250,245,238,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  width: 100%;
}
.nav-logo { display: flex; align-items: center; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 700;
  color: var(--cream); letter-spacing: -0.01em;
  line-height: 1; transition: color .4s;
}
.logo-text em { color: var(--gold); font-style: italic; }
.nav.scrolled .logo-text { color: var(--charcoal); }

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-family: var(--font-ui); font-size: 12.5px;
  font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: rgba(250,245,238,.8);
  position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .35s var(--ease-expo);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--charcoal); }
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active { color: var(--burgundy); }
.nav.scrolled .nav-links a::after { background: var(--burgundy); }

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  font-family: var(--font-ui); font-size: 12.5px; font-weight: 700;
  color: rgba(250,245,238,.75); display: flex; align-items: center; gap: 6px;
  transition: color .4s;
}
.nav.scrolled .nav-phone { color: var(--burgundy); }
.nav-cta {
  background: var(--gold); color: var(--charcoal);
  padding: 9px 22px; font-family: var(--font-ui);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background .3s;
}
.nav-cta:hover { background: var(--gold-light); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--cream); transition: all .3s; }
.nav.scrolled .nav-hamburger span { background: var(--charcoal); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; inset: 0; background: var(--burgundy-dark);
  z-index: 999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  transform: translateX(100%);
  transition: transform .5s var(--ease-expo);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--cream); padding: 12px 0;
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute; top: 28px; right: 28px;
  color: var(--cream); font-size: 1.8rem; font-weight: 300; cursor: pointer;
}

/* PAGE HERO (non-homepage) */
.page-hero {
  background: var(--burgundy-dark);
  padding: calc(var(--nav-h) + 64px) 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,160,40,.07) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  color: var(--cream); margin-bottom: 20px;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  color: rgba(250,245,238,.6); font-size: 1.05rem;
  line-height: 1.8; max-width: 560px; font-weight: 300;
}
.page-hero-img {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: .18;
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s var(--ease-expo), transform .75s var(--ease-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }
.d6 { transition-delay: .6s; }

/* MARQUEE */
.marquee-wrap {
  background: var(--cream-dark);
  overflow: hidden; padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 20px;
  padding-right: 20px; white-space: nowrap;
  font-family: var(--font-ui); font-size: 11px;
  font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--charcoal-light);
}
.marquee-dot { color: var(--gold); font-size: 18px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTION HEADER */
.sec-num {
  display: block; font-family: var(--font-display);
  font-size: clamp(5rem, 9vw, 11rem); font-weight: 700; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(0,0,0,.055);
  margin-bottom: -18px; user-select: none;
}
.sec-num.light { -webkit-text-stroke: 1px rgba(255,255,255,.07); }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
  animation: waPulse 2.8s ease-in-out infinite;
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; color: white; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,.35); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,.6), 0 0 0 8px rgba(37,211,102,.08); }
}

/* FOOTER */
.footer {
  background: var(--charcoal); color: rgba(250,245,238,.55);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand .logo-text {
  color: rgba(250,245,238,.82); font-size: 1.7rem;
  display: block; margin-bottom: 18px;
}
.footer-tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: .9rem; color: rgba(250,245,238,.4);
  line-height: 1.65; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(250,245,238,.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,245,238,.45);
  transition: border-color .3s, color .3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 {
  font-family: var(--font-ui); font-size: 10.5px;
  font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .875rem; color: rgba(250,245,238,.45);
  transition: color .3s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-addr {
  font-size: .875rem; line-height: 1.85;
}
.footer-addr a { color: rgba(250,245,238,.45); transition: color .3s; }
.footer-addr a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(250,245,238,.06);
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: .78rem; color: rgba(250,245,238,.27); }

/* SERVICE CARDS */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.08);
}
.svc-card {
  background: var(--cream); padding: 46px 38px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: color .4s;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--burgundy);
  transform: translateY(101%);
  transition: transform .5s var(--ease-expo); z-index: 0;
}
.svc-card:hover::before { transform: translateY(0); }
.svc-card > * { position: relative; z-index: 1; }

.svc-card-num {
  font-family: var(--font-display); font-size: 3.5rem;
  font-weight: 700; line-height: 1;
  color: rgba(0,0,0,.05); margin-bottom: 20px;
  transition: color .4s;
}
.svc-card:hover .svc-card-num { color: rgba(255,255,255,.07); }

.svc-icon {
  width: 42px; height: 42px;
  color: var(--burgundy); margin-bottom: 18px;
  transition: color .4s;
}
.svc-card:hover .svc-icon { color: var(--gold); }

.svc-card h3 {
  font-size: 1.3rem; margin-bottom: 10px;
  transition: color .4s;
}
.svc-card:hover h3 { color: var(--cream); }

.svc-card p {
  font-size: .9rem; line-height: 1.72;
  color: var(--charcoal-light); flex: 1;
  margin-bottom: 22px; transition: color .4s;
}
.svc-card:hover p { color: rgba(250,245,238,.65); }

.svc-link {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: 11.5px;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--burgundy); transition: color .4s;
}
.svc-link svg { width: 13px; height: 13px; transition: transform .3s; }
.svc-card:hover .svc-link { color: var(--gold); }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--cream-dark); padding: 38px 34px;
  position: relative;
}
.testi-quote-mark {
  position: absolute; top: 18px; left: 28px;
  font-family: var(--font-display); font-size: 5.5rem;
  line-height: 1; color: var(--gold); opacity: .3;
  font-weight: 700; user-select: none;
}
.testi-stars { display: flex; gap: 3px; margin-top: 28px; }
.testi-stars span { color: var(--gold); font-size: 13px; }
.testi-text {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.02rem; line-height: 1.72;
  color: var(--charcoal); margin: 14px 0 26px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 34px; height: 34px; background: var(--burgundy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic;
  font-size: .82rem; color: var(--cream); flex-shrink: 0;
}
.testi-name {
  font-family: var(--font-ui); font-size: 11.5px;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.testi-via { font-size: 11px; color: var(--charcoal-light); opacity: .55; }

/* FAQ */
.faq-item { border-bottom: 1px solid rgba(0,0,0,.08); }
.faq-btn {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; padding: 22px 0;
  font-family: var(--font-display); font-size: 1.05rem;
  color: var(--charcoal); text-align: left; gap: 16px;
  transition: color .3s;
}
.faq-btn:hover { color: var(--burgundy); }
.faq-icon {
  width: 26px; height: 26px; flex-shrink: 0;
  border: 1.5px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; transition: all .3s;
}
.faq-item.open .faq-icon {
  background: var(--burgundy); border-color: var(--burgundy);
  color: var(--cream); transform: rotate(45deg);
}
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-expo); }
.faq-body-inner {
  padding-bottom: 22px; color: var(--charcoal-light);
  line-height: 1.78; font-size: .95rem;
}

/* CTA SECTION */
.cta-section {
  background: var(--burgundy); padding: 100px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,160,40,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(2.2rem, 3.5vw, 4rem); color: var(--cream);
  margin-bottom: 18px; position: relative;
}
.cta-section h2 em { color: var(--gold); font-style: italic; }
.cta-section p {
  color: rgba(250,245,238,.6); font-size: 1.05rem;
  max-width: 540px; margin: 0 auto 48px; line-height: 1.75;
}
.cta-btns {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 14px;
}
.btn-wa {
  background: #25D366; color: white;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; font-family: var(--font-ui);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  transition: background .3s;
}
.btn-wa:hover { background: #1da851; }
.btn-call {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px;
  border: 1.5px solid rgba(250,245,238,.3); color: var(--cream);
  font-family: var(--font-ui); font-size: 12.5px;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  transition: border-color .3s, color .3s;
}
.btn-call:hover { border-color: var(--gold); color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-phone { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .svc-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
  .page-hero { padding: calc(var(--nav-h) + 40px) 0 56px; }
  .page-hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
}
