*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --ivory:    #F7F7F7;
  --accent:   #FCC61D;
  --tan:      #C59560;
  --cream:    #ede8df;
  --warm:     #ddd8cc;
  --gold:     #3338A0;
  --deep-gold:#21266b;
  --bark:     #1a1f52;
  --espresso: #0f1230;
  --muted:    #6b6fa8;
  --leaf:     #C59560;
  --white:    #ffffff;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--ivory); color: var(--bark); font-weight: 300; overflow-x: hidden; }
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.5;
}
/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 74px;
  background: rgba(247,247,247,0.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(51,56,160,0.2);
}
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; letter-spacing: 0.12em; color: var(--espresso); text-transform: uppercase; }
.nav-logo span { color: #FCC61D; font-style: italic; font-weight: 400; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.cart-btn { position: relative; background: var(--espresso); color: var(--ivory); border: none; padding: 10px 24px; font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; transition: background 0.25s; }
.cart-btn:hover { background: #FCC61D; color: #0f1230; }
.cart-count { position: absolute; top: -7px; right: -7px; background: var(--gold); color: white; width: 20px; height: 20px; border-radius: 50%; font-size: 9px; font-weight: 500; display: none; align-items: center; justify-content: center; }

/* HERO */
.hero {
  margin-top: 74px;
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
}

.hero-left {
  background: #080d22;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,198,29,0.18) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-visual-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-badge-left {
  position: absolute;
  left: 48px;
  top: 38%;
  transform: translateY(-50%) rotate(-8deg);
  background: #FCC61D;
  color: #0f1230;
  padding: 10px 18px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}

.hero-badge-right {
  position: absolute;
  right: 48px;
  bottom: 28%;
  transform: rotate(6deg);
  border: 1px solid #C59560;
  color: #C59560;
  padding: 8px 14px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-left {
  background: #080d22;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 380px;
  height: 380px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 60px rgba(51,56,160,0.5));
}

.hero-right {
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 64px;
  position: relative;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #FCC61D;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--espresso);
  margin-bottom: 26px;
}

.hero-title em { font-style: italic; color: #FCC61D; }

.hero-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 380px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #3338A0;
  color: #ffffff;
  padding: 16px 40px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  width: fit-content;
}

.hero-cta:hover { background: #3338A0; border: 2px solid #FCC61D; }
.cta-arrow { transition: transform 0.2s; }
.hero-cta:hover .cta-arrow { transform: translateX(5px); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(26,31,82,0.12);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* MARQUEE */
.marquee-wrap { background: #FCC61D; overflow: hidden; padding: 13px 0; }
.marquee-track { display: flex; animation: marquee 22s linear infinite; white-space: nowrap; }
.marquee-item { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: #0f1230; padding: 0 36px; font-weight: 500; }
.marquee-sep { color: rgba(61,43,31,0.4); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* FILTER */
.filter-wrap { display: flex; justify-content: center; gap: 12px; padding: 40px 40px 12px; flex-wrap: wrap; }
.filter-btn { padding: 9px 22px; border: 1px solid var(--warm); background: none; font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: #3338A0; color: #ffffff; border-color: #3338A0; }

/* SECTION HEADER */
.section-header { text-align: center; padding: 20px 40px 48px; }
.section-eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 48px); font-weight: 400; color: var(--espresso); line-height: 1.1; }
.section-title em { font-style: italic; color: #C59560; }

/* PRODUCTS */
.products-section { padding: 0 52px 80px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 28px; }
.product-card { background: var(--white); cursor: pointer; transition: transform 0.32s, box-shadow 0.32s; position: relative; overflow: hidden; }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 24px 64px rgba(15,18,48,0.13); }
.product-image { width: 100%; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-image svg { width: 68%; height: 68%; transition: transform 0.4s; }
.product-card:hover .product-image svg { transform: scale(1.06); }
.product-badge { position: absolute; top: 14px; left: 14px; background: #FCC61D; color: #0f1230; font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 10px; font-weight: 500; }
.product-quick-add { position: absolute; bottom: 0; left: 0; right: 0; background: #3338A0; color: #ffffff; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; padding: 15px; text-align: center; transform: translateY(100%); transition: transform 0.3s; cursor: pointer; border: none; font-family: 'DM Sans', sans-serif; }
.product-card:hover .product-quick-add { transform: translateY(0); }
.product-info { padding: 20px 22px 24px; border-top: 1px solid var(--cream); }
.product-category { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 400; color: var(--espresso); margin-bottom: 5px; line-height: 1.2; }
.product-desc { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.product-price { display: flex; align-items: center; gap: 10px; }
.price-current { font-size: 16px; font-weight: 500; color: var(--espresso); }
.price-original { font-size: 13px; color: var(--muted); text-decoration: line-through; }

/* CART */
.cart-overlay { position: fixed; inset: 0; background: rgba(15,18,48,0.55); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar { position: fixed; top: 0; right: 0; width: 430px; height: 100vh; background: #ffffff; z-index: 201; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); display: flex; flex-direction: column; }
.cart-sidebar.open { transform: translateX(0); }
.cart-header { padding: 28px 32px; border-bottom: 1px solid var(--cream); display: flex; align-items: center; justify-content: space-between; }
.cart-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 400; color: var(--espresso); }
.cart-close { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--muted); transition: color 0.2s; }
.cart-close:hover { color: var(--espresso); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 32px; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--cream); animation: slideIn 0.3s ease; }
@keyframes slideIn { from { opacity:0; transform:translateX(16px); } to { opacity:1; transform:translateX(0); } }
.cart-item-img { width: 70px; height: 70px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 4px; overflow: hidden; }
.cart-item-img svg { width: 52px; height: 52px; }
.cart-item-name { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--espresso); margin-bottom: 3px; }
.cart-item-price { font-size: 13px; color: var(--gold); margin-bottom: 10px; }
.cart-item-controls { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 26px; height: 26px; background: none; border: 1px solid var(--warm); cursor: pointer; font-size: 14px; color: var(--bark); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.qty-btn:hover { background: var(--espresso); color: var(--ivory); border-color: var(--espresso); }
.qty-value { font-size: 13px; min-width: 22px; text-align: center; }
.cart-item-remove { margin-left: auto; background: none; border: none; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.cart-item-remove:hover { color: #b83232; }
.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--muted); padding: 60px 40px; text-align: center; }
.cart-empty-icon { font-size: 44px; opacity: 0.35; }
.cart-empty-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 400; color: var(--espresso); }
.cart-footer-wrap { display: none; }
.cart-footer { padding: 20px 32px 32px; border-top: 1px solid var(--cream); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.cart-subtotal-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.cart-subtotal-value { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--espresso); }
.cart-note { font-size: 11px; color: var(--muted); margin-bottom: 18px; line-height: 1.6; }
.checkout-btn { width: 100%; background: var(--espresso); color: var(--ivory); border: none; padding: 18px; font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: background 0.25s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.checkout-btn:hover { background: #FCC61D; color: #0f1230; }
.stripe-badge { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; font-size: 10px; color: var(--muted); }

/* CHECKOUT MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(15,18,48,0.72); z-index: 300; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); width: 100%; max-width: 570px; max-height: 92vh; overflow-y: auto; animation: modalIn 0.35s ease; }
@keyframes modalIn { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
.modal-header { padding: 32px 40px 24px; border-bottom: 1px solid var(--cream); display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; background: var(--white); z-index: 1; }
.modal-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 400; color: var(--espresso); }
.modal-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--muted); }
.modal-body { padding: 32px 40px; }
.form-section-title { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--cream); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.form-input { padding: 12px 14px; border: 1px solid var(--warm); background: var(--ivory); font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--espresso); outline: none; transition: border-color 0.2s; }
.form-input:focus { border-color: var(--gold); }
.stripe-el-wrap { padding: 12px 14px; border: 1px solid var(--warm); background: var(--ivory); transition: border-color 0.2s; }
.stripe-el-wrap.focused { border-color: var(--gold); }
.order-summary { background: var(--cream); padding: 20px; margin: 24px 0; }
.order-summary-title { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.order-line { display: flex; justify-content: space-between; font-size: 13px; color: var(--bark); margin-bottom: 8px; }
.order-line.total { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--warm); font-weight: 500; font-size: 15px; }
.payment-section { margin-top: 28px; }
.dev-notice { background: #fffbf0; border: 1px solid #f0dfa0; padding: 14px 16px; margin-bottom: 20px; font-size: 12px; color: #7a6020; line-height: 1.7; }
.dev-notice a { color: var(--deep-gold); }
.card-icons { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.card-icon { background: var(--cream); border: 1px solid var(--warm); padding: 4px 10px; font-size: 10px; letter-spacing: 0.1em; color: var(--muted); }
.error-msg { background: #fef0ef; border: 1px solid #f5c6c3; color: #b83232; padding: 12px 16px; font-size: 12px; margin-top: 12px; line-height: 1.5; display: none; }
.error-msg.visible { display: block; }
.pay-btn { width: 100%; background: var(--espresso); color: var(--ivory); border: none; padding: 18px; font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: background 0.25s; margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.pay-btn:hover { background: #FCC61D; color: #0f1230; }
.pay-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.secure-notice { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: 11px; color: var(--muted); }
.success-modal { text-align: center; padding: 64px 40px; }
.success-icon { width: 64px; height: 64px; background: #FCC61D; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 26px; color: #0f1230; }
.success-title { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 400; color: var(--espresso); margin-bottom: 12px; }
.success-msg { font-size: 14px; color: var(--muted); line-height: 1.9; margin-bottom: 32px; }
.success-close { background: var(--espresso); color: var(--ivory); border: none; padding: 14px 40px; font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: background 0.25s; }
.success-close:hover { background: var(--gold); }

/* FEATURES */
.features { background: var(--espresso); border-top: 4px solid #FCC61D; padding: 56px 80px; display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.feature { text-align: center; }
.feature-icon { font-size: 24px; margin-bottom: 14px; opacity: 0.8; }
.feature-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 400; color: var(--ivory); margin-bottom: 6px; }
.feature-desc { font-size: 11px; color: rgba(247,247,247,0.55); line-height: 1.7; }

/* FOOTER */
footer { background: #080d22; padding: 52px 80px 32px; }
.footer-top { display: flex; justify-content: space-between; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(51,56,160,0.18); }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; letter-spacing: 0.12em; color: #FCC61D; text-transform: uppercase; margin-bottom: 14px; }
.footer-tagline { font-size: 12px; color: rgba(247,247,247,0.4); line-height: 1.8; max-width: 240px; }
.footer-links h4 { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: #FCC61D; margin-bottom: 16px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(247,247,247,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #FCC61D; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 11px; color: rgba(247,247,247,0.3); }
.footer-secure { font-size: 11px; color: rgba(247,247,247,0.3); }

/* SPINNER */
.spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 0.8s linear infinite; display: none; }
.spinner.visible { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── DELIVERY OPTIONS ── */
.delivery-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.delivery-option {
  border: 1.5px solid var(--warm); padding: 14px 14px 12px;
  cursor: pointer; transition: all 0.2s; position: relative; background: var(--ivory);
}
.delivery-option:hover { border-color: var(--gold); }
.delivery-option.selected { border-color: var(--gold); background: rgba(51,56,160,0.08); }
.delivery-option.selected::after { content: '✓'; position: absolute; top: 10px; right: 12px; font-size: 11px; color: var(--gold); font-weight: 600; }
.del-opt-name { font-size: 12px; font-weight: 500; color: var(--espresso); margin-bottom: 3px; letter-spacing: 0.02em; }
.del-opt-time { font-size: 11px; color: var(--muted); margin-bottom: 5px; }
.del-opt-price { font-size: 12px; color: var(--gold); font-weight: 500; }
.del-opt-icon { font-size: 18px; margin-bottom: 6px; display: block; }

/* ── TRACKING SCREEN ── */
.tracking-screen {
  position: fixed; inset: 0; background: var(--ivory);
  z-index: 500; overflow-y: auto;
  display: none; flex-direction: column;
}
.tracking-screen.open { display: flex; }

.tracking-header {
  background: var(--espresso); padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 10;
}
.tracking-logo { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; letter-spacing: 0.12em; color: #FCC61D; text-transform: uppercase; }
.tracking-order-num { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247,247,247,0.5); }

.tracking-body { max-width: 680px; margin: 0 auto; padding: 32px 24px 60px; width: 100%; }

/* ETA banner */
.eta-banner {
  background: var(--espresso); color: var(--ivory);
  padding: 20px 28px; margin-bottom: 28px;
  display: flex; align-items: center; justify-content: space-between;
  border-left: 4px solid #FCC61D;
}
.eta-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #FCC61D; margin-bottom: 4px; }
.eta-time { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 400; line-height: 1; }
.eta-note { font-size: 12px; color: rgba(247,247,247,0.55); margin-top: 4px; }
.eta-pulse { width: 12px; height: 12px; background: var(--gold); border-radius: 50%; animation: pulse 1.4s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.6; } }

/* Progress steps */
.progress-card { background: var(--white); padding: 28px; margin-bottom: 20px; border: 1px solid var(--warm); }
.progress-title { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: #FCC61D; margin-bottom: 24px; }

.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 18px; position: relative; }
.step:not(:last-child) .step-line { position: absolute; left: 17px; top: 36px; width: 2px; height: calc(100% - 10px); background: var(--warm); z-index: 0; transition: background 0.6s; }
.step:not(:last-child).done .step-line { background: var(--gold); }
.step:not(:last-child).active .step-line { background: linear-gradient(to bottom, var(--gold), var(--warm)); }

.step-icon-wrap { position: relative; z-index: 1; flex-shrink: 0; }
.step-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; border: 2px solid var(--warm);
  background: var(--ivory); transition: all 0.4s;
}
.step.done .step-icon { background: #FCC61D; border-color: #FCC61D; color: #0f1230; }
.step.active .step-icon { background: var(--espresso); border-color: var(--espresso); animation: stepPulse 1.5s ease-in-out infinite; }
@keyframes stepPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(51,56,160,0.45); } 50% { box-shadow: 0 0 0 8px rgba(51,56,160,0); } }

.step-info { padding: 6px 0 24px; flex: 1; }
.step-name { font-size: 14px; font-weight: 500; color: var(--espresso); margin-bottom: 3px; transition: color 0.3s; }
.step.active .step-name { color: #FCC61D; }
.step-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }
.step-time { font-size: 11px; color: #FCC61D; margin-top: 3px; font-weight: 500; }

/* MAP */
.map-card { background: var(--white); margin-bottom: 20px; border: 1px solid var(--warm); overflow: hidden; }
.map-card-header { padding: 16px 22px; border-bottom: 1px solid var(--warm); display: flex; align-items: center; justify-content: space-between; }
.map-card-title { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: #3338A0; }
.map-live-badge { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: #3d9e4a; background: rgba(61,158,74,0.1); padding: 3px 10px; border-radius: 20px; display: flex; align-items: center; gap: 5px; }
.map-live-dot { width: 6px; height: 6px; background: #3d9e4a; border-radius: 50%; animation: pulse 1.2s infinite; }

.map-container { position: relative; height: 280px; background: #e8e0d4; overflow: hidden; }

/* SVG map illustration */
.map-svg { width: 100%; height: 100%; }

/* Animated driver marker */
.driver-marker {
  position: absolute; width: 44px; height: 44px;
  transform: translate(-50%, -50%);
  transition: left 3s ease-in-out, top 3s ease-in-out;
  z-index: 5;
}
.driver-marker-inner {
  width: 44px; height: 44px; background: var(--espresso);
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  border: 3px solid #FCC61D; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(15,18,48,0.35);
}
.driver-marker-inner span { transform: rotate(45deg); font-size: 18px; display: block; }
.driver-marker-ring { position: absolute; inset: -8px; border: 2px solid rgba(51,56,160,0.45); border-radius: 50%; animation: ring 1.8s ease-out infinite; }
@keyframes ring { 0% { transform: scale(0.7); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

.dest-marker { position: absolute; transform: translate(-50%, -100%); z-index: 4; }
.dest-marker-pin { width: 28px; height: 28px; background: #FCC61D; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); border: 2px solid var(--espresso); }
.dest-marker-label { position: absolute; top: -28px; left: 50%; transform: translateX(-50%); background: var(--espresso); color: var(--ivory); font-size: 9px; letter-spacing: 0.1em; padding: 3px 8px; white-space: nowrap; }

/* route path */
.route-path { stroke-dasharray: 8 5; stroke-dashoffset: 0; animation: dash 1.5s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -26; } }

/* DRIVER CARD */
.driver-card { background: var(--white); padding: 22px 24px; margin-bottom: 20px; border: 1px solid var(--warm); }
.driver-card-title { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: #C59560; margin-bottom: 18px; }
.driver-info { display: flex; align-items: center; gap: 18px; }
.driver-avatar {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: var(--cream); border: 3px solid #FCC61D;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; overflow: hidden;
}
.driver-details { flex: 1; }
.driver-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 400; color: var(--espresso); margin-bottom: 4px; }
.driver-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.driver-stars { color: #FCC61D; font-size: 13px; letter-spacing: 1px; }
.driver-rating-val { font-size: 12px; color: var(--muted); }
.driver-vehicle { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.driver-actions { display: flex; gap: 10px; margin-top: 14px; }
.driver-call-btn {
  flex: 1; background: var(--espresso); color: var(--ivory);
  border: none; padding: 11px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.driver-call-btn:hover { background: var(--gold); }
.driver-msg-btn {
  flex: 1; background: none; color: var(--espresso);
  border: 1px solid var(--warm); padding: 11px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.driver-msg-btn:hover { border-color: var(--espresso); background: var(--espresso); color: var(--ivory); }

/* ORDER SUMMARY MINI */
.order-mini-card { background: var(--white); padding: 20px 24px; border: 1px solid var(--warm); margin-bottom: 20px; }
.order-mini-title { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: #C59560; margin-bottom: 14px; }
.order-mini-item { display: flex; justify-content: space-between; font-size: 13px; color: var(--bark); margin-bottom: 6px; }
.order-mini-total { display: flex; justify-content: space-between; font-size: 14px; font-weight: 500; color: var(--espresso); border-top: 1px solid var(--warm); padding-top: 10px; margin-top: 8px; }

/* DELIVERED state */
.delivered-banner {
  background: linear-gradient(135deg, var(--espresso), #1a1f52);
  padding: 28px; text-align: center; margin-bottom: 20px;
  border: 1px solid var(--gold);
}
.delivered-icon { font-size: 40px; margin-bottom: 12px; display: block; }
.delivered-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 400; color: #FCC61D; margin-bottom: 6px; }
.delivered-msg { font-size: 13px; color: rgba(249,246,240,0.6); }
.rate-btn { background: #FCC61D; color: #0f1230; border: none; padding: 12px 28px; font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; margin-top: 16px; font-weight: 500; transition: opacity 0.2s; }
.rate-btn:hover { opacity: 0.85; }

/* TOAST */
.toast { position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--espresso); color: var(--ivory); padding: 14px 28px; font-size: 12px; letter-spacing: 0.1em; z-index: 400; transition: transform 0.3s; pointer-events: none; white-space: nowrap; border-left: 3px solid #FCC61D; }
.toast.show { transform: translateX(-50%) translateY(0); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { height: 380px; }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .cart-sidebar { width: 100%; }
  .modal-body { padding: 24px; }
  .modal-header { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; padding: 40px; }
  footer { padding: 40px 24px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .products-section { padding: 0 20px 60px; }
}
.hero-visual-wrap {
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 260px;
  height: 260px;
  object-fit: contain;
}

.hero-right {
  padding: 40px 24px 48px;
}

.hero-badge-left {
  left: 16px;
  top: 24px;
  transform: rotate(-8deg);
}

.hero-badge-right {
  right: 16px;
  bottom: 16px;
}

.hero-stats {
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
}

.stat-number {
  font-size: 22px;
}

.hero-title {
  font-size: 36px;
}
/* ══════════════════════════════════════════════════════
   PAGE LAYOUT — shared inner-page structure
══════════════════════════════════════════════════════ */
.page-hero {
  margin-top: 74px;
  background: var(--espresso);
  padding: 80px 80px 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(51,56,160,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-eyebrow {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.page-eyebrow::before {
  content: ''; display: inline-block;
  width: 28px; height: 1px; background: var(--gold);
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300; line-height: 1.05;
  color: var(--ivory); margin-bottom: 20px;
}
.page-title em { font-style: italic; color: #FCC61D; }
.page-subtitle {
  font-size: 15px; color: rgba(247,247,247,0.6);
  line-height: 1.9; max-width: 520px;
}

.page-body { max-width: 1100px; margin: 0 auto; padding: 72px 56px 100px; }

/* Content prose */
.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 38px); font-weight: 400;
  color: var(--espresso); margin-bottom: 16px; margin-top: 52px; line-height: 1.2;
}
.prose h2:first-child { margin-top: 0; }
.prose h2 em { font-style: italic; color: #C59560; }
.prose p {
  font-size: 15px; color: var(--muted); line-height: 1.95;
  margin-bottom: 20px; font-weight: 300;
}
.prose strong { color: var(--espresso); font-weight: 500; }

.divider {
  width: 48px; height: 2px;
  background: var(--gold); margin: 32px 0;
}

/* Pull quote */
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 24px 32px; margin: 40px 0;
  background: var(--cream);
}
.pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.2vw, 24px); font-style: italic;
  color: var(--espresso); line-height: 1.6; margin: 0;
}
.pull-quote cite {
  display: block; margin-top: 12px;
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
  font-style: normal;
}

/* Two-column grid */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.two-col.reverse > :first-child { order: 2; }
.two-col.reverse > :last-child  { order: 1; }

/* Visual panel */
.visual-panel {
  background: var(--cream);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.visual-panel svg { width: 70%; height: 70%; opacity: 0.7; }
.visual-panel-label {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--espresso); color: var(--gold);
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 7px 14px;
}

/* Value cards */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.value-card {
  background: var(--white); padding: 32px 28px;
  border: 1px solid var(--warm); transition: border-color 0.25s;
}
.value-card:hover { border-color: #FCC61D; }
.value-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: var(--espresso); margin-bottom: 10px;
}
.value-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* Timeline */
.timeline { position: relative; margin: 40px 0; }
.timeline::before {
  content: ''; position: absolute; left: 17px; top: 0; bottom: 0;
  width: 2px; background: var(--warm);
}
.timeline-item { display: flex; gap: 32px; margin-bottom: 36px; position: relative; }
.timeline-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--cream);
  flex-shrink: 0; display: flex; align-items: center;
  justify-content: center; font-size: 13px; color: var(--ivory);
  position: relative; z-index: 1;
}
.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 0.2em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 6px;
}
.timeline-text {
  font-size: 14px; color: var(--muted); line-height: 1.7;
}
.timeline-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400; color: var(--espresso);
  margin-bottom: 6px;
}

/* ── SUSTAINABILITY ─────── */
.sustain-stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin: 48px 0; }
.sustain-stat {
  text-align: center; padding: 28px 16px;
  background: var(--espresso); color: var(--ivory);
}
.sustain-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300; color: var(--gold);
  line-height: 1; margin-bottom: 8px;
}
.sustain-stat-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,247,247,0.55); line-height: 1.5; }

.pledge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.pledge-card {
  padding: 24px; background: var(--white);
  border: 1px solid var(--warm); display: flex; gap: 16px;
}
.pledge-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.pledge-title { font-size: 14px; font-weight: 500; color: var(--espresso); margin-bottom: 6px; }
.pledge-desc { font-size: 12px; color: var(--muted); line-height: 1.7; }

/* ── SHIPPING ─────────── */
.shipping-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin: 40px 0; }
.shipping-card {
  background: var(--white); border: 1px solid var(--warm);
  padding: 28px; transition: border-color 0.25s, transform 0.25s;
}
.shipping-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.shipping-card-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.shipping-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: var(--espresso); margin-bottom: 6px;
}
.shipping-card-time { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.shipping-card-price { font-size: 15px; font-weight: 500; color: var(--espresso); margin-bottom: 10px; }
.shipping-card-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

.faq-list { margin: 32px 0; }
.faq-item {
  border-bottom: 1px solid var(--warm);
  padding: 20px 0;
}
.faq-q {
  font-size: 15px; font-weight: 500; color: var(--espresso);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; user-select: none;
}
.faq-q::after { content: '+'; font-size: 20px; color: var(--gold); font-weight: 300; transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 13px; color: var(--muted); line-height: 1.8;
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 200px; padding-top: 14px; }

/* ── CONTACT ──────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }

.contact-info-block { margin-bottom: 36px; }
.contact-info-label {
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.contact-info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400; color: var(--espresso);
  line-height: 1.5;
}
.contact-info-value a { color: var(--espresso); text-decoration: none; transition: color 0.2s; }
.contact-info-value a:hover { color: var(--gold); }

.contact-social { display: flex; gap: 12px; margin-top: 8px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--warm);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; cursor: pointer; transition: all 0.2s;
  background: none; text-decoration: none; color: var(--muted);
}
.social-btn:hover { background: #3338A0; color: #ffffff; border-color: #3338A0; }

/* Contact form */
.contact-form { background: var(--white); padding: 40px; border: 1px solid var(--warm); }
.contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400; color: var(--espresso);
  margin-bottom: 28px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.form-input, .form-textarea, .form-select {
  padding: 12px 14px;
  border: 1px solid var(--warm); background: var(--ivory);
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--espresso); outline: none; transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23800020' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn {
  width: 100%; background: var(--espresso); color: var(--ivory);
  border: none; padding: 16px;
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; transition: background 0.25s; margin-top: 8px;
}
.submit-btn:hover { background: #FCC61D; color: #0f1230; }

.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 56px; height: 56px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin: 0 auto 16px;
}
.form-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; color: var(--espresso); margin-bottom: 8px;
}
.form-success-msg { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* Map placeholder */
.map-placeholder {
  height: 280px; background: var(--cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  border: 1px solid var(--warm); margin-top: 40px;
}
.map-placeholder-icon { font-size: 36px; opacity: 0.5; }
.map-placeholder-text { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* Active nav link */
.nav-links a.active { color: var(--gold); }

/* Page-specific responsive */
@media (max-width: 900px) {
  .page-hero { padding: 60px 24px 52px; }
  .page-body { padding: 48px 24px 72px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse > :first-child { order: unset; }
  .two-col.reverse > :last-child  { order: unset; }
  .value-grid { grid-template-columns: 1fr; }
  .sustain-stat-grid { grid-template-columns: 1fr 1fr; }
  .pledge-grid { grid-template-columns: 1fr; }
  .shipping-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   INNER PAGES — shared layout + component styles
═══════════════════════════════════════════════════════════ */

/* Page hero */
.page-hero {
  margin-top: 74px; background: #080d22;
  padding: 80px 80px 72px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(197,149,96,0.3) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-eyebrow {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.page-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--gold); }
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 64px); font-weight: 300;
  line-height: 1.05; color: var(--ivory); margin-bottom: 20px;
}
.page-title em { font-style: italic; color: #FCC61D; }
.page-subtitle { font-size: 15px; color: rgba(247,247,247,0.55); line-height: 1.9; max-width: 520px; }

/* Page body */
.page-body { max-width: 1100px; margin: 0 auto; padding: 72px 56px 100px; }
.content-section { margin-top: 72px; }

/* Prose text */
.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 38px); font-weight: 400;
  color: var(--espresso); margin-bottom: 16px; line-height: 1.2;
}
.prose h2 em { font-style: italic; color: #C59560; }
.prose p { font-size: 15px; color: var(--muted); line-height: 1.95; margin-bottom: 20px; font-weight: 300; }
.prose strong { color: var(--espresso); font-weight: 500; }

.divider { width: 48px; height: 2px; background: #FCC61D; margin: 28px 0 32px; }

/* Pull quote */
.pull-quote { border-left: 3px solid #FCC61D; padding: 24px 32px; margin: 48px 0; background: var(--cream); }
.pull-quote p { font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 2.2vw, 24px); font-style: italic; color: var(--espresso); line-height: 1.65; margin: 0; }
.pull-quote cite { display: block; margin-top: 12px; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); font-style: normal; }

/* Two column layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col--reverse > :first-child { order: 2; }
.two-col--reverse > :last-child  { order: 1; }

/* Visual panel */
.visual-panel {
  background: var(--cream); aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.visual-panel svg { width: 70%; height: 70%; opacity: 0.75; }
.visual-panel-label {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--espresso); color: #FCC61D;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; padding: 6px 12px;
}

/* Value cards grid */
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 8px; }
.value-card { background: var(--white); padding: 32px 28px; border: 1px solid var(--warm); transition: border-color 0.25s; }
.value-card:hover { border-color: #FCC61D; }
.value-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.value-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--espresso); margin-bottom: 10px; }
.value-desc { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* Timeline */
.timeline { position: relative; margin-top: 8px; }
.timeline::before { content: ''; position: absolute; left: 17px; top: 0; bottom: 0; width: 2px; background: var(--warm); }
.timeline-item { display: flex; gap: 28px; margin-bottom: 36px; position: relative; }
.timeline-dot {
  width: 36px; height: 36px; border-radius: 50%; background: #FCC61D;
  border: 3px solid var(--cream); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; position: relative; z-index: 1;
}
.timeline-year { font-size: 10px; letter-spacing: 0.2em; color: #C59560; text-transform: uppercase; margin-bottom: 5px; }
.timeline-heading { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 400; color: var(--espresso); margin-bottom: 6px; }
.timeline-text { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* Sustainability stats */
.sustain-stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.sustain-stat { text-align: center; padding: 28px 16px; background: var(--espresso); }
.sustain-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 300; color: #FCC61D; line-height: 1; margin-bottom: 8px; }
.sustain-stat-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(247,247,247,0.5); line-height: 1.6; }

/* Pledge grid */
.pledge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pledge-card { padding: 24px; background: var(--white); border: 1px solid var(--warm); display: flex; gap: 16px; }
.pledge-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.pledge-title { font-size: 14px; font-weight: 500; color: var(--espresso); margin-bottom: 6px; }
.pledge-desc { font-size: 12px; color: var(--muted); line-height: 1.75; }

/* Shipping cards */
.shipping-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.shipping-card { background: var(--white); border: 1px solid var(--warm); padding: 28px; transition: border-color 0.25s, transform 0.25s; }
.shipping-card:hover { border-color: #FCC61D; transform: translateY(-4px); }
.shipping-card-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.shipping-card-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--espresso); margin-bottom: 4px; }
.shipping-card-time { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: #C59560; margin-bottom: 8px; }
.shipping-card-price { font-size: 14px; font-weight: 500; color: var(--espresso); margin-bottom: 10px; }
.shipping-card-desc { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* FAQ accordion */
.faq-list { margin-top: 8px; }
.faq-item { border-bottom: 1px solid var(--warm); }
.faq-q { font-size: 15px; font-weight: 400; color: var(--espresso); cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; user-select: none; gap: 16px; }
.faq-q::after { content: '+'; font-size: 22px; color: #FCC61D; font-weight: 300; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: 13px; color: var(--muted); line-height: 1.85; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s; }
.faq-item.open .faq-a { max-height: 220px; padding-bottom: 20px; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 72px; align-items: start; }
.contact-info-block { margin-bottom: 32px; }
.contact-info-label { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: #C59560; margin-bottom: 8px; }
.contact-info-value { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; color: var(--espresso); line-height: 1.6; }
.contact-info-value a { color: var(--espresso); text-decoration: none; transition: color 0.2s; }
.contact-info-value a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 10px; margin-top: 8px; }
.social-btn { width: 38px; height: 38px; border: 1px solid var(--warm); display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; transition: all 0.2s; background: none; text-decoration: none; color: var(--muted); }
.social-btn:hover { background: #3338A0; color: #ffffff; border-color: #3338A0; }

/* Contact form */
.contact-form { background: var(--white); padding: 40px; border: 1px solid var(--warm); }
.contact-form-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--espresso); margin-bottom: 28px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.form-input, .form-textarea, .form-select {
  padding: 12px 14px; border: 1px solid var(--warm); background: var(--ivory);
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--espresso);
  outline: none; transition: border-color 0.2s; width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23800020' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn { width: 100%; background: var(--espresso); color: var(--ivory); border: none; padding: 16px; font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: background 0.25s; margin-top: 4px; }
.submit-btn:hover { background: #FCC61D; color: #0f1230; }
.form-success { display: none; text-align: center; padding: 48px 20px; }
.form-success.show { display: block; }
.form-success-icon { width: 56px; height: 56px; background: #FCC61D; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #0f1230; margin: 0 auto 16px; }
.form-success-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--espresso); margin-bottom: 10px; }
.form-success-msg { font-size: 13px; color: var(--muted); line-height: 1.8; }

/* Map placeholder */
.map-placeholder { height: 260px; background: var(--cream); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; border: 1px solid var(--warm); margin-top: 52px; }
.map-placeholder-icon { font-size: 36px; opacity: 0.45; }
.map-placeholder-text { font-size: 13px; color: var(--muted); letter-spacing: 0.08em; }

/* Shared buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--espresso); color: var(--ivory);
  padding: 14px 32px; text-decoration: none;
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.25s; margin-top: 20px; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold); }
.btn-gold {
  display: inline-flex; align-items: center;
  background: #FCC61D; color: #0f1230 !important; color: var(--ivory);
  padding: 14px 32px; text-decoration: none;
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: opacity 0.2s; white-space: nowrap; border: none; cursor: pointer;
}
.btn-gold:hover { opacity: 0.85; }

/* CTA strip */
.cta-strip {
  background: var(--espresso); padding: 48px 52px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; margin-top: 72px;
}
.cta-strip-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--ivory); margin-bottom: 8px; }
.cta-strip-title em { font-style: italic; color: #FCC61D; }
.cta-strip-sub { font-size: 13px; color: rgba(247,247,247,0.5); line-height: 1.7; }

/* Nav logo as link */
a.nav-logo { text-decoration: none; }
.nav-shop-btn {
  background: var(--espresso); color: var(--ivory);
  padding: 10px 24px; font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; transition: background 0.25s; display: inline-block;
}
.nav-shop-btn:hover { background: var(--gold); }
.nav-links a.active { color: var(--gold); }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .page-hero { padding: 56px 24px 48px; }
  .page-body { padding: 48px 24px 72px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col--reverse > :first-child { order: unset; }
  .two-col--reverse > :last-child  { order: unset; }
  .value-grid { grid-template-columns: 1fr; }
  .sustain-stat-grid { grid-template-columns: 1fr 1fr; }
  .pledge-grid { grid-template-columns: 1fr; }
  .shipping-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .cta-strip { padding: 36px 28px; flex-direction: column; align-items: flex-start; }
}
