/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background: #fff8f0;
  color: #333;
  min-height: 100vh;
}

:root {
  --clr-accent: #e05c28;      /* Orange */
  --clr-accent2: #b5451b;     /* Dark brown */
  --clr-muted: #888;          /* Gray */
  --clr-border: #e0c8a8;      /* Light tan border */
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }



/* ═══════════════ ANNOUNCEMENT STRIP ═══════════════ */
.announcement-strip {
  background: #ffffff;
  padding: 1px 0;
  overflow: hidden;
  white-space: nowrap;
 
}

.announcement-track {
  display: inline-flex;
  animation: announceScroll 35s linear infinite;
}

.announcement-track span {
  font-size: 0.82rem;
  font-weight: 500;
  color: #e05c28;
  padding: 0 60px;
  letter-spacing: 0.3px;
}

.announcement-track span::before {
  content: '';
  margin-right: 60px;
  color: #e05c28;
}

@keyframes announceScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* Pause on hover */
.announcement-strip:hover .announcement-track {
  animation-play-state: paused;
}


/* ═══════════════════════════════════════════
   HEADER / NAVBAR
═══════════════════════════════════════════ */
header {
  background: linear-gradient(135deg, #3b1a08, #4b1f09);
  color: white;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo h2 { font-size: 1.4rem; font-weight: 700; letter-spacing: 0.5px; }
.logo h2 span { color: #e05c28; }
.logo p { font-size: 0.72rem; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; }

.nav-links { list-style: none; display: flex; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #e05c28; }

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

.nav-actions select {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 0.85rem;
  cursor: pointer;
}
.nav-actions select option { background: #1a0a00; color: white; }

.btn-primary {
  padding: 9px 22px;
  background: #e05c28;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: #b5451b; }
.btn-primary:active { transform: scale(0.97); }

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 92vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 40%, rgba(10,4,0,0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text { max-width: 580px; }

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* ═══════════════════════════════════════════
   PRODUCTS SECTION (STOREFRONT)
═══════════════════════════════════════════ */
.spice-section {
  padding: 72px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a0a00;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.underline {
  display: block;
  width: 60px;
  height: 4px;
  background: #e05c28;
  margin: 0 auto;
  border-radius: 2px;
}

.spice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 28px;
}

.spice-card {
  background: white;
  border-radius: 14px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.spice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}

.spice-img-wrapper {
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #f5ebe0;
}
.spice-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.spice-card:hover .spice-img-wrapper img { transform: scale(1.06); }

.spice-body { padding: 18px; }
.spice-body h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }

.spice-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #b5451b;
  margin-bottom: 8px;
}
.spice-unit { font-size: 0.8rem; font-weight: 400; color: #888; }

.spice-desc {
  font-size: 0.87rem;
  color: #666;
  line-height: 1.55;
  margin-bottom: 16px;
}

.btn-enquire {
  width: 100%;
  padding: 10px;
  background: #e05c28;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-enquire:hover { background: #b5451b; }

/* ═══════════════════════════════════════════
   ADMIN LAYOUT
═══════════════════════════════════════════ */
.admin-main {
  max-width: 1000px;
  margin: 36px auto;
  padding: 0 20px;
}

.admin-main h2 {
  font-size: 1.3rem;
  color: #b5451b;
  margin-bottom: 20px;
  border-bottom: 2px solid #f0d5c8;
  padding-bottom: 8px;
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 12px; }
  .nav-links.active { display: flex; }
  .hamburger { display: block; }
  .nav-container { flex-wrap: wrap; }
  .hero-text h1 { font-size: 1.8rem; }
}

/* ── PRODUCT GRID: 2 columns on tablet ── */
@media (max-width: 700px) {
  .spice-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .spice-img-wrapper { height: 140px; }
  .spice-body { padding: 12px; }
  .spice-body h3 { font-size: 0.9rem; }
  .spice-price { font-size: 0.95rem; }
  .spice-desc { display: none; }
  .btn-enquire { font-size: 0.78rem; padding: 8px; }
}

/* ── PRODUCT GRID: still 2 columns on small mobile ── */
@media (max-width: 400px) {
  .spice-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .spice-section { padding: 48px 12px; }
}

@media (max-width: 600px) {
  .admin-card { flex-direction: column; }
  .card-actions { flex-direction: row; }
  .admin-card img { width: 100%; height: 180px; }
  .modal-buttons { flex-direction: column; }
  .admin-form { padding: 20px 16px; }
}

/* ═══════════════════════════════════════════
   ADMIN FORM
═══════════════════════════════════════════ */
.admin-form {
  background: white;
  padding: 28px 32px;
  border-radius: 14px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.admin-form label {
  display: block;
  margin: 14px 0 5px;
  font-weight: 600;
  font-size: 0.88rem;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.admin-form input[type="text"],
.admin-form input[type="number"],
.admin-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e0d0c8;
  border-radius: 8px;
  font-size: 0.97rem;
  font-family: inherit;
  background: #fffaf7;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.admin-form input:focus,
.admin-form textarea:focus {
  border-color: #b5451b;
  box-shadow: 0 0 0 3px rgba(181,69,27,0.12);
}

.admin-form textarea { height: 90px; resize: vertical; }
.admin-form input[type="file"] { padding: 8px 0; font-size: 0.9rem; }

.form-buttons { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }

.form-buttons button {
  padding: 11px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.97rem;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.2s, transform 0.1s;
}
.form-buttons button:active { transform: scale(0.97); }

#submit-btn { background: #b5451b; color: white; }
#submit-btn:hover { background: #8c3214; }
#submit-btn:disabled { background: #ccc; cursor: not-allowed; }

#cancel-btn { background: #f0f0f0; color: #555; }
#cancel-btn:hover { background: #e0e0e0; }

/* ═══════════════════════════════════════════
   ADMIN PRODUCT CARDS
═══════════════════════════════════════════ */
.admin-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: white;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  margin-bottom: 16px;
  transition: box-shadow 0.2s;
}
.admin-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.12); }

.admin-card img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  background: #f5ebe0;
  border: 1px solid #f0d5c8;
}

.card-info { flex: 1; }
.card-info h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 4px; }
.card-price { font-size: 1rem; font-weight: 700; color: #b5451b; margin-bottom: 4px; }
.card-unit  { font-size: 0.82rem; font-weight: 400; color: #888; }
.card-desc  { font-size: 0.86rem; color: #666; line-height: 1.5; margin-top: 4px; }

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.btn-edit, .btn-delete {
  padding: 8px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.btn-edit:active, .btn-delete:active { transform: scale(0.96); }
.btn-edit   { background: #2563eb; color: white; }
.btn-edit:hover { background: #1d4ed8; }
.btn-delete { background: #dc2626; color: white; }
.btn-delete:hover { background: #b91c1c; }

/* ═══════════════════════════════════════════
   DELETE MODAL
═══════════════════════════════════════════ */
#delete-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
}

.modal-box {
  position: relative;
  background: white;
  border-radius: 14px;
  padding: 32px 28px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
  animation: popIn 0.2s ease;
}

@keyframes popIn {
  from { transform: scale(0.88) translateY(-12px); opacity: 0; }
  to   { transform: scale(1) translateY(0);         opacity: 1; }
}

.modal-box h3 { font-size: 1.2rem; margin-bottom: 14px; }
.modal-box p  { margin-bottom: 6px; line-height: 1.55; }
.modal-buttons { display: flex; gap: 12px; margin-top: 24px; }

.btn-danger {
  padding: 10px 24px;
  background: #dc2626;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.2s;
}
.btn-danger:hover { background: #b91c1c; }
.btn-danger:disabled { background: #ccc; cursor: not-allowed; }

.btn-cancel {
  padding: 10px 24px;
  background: #f0f0f0;
  color: #555;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.2s;
}
.btn-cancel:hover { background: #e0e0e0; }

/* ═══════════════════════════════════════════
   STATES
═══════════════════════════════════════════ */
.loading, .empty-state, .error-state {
  text-align: center;
  padding: 48px 24px;
  font-size: 1rem;
  color: #888;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  grid-column: 1 / -1;
}
.error-state { color: #dc2626; }
.error-state small { display: block; margin-top: 8px; color: #aaa; font-size: 0.82rem; }

/* ═══════════════════════════════════════════
   TOAST
═══════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #1a0a00;
  color: white;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  z-index: 9999;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 12px; }
  .nav-links.active { display: flex; }
  .hamburger { display: block; }
  .nav-container { flex-wrap: wrap; }
  .hero-text h1 { font-size: 1.8rem; }
}

@media (max-width: 600px) {
  .admin-card { flex-direction: column; }
  .card-actions { flex-direction: row; }
  .admin-card img { width: 100%; height: 180px; }
  .modal-buttons { flex-direction: column; }
  .admin-form { padding: 20px 16px; }
}

/* ═══════════════════════════════════════════
   about section
═══════════════════════════════════════════ */

.about-section {
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

/* Ambient background glows */
.about-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.about-bg-glow--left {
  top: -200px;
  left: -300px;
  background: radial-gradient(circle, rgba(224,92,40,0.07) 0%, transparent 70%);
}
.about-bg-glow--right {
  bottom: -200px;
  right: -300px;
  background: radial-gradient(circle, rgba(201,135,58,0.06) 0%, transparent 70%);
}

.about-section .container { position: relative; z-index: 1; }

/* ─── HERITAGE ROW ────────────────────────────────────── */
.about-heritage {
  display: grid;
  grid-template-columns: 100px 1fr 280px;
  gap: 48px;
  align-items: start;
  margin-bottom: 80px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(201,135,58,0.04));
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

/* Decorative corner accent */
.about-heritage::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--clr-accent), var(--clr-accent2), transparent);
  border-radius: 4px 0 0 4px;
}

.about-heritage__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 4px;
}
.about-heritage__label span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-muted);
  font-weight: 600;
}
.about-heritage__label strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
  margin-top: 2px;
}

.about-heritage__body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.about-heritage__body p {
  font-size: 0.92rem;
  color: var(--clr-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-heritage__body p strong { color: var(--clr-text); font-weight: 600; }
.about-heritage__body p em {
  font-style: italic;
  color: var(--clr-accent2);
}

/* Timeline */
.about-heritage__timeline {
  border-left: 1px solid var(--clr-border);
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.timeline-item {
  position: relative;
}
.timeline-dot {
  position: absolute;
  left: -29px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-card);
  border: 2px solid var(--clr-gold);
  transition: transform var(--transition), background var(--transition);
}
.timeline-dot--active {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  box-shadow: 0 0 12px rgba(224,92,40,0.5);
}
.timeline-item:hover .timeline-dot {
  transform: scale(1.4);
  background: var(--clr-accent);
}
.timeline-year {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-accent2);
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.timeline-item p {
  font-size: 0.82rem;
  color: var(--clr-muted);
  line-height: 1.55;
}

/* ─── 4-COLUMN ABOUT CARDS ───────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.about-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.about-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--clr-accent), var(--clr-accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  border-color: rgba(201,135,58,0.35);
}
.about-card:hover::after { transform: scaleX(1); }

.about-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: inline-block;
  transition: transform var(--transition);
}
.about-card:hover .about-card__icon { transform: rotate(-8deg) scale(1.15); }

.about-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}
.about-card > p {
  font-size: 0.86rem;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 14px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.about-list li {
  font-size: 0.82rem;
  color: var(--clr-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.about-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.55rem;
  color: var(--clr-accent);
  line-height: 1.8;
}

/* ─── VALUES STRIP ───────────────────────────────────── */
.about-values {
  margin-bottom: 72px;
  padding: 48px;
  background: rgba(224,92,40,0.04);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
}

.about-values__heading .section-tag { margin-bottom: 10px; }
.about-values__heading h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-text);
}

.about-values__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.value-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 20px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-text);
  cursor: default;
  transition: all var(--transition);
}
.value-pill:hover {
  background: rgba(224,92,40,0.12);
  border-color: var(--clr-accent);
  color: var(--clr-accent2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,92,40,0.15);
}
.value-icon { font-size: 1.1rem; }

/* ─── BOTTOM TWO-COLUMN ROW ──────────────────────────── */
.about-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* More Than Ingredients */
.about-ingredients {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 36px;
  height: 100%;
}
.about-ingredients h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: 18px;
}
.about-ingredients p {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.about-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--clr-border);
}
.cert-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-text);
  padding: 5px 13px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
}
.cert-badge:hover {
  background: rgba(224,92,40,0.1);
  border-color: var(--clr-accent);
  color: var(--clr-accent2);
}

/* Quote card */
.about-quote {
  background: linear-gradient(145deg, rgba(224,92,40,0.08), rgba(201,135,58,0.04));
  border: 1px solid rgba(224,92,40,0.2);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  height: 100%;
}

blockquote { position: relative; }
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  line-height: 0.6;
  color: var(--clr-accent);
  opacity: 0.35;
  margin-bottom: 8px;
  user-select: none;
}
blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.7;
  margin-bottom: 22px;
}
blockquote footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
blockquote footer strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-accent2);
}
blockquote footer span {
  font-size: 0.78rem;
  color: var(--clr-muted);
}

.about-quote__stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px;
  background: #d4d4d4;
  border-radius: 12px;
  border: 1px solid var(--clr-border);
}
.qs-item { text-align: center; }
.qs-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--clr-accent2);
  line-height: 1;
}
.qs-item span {
  font-size: 0.7rem;
  color: var(--clr-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}
.qs-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
}

/* ─── ABOUT RESPONSIVE ───────────────────────────────── */

/* Tablet landscape */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .about-heritage { grid-template-columns: 80px 1fr; }
  .about-heritage__timeline { display: none; }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .about-heritage {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }
  .about-heritage__label {
    flex-direction: row;
    gap: 12px;
    align-items: baseline;
  }
  .about-heritage__label strong { font-size: 2rem; }

  .about-values {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }

  .about-bottom-row { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 640px) {
  .about-section { padding: 72px 0 60px; }

  .about-grid { grid-template-columns: 1fr; gap: 16px; }

  .about-heritage { padding: 24px 18px; }

  .about-card { padding: 22px 18px; }

  .about-values { padding: 24px 18px; }
  .about-values__grid { gap: 8px; }
  .value-pill { font-size: 0.78rem; padding: 8px 14px; }

  .about-ingredients,
  .about-quote { padding: 24px 18px; }

  blockquote p { font-size: 1.1rem; }

  .about-certifications { gap: 8px; }
  .cert-badge { font-size: 0.7rem; padding: 4px 10px; }

  .about-quote__stats { padding: 16px 10px; }
  .qs-item strong { font-size: 1.4rem; }
}


/* ═══════════════════════════════════════════════════════════
   CERTIFICATIONS SECTION — paste at bottom of Style.css
═══════════════════════════════════════════════════════════ */

.cert-section {
  padding: 110px 0 90px;
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--clr-border);
}

.cert-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.cert-glow--tl {
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(201,135,58,0.09) 0%, transparent 70%);
}
.cert-glow--br {
  bottom: -200px; right: -200px;
  background: radial-gradient(circle, rgba(224,92,40,0.07) 0%, transparent 70%);
}
.cert-section .container { position: relative; z-index: 1; }

/* ── Stamp styles (shared) ──────────────────────────────── */
.cert-stamp {
  display: inline-flex;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}
.cert-stamp--gold   { background: linear-gradient(135deg,#c9873a,#f5a623); color:#1a0a00; box-shadow: 0 2px 12px rgba(201,135,58,0.35); }
.cert-stamp--green  { background: rgba(34,197,94,0.12);  color:#4ade80; border:1px solid rgba(74,222,128,0.3); }
.cert-stamp--blue   { background: rgba(59,130,246,0.12); color:#60a5fa; border:1px solid rgba(96,165,250,0.3); }
.cert-stamp--orange { background: rgba(224,92,40,0.14);  color:#f97316; border:1px solid rgba(249,115,22,0.3); }

/* ── Trust badges row ──────────────────────────────────── */
.cert-trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(201,135,58,0.07), rgba(224,92,40,0.04));
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 24px 36px;
  margin-bottom: 48px;
  gap: 12px;
  flex-wrap: wrap;
}
.cert-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 170px;
}
.cert-trust-icon {
  font-size: 1.65rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.cert-trust-item:hover .cert-trust-icon { transform: rotate(-8deg) scale(1.15); }
.cert-trust-item strong {
  display: block;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 2px;
}
.cert-trust-item span {
  font-size: 0.75rem;
  color: var(--clr-muted);
  line-height: 1.4;
}
.cert-trust-divider {
  width: 1px; height: 44px;
  background: var(--clr-border);
  flex-shrink: 0;
}

/* ── FSSAI Header Card ─────────────────────────────────── */
.cert-fssai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(135deg, rgba(26,107,46,0.12), rgba(201,135,58,0.07));
  border: 1px solid rgba(26,107,46,0.35);
  border-radius: 16px;
  padding: 28px 36px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.cert-fssai-header::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #1a6b2e, #4ade80, transparent);
  border-radius: 4px 0 0 4px;
}

.cert-fssai-header__left {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  flex-wrap: wrap;
}
.fssai-logo-wrap svg {
  width: 150px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.cert-fssai-header__info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.cert-fssai-header__field { display: flex; flex-direction: column; gap: 3px; }
.cfh-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.cfh-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: 0.5px;
}
.cfh-value--green { color: #4ade80; }

.cert-fssai-header__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Seal */
.cert-seal-wrap { position: relative; }
.cert-seal__outer {
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(201,135,58,0.5);
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,135,58,0.06);
  animation: sealSpin 24s linear infinite;
  position: relative;
}
.cert-seal__outer::before {
  content: '· GOVERNMENT OF INDIA · CERTIFIED ·';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  font-size: 5.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: rgba(201,135,58,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4px;
  word-spacing: 2px;
}
.cert-seal__inner {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,135,58,0.35);
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,135,58,0.1);
}
.cert-seal__text {
  font-size: 7px;
  font-weight: 800;
  color: var(--clr-gold);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.5px;
}
@keyframes sealSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Section subheading ────────────────────────────────── */
.cert-placeholders-heading {
  text-align: center;
  margin-bottom: 32px;
}
.cert-placeholders-heading h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 8px;
}
.cert-placeholders-heading p {
  font-size: 0.86rem;
  color: var(--clr-muted);
}

/* ── THREE CERTIFICATE CARDS ───────────────────────────── */
.cert-three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

.cert-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 30px rgba(224,92,40,0.1);
  border-color: rgba(201,135,58,0.4);
}

/* Card top row */
.cert-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--clr-border);
  position: relative;
}
.cert-card__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(201,135,58,0.2);
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}
.cert-card__info { flex: 1; }
.cert-card__info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 5px;
}

/* Ribbon */
.cert-card__ribbon {
  position: absolute;
  top: 12px; right: -24px;
  background: linear-gradient(135deg, #c9873a, #e05c28);
  color: white;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 32px;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.cert-card__ribbon--blue   { background: linear-gradient(135deg, #1d4ed8, #3b82f6); }
.cert-card__ribbon--orange { background: linear-gradient(135deg, #c2410c, #ea580c); }

/* Placeholder box */
.cert-card__placeholder {
  position: relative;
  margin: 16px;
  border-radius: 10px;
  border: 1.5px dashed rgba(201,135,58,0.3);
  background: rgba(255,255,255,0.015);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.cert-card__placeholder:hover {
  border-color: var(--clr-accent);
  background: rgba(224,92,40,0.03);
}

/* Watermark */
.cert-card__wm {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: rgba(201,135,58,0.05);
  letter-spacing: 6px;
  pointer-events: none;
  user-select: none;
}

.cert-card__ph-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px 16px;
}
.cert-card__ph-icon {
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}
.cert-card__ph-inner p {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--clr-muted);
  margin-bottom: 5px;
}
.cert-card__ph-inner span {
  font-size: 0.68rem;
  color: rgba(245,237,228,0.25);
  display: block;
}

/* Actual image (when certificate is uploaded) */
.cert-actual-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

/* Corner ornaments */
.cert-card__corner {
  position: absolute;
  font-size: 0.6rem;
  color: rgba(201,135,58,0.35);
  line-height: 1;
}
.cert-card__corner--tl { top: 7px;  left: 9px; }
.cert-card__corner--tr { top: 7px;  right: 9px; }
.cert-card__corner--bl { bottom: 7px; left: 9px; }
.cert-card__corner--br { bottom: 7px; right: 9px; }

/* Card footer */
.cert-card__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-top: 1px solid var(--clr-border);
  background: rgba(0,0,0,0.2);
}
.cert-card__footer-seal { flex-shrink: 0; opacity: 0.8; }
.cert-card__footer span {
  font-size: 0.71rem;
  color: var(--clr-muted);
  line-height: 1.5;
}

/* ── Bottom grid: cert info cards + quote ──────────────── */
.cert-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  margin-bottom: 52px;
  align-items: start;
}

.cert-badges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cert-badge-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.cert-badge-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--clr-accent), var(--clr-accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.cert-badge-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.45); border-color: rgba(201,135,58,0.3); }
.cert-badge-card:hover::before { transform: scaleX(1); }

.cert-badge-card__icon { font-size: 1.5rem; }
.cert-badge-card__body h4 { font-size: 0.86rem; font-weight: 700; color: var(--clr-text); margin-bottom: 5px; }
.cert-badge-card__body p  { font-size: 0.75rem; color: var(--clr-muted); line-height: 1.55; margin-bottom: 6px; }
.cert-badge-card__num     { font-size: 0.67rem; font-weight: 600; color: var(--clr-accent2); letter-spacing: 0.5px; font-family: monospace; }

/* Trust quote */
.cert-trust-quote {
  background: linear-gradient(145deg, rgba(224,92,40,0.07), rgba(201,135,58,0.04));
  border: 1px solid rgba(224,92,40,0.18);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  height: 100%;
}
.cert-trust-quote__bar {
  width: 4px;
  min-height: 80px;
  background: linear-gradient(to bottom, var(--clr-accent), var(--clr-accent2));
  border-radius: 4px;
  flex-shrink: 0;
}
.cert-trust-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.75;
  margin-bottom: 14px;
}
.cert-trust-quote strong {
  font-size: 0.76rem;
  color: var(--clr-accent2);
  font-style: normal;
  font-family: 'Poppins', sans-serif;
  display: block;
}

/* ── Stats strip ───────────────────────────────────────── */
.cert-stats-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  background: linear-gradient(135deg, rgba(201,135,58,0.08), rgba(224,92,40,0.05));
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 32px 40px;
}
.cert-stat { text-align: center; }
.cert-stat__number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--clr-accent2);
  line-height: 1;
}
.cert-stat__label {
  font-size: 0.68rem;
  color: var(--clr-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}
.cert-stat-div { width: 1px; height: 42px; background: var(--clr-border); }

/* ══ RESPONSIVE ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cert-three-grid   { grid-template-columns: 1fr 1fr; }
  .cert-bottom-grid  { grid-template-columns: 1fr; }
  .cert-trust-quote  { min-height: auto; }
}

@media (max-width: 768px) {
  .cert-trust-row    { padding: 20px 20px; gap: 16px; }
  .cert-trust-divider{ display: none; }
  .cert-fssai-header { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
  .cert-fssai-header__right { flex-direction: row; align-self: stretch; justify-content: center; }
  .cert-stats-strip  { padding: 24px 20px; }
  .cert-stat-div     { display: none; }
}

@media (max-width: 640px) {
  .cert-section      { padding: 72px 0 60px; }
  .cert-three-grid   { grid-template-columns: 1fr; }
  .cert-badges-grid  { grid-template-columns: 1fr; }
  .cert-trust-item   { min-width: 100%; }
  .cert-fssai-header__left { flex-direction: column; }
  .cert-stats-strip  { justify-content: center; }
  .cert-stat         { min-width: 80px; }
}

/* ═══════════════════════════════════════════════════════════
   NEW ADDITIONS — Identity card, image cards, lightbox
═══════════════════════════════════════════════════════════ */

/* Dot grid background */
.cert-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201,135,58,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Gold stamp variant (smaller) */
.cert-stamp--gold-sm {
  background: linear-gradient(135deg, #c9873a, #f5a623);
  color: #1a0a00;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
}

/* ── Identity card ────────────────────────────────────── */
.cert-identity-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  background: linear-gradient(135deg, rgba(201,135,58,0.07), rgba(26,10,0,0.6));
  border: 1px solid var(--clr-border);
  border-radius: 18px;
  padding: 36px 40px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.cert-identity-card::before {
  content: 'MIJESTY';
  position: absolute;
  bottom: -16px; right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(201,135,58,0.04);
  pointer-events: none;
  letter-spacing: 4px;
}

.cert-identity-card__left { flex: 1; }
.cert-identity-card__tag {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 3.5px;
  color: var(--clr-accent2);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cert-identity-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.cert-identity-card__legal {
  font-size: 0.8rem;
  color: var(--clr-muted);
  margin-bottom: 22px;
  line-height: 1.6;
}
.cert-identity-card__legal strong { color: var(--clr-text); }

.cert-identity-card__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.cert-id-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,135,58,0.12);
  border-radius: 8px;
}
.cert-id-field__label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.cert-id-field__value {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: 0.3px;
  font-family: 'Courier New', monospace;
}
.cert-id-field__value--green { color: #000000; }

.cert-identity-card__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.cert-ministry-badges {
  display: flex;
  gap: 10px;
}
.cert-ministry-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border: 1px solid rgba(201,135,58,0.25);
  border-radius: 10px;
  background: rgba(201,135,58,0.06);
}
.cert-ministry-badge span {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--clr-accent2);
  letter-spacing: 1px;
}
.cert-ministry-badge small {
  font-size: 0.58rem;
  color: var(--clr-muted);
  text-align: center;
  letter-spacing: 0.5px;
}
.cert-ministry-badge--gst span { color: #60a5fa; }
.cert-ministry-badge--gst { border-color: rgba(96,165,250,0.25); background: rgba(96,165,250,0.05); }

/* ── Cert heading row ─────────────────────────────────── */
.cert-heading-row {
  margin-bottom: 24px;
}
.cert-heading-row h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 4px;
}
.cert-heading-row p {
  font-size: 0.84rem;
  color: var(--clr-muted);
}

/* ── Certificate card image wrap ──────────────────────── */
.cert-card__imgwrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background: rgba(201,135,58,0.05);
  border: 1px solid rgba(201,135,58,0.15);
}
.cert-actual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.45s ease;
}
.cert-card__imgwrap:hover .cert-actual-img {
  transform: scale(1.04);
}
.cert-card__zoom {
  position: absolute;
  inset: 0;
  background: rgba(10,3,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(253,248,243,0.9);
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.cert-card__imgwrap:hover .cert-card__zoom { opacity: 1; }

/* Gold ribbon variant */
.cert-card__ribbon--gold {
  background: linear-gradient(135deg, #c9873a, #f5a623) !important;
  color: #1a0a00 !important;
}

/* ── Lightbox ─────────────────────────────────────────── */
.cert-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cert-lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.cert-lightbox__box {
  position: relative;
  max-width: 860px;
  width: 100%;
  background: #1a0a00;
  border: 1px solid rgba(201,135,58,0.25);
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.cert-lightbox.active .cert-lightbox__box { transform: scale(1); }
.cert-lightbox__box img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}
.cert-lightbox__box p {
  padding: 12px 20px;
  font-size: 0.82rem;
  color: rgba(245,237,228,0.5);
  font-style: italic;
  border-top: 1px solid rgba(201,135,58,0.15);
  margin: 0;
}
.cert-lightbox__close {
  position: absolute;
  top: 12px; right: 14px;
  background: rgba(201,135,58,0.15);
  border: 1px solid rgba(201,135,58,0.3);
  color: var(--clr-text);
  border-radius: 8px;
  width: 34px; height: 34px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.cert-lightbox__close:hover { background: rgba(196,98,30,0.3); }

/* ── Responsive additions ─────────────────────────────── */
@media (max-width: 900px) {
  .cert-identity-card { flex-direction: column; padding: 28px 24px; }
  .cert-identity-card__right { flex-direction: row; align-self: stretch; justify-content: center; }
  .cert-identity-card__fields { grid-template-columns: 1fr; }
  .cert-identity-card::before { display: none; }
}
@media (max-width: 640px) {
  .cert-identity-card__name { font-size: 1.6rem; }
  .cert-card__imgwrap { height: 180px; }
}

/* ═══════════════════════════════════════════════════════════
   CERTIFICATE SLIDER
═══════════════════════════════════════════════════════════ */

/* Slider outer wrapper — positions prev/next buttons */
.cert-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}

/* Viewport — clips the track */
.cert-slider-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
}

/* Track — holds all cards in a row */
.cert-slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Each slide card — width is set by JS via visible() */
.cert-slide {
  flex: 0 0 calc(100% / 3);   /* 3 visible on desktop */
  min-width: calc(100% / 3);
  padding: 0 8px;
  box-sizing: border-box;
}

/* Prev / Next buttons */
.cert-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,135,58,0.35);
  background: rgba(13,5,0,0.88);
  color: rgba(245,237,228,0.85);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, opacity 0.2s;
  backdrop-filter: blur(6px);
  flex-shrink: 0;
}
.cert-slider-btn:hover:not(:disabled) {
  background: rgba(196,98,30,0.25);
  border-color: var(--clr-accent);
  transform: translateY(-50%) scale(1.08);
}
.cert-slider-btn--prev { left: -20px; }
.cert-slider-btn--next { right: -20px; }

/* Dots */
.cert-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.cert-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,135,58,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.3s;
  padding: 0;
}
.cert-dot.active {
  background: var(--clr-accent);
  width: 24px;
  border-radius: 4px;
  transform: scale(1);
}

/* ── Image fit fix — contain instead of cover ── */
/* White bg so document images show borders cleanly */
.cert-card__imgwrap--contain {
  background: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px !important;
}
.cert-actual-img--contain {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* ── Responsive slider ── */
@media (max-width: 1023px) {
  .cert-slide {
    flex: 0 0 50%;
    min-width: 50%;
  }
}
@media (max-width: 639px) {
  .cert-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 4px;
  }
  .cert-slider-btn--prev { left: -14px; }
  .cert-slider-btn--next { right: -14px; }
  .cert-slider-btn { width: 34px; height: 34px; font-size: 0.9rem; }
  .cert-card__imgwrap--contain { height: 200px !important; }
}


/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION — Light Theme
   Paste at the bottom of Style.css
═══════════════════════════════════════════════════════════ */

/* ── Keyframe Animations ─────────────────────────────────── */
@keyframes contactFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes contactFadeLeft {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0);     }
}
@keyframes contactFadeRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0);    }
}
@keyframes contactSway {
  0%, 100% { transform: rotate(-7deg) scale(1);    }
  50%       { transform: rotate(7deg)  scale(1.08); }
}
@keyframes cfSpin {
  to { transform: rotate(360deg); }
}
@keyframes cfPop {
  0%   { transform: scale(0.4); opacity: 0; }
  70%  { transform: scale(1.15); }
  100% { transform: scale(1);   opacity: 1; }
}
@keyframes cfSlideDown {
  from { opacity: 0; transform: translateY(-10px); max-height: 0; }
  to   { opacity: 1; transform: translateY(0);     max-height: 80px; }
}
@keyframes pillFloat {
  0%, 100% { transform: translateY(0);  }
  50%       { transform: translateY(-4px); }
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1);    }
  50%       { transform: scale(1.04); }
}

/* ── Section wrapper ─────────────────────────────────────── */
.contact-section {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
  isolation: isolate;
  background: #fdf8f3;
}

/* ── Warm cream background with subtle spice-tone blobs ──── */
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.contact-bg__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%,  rgba(224, 140, 60,  0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 90% 80%,  rgba(201, 100, 30,  0.08) 0%, transparent 70%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(245, 166, 35,  0.06) 0%, transparent 70%),
    #fdf8f3;
}
.contact-bg__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(180, 100, 30, 0.07) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
}

/* ── Two-column layout ───────────────────────────────────── */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

/* ═══════════════════════════════════════════════════════════
   LEFT COLUMN — animated on load
═══════════════════════════════════════════════════════════ */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: contactFadeLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.1s;
}

.contact-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c4621e;
}
.contact-eyebrow__line {
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(to right, #c4621e, #f5a623);
  border-radius: 2px;
  flex-shrink: 0;
}

.contact-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: #1a0a00;
  line-height: 1.1;
}
.contact-heading em {
  font-style: italic;
  color: #c4621e;
}

.contact-subtext {
  font-size: 0.93rem;
  color: #5a3e2b;
  line-height: 1.82;
  max-width: 420px;
}
.contact-subtext strong { color: #b8430f; font-weight: 700; }

/* Note card */
.contact-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff7ef;
  border: 1.5px solid #f0c89a;
  border-left: 4px solid #c4621e;
  border-radius: 0 12px 12px 0;
  padding: 16px 18px;
  animation: contactFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.35s;
}
.contact-note__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-note__body strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #2a1200;
  margin-bottom: 5px;
}
.contact-note__body p {
  font-size: 0.83rem;
  color: #6b4226;
  line-height: 1.72;
}

/* Social buttons */
.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: contactFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.45s;
}
.contact-socials__label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9a6a48;
}
.contact-socials__row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: 50px;
  font-size: 0.81rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: 1.5px solid;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.social-btn--wa   { color: #1a6e3c; border-color: #a8d5b5; background: #f0faf3; }
.social-btn--ig   { color: #8b2252; border-color: #e8aac8; background: #fdf0f6; }
.social-btn--fb   { color: #1a3a7a; border-color: #a8bce8; background: #f0f4fd; }
.social-btn--mail { color: #7a3a0a; border-color: #e8c090; background: #fdf5eb; }

.social-btn:hover { transform: translateY(-3px); }
.social-btn--wa:hover   { background: #d8f5e3; border-color: #5db87a; }
.social-btn--ig:hover   { background: #fce4f0; border-color: #cc6699; }
.social-btn--fb:hover   { background: #dce6f9; border-color: #5577cc; }
.social-btn--mail:hover { background: #fde8cc; border-color: #cc8833; }

/* Info pills */
.contact-info-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: contactFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.55s;
}
.contact-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1.5px solid #edd9c0;
  border-radius: 10px;
  font-size: 0.83rem;
  color: #5a3e2b;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.contact-pill:hover {
  border-color: #c4621e;
  background: #fff7ef;
  transform: translateX(4px);
}
/* Staggered float animation on each pill */
.contact-pill:nth-child(1) { animation: pillFloat 4s ease-in-out 0s   infinite; }
.contact-pill:nth-child(2) { animation: pillFloat 4s ease-in-out 0.5s infinite; }
.contact-pill:nth-child(3) { animation: pillFloat 4s ease-in-out 1s   infinite; }
.contact-pill:nth-child(4) { animation: pillFloat 4s ease-in-out 1.5s infinite; }

/* ═══════════════════════════════════════════════════════════
   RIGHT COLUMN — FORM CARD
═══════════════════════════════════════════════════════════ */
.contact-right {
  animation: contactFadeRight 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.2s;
}

.contact-form-card {
  background: #ffffff;
  border: 1.5px solid #edd9c0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(120, 60, 10, 0.05),
    0 12px 32px rgba(120, 60, 10, 0.08),
    0 2px 0px #f0c89a inset; /* subtle top-edge highlight */
}

/* Card header */
.contact-form-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 26px 30px 20px;
  border-bottom: 1.5px solid #f2e0c8;
  background: linear-gradient(135deg, #fff7ef 0%, #fdf3e7 100%);
}
.contact-verified-badge {
  display: inline-flex;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 4px;
  background: linear-gradient(135deg, #c4621e, #f5a623);
  color: #ffffff;
  margin-bottom: 10px;
  animation: badgePulse 3s ease-in-out infinite;
}
.contact-form-card__header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #1a0a00;
  margin-bottom: 4px;
}
.contact-form-card__header p {
  font-size: 0.78rem;
  color: #7a5535;
}
.contact-deco {
  font-size: 2rem;
  opacity: 0.7;
  animation: contactSway 4s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Form ────────────────────────────────────────────────── */
.contact-form {
  padding: 24px 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
/* Stagger each field fading in */
.cf-field:nth-child(1) { animation: contactFadeUp 0.5s ease both; animation-delay: 0.3s; }
.cf-field:nth-child(2) { animation: contactFadeUp 0.5s ease both; animation-delay: 0.38s; }
.cf-field:nth-child(3) { animation: contactFadeUp 0.5s ease both; animation-delay: 0.46s; }
.cf-field:nth-child(4) { animation: contactFadeUp 0.5s ease both; animation-delay: 0.54s; }
.cf-field:nth-child(5) { animation: contactFadeUp 0.5s ease both; animation-delay: 0.62s; }
.cf-field:nth-child(6) { animation: contactFadeUp 0.5s ease both; animation-delay: 0.70s; }

.cf-field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #7a5535;
}
.cf-req { color: #c4621e; }

/* Input wrapper with icon */
.cf-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.cf-ico {
  position: absolute;
  left: 11px;
  color: #c4621e;
  opacity: 0.6;
  pointer-events: none;
  display: flex;
  align-items: center;
  font-size: 1rem;
  z-index: 1;
}
.cf-ico--wa { color: #1a8c44; opacity: 0.8; }

.cf-wrap input,
.cf-wrap select {
  width: 100%;
  padding: 10px 12px 10px 36px;
  background: #fafaf8;
  border: 1.5px solid #e0c8a8;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.88rem;
  color: #1a0a00;
  outline: none;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.cf-wrap select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23c4621e' d='M5 7L0 2h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-color: #fafaf8;
  padding-right: 30px;
  cursor: pointer;
}
.cf-wrap select option { background: #ffffff; color: #1a0a00; }
.cf-wrap input::placeholder { color: #c0a888; }

.cf-wrap input:focus,
.cf-wrap select:focus {
  border-color: #c4621e;
  background: #fff9f4;
  transform: translateY(-1px);
}
.cf-wrap input:valid:not(:placeholder-shown) {
  border-color: #4aaa6a;
  background: #f6fff9;
}

/* Textarea */
.cf-wrap--ta { align-items: flex-start; }
.cf-wrap--ta textarea {
  width: 100%;
  padding: 11px 13px;
  background: #fafaf8;
  border: 1.5px solid #e0c8a8;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.88rem;
  color: #1a0a00;
  outline: none;
  resize: vertical;
  min-height: 100px;
  line-height: 1.65;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.15s ease;
}
.cf-wrap--ta textarea::placeholder { color: #c0a888; }
.cf-wrap--ta textarea:focus {
  border-color: #c4621e;
  background: #fff9f4;
  transform: translateY(-1px);
}

/* Enquiry type chips */
.cf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cf-chip { cursor: pointer; }
.cf-chip input[type="radio"] { display: none; }
.cf-chip span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1.5px solid #e0c8a8;
  background: #fafaf8;
  color: #7a5535;
  transition: all 0.2s ease;
  user-select: none;
}
.cf-chip:hover span {
  border-color: #c4621e;
  background: #fff3eb;
  color: #c4621e;
  transform: translateY(-2px);
}
.cf-chip input:checked + span {
  background: #c4621e;
  border-color: #c4621e;
  color: #ffffff;
  transform: translateY(-2px);
}

/* "Other" specify field — slides in */
.cf-other-wrap {
  overflow: hidden;
}
.cf-other-wrap.visible {
  animation: cfSlideDown 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cf-other-input {
  width: 100%;
  padding: 9px 13px;
  background: #fff9f4;
  border: 1.5px dashed #c4621e;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.86rem;
  color: #1a0a00;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  margin-top: 4px;
}
.cf-other-input::placeholder { color: #c0a888; font-style: italic; }
.cf-other-input:focus {
  border-style: solid;
  border-color: #c4621e;
  background: #fff5ed;
}

/* Submit button */
.cf-submit {
  width: 100%;
  padding: 13px 24px;
  background: linear-gradient(135deg, #b8420e, #c4621e, #e07828);
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  transition: background-position 0.4s ease, transform 0.15s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(196, 98, 30, 0.30);
  position: relative;
  overflow: hidden;
}
/* Shimmer sweep on hover */
.cf-submit::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.45s ease;
}
.cf-submit:hover::after { left: 150%; }
.cf-submit:hover {
  background-position: 100% 0%;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(196, 98, 30, 0.28);
}
.cf-submit:active  { transform: scale(0.98); }
.cf-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.cf-submit__loading {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cf-spin { animation: cfSpin 0.75s linear infinite; }

.cf-privacy {
  text-align: center;
  font-size: 0.68rem;
  color: #b89070;
  margin-top: -4px;
}

/* ── Success state ───────────────────────────────────────── */
.cf-success {
  padding: 52px 30px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #fff9f4, #fff5ec);
}
.cf-success__icon {
  font-size: 3.4rem;
  animation: cfPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.cf-success h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a0a00;
}
.cf-success p {
  font-size: 0.9rem;
  color: #6b4226;
  line-height: 1.65;
  max-width: 340px;
}
.cf-success p strong { color: #c4621e; }
.cf-success__back {
  margin-top: 8px;
  padding: 10px 22px;
  background: transparent;
  border: 1.5px solid #e0c8a8;
  border-radius: 8px;
  color: #7a5535;
  font-family: inherit;
  font-size: 0.86rem;
  cursor: pointer;
  transition: all 0.2s;
}
.cf-success__back:hover {
  border-color: #c4621e;
  color: #c4621e;
  background: #fff3eb;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .contact-container { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 640px) {
  .contact-section { padding: 80px 0 70px; }
  .cf-row { grid-template-columns: 1fr; }
  .contact-form { padding: 20px 18px 18px; }
  .contact-form-card__header { padding: 20px 18px 16px; }
  .contact-deco { display: none; }
  .cf-chips { gap: 6px; }
  .cf-chip span { padding: 6px 11px; font-size: 0.74rem; }
  .social-btn { padding: 8px 12px; font-size: 0.78rem; }
  .contact-pill { animation: none; } /* disable float on mobile */
}

@media (max-width: 400px) {
  .contact-heading { font-size: 2rem; }
  .cf-submit { font-size: 0.9rem; }
}



/* ═══════════════════════════════════════════════════════════
   SITE FOOTER — Paste at the bottom of Style.css
═══════════════════════════════════════════════════════════ */

/* ── Keyframes ───────────────────────────────────────────── */
@keyframes footerFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes flagBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

/* ── Footer wrapper ──────────────────────────────────────── */
.site-footer {
  background: #0d0500;
  position: relative;
  overflow: hidden;
}

/* Subtle warm texture bg */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 15% 20%, rgba(196,98,30,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 80%, rgba(139,58,14,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Dot grid pattern */
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201,135,58,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ── Top ornament bar ────────────────────────────────────── */
.footer-topbar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}
.footer-topbar__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,135,58,0.3), transparent);
}
.footer-topbar__ornament {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: rgba(201,135,58,0.5);
  white-space: nowrap;
  padding: 18px 0;
  text-transform: uppercase;
}

/* ── Main 4-column grid ──────────────────────────────────── */
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding: 48px 5% 52px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(201,135,58,0.1);
}

/* ── Brand column ────────────────────────────────────────── */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo__icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 8px rgba(196,98,30,0.4));
}
.footer-logo__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fdf8f3;
  line-height: 1.1;
}
.footer-logo__name span { color: #c4621e; }
.footer-logo__tagline {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(201,135,58,0.5);
  margin-top: 2px;
}

.footer-brand-desc {
  font-size: 0.84rem;
  color: rgba(245,237,228,0.5);
  line-height: 1.8;
  max-width: 300px;
}

/* Cert badges */
.footer-cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-cert-badge {
  padding: 4px 10px;
  border: 1px solid rgba(201,135,58,0.3);
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: rgba(201,135,58,0.7);
  background: rgba(201,135,58,0.05);
  transition: all 0.2s;
}
.footer-cert-badge:hover {
  background: rgba(201,135,58,0.12);
  border-color: rgba(201,135,58,0.5);
  color: #c9873a;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(201,135,58,0.18);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,237,228,0.5);
  transition: all 0.22s ease;
  text-decoration: none;
}
.footer-social:hover {
  background: rgba(196,98,30,0.15);
  border-color: rgba(196,98,30,0.5);
  color: #c4621e;
  transform: translateY(-3px);
}

/* ── Generic footer column ───────────────────────────────── */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fdf8f3;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col__heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: linear-gradient(to right, #c4621e, #f5a623);
  border-radius: 2px;
}

/* Nav links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-links li a {
  font-size: 0.84rem;
  color: rgba(245,237,228,0.48);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  transition: color 0.2s, gap 0.2s;
  position: relative;
}
.footer-links li a::before {
  content: '›';
  color: #c4621e;
  opacity: 0;
  font-size: 1rem;
  line-height: 1;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-4px);
}
.footer-links li a:hover {
  color: rgba(245,237,228,0.9);
  gap: 12px;
}
.footer-links li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contact list */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(245,237,228,0.48);
  line-height: 1.6;
}
.footer-contact-list__icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-list a {
  color: rgba(245,237,228,0.48);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: #c4621e; }

/* Export flags */
.footer-exports {
  margin-top: 6px;
}
.footer-exports__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(201,135,58,0.5);
  margin-bottom: 10px;
}
.footer-exports__flags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-exports__flags span {
  font-size: 1.3rem;
  cursor: default;
  transition: transform 0.2s;
  display: inline-block;
}
/* Staggered float on each flag */
.footer-exports__flags span:nth-child(1)  { animation: flagBounce 3s ease-in-out 0.0s  infinite; }
.footer-exports__flags span:nth-child(2)  { animation: flagBounce 3s ease-in-out 0.2s  infinite; }
.footer-exports__flags span:nth-child(3)  { animation: flagBounce 3s ease-in-out 0.4s  infinite; }
.footer-exports__flags span:nth-child(4)  { animation: flagBounce 3s ease-in-out 0.6s  infinite; }
.footer-exports__flags span:nth-child(5)  { animation: flagBounce 3s ease-in-out 0.8s  infinite; }
.footer-exports__flags span:nth-child(6)  { animation: flagBounce 3s ease-in-out 1.0s  infinite; }
.footer-exports__flags span:nth-child(7)  { animation: flagBounce 3s ease-in-out 1.2s  infinite; }
.footer-exports__flags span:nth-child(8)  { animation: flagBounce 3s ease-in-out 1.4s  infinite; }
.footer-exports__flags span:nth-child(9)  { animation: flagBounce 3s ease-in-out 1.6s  infinite; }
.footer-exports__flags span:nth-child(10) { animation: flagBounce 3s ease-in-out 1.8s  infinite; }
.footer-exports__flags span:hover { transform: scale(1.3) !important; animation: none; }

.footer-exports__more {
  font-size: 0.72rem;
  color: rgba(245,237,228,0.28);
  margin-top: 8px;
  font-style: italic;
}

/* ── Stats bar ───────────────────────────────────────────── */
.footer-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 32px 5%;
  border-bottom: 1px solid rgba(201,135,58,0.1);
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.015);
}

.footer-stat {
  text-align: center;
  padding: 8px 36px;
  flex: 1;
  min-width: 120px;
}
.footer-stat__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #c4621e;
  line-height: 1;
  margin-bottom: 4px;
}
.footer-stat__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(245,237,228,0.35);
  text-transform: uppercase;
}

.footer-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(201,135,58,0.2);
  flex-shrink: 0;
}

/* ── Bottom bar ──────────────────────────────────────────── */
.footer-bottom {
  padding: 20px 5%;
  position: relative;
  z-index: 1;
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 100%;
}

.footer-bottom__copy {
  font-size: 0.75rem;
  color: rgba(245,237,228,0.28);
  line-height: 1.6;
}
.footer-bottom__copy strong {
  color: rgba(245,237,228,0.45);
  font-weight: 700;
}

.footer-bottom__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-bottom__badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(201,135,58,0.5);
  padding: 4px 10px;
  border: 1px solid rgba(201,135,58,0.15);
  border-radius: 50px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.footer-bottom__links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom__links a {
  font-size: 0.73rem;
  color: rgba(245,237,228,0.28);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom__links a:hover { color: #c4621e; }
.footer-bottom__links span {
  color: rgba(201,135,58,0.2);
  font-size: 0.7rem;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 5% 40px;
  }
  .footer-brand-col { grid-column: auto; }

  .footer-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 0;
    background: rgba(201,135,58,0.1);
  }
  .footer-stat {
    padding: 20px 16px;
    background: #0d0500;
  }
  .footer-stat-divider { display: none; }

  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer-bottom__badges { justify-content: center; }
  .footer-bottom__links  { justify-content: center; }

  .footer-exports__flags span { animation: none; }

  .footer-topbar__ornament { font-size: 0.65rem; letter-spacing: 2px; }
}