/* ========================================================
   RETEX – Premium Non-Woven Packaging
   Luxe black & gold theme – static multi-page version
   ======================================================== */

:root {
  --background: #1a1612;
  --foreground: #faf8f3;
  --card: #221d18;
  --card-foreground: #faf8f3;
  --primary: #d4af37;
  --primary-glow: #f0c95a;
  --primary-foreground: #1a1612;
  --secondary: #2a241e;
  --muted: #2f2922;
  --muted-foreground: #a89e8e;
  --border: #3a322a;

  --gradient-gold: linear-gradient(135deg, #d4af37, #f0c95a, #d4af37);
  --gradient-dark: linear-gradient(180deg, #221d18 0%, #1a1612 100%);
  --gradient-radial: radial-gradient(circle at center, rgba(212, 175, 55, 0.15), transparent 70%);

  --shadow-gold: 0 20px 50px -12px rgba(212, 175, 55, 0.35);
  --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.4);

  --radius: 1rem;
  --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

/* ----------- RESET ----------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; letter-spacing: -0.01em; line-height: 1.15; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--background); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-glow); }

/* ----------- LAYOUT ----------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
main { min-height: 60vh; }
.text-center { text-align: center; }
.text-balance { text-wrap: balance; }
.gradient-text {
  background: var(--gradient-gold);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradient-shift 4s ease infinite;
}
.eyebrow {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ----------- HEADER ----------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(26, 22, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-text {
  font-family: var(--font-serif); font-size: 1.875rem; font-weight: 700; color: var(--foreground);
  transition: color 0.3s;
}
.logo:hover .logo-text { color: var(--primary); }
.logo-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

.nav-links { display: flex; gap: 2.25rem; align-items: center; }
.nav-link {
  position: relative;
  font-size: 0.875rem; font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.3s;
}
.nav-link::after {
  content: ""; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--foreground); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: var(--primary-foreground);
  padding: 0.625rem 1.5rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 600;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}
.nav-cta:hover { background: var(--primary-glow); transform: translateY(-2px); }

.menu-toggle {
  display: none; padding: 0.5rem; border-radius: 0.5rem; color: var(--foreground);
  background: transparent; border: none; cursor: pointer;
  position: relative; z-index: 1100;
  transition: background 0.2s;
}
.menu-toggle:hover { background: var(--secondary); }
.menu-toggle svg { width: 26px; height: 26px; }

/* Full-screen mobile overlay menu */
.mobile-menu {
  position: fixed; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.5rem;
  padding: 6rem 1.5rem 3rem;
  background: rgba(20, 16, 12, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1050;
  opacity: 0; visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  overflow-y: auto;
}
.mobile-menu.open {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.mobile-menu .nav-link {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--foreground);
  padding: 0.4rem 0;
  letter-spacing: 0.01em;
}
.mobile-menu .nav-link::after { bottom: -2px; height: 2px; left: 50%; transform: translateX(-50%); }
.mobile-menu .nav-link:hover::after,
.mobile-menu .nav-link.active::after { width: 60%; }
.mobile-menu .nav-link.active { color: var(--primary); }
.mobile-menu .nav-cta {
  margin-top: 1.25rem;
  font-size: 1rem;
  padding: 0.85rem 2.25rem;
}
body.menu-open { overflow: hidden; }

/* ----------- BUTTONS ----------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 2rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-gold); }
.btn-primary:hover { background: var(--primary-glow); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--border); color: var(--foreground); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-large { padding: 1rem 2.5rem; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--primary); font-weight: 600;
  transition: gap 0.3s ease;
}
.arrow-link:hover { gap: 0.75rem; }

/* ----------- HERO (HOME) ----------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-blob.b1 { top: 5rem; left: 2.5rem; width: 18rem; height: 18rem; background: rgba(212, 175, 55, 0.10); animation: float 6s ease-in-out infinite; }
.hero-blob.b2 { bottom: 5rem; right: 2.5rem; width: 24rem; height: 24rem; background: rgba(212, 175, 55, 0.05); animation: float 6s ease-in-out infinite 0.3s; }
.hero-ring {
  position: absolute; top: 50%; left: 50%;
  width: 800px; height: 800px;
  margin: -400px 0 0 -400px;
  border: 1px solid rgba(212, 175, 55, 0.10);
  border-radius: 50%;
  opacity: 0.3;
  animation: rotate-slow 30s linear infinite;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 2rem;
  line-height: 1;
}
.hero p.lead {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 32rem;
  margin-bottom: 2.5rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-trust {
  margin-top: 3rem;
  display: flex; align-items: center; gap: 1.5rem;
  font-size: 0.875rem; color: var(--muted-foreground);
}
.stars { display: inline-flex; gap: 2px; color: var(--primary); }
.hero-trust strong { color: var(--foreground); }

.hero-image-wrap {
  position: relative;
  animation: fade-in 1s ease 0.2s both;
}
.hero-image {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-gold);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26, 22, 18, 0.4), transparent);
}
.hero-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 0.75rem;
  z-index: 2;
}
.hero-card.tl { top: -1rem; left: -1rem; animation: float 6s ease-in-out infinite; max-width: calc(100% - 2rem); }
.hero-card.br { bottom: -1rem; right: -1rem; animation: float 6s ease-in-out infinite 0.3s; max-width: calc(100% - 2rem); }
.hero-card-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.hero-card-icon svg { width: 20px; height: 20px; }
.hero-card-text strong { display: block; font-size: 0.875rem; color: var(--foreground); }
.hero-card-text small { font-size: 0.75rem; color: var(--muted-foreground); }

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce-subtle 2s ease-in-out infinite;
}
.scroll-indicator-inner {
  width: 28px; height: 48px;
  border: 2px solid rgba(168, 158, 142, 0.3);
  border-radius: 9999px;
  display: flex; justify-content: center;
  padding-top: 0.5rem;
  transition: border-color 0.3s;
}
.scroll-indicator:hover .scroll-indicator-inner { border-color: var(--primary); }
.scroll-indicator-dot { width: 6px; height: 12px; border-radius: 9999px; background: var(--primary); }

/* ----------- PAGE HERO ----------- */
.page-hero {
  position: relative;
  padding: 9rem 0 5rem;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg { position: absolute; inset: 0; background: var(--gradient-radial); opacity: 0.6; pointer-events: none; }
.page-hero-blob {
  position: absolute; top: 5rem; right: 2.5rem;
  width: 18rem; height: 18rem;
  background: rgba(212, 175, 55, 0.10);
  border-radius: 50%; filter: blur(80px);
  animation: float 6s ease-in-out infinite;
}
.page-hero-content { position: relative; max-width: 64rem; margin: 0 auto; padding: 0 1.5rem; }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 1.5rem; }
.page-hero .subtitle { color: var(--muted-foreground); font-size: 1.125rem; max-width: 36rem; margin: 0 auto; }
.page-hero-extra { margin-top: 2.5rem; }

.category-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.pill {
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 0.875rem; font-weight: 500;
  transition: var(--transition);
}
.pill:hover { border-color: var(--primary); color: var(--primary); }

/* ----------- SECTIONS ----------- */
.section { padding: 6rem 0; }
.section-alt { background: rgba(34, 29, 24, 0.4); }
.section-dark { background: var(--gradient-dark); }
.section-strip { padding: 4rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(34, 29, 24, 0.5); }

.section-head { margin-bottom: 3.5rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.75rem; }
.section-head .lead { color: var(--muted-foreground); font-size: 1.125rem; max-width: 32rem; }
.section-head.center { text-align: center; }
.section-head.center .lead { margin: 0 auto; }
.section-head.between { display: flex; flex-direction: column; gap: 1.5rem; }

/* ----------- STATS GRID ----------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat-num { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); }
.stat-label { color: var(--muted-foreground); font-size: 0.875rem; margin-top: 0.5rem; }

/* ----------- GRIDS ----------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; align-items: center; }

/* ----------- PRODUCT CARD ----------- */
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); }
.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--secondary);
}
.product-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .product-image img { transform: scale(1.1); }
.product-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--card), rgba(34, 29, 24, 0.2) 50%, transparent);
  opacity: 0.8;
}
.product-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--primary); color: var(--primary-foreground);
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.02em;
  z-index: 1;
  box-shadow: var(--shadow-gold);
}
.product-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-title { font-family: var(--font-serif); font-size: 1.25rem; color: var(--foreground); margin-bottom: 0.25rem; transition: color 0.3s; }
.product-card:hover .product-title { color: var(--primary); }
.product-tagline {
  color: rgba(212, 175, 55, 0.8);
  font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.product-desc { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.25rem; flex: 1; }
.product-cta {
  display: inline-flex; justify-content: center; align-items: center; gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1); color: var(--primary);
  padding: 0.625rem 1rem; border-radius: 0.5rem;
  font-size: 0.875rem; font-weight: 600;
  transition: var(--transition);
  width: 100%;
}
.product-cta:hover { background: var(--primary); color: var(--primary-foreground); }

/* ----------- CATEGORY SECTION ----------- */
.category-head { max-width: 48rem; margin-bottom: 3.5rem; }
.category-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.category-sub { color: rgba(212, 175, 55, 0.9); font-size: 1.125rem; font-style: italic; margin-bottom: 0.75rem; }
.category-desc { color: var(--muted-foreground); }

/* ----------- FEATURE CARD (Why us / Values) ----------- */
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); }
.feature-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
  transition: background 0.3s;
}
.feature-card:hover .feature-icon { background: rgba(212, 175, 55, 0.2); }
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.25rem; color: var(--foreground); margin-bottom: 0.5rem; }
.feature-card p { color: var(--muted-foreground); font-size: 0.875rem; }

/* ----------- CTA CARD ----------- */
.cta-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
  overflow: hidden;
  max-width: 64rem; margin: 0 auto;
}
.cta-card::before {
  content: ""; position: absolute; inset: 0;
  background: var(--gradient-radial);
  opacity: 0.5; pointer-events: none;
}
.cta-card > * { position: relative; }
.cta-card h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.cta-card p { color: var(--muted-foreground); font-size: 1.125rem; max-width: 32rem; margin: 0 auto 2rem; }

/* ----------- PROCESS STEPS ----------- */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  position: relative;
}
.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: var(--transition);
  z-index: 1;
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); }
.step-icon {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 5rem; height: 5rem;
  border-radius: 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 1.5rem;
  color: var(--primary);
}
.step-icon svg { width: 36px; height: 36px; }
.step-num {
  position: absolute; top: -0.75rem; right: -0.75rem;
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
}
.step h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--foreground); margin-bottom: 0.75rem; }
.step p { color: var(--muted-foreground); margin-bottom: 1.25rem; }
.step ul { list-style: none; }
.step ul li { font-size: 0.875rem; padding: 0.25rem 0; display: flex; gap: 0.5rem; color: rgba(250, 248, 243, 0.8); }
.step ul li::before { content: "▸"; color: var(--primary); }

.lead-times { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.lead-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}
.lead-card .label { color: var(--primary); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.lead-card .time { font-family: var(--font-serif); font-size: 1.875rem; color: var(--foreground); }

/* ----------- ABOUT GRID ----------- */
.about-text p { color: var(--muted-foreground); margin-bottom: 1rem; }
.about-image-wrap { position: relative; }
.about-image {
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-gold);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-floating {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}
.about-floating .big { font-family: var(--font-serif); font-size: 1.875rem; }
.about-floating .small { color: var(--muted-foreground); font-size: 0.875rem; }

/* ----------- CONTACT ----------- */
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 2.5rem; }
.contact-aside { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.75rem;
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.contact-card h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 1.5rem; color: var(--foreground); }
.contact-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-row { display: flex; align-items: center; gap: 1rem; transition: transform 0.3s; }
.contact-row:hover { transform: translateX(4px); }
.contact-row-icon {
  width: 3rem; height: 3rem; border-radius: 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-row:hover .contact-row-icon { background: rgba(212, 175, 55, 0.2); transform: scale(1.1); }
.contact-row-icon svg { width: 20px; height: 20px; }
.contact-row-label { font-size: 0.7rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.125rem; }
.contact-row-value { font-weight: 500; color: var(--foreground); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.contact-card.dark { background: var(--gradient-dark); }
.contact-card.dark .label { color: var(--primary); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.75rem; }
.contact-card.dark .big { font-family: var(--font-serif); font-size: 1.875rem; margin-bottom: 0.5rem; }
.contact-card.dark p { color: var(--muted-foreground); font-size: 0.875rem; }

/* ----------- FORM ----------- */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
}
.form-head { margin-bottom: 1.5rem; }
.form-head h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 0.25rem; }
.form-head p { color: var(--muted-foreground); font-size: 0.875rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--foreground); margin-bottom: 0.5rem; }
.form-control {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  border-radius: 0.75rem;
  background: rgba(42, 36, 30, 0.5);
  border: 2px solid var(--border);
  color: var(--foreground);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary); }
.form-control::placeholder { color: var(--muted-foreground); }
textarea.form-control { height: auto; padding: 0.875rem 1rem; resize: vertical; min-height: 8rem; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23d4af37'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}
.btn-submit {
  width: 100%;
  background: var(--primary); color: var(--primary-foreground);
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}
.btn-submit:hover { background: var(--primary-glow); transform: translateY(-2px); }
.form-disclaimer { text-align: center; color: var(--muted-foreground); font-size: 0.75rem; margin-top: 0.75rem; }

.form-success { padding: 3rem 0; text-align: center; display: none; flex-direction: column; align-items: center; }
.form-success.visible { display: flex; animation: fade-in-up 0.5s ease; }
.form-success-icon {
  width: 5rem; height: 5rem; border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  animation: pulse-glow 2.5s ease-in-out infinite;
}
.form-success-icon svg { width: 40px; height: 40px; }
.form-success h3 { font-family: var(--font-serif); font-size: 1.875rem; margin-bottom: 0.75rem; }
.form-success p { color: var(--muted-foreground); max-width: 28rem; margin-bottom: 1.5rem; }
.btn-link {
  border: 2px solid var(--primary); color: var(--primary);
  padding: 0.625rem 1.5rem; border-radius: 9999px;
  font-weight: 600; transition: var(--transition);
}
.btn-link:hover { background: var(--primary); color: var(--primary-foreground); }

/* ----------- FOOTER ----------- */
.site-footer { background: var(--card); border-top: 1px solid var(--border); margin-top: 5rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding: 4rem 0;
}
.footer-brand .logo-text { font-size: 2.25rem; }
.footer-brand p { color: var(--muted-foreground); margin: 1.5rem 0 2rem; max-width: 28rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-foreground);
  transition: var(--transition);
}
.social-link:hover { color: var(--primary); border-color: var(--primary); transform: scale(1.1); }
.social-link svg { width: 20px; height: 20px; }
.footer-col h4 { font-family: var(--font-serif); font-size: 1.125rem; margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.footer-col li { color: var(--muted-foreground); }
.footer-col a { color: var(--muted-foreground); transition: color 0.3s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.875rem; color: var(--muted-foreground);
}
.footer-bottom .quote { font-style: italic; color: rgba(212, 175, 55, 0.8); }
.footer-bottom .made { display: flex; align-items: center; gap: 0.5rem; }
.heart { color: var(--primary); animation: pulse 2s ease-in-out infinite; }

/* ----------- ANIMATIONS ----------- */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 50px rgba(212, 175, 55, 0.6); }
}
@keyframes rotate-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes bounce-subtle {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.animate-fade-in-up { opacity: 0; animation: fade-in-up 0.8s ease-out both; }
.animate-fade-in { opacity: 0; animation: fade-in 1s ease-out both; }
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ----------- RESPONSIVE ----------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}
@media (max-width: 768px) {
  .logo-text-bottom {display: flex; justify-content: center; gap: 20px;}
  .social-links {display: flex; justify-content: center; gap: 20px; }
  .site-footer {text-align: center;}
  .nav-links, .nav > .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero { padding-top: 7rem; min-height: auto; padding-bottom: 5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 4rem; }
  .hero h1 { font-size: clamp(2.5rem, 11vw, 4rem); }
  .hero-image-wrap { max-width: 24rem; margin: 0 auto; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .lead-times { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0; }
  .section { padding: 4rem 0; }
  .page-hero { padding: 7rem 0 3rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-floating { left: 50%; transform: translateX(-50%); bottom: -2rem; }
  .scroll-indicator { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .hero-card.tl { left: 0.5rem; top: -0.5rem; padding: 0.65rem; }
  .hero-card.br { right: 0.5rem; bottom: -0.5rem; padding: 0.65rem; }
  .hero-card-icon { width: 2rem; height: 2rem; }
  .hero-card-text strong { font-size: 0.8rem; }
  .hero-card-text small { font-size: 0.7rem; }
  .page-hero h1 { font-size: clamp(2rem, 9vw, 2.75rem); }
  .hero h1 { font-size: clamp(2.25rem, 11vw, 3.5rem); }
  .form-card { padding: 1.5rem; }
  .cta-card { padding: 3rem 1.25rem; }
}

/* ===== FIX: Mobile menu hidden + flicker on scrolled header ===== */
.mobile-menu { z-index: 9999; }
.menu-toggle { z-index: 10000; }

/* Kill the scrolled header chrome the instant the menu starts opening,
   targeting both the body class (set by JS) and the .open class on the
   menu itself (also set in the same click handler), so whichever wins
   the paint race the header is already transparent. Also disable the
   header's transition so there is no fade through the blurred state. */
body.menu-open .site-header,
body.menu-open .site-header.scrolled,
.site-header:has(.mobile-menu.open),
.site-header.scrolled:has(.mobile-menu.open) {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  padding: 1rem 0 !important;
  transition: none !important;
}
