/* ============================================================
   JAYGEE INDUSTRIES - Master Stylesheet
   Theme: Luxury & Spiritual
   Palette: Crimson | Antique Gold | Ivory | Deep Dark
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --crimson:        #8B1A1A;
  --crimson-dark:   #5C1010;
  --crimson-light:  #B52424;
  --gold:           #C9A84C;
  --gold-light:     #E8C875;
  --gold-pale:      #F5E9C5;
  --dark:           #120606;
  --dark-2:         #2A0F0F;
  --dark-3:         #3D1A1A;
  --text:           #2C1810;
  --text-muted:     #7A5541;
  --ivory:          #F8F4EE;
  --ivory-2:        #FDF9F5;
  --white:          #FFFFFF;
  --border:         rgba(201,168,76,0.25);
  --border-strong:  rgba(201,168,76,0.5);
  --shadow-sm:      0 2px 12px rgba(18,6,6,0.10);
  --shadow:         0 6px 32px rgba(18,6,6,0.14);
  --shadow-lg:      0 16px 60px rgba(18,6,6,0.20);
  --font-serif:     'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:      'Inter', system-ui, -apple-system, sans-serif;
  --nav-h:          80px;
  --radius:         8px;
  --radius-lg:      16px;
  --transition:     0.3s ease;
  --section-py:     90px;
  --max-w:          1200px;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-2);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p  { line-height: 1.8; color: var(--text-muted); }

.text-gold  { color: var(--gold); }
.text-crimson { color: var(--crimson); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.italic { font-style: italic; }

/* ── SECTION LABELS ─────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--dark-2);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }
.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 24px;
}
.section-header.centered .gold-divider { margin: 16px auto 24px; }

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: var(--section-py) 0;
}
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-dark .section-title { color: var(--white); }
.section-dark .eyebrow { color: var(--gold-light); }
.section-crimson {
  background: var(--crimson);
  color: var(--white);
}
.section-crimson h2, .section-crimson .section-title { color: var(--white); }
.section-crimson .eyebrow { color: var(--gold-light); }
.section-crimson p { color: rgba(255,255,255,0.85); }
.section-ivory { background: var(--ivory-2); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0  { margin-bottom: 0; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn-crimson {
  background: var(--crimson);
  color: var(--white);
  border-color: var(--crimson);
}
.btn-crimson:hover {
  background: var(--crimson-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,26,26,0.30);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark-2);
}
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }

/* ── NAVIGATION ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(18, 6, 6, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
}
.nav-links a:hover::after, .nav-links a.active::after {
  left: 14px; right: 14px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-translate { font-size: 0.8rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 40%, #3D0808 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(139,26,26,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(139,26,26,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-ornament {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-ornament::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 50%;
}
.hero-ornament::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  border: 1px solid rgba(201,168,76,0.04);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px 24px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.68);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.9;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-indicator i { font-size: 1.2rem; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* PAGE HERO (non-home) ────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, #3A0A0A 100%);
  padding: calc(var(--nav-h) + 60px) 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); }
.page-hero .eyebrow { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}
.card-body { padding: 28px; }

/* BRAND CARDS ──────────────────────────────────────────────────  */
.brand-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  opacity: 0;
  transition: var(--transition);
}
.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}
.brand-card:hover::before { opacity: 1; }
.brand-card-logo {
  height: 80px;
  width: auto;
  max-width: 180px;
  margin: 0 auto 24px;
  object-fit: contain;
}
.brand-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.brand-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.brand-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--dark-3);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin: 3px 3px;
}

/* PRODUCT CARDS ─────────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--ivory), var(--gold-pale));
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--gold-pale) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.product-card-img-placeholder i { font-size: 2.5rem; color: var(--gold); opacity: 0.5; }
.product-card-img-placeholder span { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.product-card-body { padding: 24px; }
.product-card-body h4 { margin-bottom: 8px; font-size: 1.1rem; }

/* STAT CARDS ─────────────────────────────────────────────────── */
.stat-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
}
.stat-card-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-card-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}

/* FEATURE ITEMS ─────────────────────────────────────────────── */
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.feature-icon {
  width: 52px; height: 52px;
  min-width: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
}
.feature-icon.crimson {
  background: linear-gradient(135deg, rgba(139,26,26,0.12), rgba(139,26,26,0.04));
  border-color: rgba(139,26,26,0.2);
  color: var(--crimson);
}
.feature-text h4 { margin-bottom: 6px; font-size: 1.05rem; }
.feature-text p { font-size: 0.9rem; margin-bottom: 0; }

/* ICON BOX ──────────────────────────────────────────────────── */
.icon-box {
  text-align: center;
  padding: 32px 24px;
}
.icon-box-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
}
.icon-box-icon.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
}
.icon-box h4 { margin-bottom: 10px; }

/* ── BRANDS FULL PAGE ────────────────────────────────────────── */
.brand-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.brand-section:last-child { border-bottom: none; }
.brand-section-header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}
.brand-section-logo {
  height: 70px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.brand-section-info { flex: 1; }
.brand-color-bar {
  height: 4px;
  width: 60px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }

/* ── B2B SPECIFIC ────────────────────────────────────────────── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-left: 2px solid var(--border-strong);
  padding-left: 28px;
  position: relative;
}
.process-step::before {
  content: attr(data-step);
  position: absolute;
  left: -20px;
  top: 28px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step:last-child { border-left-color: transparent; }
.process-step-content h4 { margin-bottom: 8px; }
.process-step-content p { font-size: 0.9rem; }

.benefit-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}
.benefit-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
  transform: translateY(-4px);
}
.benefit-card i { font-size: 2rem; color: var(--gold); margin-bottom: 16px; }
.benefit-card h4 { margin-bottom: 10px; }

/* ── FRAGRANCE SPECIFIC ──────────────────────────────────────── */
.fragrance-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  text-align: center;
  transition: var(--transition);
  gap: 16px;
}
.fragrance-app:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.fragrance-app i { font-size: 2rem; color: var(--crimson); }
.fragrance-app h4 { font-size: 1rem; }
.fragrance-app p { font-size: 0.85rem; margin: 0; }

/* ── INQUIRY FORM ────────────────────────────────────────────── */
.form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 48px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group label span { color: var(--crimson); }
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--ivory-2);
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-control::placeholder { color: var(--text-muted); opacity: 0.6; }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-check-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.875rem;
  color: var(--text);
}
.form-check:hover { border-color: var(--gold); background: var(--gold-pale); }
.form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--crimson); }
.form-submit-wrap { margin-top: 8px; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 12px; }

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-card-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.contact-card h4 { margin-bottom: 6px; font-size: 1rem; }
.contact-card p, .contact-card a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.contact-card a:hover { color: var(--crimson); }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}
.map-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, var(--ivory), var(--gold-pale));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
}
.map-placeholder i { font-size: 3rem; color: var(--gold); opacity: 0.5; }

/* ── TESTIMONIAL ─────────────────────────────────────────────── */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 36px;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 8px; left: 24px;
  line-height: 1;
}
.testimonial p {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-top: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #400A0A 100%);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 65%);
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 44px; }
.footer-about {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; font-size: 0.85rem; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── BADGES / TAGS ───────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.badge-gold { background: var(--gold-pale); color: var(--dark-3); border: 1px solid rgba(201,168,76,0.3); }
.badge-crimson { background: rgba(139,26,26,0.08); color: var(--crimson); border: 1px solid rgba(139,26,26,0.2); }

/* ── GOOGLE TRANSLATE WIDGET ─────────────────────────────────── */
#google_translate_element {
  display: flex;
  align-items: center;
}
#google_translate_element .goog-te-gadget {
  font-family: var(--font-sans) !important;
  font-size: 0 !important;
  color: transparent !important;
}
#google_translate_element .goog-te-gadget-simple {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(201,168,76,0.3) !important;
  border-radius: 6px !important;
  padding: 6px 10px !important;
}
#google_translate_element .goog-te-gadget-simple .goog-te-menu-value span {
  color: rgba(255,255,255,0.8) !important;
  font-family: var(--font-sans) !important;
  font-size: 0.78rem !important;
}
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Smoke particles */
.smoke-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.smoke-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: smokeRise linear infinite;
  opacity: 0;
}
@keyframes smokeRise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  15%  { opacity: 0.5; }
  80%  { opacity: 0.2; }
  100% { transform: translateY(-300px) translateX(var(--drift,20px)) scale(4); opacity: 0; }
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-py: 56px; --nav-h: 68px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(18, 6, 6, 0.98);
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .nav-mobile-open .nav-cta {
    display: flex;
    position: fixed;
    top: calc(var(--nav-h) + 200px);
    left: 0; right: 0;
    padding: 16px 24px;
    background: rgba(18, 6, 6, 0.98);
    justify-content: center;
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .brand-section-header { flex-direction: column; align-items: flex-start; }
  .process-step { padding-left: 24px; }
  .process-step::before { left: -16px; width: 30px; height: 30px; }
  .form-check-group { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .btn { padding: 12px 22px; font-size: 0.82rem; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ── UTILITY: HIGHLIGHT BLOCK ────────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, rgba(139,26,26,0.06), rgba(201,168,76,0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 24px 0;
}
.highlight-box p { font-size: 1.05rem; font-style: italic; margin: 0; color: var(--text); }

/* ── CHECKLIST ────────────────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.check-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.check-list.white li { color: rgba(255,255,255,0.75); }
.check-list.white li::before { color: var(--gold-light); }

/* ── SECTION DIVIDER ─────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── TAG LIST (products) ─────────────────────────────────────── */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  background: var(--ivory);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 20px;
}
.tag:hover { border-color: var(--gold); color: var(--dark-3); }

/* ── ACCORDION ────────────────────────────────────────────────── */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: var(--white);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}
.accordion-header:hover { background: var(--ivory-2); }
.accordion-header i { color: var(--gold); transition: var(--transition); }
.accordion-header.open i { transform: rotate(180deg); }
.accordion-body {
  display: none;
  padding: 0 24px 20px;
  background: var(--white);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.accordion-body.open { display: block; }

/* ── NAV DROPDOWN ────────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(18,6,6,0.98);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  min-width: 200px;
  display: none;
  flex-direction: column;
  padding: 6px 0;
  z-index: 1001;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  border-radius: 0;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.nav-dropdown-menu li a::after { display: none; }
.nav-dropdown-menu li a:hover { color: var(--gold-light); background: rgba(201,168,76,0.07); }
.nav-dropdown-menu li a i { color: var(--gold); font-size: 0.85rem; width: 16px; }

@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    background: rgba(255,255,255,0.04);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0 16px;
    display: flex;
  }
}
