/* ==========================================================================
   Hidaya's Kitchen — warm, elegant food-creator design
   Cream canvas · deep coffee text · berbere red & honey gold accents
   ========================================================================== */

:root {
  --cream: #FAF5EE;
  --cream-deep: #F3EADF;
  --ink: #2B1A12;
  --ink-soft: #5C4636;
  --berbere: #B3361B;
  --berbere-dark: #8F2A14;
  --gold: #C98A2D;
  --gold-soft: #E9C685;
  --green: #4D7C0F;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(43, 26, 18, 0.08);
  --shadow-md: 0 8px 30px rgba(43, 26, 18, 0.12);
  --shadow-lg: 0 20px 60px rgba(43, 26, 18, 0.18);
  --radius: 18px;
  --radius-sm: 10px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.icon { width: 18px; height: 18px; flex-shrink: 0; }
.icon--gold { color: var(--gold); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  min-height: 44px; white-space: nowrap;
}
.btn--primary { background: var(--berbere); color: var(--white); }
.btn--primary:hover { background: var(--berbere-dark); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: #B57A22; color: var(--white); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--ink); border-color: rgba(43, 26, 18, 0.25); }
.btn--outline:hover { border-color: var(--berbere); color: var(--berbere); }
.btn--ghost { background: rgba(43, 26, 18, 0.06); color: var(--ink); }
.btn--ghost:hover { background: rgba(43, 26, 18, 0.12); }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 16px 36px; font-size: 16px; }

.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ==========================================================================
   Top bar
   ========================================================================== */
.topbar {
  background: var(--ink); color: rgba(255, 255, 255, 0.85);
  font-size: 13px; padding: 8px 0;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar__group { display: inline-flex; align-items: center; gap: 22px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item .icon, .topbar__item svg { width: 15px; height: 15px; }
.topbar a { color: var(--gold-soft); text-decoration: none; }
.topbar a:hover { text-decoration: underline; }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 245, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(43, 26, 18, 0.08);
  transition: box-shadow 0.2s;
}
.navbar.is-scrolled { box-shadow: var(--shadow-sm); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand__mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--berbere); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__text { font-family: var(--font-head); font-size: 22px; font-weight: 700; letter-spacing: 0.2px; white-space: nowrap; }
.brand__text em { color: var(--berbere); font-style: italic; }
.brand--light { color: var(--cream); }
.brand--light .brand__text em { color: var(--gold-soft); }

.nav { display: flex; gap: 4px; }
.nav__link {
  text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: 15px;
  padding: 10px 14px; border-radius: 999px; transition: color 0.2s, background-color 0.2s;
}
.nav__link:hover { color: var(--berbere); background: rgba(179, 54, 27, 0.07); }
.nav__link.is-active { color: var(--berbere); }

.navbar__actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; color: var(--ink);
  width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: var(--radius-sm);
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle:hover { background: rgba(43, 26, 18, 0.06); }

/* ==========================================================================
   Eyebrow & section heads
   ========================================================================== */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--berbere); margin-bottom: 18px;
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--gold-soft); }
.eyebrow__line { display: inline-block; width: 40px; height: 2px; background: currentColor; opacity: 0.5; }

.section { padding: 96px 0; }
.section--tint { background: var(--cream-deep); }
.section--dark { background: var(--ink); color: rgba(255, 255, 255, 0.82); }

.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section__title {
  font-family: var(--font-head); font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 600; line-height: 1.18; color: var(--ink); margin-bottom: 16px;
}
.section__title em { color: var(--berbere); font-style: italic; }
.section__title--light { color: var(--white); }
.section__title--light em { color: var(--gold-soft); }
.section__sub { font-size: 17px; color: var(--ink-soft); }
.section__sub--light { color: rgba(255, 255, 255, 0.72); }
.section__foot { text-align: center; margin-top: 48px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(201, 138, 45, 0.12), transparent 60%),
    radial-gradient(700px 400px at 5% 90%, rgba(179, 54, 27, 0.08), transparent 60%),
    var(--cream);
  padding: 80px 0 96px;
  overflow: hidden;
}
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }

.hero__title {
  font-family: var(--font-head); font-size: clamp(36px, 5.2vw, 58px);
  font-weight: 600; line-height: 1.12; margin-bottom: 22px;
}
.hero__title em { color: var(--berbere); font-style: italic; }
.hero__sub { font-size: 18px; color: var(--ink-soft); max-width: 540px; margin-bottom: 32px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero__social-proof { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--ink-soft); }
.avatars { display: flex; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%; border: 3px solid var(--cream);
  margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }
.avatar--1 { background: linear-gradient(135deg, #E2725B, #B3361B); }
.avatar--2 { background: linear-gradient(135deg, #E9C685, #C98A2D); }
.avatar--3 { background: linear-gradient(135deg, #A3B18A, #4D7C0F); }
.avatar--4 { background: linear-gradient(135deg, #8D6E63, #4E342E); }

.hero__platforms { display: flex; align-items: center; gap: 10px; margin-top: 22px; }
.hero__platforms a {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm);
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.hero__platforms a:hover { background: var(--berbere); color: var(--white); box-shadow: var(--shadow-md); }
.hero__platforms svg { width: 18px; height: 18px; }
.hero__platforms-note { font-size: 13px; font-weight: 700; letter-spacing: 0.5px; color: var(--ink-soft); margin-left: 6px; }

.hero__media { position: relative; }
.hero__img-frame { position: relative; }

.img-holder {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: linear-gradient(145deg, #E8C9A0 0%, #C98A2D 55%, #B3361B 100%);
}
.img-holder img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.img-holder--hero { aspect-ratio: 4 / 4.6; box-shadow: var(--shadow-lg); border-radius: 200px 200px var(--radius) var(--radius); }
.img-holder--about { aspect-ratio: 4 / 4.4; box-shadow: var(--shadow-md); }
.img-holder--catering { aspect-ratio: 16 / 11; box-shadow: var(--shadow-md); }

.hero__badge {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); padding: 14px 18px; font-size: 13px;
}
.hero__badge strong { display: block; font-size: 15px; color: var(--ink); }
.hero__badge span { color: var(--ink-soft); }
.hero__badge .icon { width: 26px; height: 26px; color: var(--berbere); }
.hero__badge--views { bottom: 36px; left: -28px; }
.hero__badge--rating { top: 48px; right: -20px; }

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats { background: var(--berbere); color: var(--white); padding: 40px 0; }
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__num { display: block; font-family: var(--font-head); font-size: clamp(30px, 4vw, 44px); font-weight: 700; }
.stat__label { font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.85; }

/* ==========================================================================
   About
   ========================================================================== */
.about__inner { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 72px; align-items: center; }
.about__media { position: relative; }
.about__card {
  position: absolute; bottom: -28px; right: -20px; max-width: 320px;
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); padding: 22px 24px;
  border-left: 4px solid var(--gold);
}
.about__quote { font-family: var(--font-head); font-style: italic; font-size: 17px; line-height: 1.5; }
.about__quote-by { margin-top: 8px; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--berbere); }
.about__content p { color: var(--ink-soft); margin-bottom: 18px; max-width: 56ch; }
.about__points { list-style: none; margin: 8px 0 30px; }
.about__points li { display: flex; align-items: center; gap: 12px; padding: 7px 0; font-weight: 600; }
.about__points .icon { color: var(--green); width: 20px; height: 20px; }

/* ==========================================================================
   Recipes
   ========================================================================== */
.filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.filter {
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  padding: 10px 22px; min-height: 44px; border-radius: 999px;
  border: 1.5px solid rgba(43, 26, 18, 0.18); background: transparent; color: var(--ink-soft);
  cursor: pointer; transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.filter:hover { border-color: var(--berbere); color: var(--berbere); }
.filter.is-active { background: var(--berbere); border-color: var(--berbere); color: var(--white); }

.recipe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.recipe-card {
  display: block; text-decoration: none; color: var(--ink);
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: box-shadow 0.25s, translate 0.25s;
}
.recipe-card:hover { box-shadow: var(--shadow-md); translate: 0 -4px; }
.recipe-card.is-hidden { display: none; }
.recipe-card__media { aspect-ratio: 4 / 3; border-radius: 0; }
.recipe-card__views {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(43, 26, 18, 0.78); color: var(--white);
  font-size: 13px; font-weight: 700; padding: 6px 12px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.recipe-card__views .icon { width: 13px; height: 13px; }
.recipe-card__pin {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--gold); color: var(--ink);
  font-size: 12px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.recipe-card__body { padding: 20px 22px 24px; }
.recipe-card__body h3 { font-family: var(--font-head); font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.recipe-card__body p { font-size: 14.5px; color: var(--ink-soft); }
.recipe-card:hover h3 { color: var(--berbere); }

/* ==========================================================================
   Social hub
   ========================================================================== */
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 72px; }
.social-card {
  display: flex; flex-direction: column; align-items: flex-start;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(43, 26, 18, 0.08);
  padding: 30px 26px; text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: box-shadow 0.25s, translate 0.25s, border-color 0.25s;
}
.social-card:hover { box-shadow: var(--shadow-md); translate: 0 -4px; }
.social-card__icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--white);
}
.social-card__icon svg { width: 26px; height: 26px; }
.social-card--tiktok .social-card__icon { background: #161823; }
.social-card--youtube .social-card__icon { background: #FF0000; }
.social-card--instagram .social-card__icon { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
.social-card--facebook .social-card__icon { background: #1877F2; }
.social-card:hover { border-color: rgba(43, 26, 18, 0.18); }
.social-card h3 { font-family: var(--font-head); font-size: 21px; font-weight: 600; }
.social-card__handle { font-size: 14px; font-weight: 700; color: var(--berbere); margin: 2px 0 10px; }
.social-card__stat { font-size: 14px; color: var(--ink-soft); margin-bottom: 18px; }
.social-card__cta {
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 800; color: var(--ink);
  transition: color 0.2s, gap 0.2s;
}
.social-card:hover .social-card__cta { color: var(--berbere); gap: 12px; }
.social-card__cta .icon { width: 16px; height: 16px; }

.featured-video {
  display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: center;
  background: var(--white); border-radius: var(--radius); padding: 48px 56px;
  box-shadow: var(--shadow-sm);
}
.featured-video__text h3 { font-family: var(--font-head); font-size: 30px; font-weight: 600; margin-bottom: 12px; }
.featured-video__text p { color: var(--ink-soft); margin-bottom: 24px; max-width: 44ch; }
.featured-video__embed {
  border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-md);
  background: var(--ink); min-height: 580px;
}
.featured-video__embed iframe { width: 100%; height: 580px; border: 0; display: block; }

/* ==========================================================================
   Partnerships (dark)
   ========================================================================== */
.partner-brands {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  flex-wrap: wrap; margin-bottom: 40px;
}
.partner-brands__label {
  font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.partner-brands__list { display: flex; gap: 12px; flex-wrap: wrap; }
.partner-brands__list a {
  font-family: var(--font-head); font-size: 19px; font-weight: 600; font-style: italic;
  color: var(--gold-soft); text-decoration: none;
  padding: 6px 16px; border: 1px solid rgba(233, 198, 133, 0.35); border-radius: 999px;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.partner-brands__list a:hover { background: var(--gold-soft); color: var(--ink); border-color: var(--gold-soft); }

.partner-card__examples { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.partner-card__examples a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.3px;
  color: var(--gold-soft); text-decoration: none;
  padding: 6px 13px; border: 1px solid rgba(233, 198, 133, 0.35); border-radius: 999px;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.partner-card__examples a:hover { background: var(--gold-soft); color: var(--ink); border-color: var(--gold-soft); }
.partner-card__examples .icon { width: 11px; height: 11px; }

.partner-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 56px;
}
.partner-stat {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm); padding: 24px; text-align: center;
}
.partner-stat strong { display: block; font-family: var(--font-head); font-size: 34px; color: var(--gold-soft); }
.partner-stat span { font-size: 13.5px; letter-spacing: 0.5px; opacity: 0.8; }

.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }
.partner-card {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius); padding: 30px 28px;
  transition: background-color 0.25s, border-color 0.25s;
}
.partner-card:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(233, 198, 133, 0.4); }
.partner-card__icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(233, 198, 133, 0.14); color: var(--gold-soft);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.partner-card__icon svg { width: 24px; height: 24px; }
.partner-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.partner-card p { font-size: 14.5px; line-height: 1.6; opacity: 0.78; }

.partner-types { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 56px; }
.partner-type {
  border: 1px dashed rgba(233, 198, 133, 0.45); border-radius: var(--radius);
  padding: 30px 32px;
}
.partner-type h4 {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-size: 21px; font-weight: 600; color: var(--gold-soft); margin-bottom: 12px;
}
.partner-type .icon { width: 22px; height: 22px; }
.partner-type p { font-size: 15px; opacity: 0.8; }

.partner-cta { text-align: center; }
.partner-cta p { font-family: var(--font-head); font-size: 24px; font-style: italic; color: var(--white); margin-bottom: 20px; }

/* ==========================================================================
   Catering
   ========================================================================== */
.catering__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 72px; }
.catering__media { position: relative; }
.catering__badge {
  position: absolute; bottom: -20px; left: 24px; right: 24px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--white); border-radius: 999px; box-shadow: var(--shadow-md);
  padding: 13px 20px; font-size: 14px; font-weight: 700;
}
.catering__badge .icon { color: var(--berbere); width: 18px; height: 18px; }
.catering__content h3 { font-family: var(--font-head); font-size: 23px; font-weight: 600; margin-bottom: 14px; }
.catering__events { list-style: none; margin-bottom: 30px; }
.catering__events li { display: flex; align-items: center; gap: 12px; padding: 6px 0; font-weight: 600; }
.catering__events .icon { color: var(--green); width: 19px; height: 19px; }
.menu-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 18px; }
.menu-tags span {
  background: var(--white); border: 1px solid rgba(43, 26, 18, 0.12);
  font-size: 13.5px; font-weight: 700; color: var(--ink-soft);
  padding: 7px 15px; border-radius: 999px;
}
.catering__note { font-size: 14.5px; color: var(--ink-soft); font-style: italic; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 72px; }
.step {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-sm); text-align: center;
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--berbere); color: var(--white);
  font-family: var(--font-head); font-size: 21px; font-weight: 700; margin-bottom: 16px;
}
.step h4 { font-family: var(--font-head); font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-soft); }

.catering-form {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 48px; max-width: 880px; margin: 0 auto;
}
.catering-form__title { font-family: var(--font-head); font-size: 27px; font-weight: 600; text-align: center; margin-bottom: 32px; }
.catering-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; margin-bottom: 28px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 800; letter-spacing: 0.4px; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  background: var(--cream); border: 1.5px solid rgba(43, 26, 18, 0.14);
  border-radius: var(--radius-sm); padding: 13px 16px;
  transition: border-color 0.2s; min-height: 48px;
}
.field textarea { min-height: auto; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(43, 26, 18, 0.3); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--berbere); outline: none; }
.catering-form button[type="submit"] { width: 100%; }
.catering-form__hint { text-align: center; font-size: 13.5px; color: var(--ink-soft); margin-top: 14px; }

/* ==========================================================================
   Contact / newsletter
   ========================================================================== */
.contact__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: center; }
.contact__text p { color: var(--ink-soft); max-width: 50ch; }
.link { color: var(--berbere); font-weight: 700; text-decoration: none; }
.link:hover { text-decoration: underline; }
.contact__address {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft);
}
.contact__address .icon { color: var(--berbere); width: 17px; height: 17px; }
.contact__socials { display: flex; gap: 12px; margin-top: 26px; }
.contact__socials a {
  width: 48px; height: 48px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm);
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.contact__socials a:hover { background: var(--berbere); color: var(--white); box-shadow: var(--shadow-md); }
.contact__socials svg { width: 21px; height: 21px; }

.newsletter {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 40px 38px;
}
.newsletter h3 { font-family: var(--font-head); font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.newsletter > p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 22px; }
.newsletter__row { display: flex; gap: 10px; }
.newsletter__row input {
  flex: 1; min-width: 0; font-family: var(--font-body); font-size: 15.5px;
  background: var(--cream); border: 1.5px solid rgba(43, 26, 18, 0.14);
  border-radius: 999px; padding: 13px 20px; min-height: 48px;
  transition: border-color 0.2s;
}
.newsletter__row input:focus { border-color: var(--berbere); outline: none; }
.newsletter__success { margin-top: 14px; font-weight: 700; color: var(--green); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--ink); color: rgba(255, 255, 255, 0.72); padding: 72px 0 0; }
.footer__inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__brand p { font-size: 14.5px; margin-top: 18px; max-width: 36ch; }
.footer__address { line-height: 1.8; }
.footer__address a { color: var(--gold-soft); text-decoration: none; }
.footer__address a:hover { text-decoration: underline; }
.footer__col h4 {
  font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 16px;
}
.footer__col a {
  display: block; color: rgba(255, 255, 255, 0.72); text-decoration: none;
  font-size: 15px; padding: 5px 0; transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding: 22px 24px; font-size: 13.5px; opacity: 0.65;
}

/* ==========================================================================
   Reveal animations
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal--delay { transition-delay: 0.15s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex; flex-direction: column; position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid rgba(43, 26, 18, 0.1);
    padding: 16px 24px 24px; box-shadow: var(--shadow-md); gap: 2px;
  }
  .nav.is-open .nav__link { padding: 13px 14px; }
  .nav-toggle { display: inline-flex; }
  .navbar__actions .btn--outline { display: none; }

  .hero__inner, .about__inner, .catering__grid, .contact__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__media { max-width: 480px; margin: 0 auto; }
  .recipe-grid, .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-video { grid-template-columns: 1fr; padding: 40px 32px; }
  .featured-video__embed { max-width: 380px; margin: 0 auto; width: 100%; }
  .partner-types { grid-template-columns: 1fr; }
  .partner-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 72px; }
  .topbar__note, .topbar__address { display: none; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .recipe-grid, .social-grid, .partner-grid, .steps { grid-template-columns: 1fr; }
  .hero__badge--views { left: 8px; bottom: 16px; }
  .hero__badge--rating { right: 8px; top: 16px; }
  .about__card { position: static; max-width: none; margin-top: 20px; }
  .catering-form { padding: 32px 22px; }
  .catering-form__grid { grid-template-columns: 1fr; }
  .newsletter__row { flex-direction: column; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .navbar__actions .btn--primary { display: none; }
}

/* ==========================================================================
   Theme toggle + scroll progress + back to top
   ========================================================================== */
:root { --card: #FFFFFF; }

.theme-toggle {
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: transparent; color: var(--ink); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color 0.2s;
}
.theme-toggle:hover { background: rgba(43, 26, 18, 0.06); }
.theme-toggle svg { width: 22px; height: 22px; }
.theme-toggle__sun { display: none; }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--berbere); z-index: 100; transition: width 0.1s linear;
}

.to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: var(--berbere); color: var(--white); cursor: pointer;
  box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, background-color 0.2s;
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--berbere-dark); }
.to-top svg { width: 22px; height: 22px; }

/* ==========================================================================
   Video switcher
   ========================================================================== */
.video-switcher { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; }
.video-chip {
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  padding: 8px 16px; min-height: 40px; border-radius: 999px;
  border: 1.5px solid rgba(43, 26, 18, 0.18); background: transparent; color: var(--ink-soft);
  cursor: pointer; transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.video-chip:hover { border-color: var(--berbere); color: var(--berbere); }
.video-chip.is-active { background: var(--berbere); border-color: var(--berbere); color: var(--white); }

/* ==========================================================================
   Recipe lightbox modal
   ========================================================================== */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.modal[hidden] { display: none; }
.modal__overlay {
  position: absolute; inset: 0; background: rgba(20, 12, 8, 0.62);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.modal__dialog {
  position: relative; z-index: 1; width: 100%; max-width: 380px; max-height: 92vh;
  overflow: auto; background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); animation: modalIn 0.25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255, 255, 255, 0.92); color: var(--ink);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
}
.modal__close svg { width: 20px; height: 20px; }
.modal__media { border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; background: #000; }
.modal__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.modal__video { width: 100%; height: 540px; border: 0; display: block; }
.modal__body { padding: 24px 26px 28px; }
.modal__body h3 { font-family: var(--font-head); font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.modal__body p { color: var(--ink-soft); margin-bottom: 22px; }
body.modal-open { overflow: hidden; }

.catering-form__success { margin-top: 14px; text-align: center; font-weight: 700; color: var(--green); }

/* ==========================================================================
   Dark mode
   ========================================================================== */
[data-theme="dark"] {
  --cream: #16110D;
  --cream-deep: #1E1812;
  --card: #251D16;
  --ink: #F2E8DC;
  --ink-soft: #BEAD9B;
  --gold: #D89A3A;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
}
[data-theme="dark"] .theme-toggle__sun { display: block; }
[data-theme="dark"] .theme-toggle__moon { display: none; }
[data-theme="dark"] .theme-toggle:hover { background: rgba(255, 255, 255, 0.08); }

/* always-dark surfaces used var(--ink) as background — pin them dark */
[data-theme="dark"] .topbar,
[data-theme="dark"] .footer,
[data-theme="dark"] .section--dark { background: #0F0B08; }
[data-theme="dark"] .navbar { background: rgba(22, 17, 13, 0.9); border-bottom-color: rgba(255, 255, 255, 0.08); }
[data-theme="dark"] .nav.is-open { border-bottom-color: rgba(255, 255, 255, 0.1); }

/* card surfaces that used var(--white) */
[data-theme="dark"] .recipe-card,
[data-theme="dark"] .social-card,
[data-theme="dark"] .newsletter,
[data-theme="dark"] .catering-form,
[data-theme="dark"] .step,
[data-theme="dark"] .featured-video,
[data-theme="dark"] .about__card,
[data-theme="dark"] .hero__badge,
[data-theme="dark"] .menu-tags span,
[data-theme="dark"] .catering__badge,
[data-theme="dark"] .contact__socials a,
[data-theme="dark"] .hero__platforms a { background: var(--card); }
[data-theme="dark"] .featured-video__embed { background: #000; }

/* borders / faint fills that disappear on dark */
[data-theme="dark"] .social-card,
[data-theme="dark"] .menu-tags span { border-color: rgba(255, 255, 255, 0.12); }
[data-theme="dark"] .filter,
[data-theme="dark"] .video-chip,
[data-theme="dark"] .btn--outline { border-color: rgba(255, 255, 255, 0.22); }
[data-theme="dark"] .field input,
[data-theme="dark"] .field select,
[data-theme="dark"] .field textarea,
[data-theme="dark"] .newsletter__row input { border-color: rgba(255, 255, 255, 0.16); }
[data-theme="dark"] .btn--ghost { background: rgba(255, 255, 255, 0.08); }
[data-theme="dark"] .modal__close { background: rgba(37, 29, 22, 0.92); }
