:root {
	--green-deep: #1C3A12;
	--green-mid: #2D5219;
	--green-light: #4A7A2C;
	--green-pale: #EBF3E0;
	--green-wash: #F4F8EE;
	--cream: #F7F2E8;
	--cream-dark: #EDE5D4;
	--gold: #8B6914;
	--gold-light: #C4A44E;
	--gold-pale: #FAF3E0;
	--text-dark: #1A2E10;
	--text-mid: #3D5530;
	--text-muted: #6B7F5E;
	--text-light: #A5B896;
	--border: #D4E0C4;
	--border-mid: #B8CDA0;
	--white: #FFFFFF;
	--shadow-md: 0 4px 16px rgba(28,58,18,0.10);
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--font-display: "Work Sans", sans-serif;
	--font-body: "Work Sans", sans-serif;
	--transition: 0.22s ease;
}

/* ── HERO ── */
.page-hero {
	padding: 68px 0;
	position: relative;
	overflow: hidden;
	background-position: center right;
	background-repeat: no-repeat;
	background-size:cover;
}
.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(0,0,0, .2);
	pointer-events: none;
}
.hero-inner {
	position: relative;
	max-width: 620px;
}
.eyebrow {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--green-pale);
	margin-bottom: 14px;
}
.hero-title {
	font-family: var(--font-display);
	font-size: clamp(38px, 7vw, 64px);
	font-weight: 500;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 18px;
}

.hero-title em { font-style: italic; color: var(--gp-light); }

.hero-sub {
	font-size: 15px;
	color: rgba(255,255,255,0.8);
	line-height: 1.7;
	max-width: 480px;
}

/* ── TRUST STRIP ── */
.trust-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border-right: 1px solid rgba(255,255,255,0.1);
}

.trust-item:last-child { border-right: none; }

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

/* ── PAGE BODY ── */
.page-body { padding: 64px 0 80px; }

/* ── SECTION BLOCKS ── */
.section-block { margin-bottom: 56px; }

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-eyebrow {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--char);
	margin-bottom: 10px;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(26px, 4vw, 40px);
	font-weight: 500;
	color: var(--gp);
	line-height: 1.15;
	margin-bottom: 12px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── POINTS CONVERSION ── */
.points-conversion {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--gp);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  margin-bottom: 32px;
}

.points-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
}

.points-eq {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  padding-top: 6px;
}

.points-arrow { color: rgba(255,255,255,0.3); flex-shrink: 0; }

.points-reward {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1;
}

/* ── BOTTLE GRID ── */
.bottle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.bottle-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.bottle-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--border-mid);
}

.bottle-icon {
  width: 36px;
  height: 64px;
  color: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottle-icon svg     { width: 100%; height: 100%; }
.bottle-icon--jar    { width: 44px; height: 56px; }
.bottle-icon--shot   { width: 28px; height: 56px; }
.bottle-icon--shot2  { width: 32px; height: 60px; }
.bottle-icon--soup   { width: 48px; height: 52px; }

.bottle-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.bottle-info strong {
	font-size: 13px;
	font-weight: 500;
	color: var(--char);
	line-height: 1.3;
}

.bottle-pts {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.bottle-value {
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: 500;
	color: var(--gp);
	line-height: 1;
}

/* ── RETURN OPTIONS ── */
.return-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.return-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.return-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  margin-bottom: 4px;
}

.return-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--gp);
}

.return-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.return-card-desc strong { color: var(--text-mid); font-weight: 500; }

.return-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gp-other);
  text-decoration: none;
  margin-top: 4px;
  transition: color var(--transition), gap var(--transition);
}

.return-card-link:hover { color: var(--green-mid); gap: 10px; }

.return-card-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-top: 4px;
  border: 1px solid var(--border);
}

/* ── NOTES CARD ── */
.notes-card {
  background: var(--gold-pale);
  border: 1px solid #E8D49A;
  border-radius: var(--radius-lg);
  padding: 32px;
}

.notes-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 20px;
}

.notes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.notes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #5C4A10;
  line-height: 1.65;
}

.note-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.notes-list strong { font-weight: 500; color: #3D2F08; }

/* ── CTA BLOCK ── */
.cta-block {
  text-align: center;
  background: var(--gp-other);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(74,122,44,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
  position: relative;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 32px;
  position: relative;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  border-radius: var(--radius-md);
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
	background: var(--white);
	color: var(--gp);
	border-color: var(--white);
	font-weight: 500;
}

.btn--primary:hover { background: #000; border-color: #000; color: var(--white) }

.btn--outline {
	background: transparent;
	color: var(--white);
	border-color: var(--white);
}

.btn--outline:hover { background: var(--white); color: var(--gp); }

/* ── REVEAL ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bottle-card     { animation: fadeUp 0.4s ease both; }
.bottle-card:nth-child(1) { animation-delay: 0.05s; }
.bottle-card:nth-child(2) { animation-delay: 0.10s; }
.bottle-card:nth-child(3) { animation-delay: 0.15s; }
.bottle-card:nth-child(4) { animation-delay: 0.20s; }
.bottle-card:nth-child(5) { animation-delay: 0.25s; }

.return-card:nth-child(1) { animation: fadeUp 0.4s 0.05s ease both; }
.return-card:nth-child(2) { animation: fadeUp 0.4s 0.12s ease both; }

/* ═══════════════════════
   RESPONSIVE
═══════════════════════ */

@media (max-width: 860px) {
  .bottle-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bottle-card:nth-child(4),
  .bottle-card:nth-child(5) {
    /* stays 3-col, wraps naturally */
  }
}

@media (max-width: 640px) {
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex: 1 1 48%;
    padding: 11px 16px;
    font-size: 11px;
    justify-content: center;
  }
  .trust-strip { justify-content: flex-start; }
  .trust-item:nth-child(even) { border-right: none; }
  .trust-item:last-child { border-bottom: none; }
  .points-conversion {
    gap: 10px;
    padding: 20px 24px;
  }
  .points-num, .points-reward { font-size: 40px; }
  .bottle-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .return-options { grid-template-columns: 1fr; gap: 14px; }
  .return-card { padding: 24px 20px; }
  .notes-card { padding: 24px 20px; }
  .cta-block { padding: 40px 24px; }
  .cta-btns  { flex-direction: column; align-items: center; }
  .btn       { width: 100%; max-width: 280px; text-align: center; }
}
@media (max-width: 600px) {
	.page-hero {
		padding: 30px 0;
	}
	.eyebrow {
		margin-bottom: 8px;
		line-height: normal;
	}
	.hero-title {
		font-size: 32px;
		margin-bottom: 8px;
		line-height: 1;
	}
	.hero-sub { 
		font-size: 14px;
		line-height: 1.5;
		color: #fff;
		max-width: 100%;
	}
	.page-body {
		padding: 30px 0;
	}
	.section-eyebrow {
		margin-bottom: 6px;
	}
	.section-title {
		font-size: 22px;
		margin-bottom: 8px;
	}
	.section-desc {
		font-size: 14px;
		max-width: 100%;
		margin: 0;
		line-height: 1.5;
	}
	.section-header {
		margin-bottom: 12px;
	}
	.points-conversion {
        gap: 10px;
        padding: 10px 14px;
		margin-bottom: 16px;
    }
	.points-num, .points-reward {
        font-size: 24px;
    }
	.points-eq {
		padding-top: 0;
	}
	.bottle-card {
		padding: 16px;
		gap: 8px;
	}
	.bottle-value {
		font-size: 18px;
	}
	.section-block {
		margin-bottom: 26px;
	}
	.return-card {
        padding: 18px;
		gap: 8px;
    }
	.return-card-icon {
		width: 42px;
		height: 42px;
	}
	.return-card-icon svg {
		width: 22px;
		height: 22px;
	}
	.return-card-title {
		font-size: 18px;
	}
	.return-card-desc {
		font-size: 13px;
		line-height: 1.5;
	}
	.return-card-link {
		font-size: 12px;
		margin-top: 2px;
	}
	.cta-block {
        padding: 20px;
    }
	.cta-eyebrow {
		margin-bottom: 8px;
	}
	.cta-title {
		font-size: 20px;
		max-width: 100%;
		margin-bottom: 8px;
	}
	.cta-sub {
		line-height: 1.5;
		margin-bottom: 12px;
	}
	.cta-btns {
		gap: 8px;
    }
	.btn {
		padding: 10px 14px;
		font-size: 13px;
		line-height: 1.4;
	}
}
@media (max-width: 400px) {
	.bottle-grid {
		grid-template-columns: 1fr 1fr;
	}
	.points-conversion {
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
	}
}
