/* styles.css */
:root {
  --brand: #f5c400;
  --brand-light: #ffdd55;
  --brand-dark: #e5b400;
  --text: #1a1a1a;
  --text-muted: #666666;
  --white: #ffffff;
  --bg-pattern: rgba(245, 196, 0, 0.08);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  min-height: 100vh;
  line-height: 1.6;
}

/* Vending machine watermark pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Crect x='25' y='10' width='70' height='100' rx='4' fill='none' stroke='%23f5c400' stroke-width='2' opacity='0.25'/%3E%3Crect x='30' y='15' width='60' height='40' rx='2' fill='none' stroke='%23f5c400' stroke-width='1.5' opacity='0.25'/%3E%3Cline x1='50' y1='15' x2='50' y2='55' stroke='%23f5c400' stroke-width='1' opacity='0.25'/%3E%3Cline x1='70' y1='15' x2='70' y2='55' stroke='%23f5c400' stroke-width='1' opacity='0.25'/%3E%3Cline x1='30' y1='35' x2='90' y2='35' stroke='%23f5c400' stroke-width='1' opacity='0.25'/%3E%3Crect x='30' y='60' width='60' height='20' rx='2' fill='none' stroke='%23f5c400' stroke-width='1.5' opacity='0.25'/%3E%3Crect x='35' y='65' width='20' height='10' rx='1' fill='%23f5c400' opacity='0.15'/%3E%3Ccircle cx='75' cy='70' r='6' fill='none' stroke='%23f5c400' stroke-width='1.5' opacity='0.25'/%3E%3Crect x='30' y='85' width='60' height='20' rx='2' fill='none' stroke='%23f5c400' stroke-width='1.5' opacity='0.25'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
}

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

.nav__link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: opacity 0.2s;
}

.nav__link:hover {
  opacity: 0.7;
  text-decoration: none;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--brand);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

/* ========== HERO ========== */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--brand);
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-radius: 999px;
  margin-bottom: 32px;
}

.badge--outline {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.hero__title-blessd {
  font-size: clamp(56px, 10vw, 100px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
}

.hero__title-bites {
  font-size: clamp(48px, 9vw, 90px);
  font-weight: 400;
  color: var(--brand);
  line-height: 1;
  margin-top: -8px;
}

.hero__desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--brand);
  color: var(--text);
  border-color: var(--brand);
}

.btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  text-decoration: none;
}

.btn--outline {
  background: var(--white);
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.15);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.btn--full {
  width: 100%;
}

/* ========== STATS ========== */
.stats {
  padding: 40px 0 80px;
}

.stats__card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 60px;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat__value {
  font-size: 36px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}

.stat__label {
  font-size: 14px;
  color: var(--text);
  margin-top: 8px;
  font-weight: 500;
}

.stat__divider {
  width: 1px;
  height: 50px;
  background: rgba(0, 0, 0, 0.1);
}

/* ========== FEATURES ========== */
.features {
  padding: 80px 0;
  background: transparent;
  text-align: center;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin: 16px 0;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}

.feature-card {
  background: rgba(245, 196, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--brand);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--text);
}

.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== ABOUT ========== */
.about {
  padding: 80px 0;
  background: transparent;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.about__content {
  text-align: left;
}

.about__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin: 16px 0 24px;
  letter-spacing: -0.02em;
}

.about__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 32px;
}

.about__text a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.about__text a:hover {
  color: var(--brand-dark);
}

.about__locations-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.check-list {
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: var(--brand);
  border-radius: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.about__charity-box {
  background: var(--brand);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
}

.charity-value {
  font-size: 72px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.charity-label {
  font-size: 18px;
  color: var(--white);
  margin-top: 12px;
  opacity: 0.9;
}

/* ========== CONTACT ========== */
.contact {
  padding: 80px 0 100px;
  background: transparent;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__info {
  text-align: left;
}

.contact__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin: 16px 0 16px;
  letter-spacing: -0.02em;
}

.contact__text {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact__methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__methods--compact {
  gap: 8px;
}

.contact__methods-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.contact__logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
}

.contact__method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact__method--compact {
  padding: 8px 0;
  border-bottom: none;
}

.contact__method-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.contact__method-text {
  font-size: 16px;
  font-weight: 500;
}

.contact__form-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(245, 196, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__charity-box {
    max-width: 400px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .header__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  .cta-btn {
    display: none;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero__desc br {
    display: none;
  }

  .stats__card {
    flex-direction: column;
    gap: 24px;
    padding: 32px;
  }

  .stat__divider {
    width: 60px;
    height: 1px;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    text-align: center;
  }

  .feature-card__icon {
    margin: 0 auto 20px;
  }

  .about {
    padding: 60px 0;
  }

  .about__title {
    font-size: 28px;
  }

  .contact {
    padding: 60px 0 80px;
  }

  .contact__methods-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact__logo {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .stats__card {
    padding: 24px;
  }

  .stat__value {
    font-size: 28px;
  }
}
