/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #F5F2E9;
  color: #2D2926;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TOKENS ── */
:root {
  --cream:       #F5F2E9;
  --cream-2:     #E8E4D8;
  --dark:        #2D2926;
  --mid:         #5E5954;
  --muted:       #8C8782;
  --border:      #DCD8CB;
  --gold:        #7D6B3D;
  --gold-bright: #C4932A;
  --hero-dark:   #1A0F02;
  --shadow-card: 0 2px 8px rgba(45,41,38,.07), 0 12px 32px rgba(45,41,38,.06);
}

/* ── UTILITY ── */
.eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  border: none;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }

.btn--gold {
  background: var(--gold);
  color: var(--cream);
  padding: 14px 32px;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(125,107,61,.35);
}

.btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--cream);
  padding: 14px 32px;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,.2);
}

.btn--outline-light {
  background: rgba(255,255,255,.05);
  color: rgba(232,228,216,.75);
  padding: 14px 28px;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,.12);
}

.btn--lg { padding: 16px 40px; font-size: 16px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(45,41,38,.08);
}

.navbar__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar__logo-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.navbar__logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.navbar__brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.navbar__sub {
  font-size: 10px;
  color: var(--muted);
  padding-top: 4px;
  /* line-height: 1; */
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.navbar__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  transition: color .2s;
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--gold); }

.navbar__cta { flex-shrink: 0; }
.navbar__cta.btn--gold { padding: 11px 24px; font-size: 14px; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--hero-dark) url('./images/hero-bg.jpeg') center/cover no-repeat;
  background-color: var(--hero-dark);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,7,0,.75) 0%, rgba(26,15,2,.65) 50%, rgba(13,7,0,.80) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px;
  max-width: 900px;
}

.hero__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-bright);
  background: rgba(125,107,61,.2);
  border: 1px solid rgba(125,107,61,.4);
  border-radius: 9999px;
  padding: 6px 18px;
  margin-bottom: 28px;
  letter-spacing: .5px;
}

.hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__subtext {
  font-size: 18px;
  font-weight: 400;
  color: rgba(232,228,216,.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 40px;
  width: 100%;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero__stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--gold-bright);
}
.hero__stat-label {
  font-size: 13px;
  color: rgba(232,228,216,.6);
}

/* ── SAVOURIES ── */
.savouries {
  background: var(--cream);
  padding: 80px;
}

.savouries__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.savouries__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.savouries__subtitle {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.6;
}

.savouries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.sav-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
}
.sav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45,41,38,.1), 0 20px 48px rgba(45,41,38,.08);
}

.sav-card__img {
  height: 200px;
  background-size: cover;
  background-position: center 15%;
  background-repeat: no-repeat;
  transition: transform .4s;
}
.sav-card:hover .sav-card__img { transform: scale(1.04); }

/* Gradient fallbacks — replace with real images via inline style="background-image:url(...)" */
.sav-card:nth-child(1)  .sav-card__img { background-image: linear-gradient(135deg, #8B5E2A 0%, #C4832A 50%, #5C3A10 100%); }
.sav-card:nth-child(2)  .sav-card__img { background-image: linear-gradient(135deg, #6B3A1F 0%, #9B5C2A 50%, #3D1F0A 100%); }
.sav-card:nth-child(3)  .sav-card__img { background-image: linear-gradient(135deg, #A87C3A 0%, #D4A854 50%, #7A5820 100%); }
.sav-card:nth-child(4)  .sav-card__img { background-image: linear-gradient(135deg, #8B2A1A 0%, #C45030 50%, #5C1A08 100%); }
.sav-card:nth-child(5)  .sav-card__img { background-image: linear-gradient(135deg, #7A6040 0%, #B89060 50%, #4A3820 100%); }
.sav-card:nth-child(6)  .sav-card__img { background-image: linear-gradient(135deg, #9A8050 0%, #C8A870 50%, #6A5830 100%); }
.sav-card:nth-child(7)  .sav-card__img { background-image: linear-gradient(135deg, #6A5840 0%, #9A8460 50%, #3A2C18 100%); }
.sav-card:nth-child(8)  .sav-card__img { background-image: linear-gradient(135deg, #B07030 0%, #D89850 50%, #7A4C10 100%); }
.sav-card:nth-child(9)  .sav-card__img { background-image: linear-gradient(135deg, #5A3820 0%, #8A6040 50%, #301808 100%); }
.sav-card:nth-child(10) .sav-card__img { background-image: linear-gradient(135deg, #C89020 0%, #E8B840 50%, #906800 100%); }
.sav-card:nth-child(11) .sav-card__img { background-image: linear-gradient(135deg, #9A6020 0%, #C88840 50%, #6A3C00 100%); }
.sav-card:nth-child(12) .sav-card__img { background-image: linear-gradient(135deg, #7A4040 0%, #B07060 50%, #4A1C18 100%); }

.sav-card__body {
  padding: 16px 18px 20px;
}
.sav-card__num {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.sav-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.sav-card__tag {
  font-size: 12px;
  color: var(--muted);
}

/* ── SPONSORSHIP ── */
.sponsor {
  position: relative;
  background: #110900;
  padding: 120px 80px;
  text-align: center;
  overflow: hidden;
}

.sponsor__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.sponsor__glow--left {
  width: 500px; height: 500px;
  background: rgba(125,107,61,.18);
  top: -80px; left: -120px;
}
.sponsor__glow--right {
  width: 420px; height: 420px;
  background: rgba(196,147,42,.12);
  bottom: -60px; right: -80px;
}

.sponsor__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.sponsor__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-bright);
  background: rgba(125,107,61,.2);
  border: 1px solid rgba(125,107,61,.4);
  border-radius: 9999px;
  padding: 6px 18px;
  letter-spacing: .5px;
  margin-bottom: 28px;
}

.sponsor__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}

.sponsor__body {
  font-size: 17px;
  color: rgba(232,228,216,.6);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 48px;
}

.sponsor__perks {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 52px;
}
.sponsor__perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(232,228,216,.6);
}
.sponsor__perk-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  flex-shrink: 0;
}

.sponsor__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.sponsor__email-btn {
  box-shadow: 0 8px 32px rgba(125,107,61,.4), 0 2px 8px rgba(196,147,42,.15);
}
.sponsor__divider {
  font-size: 14px;
  color: rgba(232,228,216,.3);
}

/* ── FOOTER ── */
.footer {
  background: var(--hero-dark);
}

.footer__main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 80px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__logo-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
}

.footer__brand-desc {
  font-size: 14px;
  color: rgba(232,228,216,.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer__social-link {
  font-size: 12px;
  font-weight: 500;
  color: rgba(232,228,216,.6);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  padding: 6px 12px;
  transition: background .2s;
}
.footer__social-link:hover { background: rgba(255,255,255,.1); }

.footer__col-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .5px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col li {
  font-size: 13px;
  color: rgba(232,228,216,.47);
}
.footer__col a {
  color: rgba(232,228,216,.47);
  transition: color .2s;
}
.footer__col a:hover { color: rgba(232,228,216,.8); }

.footer__bottom {
  background: #0D0802;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(232,228,216,.35);
}
.footer__legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__legal-links a {
  color: rgba(232,228,216,.35);
  transition: color .2s;
}
.footer__legal-links a:hover { color: rgba(232,228,216,.65); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .navbar__inner { padding: 0 40px; }
  .savouries { padding: 64px 40px; }
  .savouries__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__main { padding: 56px 40px; grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__bottom { padding: 18px 40px; }
  .sponsor { padding: 100px 40px; }
}

@media (max-width: 768px) {
  .navbar__inner { padding: 0 24px; }
  .navbar__links { display: none; flex-direction: column; gap: 0; }
  .navbar__links.open {
    display: flex;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 8px 0 16px;
    z-index: 99;
  }
  .navbar__links.open li a {
    display: block;
    padding: 12px 24px;
    font-size: 16px;
  }
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  .hero__content { padding: 40px 24px; }
  .hero__subtext { font-size: 16px; }
  .hero__subtext br { display: none; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__stats { gap: 32px; }

  .savouries { padding: 56px 24px; }
  .savouries__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .sponsor { padding: 80px 24px; }
  .sponsor__perks { gap: 20px; }
  .sponsor__ctas { flex-direction: column; }

  .footer__main { padding: 48px 24px; grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { padding: 16px 24px; flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .savouries__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .sav-card__img { height: 140px; }
  .hero__headline br { display: none; }
  .sponsor__headline br { display: none; }
  .footer__main { grid-template-columns: 1fr; }
}
