/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Heebo', system-ui, -apple-system, sans-serif;
  background: #faf7f0;
  color: #2a2118;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4 { font-family: 'Frank Ruhl Libre', 'Heebo', serif; font-weight: 700; margin: 0; line-height: 1.2; }

:root {
  --gold:        #c9a86a;
  --gold-deep:   #a88547;
  --gold-light:  #e8d5a8;
  --cream:       #faf7f0;
  --cream-deep:  #f0e9d8;
  --ink:         #2a2118;
  --ink-mute:    #6b5d4f;
  --burgundy:    #5a1f2e;
  --burgundy-d:  #3d1520;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2a1f17 0%, #3d2a1c 35%, #5a3a22 100%);
  color: #fff;
  padding: 60px 24px;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(201,168,106,0.25), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(201,168,106,0.18), transparent 50%);
  background-size: cover;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 60px, rgba(201,168,106,0.04) 60px 61px),
    repeating-linear-gradient(-45deg, transparent 0 60px, rgba(201,168,106,0.04) 60px 61px);
}
.hero-content { position: relative; max-width: 880px; z-index: 2; }
.kicker {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: none;
  color: var(--gold-light);
  border: 1px solid rgba(232,213,168,0.4);
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero h1 .gold {
  background: linear-gradient(135deg, #f5d98b 0%, #c9a86a 50%, #a88547 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Frank Ruhl Libre', serif;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  margin: 0 auto 50px;
  max-width: 620px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 0 auto 50px;
  padding: 30px 20px;
  border-top: 1px solid rgba(232,213,168,0.2);
  border-bottom: 1px solid rgba(232,213,168,0.2);
}
.stat-num {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-num span {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin-right: 6px;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
}
.hero-pill {
  display: inline-block;
  background: linear-gradient(135deg, rgba(245,217,139,0.18) 0%, rgba(201,168,106,0.12) 100%);
  border: 1px solid rgba(232,213,168,0.5);
  color: var(--gold-light);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 30px;
}
.btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #1a1208;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 40px rgba(201,168,106,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 14px 50px rgba(201,168,106,0.55); }

/* ============ PROGRESS SECTION ============ */
.progress-section {
  background: linear-gradient(180deg, #1a1208 0%, #2a1f17 100%);
  color: #fff;
  padding: 50px 24px 60px;
  border-bottom: 1px solid rgba(232,213,168,0.15);
  position: relative;
}
.progress-section::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.progress-inner { max-width: 980px; margin: 0 auto; }
.progress-head { text-align: center; margin-bottom: 28px; }
.progress-kicker {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  margin-bottom: 12px;
}
.progress-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin: 0;
  font-weight: 700;
}
.progress-amount {
  background: linear-gradient(135deg, #f5d98b 0%, #c9a86a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 10px;
}
.progress-of {
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  font-size: 0.7em;
}
.progress-bar-wrap { margin: 0 auto 26px; max-width: 880px; }
.progress-bar {
  position: relative;
  height: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232,213,168,0.25);
  border-radius: 50px;
  overflow: hidden;
}
.progress-fill {
  position: absolute; inset: 0;
  width: var(--pct);
  background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold) 50%, #f5d98b 100%);
  border-radius: 50px;
  transition: width 0.6s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 0 24px rgba(245,217,139,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: -200% 0%; }
}
.progress-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1208;
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
  z-index: 2;
}
.progress-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  padding: 0 6px;
}
.progress-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(232,213,168,0.15);
}
.progress-stats .ps { text-align: center; }
.progress-stats .ps-num {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.progress-stats .ps-lbl {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}
@media (max-width: 600px) {
  .progress-stats { gap: 24px; }
  .progress-stats .ps-num { font-size: 1.3rem; }
  .progress-bar { height: 24px; }
  .progress-label { font-size: 0.85rem; }
}

/* ============ SECTION HEAD ============ */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head .ornament {
  color: var(--gold-deep);
  font-size: 1.5rem;
  margin-bottom: 16px;
  letter-spacing: 1em;
  padding-right: 1em;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 18px;
  color: var(--ink);
}
.section-head.light h2 { color: #fff; }
.section-head .section-sub { color: var(--ink-mute); font-size: 1.05rem; }
.section-head.light .section-sub { color: rgba(255,255,255,0.7); }

/* ============ PREMIUM ============ */
.premium {
  padding: 100px 24px 80px;
  background:
    linear-gradient(180deg, #faf7f0 0%, #f3ecdb 100%);
  position: relative;
}
.premium::before, .premium::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.premium::before { top: 0; }
.premium::after { bottom: 0; }

.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.premium-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px 28px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(201,168,106,0.25);
  box-shadow:
    0 1px 3px rgba(0,0,0,0.04),
    0 10px 40px rgba(90,60,30,0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.premium-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, var(--gold-light), transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.04), 0 20px 60px rgba(90,60,30,0.15);
  border-color: var(--gold);
}
.premium-card:hover::before { opacity: 1; }

.premium-frame {
  width: 88px; height: 88px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, #fdf8e9 0%, #f3e4c2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold-light);
  position: relative;
}
.premium-frame::after {
  content: ''; position: absolute; inset: -6px;
  border: 1px dashed rgba(201,168,106,0.4);
  border-radius: 50%;
}
.premium-icon { width: 50px; height: 50px; background-size: contain; background-repeat: no-repeat; background-position: center; }

/* Crown / ornament icons via SVG data URIs in gold */
.icon-aron      { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23a88547' stroke-width='2.5'><path d='M16 18h32v40H16z'/><path d='M12 18l20-10 20 10'/><path d='M32 22v32M22 30h20'/><circle cx='32' cy='12' r='2' fill='%23c9a86a'/></svg>"); }
.icon-bima      { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23a88547' stroke-width='2.5'><path d='M10 50h44M14 50V30h36v20M18 30l14-14 14 14M28 38h8'/></svg>"); }
.icon-parochet  { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23a88547' stroke-width='2.5'><path d='M14 12h36v40c-6 0-9-4-9-4s-3 4-9 4-9-4-9-4-3 4-9 4z'/><path d='M20 18v22M32 18v22M44 18v22'/></svg>"); }
.icon-sifriyot  { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23a88547' stroke-width='2.5'><path d='M14 14v36h36V14z'/><path d='M14 26h36M14 38h36M20 14v36M32 14v36M44 14v36'/></svg>"); }
.icon-shandelir { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23a88547' stroke-width='2.5'><path d='M32 8v14M14 22h36M18 22v8c0 4 3 7 7 7M46 22v8c0 4-3 7-7 7M32 22v8'/><circle cx='25' cy='42' r='4' fill='%23e8d5a8'/><circle cx='39' cy='42' r='4' fill='%23e8d5a8'/><circle cx='32' cy='34' r='3' fill='%23e8d5a8'/></svg>"); }
.icon-mitbachon { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23a88547' stroke-width='2.5'><path d='M10 40h44v14H10zM14 40V20h36v20M22 28h8M22 34h12'/></svg>"); }
.icon-kiseot    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23a88547' stroke-width='2.5'><path d='M18 8h28v32H18z'/><path d='M14 40h36M18 40v16M46 40v16'/></svg>"); }

.premium-card.sold-out { opacity: 0.78; }
.premium-card.sold-out .premium-frame { filter: grayscale(40%); }
.sold-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #1a1208;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 18px rgba(201,168,106,0.45);
  z-index: 2;
}
.stock-row {
  margin: 0 -4px 14px;
}
.stock-bar {
  background: rgba(168,133,71,0.15);
  height: 8px;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 8px;
}
.stock-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-radius: 50px;
  transition: width 0.4s;
}
.premium-card.sold-out .stock-fill {
  background: linear-gradient(90deg, #7c9b5c 0%, #5e7a45 100%);
}
.stock-text {
  font-size: 0.82rem;
  color: var(--ink-mute);
  text-align: center;
}
.stock-text strong { color: var(--burgundy); font-weight: 700; }
.premium-card.sold-out .stock-text { color: #5e7a45; font-weight: 600; }
.btn-premium[disabled] {
  background: linear-gradient(135deg, #c2c2c2 0%, #969696 100%);
  color: #fff;
  cursor: not-allowed;
  opacity: 0.85;
}
.btn-premium[disabled]:hover { transform: none; box-shadow: none; }

.premium-card h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 10px; }
.premium-desc { color: var(--ink-mute); font-size: 0.95rem; margin: 0 0 22px; min-height: 3em; }
.premium-price { margin-bottom: 22px; }
.price-main {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}
.price-sub { font-size: 0.85rem; color: var(--ink-mute); margin-top: 6px; }
.price-unit {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}
.price-unit span {
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-mute);
  margin-right: 4px;
}

.qty-row {
  background: linear-gradient(135deg, #fdf8e9 0%, #f8eed1 100%);
  border: 1px solid var(--gold-light);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.qty-label {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-bottom: 10px;
  text-align: center;
}
.qty-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}
.qty-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: #fff;
  color: var(--burgundy);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  transition: background 0.15s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--gold); color: #fff; }
.qty-btn:active { transform: scale(0.92); }
.qty-input {
  width: 70px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Frank Ruhl Libre', serif;
  color: var(--ink);
  border: 1px solid #ddd2bb;
  border-radius: 8px;
  padding: 6px 4px;
  background: #fff;
  outline: none;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-input:focus { border-color: var(--gold); }
.qty-total {
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-mute);
}
.qty-total strong {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.2rem;
  color: var(--burgundy);
  font-weight: 700;
  margin-right: 4px;
}

.btn-premium {
  width: 100%;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-d) 100%);
  color: #f5d98b;
  border: none;
  padding: 14px 20px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(90,31,46,0.25), inset 0 1px 0 rgba(255,215,140,0.2);
}
.btn-premium:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(90,31,46,0.4); }

.premium-total {
  max-width: 1200px;
  margin: 50px auto 0;
  padding: 22px 30px;
  background: #fff;
  border: 1px solid var(--gold-light);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(90,60,30,0.06);
}
.premium-total strong {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.7rem;
  color: var(--burgundy);
}

/* ============ METERS ============ */
.meters {
  padding: 100px 24px 80px;
  background: linear-gradient(160deg, #2a1f17 0%, #3d2a1c 100%);
  position: relative;
  overflow: hidden;
}
.meters::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 0%, rgba(201,168,106,0.15), transparent 60%);
}
.meters-progress {
  position: relative;
  max-width: 880px;
  margin: 0 auto 50px;
  padding: 22px 28px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(232,213,168,0.3);
  border-radius: 16px;
  color: #fff;
}
.mp-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.mp-title {
  font-size: 0.92rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
}
.mp-num {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
}
.mp-num small { font-size: 0.65em; font-weight: 400; color: rgba(255,255,255,0.65); margin: 0 4px; }
.mp-num span:first-child {
  background: linear-gradient(135deg, #f5d98b 0%, #c9a86a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mp-sep { color: rgba(255,255,255,0.4); margin: 0 8px; font-weight: 400; }
.mp-bar {
  position: relative;
  height: 18px;
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
  border: 1px solid rgba(232,213,168,0.2);
  overflow: hidden;
  margin-bottom: 8px;
}
.mp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold) 50%, #f5d98b 100%);
  border-radius: 50px;
  transition: width 0.6s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 0 18px rgba(245,217,139,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}
.mp-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  padding: 0 4px;
}

.meter-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.meter-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(232,213,168,0.25);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  color: #fff;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
}
.meter-card .btn-meter { margin-top: auto; }
.meter-card.custom input { margin-top: auto; }
.meter-card.custom .btn-meter { margin-top: 0; }
.meter-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
}
.meter-card.popular {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, rgba(201,168,106,0.15) 0%, rgba(201,168,106,0.05) 100%);
  box-shadow: 0 20px 60px rgba(201,168,106,0.2);
}
.ribbon {
  position: absolute;
  top: -14px; right: 50%;
  transform: translateX(50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #1a1208;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.meter-tag {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.meter-big {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #f5d98b 0%, #c9a86a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.meter-big span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold-light);
  -webkit-text-fill-color: var(--gold-light);
  margin-top: 4px;
  letter-spacing: 0.15em;
}
.meter-name { font-size: 1.2rem; font-weight: 500; margin-bottom: 14px; color: #fff; }
.meter-price {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.meter-installment {
  color: var(--gold-light);
  font-size: 0.92rem;
  margin-bottom: 16px;
  opacity: 0.9;
}
.meter-installment strong { color: #fff; font-weight: 600; }
.meter-dedication {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(201,168,106,0.1);
  border: 1px solid rgba(232,213,168,0.25);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 18px;
  text-align: right;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--gold-light);
}
.meter-dedication svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 1px;
}
.installments-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 12px 22px;
  border: 1px solid rgba(232,213,168,0.4);
  border-radius: 50px;
  background: rgba(201,168,106,0.1);
  color: #fff;
  font-size: 0.95rem;
}
.installments-badge .ib-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #1a1208;
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 900;
  font-size: 1rem;
}
.installments-badge .ib-text strong { color: var(--gold-light); }
.btn-meter {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #1a1208;
  border: none;
  padding: 14px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(201,168,106,0.3);
}
.btn-meter:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,168,106,0.5); }

.meter-card.custom .meter-big { font-size: 4rem; opacity: 0.5; }
.meter-card.custom input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232,213,168,0.3);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1.1rem;
  text-align: center;
  font-family: inherit;
  margin-bottom: 16px;
  outline: none;
}
.meter-card.custom input::placeholder { color: rgba(255,255,255,0.45); }
.meter-card.custom input:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); }

/* ============ INFRA ============ */
.infra {
  padding: 100px 24px;
  background: #faf7f0;
  text-align: center;
}
.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 50px;
}
.infra-chip {
  background: #fff;
  border: 1px solid rgba(201,168,106,0.3);
  padding: 22px 14px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 500;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.infra-chip:hover { transform: translateY(-3px); border-color: var(--gold); background: #fdfaf1; }
.infra-chip svg { width: 28px; height: 28px; color: var(--gold-deep); }

.btn-infra {
  display: inline-block;
  background: var(--burgundy);
  color: #f5d98b;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(90,31,46,0.25);
}
.btn-infra:hover { transform: translateY(-2px); }

/* ============ FOOTER ============ */
footer {
  background: #1a1208;
  color: rgba(255,255,255,0.7);
  padding: 40px 24px;
  text-align: center;
  font-size: 0.9rem;
}
footer .mute { color: rgba(255,255,255,0.4); margin-top: 8px; }
footer p { margin: 4px 0; }

/* ============ MODAL ============ */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-success[hidden], #donate-form[hidden] { display: none; }
.modal-bg { position: absolute; inset: 0; background: rgba(20,12,5,0.75); backdrop-filter: blur(6px); }
.modal-card {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  padding: 40px 32px 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  max-height: 92vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 12px; left: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--ink-mute);
  cursor: pointer;
  line-height: 1;
  width: 36px; height: 36px;
}
.modal-close:hover { color: var(--burgundy); }
.modal-ornament { text-align: center; color: var(--gold-deep); font-size: 1.6rem; letter-spacing: 0.8em; padding-right: 0.8em; margin-bottom: 8px; }
.modal-card h3 { font-size: 1.6rem; text-align: center; color: var(--ink); margin-bottom: 16px; }
.modal-summary {
  text-align: center;
  background: linear-gradient(135deg, #fdf8e9 0%, #f3e4c2 100%);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  border: 1px solid var(--gold-light);
}
.modal-summary .ms-name { font-weight: 700; color: var(--burgundy); font-size: 1.1rem; }
.modal-summary .ms-amount { font-family: 'Frank Ruhl Libre', serif; font-size: 2rem; font-weight: 700; color: var(--ink); margin-top: 4px; }

.payments-block {
  background: linear-gradient(135deg, #fdf8e9 0%, #f8eed1 100%);
  border: 1px solid var(--gold-light);
  border-radius: 12px;
  padding: 14px 16px 16px;
  margin-bottom: 18px;
}
.payments-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.payments-head strong {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.05rem;
  color: var(--burgundy);
  font-weight: 700;
}
#payments-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-radius: 50px;
  outline: none;
  margin-bottom: 12px;
  cursor: pointer;
}
#payments-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  background: var(--burgundy);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(90,31,46,0.4);
}
#payments-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--burgundy);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(90,31,46,0.4);
}
.payments-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  justify-content: center;
}
.payments-chips .pc {
  background: #fff;
  border: 1px solid var(--gold-light);
  color: var(--burgundy);
  padding: 6px 14px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.payments-chips .pc:hover { border-color: var(--gold); }
.payments-chips .pc.active {
  background: var(--burgundy);
  color: #f5d98b;
  border-color: var(--burgundy);
}
.payments-monthly {
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
  min-height: 1.4em;
}

#donate-form label { display: block; margin-bottom: 14px; font-size: 0.9rem; font-weight: 500; color: var(--ink); }
#donate-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd2bb;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  margin-top: 6px;
  outline: none;
  transition: border-color 0.2s;
  background: #fafafa;
}
#donate-form input:focus { border-color: var(--gold); background: #fff; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-d) 100%);
  color: #f5d98b;
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(90,31,46,0.25);
}
.btn-submit:hover { transform: translateY(-2px); }
.modal-note { font-size: 0.8rem; color: var(--ink-mute); text-align: center; margin-top: 14px; }

.modal-success { text-align: center; padding: 20px 0; }
.success-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  box-shadow: 0 10px 30px rgba(201,168,106,0.4);
}
.modal-success h4 { font-size: 1.4rem; margin-bottom: 8px; color: var(--ink); }
.modal-success p { color: var(--ink-mute); }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 60px 20px; }
  .hero-stats { padding: 20px 10px; gap: 18px; }
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: 0.8rem; }
  .premium, .meters, .infra { padding: 70px 18px 60px; }
  .section-head { margin-bottom: 40px; }
  .premium-grid { grid-template-columns: 1fr; gap: 22px; }
  .premium-total { flex-direction: column; gap: 10px; text-align: center; }
  .meter-grid { grid-template-columns: 1fr; }
  .meter-big { font-size: 4.5rem; }
  .infra-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-card { padding: 30px 22px 24px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 2.4rem; }
  .premium-card { padding: 28px 20px; }
  .premium-card h3 { font-size: 1.3rem; }
  .price-main { font-size: 1.6rem; }
  .meter-big { font-size: 3.8rem; }
}
