/* ========================================
   Premium Vintage Slot Machines — Stylesheet
   Palette: burgundy / antique gold / brass / deep forest
   Fonts: Playfair Display (serif headings) + Inter (body)
   ======================================== */

:root {
  --bg: #1a1310;
  --bg-2: #221913;
  --bg-3: #2c1f17;
  --card: #2a1f17;
  --card-2: #38291e;
  --line: #4a372a;
  --primary: #b08d4a;
  --primary-2: #d4af6a;
  --gold: #e8b86c;
  --gold-light: #f5d896;
  --burgundy: #6b1f2e;
  --burgundy-light: #8a2a3d;
  --text: #f0e4d0;
  --text-dim: #c9b896;
  --muted: #8a7a60;
  --border: #4a372a;
  --shadow: rgba(0,0,0,0.5);
  --paypal-yellow: #FFC439;
  --paypal-blue: #003087;
  --inquiry: #6b1f2e;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

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

a { color: var(--gold); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold-light); }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ===== Layout ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Top Bar ===== */
.topbar {
  background: linear-gradient(180deg, #0d0907 0%, #1a1310 100%);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-dim);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.topbar-left { display: flex; gap: 20px; }
.topbar-right { display: flex; gap: 16px; align-items: center; }

/* ===== Header / Navigation ===== */
.site-header {
  background: linear-gradient(180deg, rgba(26,19,16,0.95), rgba(26,19,16,0.85));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}
.brand-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.cart-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--burgundy);
  color: var(--gold-light);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s ease, transform 0.15s ease;
}
.cart-button:hover { background: var(--burgundy-light); transform: translateY(-1px); }
.cart-badge {
  background: var(--gold);
  color: var(--burgundy);
  padding: 1px 7px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  min-width: 22px;
  text-align: center;
}

.mobile-toggle { display: none; background: none; padding: 8px; color: var(--gold); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 600px;
  background:
    linear-gradient(rgba(26,19,16,0.55), rgba(26,19,16,0.85)),
    url('../images/machine-1-liberty-bell.png') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(176,141,74,0.18), transparent 70%),
    radial-gradient(circle at top, rgba(107,31,46,0.4), transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(38px, 6vw, 64px);
  color: var(--gold-light);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.hero-title .accent { color: var(--text); font-style: italic; }
.hero-subtitle {
  font-size: 18px;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.95;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold) 0%, var(--primary) 100%);
  color: var(--bg);
  box-shadow: 0 4px 12px rgba(176,141,74,0.3);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(176,141,74,0.4);
  color: var(--bg);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
}
.btn-burgundy {
  background: var(--burgundy);
  color: var(--gold-light);
  box-shadow: 0 4px 12px rgba(107,31,46,0.3);
}
.btn-burgundy:hover {
  background: var(--burgundy-light);
  color: var(--gold-light);
  transform: translateY(-1px);
}

/* ===== Section ===== */
.section {
  padding: 80px 0;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--gold-light);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .section-subtitle { margin-left: auto; margin-right: auto; }

.alt-bg { background: var(--bg-2); }

/* ===== Trust Strip ===== */
.trust-strip {
  background: var(--bg-2);
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.trust-icon { color: var(--gold); }
.trust-label {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

/* ===== Product Grid ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  border-color: var(--gold);
}
.product-image-wrap {
  position: relative;
  aspect-ratio: 9/16;
  background: var(--bg-3);
  overflow: hidden;
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--burgundy);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
}
.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-era {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.product-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  color: var(--gold-light);
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.3;
}
.product-desc {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 16px;
  flex: 1;
  line-height: 1.5;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.product-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}
.product-price-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: -2px;
}
.btn-add-cart {
  padding: 10px 18px;
  background: var(--burgundy);
  color: var(--gold-light);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-add-cart:hover {
  background: var(--burgundy-light);
  transform: translateY(-1px);
}
.btn-add-cart.added {
  background: var(--gold);
  color: var(--bg);
}

/* ===== Process / Heritage Section ===== */
.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.heritage-image {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.heritage-image img { width: 100%; height: 100%; object-fit: cover; }
.heritage-text h2 { color: var(--gold-light); }
.heritage-text p { color: var(--text-dim); margin-bottom: 16px; font-size: 16px; }
.heritage-list { list-style: none; margin-top: 20px; }
.heritage-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text);
}
.heritage-list .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
}

/* ===== Testimonial / Trust ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 18px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 80px;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
}
.testimonial-text {
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.testimonial-name {
  font-weight: 600;
  color: var(--gold-light);
  font-size: 14px;
}
.testimonial-role {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.3px;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  background: var(--card);
  color: var(--gold-light);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s ease;
}
.faq-question:hover { background: var(--card-2); }
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 22px;
}
.faq-answer p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== Cart Drawer ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: 100%;
  max-width: 460px;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-3);
}
.cart-header h3 {
  font-size: 22px;
  color: var(--gold-light);
  font-family: 'Playfair Display', Georgia, serif;
}
.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--card);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.cart-close:hover { background: var(--burgundy); color: var(--gold-light); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-dim);
}
.cart-empty-icon {
  margin: 0 auto 16px;
  color: var(--muted);
}
.cart-empty-text { font-size: 15px; line-height: 1.6; }

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 64px;
  height: 80px;
  background: var(--card);
  border-radius: 6px;
  overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { display: flex; flex-direction: column; gap: 4px; }
.cart-item-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  color: var(--gold-light);
  line-height: 1.3;
}
.cart-item-price {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: var(--card);
  color: var(--gold);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: background 0.2s ease;
}
.qty-btn:hover { background: var(--burgundy); color: var(--gold-light); }
.qty-num {
  min-width: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-item-total { font-size: 16px; font-weight: 600; color: var(--gold); }
.cart-item-remove {
  font-size: 12px;
  color: var(--muted);
  background: none;
  padding: 0;
  letter-spacing: 0.3px;
}
.cart-item-remove:hover { color: var(--gold-light); }

.cart-footer {
  border-top: 1px solid var(--line);
  padding: 20px 24px;
  background: var(--bg-3);
}
.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-dim);
}
.summary-row.total {
  font-size: 19px;
  font-weight: 700;
  color: var(--gold-light);
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.summary-row.total .val { font-family: 'Playfair Display', Georgia, serif; }

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background 0.2s ease, transform 0.15s ease;
}
.cart-checkout-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

.paypal-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: var(--paypal-yellow);
  color: var(--paypal-blue);
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.paypal-checkout-btn:hover { background: #e6b030; transform: translateY(-1px); }

.paypal-divider {
  text-align: center;
  position: relative;
  margin: 4px 0;
  color: var(--muted);
  font-size: 12px;
}
.paypal-divider::before, .paypal-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--border);
}
.paypal-divider::before { left: 0; }
.paypal-divider::after  { right: 0; }

/* ===== Inquiry Modal (Checkout) ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-3);
}
.modal-header h2 {
  font-size: 24px;
  color: var(--gold-light);
  font-family: 'Playfair Display', Georgia, serif;
}
.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--card);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--burgundy); color: var(--gold-light); }

.modal-body { padding: 28px; }

/* Order summary in modal */
.order-summary {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}
.order-summary h3 {
  font-size: 16px;
  color: var(--gold-light);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.order-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-dim);
}
.order-summary-row strong { color: var(--text); }
.order-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row.full { grid-column: 1 / -1; }
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.3px;
}
.form-input, .form-textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s ease;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-textarea { min-height: 80px; resize: vertical; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.consent-row input[type="checkbox"] { margin-top: 3px; accent-color: var(--gold); }
.consent-row label {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  margin-top: 18px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--primary) 100%);
  color: var(--bg);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit:hover {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-1px);
}

/* Inquiry success state */
.inquiry-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.inquiry-success h3 {
  font-size: 28px;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.inquiry-success p {
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 8px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.inquiry-id {
  display: inline-block;
  margin: 20px auto;
  padding: 8px 16px;
  background: var(--card);
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--gold);
  font-family: 'Courier New', monospace;
  font-size: 14px;
}

/* ===== Heritage / Process Tiles ===== */
.process-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.process-tile {
  text-align: center;
  padding: 24px 16px;
}
.process-tile-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-tile-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.process-tile h4 {
  font-size: 18px;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.process-tile p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ===== Newsletter / Inquiry CTA ===== */
.inquiry-cta {
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--burgundy) 200%);
  border-radius: 12px;
  padding: 56px 48px;
  text-align: center;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.inquiry-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(176,141,74,0.15), transparent 65%);
  pointer-events: none;
}
.inquiry-cta h2 { color: var(--gold-light); margin-bottom: 14px; position: relative; }
.inquiry-cta p { color: var(--text); max-width: 620px; margin: 0 auto 28px; position: relative; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== Footer ===== */
.site-footer {
  background: linear-gradient(180deg, var(--bg-2) 0%, #0d0907 100%);
  border-top: 1px solid var(--line);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h4 {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: 'Playfair Display', Georgia, serif;
}
.footer-brand p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.footer-brand .cert-line {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 12px;
}
.footer-col h5 {
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-dim);
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  color: var(--muted);
  font-size: 13px;
}
.footer-payments {
  display: flex;
  gap: 12px;
  align-items: center;
}
.payment-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

/* ===== Newsletter inline ===== */
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 16px auto 0;
}
.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
}
.newsletter-input:focus { outline: none; border-color: var(--gold); }
.newsletter-input::placeholder { color: var(--muted); }
.newsletter-submit {
  padding: 12px 20px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  border-radius: 6px;
  font-size: 14px;
}

/* ===== Toast Notifications ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--bg-3);
  border: 1px solid var(--gold);
  border-left-width: 4px;
  color: var(--text);
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideUp 0.25s ease;
  min-width: 240px;
}
.toast-icon { color: var(--gold); flex-shrink: 0; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .heritage-grid { grid-template-columns: 1fr; gap: 40px; }
  .heritage-image { max-height: 500px; }
  .process-tiles { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px;
    gap: 14px;
  }
  .mobile-toggle { display: flex; }
  .hero { min-height: 480px; padding: 60px 24px; }
  .section { padding: 56px 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .topbar-inner { flex-direction: column; gap: 4px; }
  .process-tiles { grid-template-columns: 1fr; }
  .inquiry-cta { padding: 40px 24px; }
}
