/* ============ Tokens (matches UKcal app theme) ============ */
:root {
  --primary: #7BA21B;
  --primary-dark: #628017;
  --primary-tint: #EDF5DE;
  --dark: #1F2937;
  --dark-secondary: #4a4a4a;
  --gray: #6B7280;
  --gray-light: #d9d9d9;
  --border: #E5E7EB;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.10);
  --shadow-primary: 0 4px 14px rgba(123, 162, 27, 0.35);

  --max-width: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark-secondary);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 760px; }

h1, h2, h3 { color: var(--dark); font-weight: 700; line-height: 1.2; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--primary-tint);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 14px 26px;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover { background: var(--primary-dark); }

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-dark); }

.btn-on-dark {
  background: #fff;
  color: var(--primary-dark);
}
.btn-on-dark:hover { background: var(--primary-tint); }

.btn-small { padding: 10px 18px; font-size: 14px; border-radius: var(--radius-sm); }
.btn-large { padding: 16px 32px; font-size: 16px; }

/* ============ Header / Nav ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark { border-radius: 8px; }
.brand-word { height: 28px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--dark-secondary);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--primary-dark); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--dark);
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ============ Hero ============ */
.hero {
  padding: 72px 0 40px;
  background: linear-gradient(180deg, var(--primary-tint) 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.hero h1 {
  font-size: clamp(32px, 4.2vw, 52px);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--gray);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }

.hero-note { font-size: 14px; color: var(--gray); }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(123, 162, 27, 0.25) 0%, rgba(123, 162, 27, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-phone {
  position: relative;
  z-index: 1;
  width: 280px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
}

/* ============ Hero badges ============ */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.badge-free {
  background: var(--primary-tint);
  color: var(--primary-dark);
  border: 1px solid rgba(123, 162, 27, 0.35);
}

.badge-limited {
  background: #FDE8E8;
  color: #C0263A;
  border: 1px solid rgba(192, 38, 58, 0.25);
}

.badge-on-dark {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

/* ============ Benefit strip ============ */
.benefit-strip {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.benefit-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: var(--primary-tint);
  border-radius: 50%;
}

.benefit-item p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.4;
}

/* ============ Sections ============ */
.section { padding: 88px 0; }
.section-tinted { background: var(--primary-tint); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 12px; }
.section-sub { color: var(--gray); font-size: 17px; }

/* ============ How it works ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.step-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-sm);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-primary);
}

.step-img {
  width: 160px;
  margin: 8px auto 20px;
}

.step-card h3 { font-size: 20px; margin-bottom: 14px; }

.step-list { display: flex; flex-direction: column; gap: 10px; }
.step-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  color: var(--gray);
}
.step-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* ============ What's included / participation split ============ */
.split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.split-panel {
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
}

.split-panel-pink { background: #FDF1F1; }
.split-panel-blue { background: #EEF2FB; }

.split-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.split-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.split-head h2 { font-size: 20px; }

.checklist { display: flex; flex-direction: column; gap: 14px; }
.checklist li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: var(--dark-secondary);
  line-height: 1.5;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #C0263A;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.numbered-list { display: flex; flex-direction: column; gap: 16px; }
.numbered-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--dark-secondary);
  line-height: 1.5;
}
.numbered-badge {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2F4EA8;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ Eligibility ============ */
.location-banner {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.dish-grid-label {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.dish-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 14px;
}

.dish-icon {
  display: block;
  font-size: 32px;
  margin-bottom: 12px;
}

.dish-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.dish-sub { font-size: 12.5px; color: var(--gray); margin-top: 4px; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-panel {
  background: var(--primary-tint);
  border-radius: var(--radius-md);
  padding: 28px 26px;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.info-panel h3 { font-size: 17px; margin-bottom: 8px; }
.info-panel p { font-size: 14.5px; color: var(--gray); line-height: 1.6; }

/* ============ Features ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: var(--primary-tint);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; color: var(--gray); }

/* ============ Contact ============ */
.inline-link {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.form-row { display: flex; flex-direction: column; gap: 8px; }

.form-row label {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.form-row input,
.form-row textarea {
  font: inherit;
  font-size: 15px;
  color: var(--dark);
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123, 162, 27, 0.15);
}

.contact-submit { align-self: flex-start; }

.contact-note { font-size: 13px; color: var(--gray); }

/* ============ CTA band ============ */
.cta-band {
  background: var(--primary);
  padding: 72px 0;
}
.cta-inner { text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3vw, 34px); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 17px; margin-bottom: 32px; }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--dark);
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--primary);
  font-weight: 400;
  margin-left: 16px;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: 12px; color: var(--gray); font-size: 15px; }

/* ============ Footer ============ */
.site-footer { background: var(--dark); color: #cbd2d9; padding: 56px 0 24px; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; max-width: 320px; }
.footer-word { height: 26px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 14px; color: #9aa4af; }
.footer-email { font-size: 14px; color: #a8d24a; font-weight: 700; }
.footer-email:hover { color: #fff; }

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: #cbd2d9; }
.footer-links a:hover { color: #fff; }

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-top: 20px;
}
.footer-meta p { font-size: 13px; color: #9aa4af; }

.footer-bottom { padding-top: 20px; text-align: center; }
.footer-bottom p { font-size: 13px; color: #7c8794; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-visual { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-strip-inner { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .split-grid { grid-template-columns: 1fr; }
  .dish-grid { grid-template-columns: repeat(3, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links a { padding: 16px 24px; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }

  .feature-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { flex-direction: column; }

  .benefit-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .location-banner { font-size: 13.5px; line-height: 1.8; }
}

@media (max-width: 480px) {
  .nav-actions .btn-small { padding: 9px 14px; font-size: 13px; }
  .brand-word { height: 22px; }
}
