/* ═══════════════════════════════════════════
   ALSAFWA MILLS — styles.css
   Cloudflare Pages · Production Ready
═══════════════════════════════════════════ */

/* ── Variables ───────────────────────────── */
:root {
  --gold:        #d6aa5d;
  --gold-light:  #e6c17b;
  --gold-dim:    rgba(214, 170, 93, 0.18);
  --gold-dimmer: rgba(214, 170, 93, 0.08);
  --black:       #000000;
  --dark:        #080500;
  --dark2:       #0f0a00;
  --white:       #ffffff;
  --text-muted:  rgba(255, 255, 255, 0.6);
  --text-faint:  rgba(255, 255, 255, 0.35);
  --border:      rgba(214, 170, 93, 0.18);
  --border-hover:rgba(214, 170, 93, 0.45);
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   22px;
  --header-h:    76px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ───────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Utility ─────────────────────────────── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 88px 40px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 48px;
}
.section-title em {
  font-style: normal;
  color: var(--gold);
}

/* ── Reveal animation ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── Buttons ─────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(214, 170, 93, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(214, 170, 93, 0.5);
  color: var(--gold);
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: var(--transition);
}
.btn-ghost:hover {
  background: var(--gold-dimmer);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(0, 0, 0, 0.0);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
  background: rgba(4, 2, 0, 0.92);
  border-bottom-color: var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-emblem {
  width: 46px; height: 46px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  position: relative;
  transition: var(--transition);
}
.logo-emblem::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 0.5px solid rgba(214, 170, 93, 0.25);
}
.logo:hover .logo-emblem {
  box-shadow: 0 0 20px rgba(214, 170, 93, 0.2);
}

.logo-text h1 {
  color: var(--gold);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}
.logo-text span {
  display: block;
  color: rgba(214, 170, 93, 0.45);
  font-size: 9px;
  letter-spacing: 3.5px;
  font-weight: 400;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--gold);
  transition: left 0.3s ease, right 0.3s ease;
}
.nav-link:hover { color: var(--gold); background: var(--gold-dimmer); }
.nav-link:hover::after, .nav-link.active::after { left: 16px; right: 16px; }
.nav-link.active { color: var(--gold); }

.nav-cta {
  border: 1.5px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.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; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: rgba(4, 2, 0, 0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.mob-link {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  padding: 12px 40px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.mob-link:hover { color: var(--gold); background: var(--gold-dimmer); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1501430654243-c934cec2e1c0?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroZoom 16s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    170deg,
    rgba(0,0,0,0.90) 0%,
    rgba(15,8,0,0.78) 50%,
    rgba(0,0,0,0.88) 100%
  );
}

.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 24px 80px;
  max-width: 860px;
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(214,170,93,0.35);
  background: rgba(214,170,93,0.07);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 22px;
  border-radius: 100px;
  margin-bottom: 36px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(60px, 11vw, 110px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(214,170,93,0.15);
  padding-top: 48px;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 120px;
  max-width: 200px;
  text-align: center;
  padding: 0 32px;
}

.stat-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 13px;
  color: var(--text-faint);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(214,170,93,0.18);
  flex-shrink: 0;
}

.scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-faint);
  font-size: 11px;
  animation: bounce 2.5s ease infinite;
}
.scroll-hint svg { color: rgba(214,170,93,0.4); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.about-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?q=80&w=1974');
  background-size: cover;
  background-position: center top;
  opacity: 0.15;
}

.about-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--dark) 0%, rgba(8,5,0,0.55) 40%, var(--dark) 100%);
}

.about .section-inner { position: relative; z-index: 2; }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 72px;
}

.about-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 2;
  margin-bottom: 22px;
}

.location-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(214,170,93,0.1), rgba(214,170,93,0.04));
  border: 1px solid rgba(214,170,93,0.22);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-top: 8px;
}

.location-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }

.location-box strong {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.location-box span {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.6;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.value-card:hover {
  background: rgba(214,170,93,0.07);
  border-color: var(--border-hover);
  transform: translateX(-6px);
}

.value-icon {
  width: 46px; height: 46px;
  background: rgba(214,170,93,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.value-card h4 {
  color: var(--gold);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}
.value-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Team */
.team-section { }

.team-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(214,170,93,0.2);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition-bounce);
}
.team-card:hover {
  background: rgba(214,170,93,0.07);
  border-color: var(--border-hover);
  transform: translateY(-8px);
}

.team-avatar {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(214,170,93,0.2), rgba(214,170,93,0.06));
  border: 1.5px solid rgba(214,170,93,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
}

.team-card h4 {
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}
.team-card p {
  color: rgba(214,170,93,0.65);
  font-size: 13px;
  font-weight: 600;
}

/* ══════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════ */
.products {
  position: relative;
  background: #050300;
  overflow: hidden;
}

.products-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1509440159596-0249088772ff?q=80&w=2070');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.products-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #050300 0%, rgba(5,3,0,0.5) 50%, #050300 100%);
}

.products-accent-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  z-index: 3;
}

.products .section-inner { position: relative; z-index: 2; }

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.products-sub {
  max-width: 340px;
  color: var(--text-faint);
  font-size: 14px;
  line-height: 1.8;
  padding-bottom: 10px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.product-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(214,170,93,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 20px 28px;
  text-align: center;
  overflow: hidden;
  cursor: default;
  transition: var(--transition-bounce);
  animation-delay: calc(var(--i) * 0.08s);
}

.product-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(214,170,93,0.14), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.product-card:hover {
  transform: translateY(-12px);
  border-color: rgba(214,170,93,0.5);
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(214,170,93,0.07));
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 48px rgba(214,170,93,0.07);
}
.product-card:hover .product-glow { opacity: 1; }

.product-icon {
  display: block;
  font-size: 46px;
  margin-bottom: 18px;
  transition: transform 0.35s ease;
}
.product-card:hover .product-icon { transform: scale(1.18) rotate(-4deg); }

.product-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.product-card:hover .product-name { color: var(--gold); }

.product-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  margin-bottom: 16px;
}

.product-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(214,170,93,0.1);
  border: 1px solid rgba(214,170,93,0.22);
  border-radius: 100px;
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.products-note {
  margin-top: 48px;
  text-align: center;
  padding: 22px 32px;
  background: rgba(214,170,93,0.06);
  border: 1px solid rgba(214,170,93,0.18);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  line-height: 1.8;
}
.products-note a {
  color: var(--gold);
  font-weight: 700;
  transition: color 0.2s;
}
.products-note a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.contact-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1457530378978-8bac673b8062?q=80&w=2070');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.contact-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(8,5,0,0.97), rgba(8,5,0,0.88));
}

.contact .section-inner { position: relative; z-index: 2; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 72px;
  align-items: start;
}

/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-item:hover {
  background: rgba(214,170,93,0.07);
  border-color: var(--border-hover);
  transform: translateX(-6px);
}

.contact-icon {
  width: 46px; height: 46px;
  background: rgba(214,170,93,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  color: rgba(214,170,93,0.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.contact-detail span,
.contact-detail a {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.55;
  display: block;
}
.contact-detail a:hover { color: var(--gold); }

/* Form */
.form-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(214,170,93,0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(214,170,93,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: var(--transition);
  direction: rtl;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(214,170,93,0.6);
  background: rgba(214,170,93,0.06);
  box-shadow: 0 0 0 3px rgba(214,170,93,0.08);
}
.form-group input.error,
.form-group textarea.error { border-color: rgba(220, 60, 60, 0.7); }

.form-group textarea {
  resize: vertical;
  min-height: 128px;
}

.form-submit {
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius-sm);
  padding: 15px 36px;
  font-family: 'Cairo', sans-serif;
  font-size: 17px;
  font-weight: 800;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(214,170,93,0.25);
}
.form-submit:active { transform: scale(0.98); }
.form-submit.loading { opacity: 0.7; pointer-events: none; }

.submit-arrow { transition: transform 0.3s; }
.form-submit:hover .submit-arrow { transform: translateX(-4px); }

.form-success,
.form-error {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  text-align: center;
}
.form-success {
  background: rgba(45,181,96,0.1);
  border: 1px solid rgba(45,181,96,0.3);
  color: #4eca78;
}
.form-error {
  background: rgba(220,60,60,0.1);
  border: 1px solid rgba(220,60,60,0.3);
  color: #f07070;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(214,170,93,0.16);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 40px 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand h2 {
  color: var(--gold);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 2px;
}
.footer-en {
  display: block;
  color: rgba(214,170,93,0.4);
  font-size: 10px;
  letter-spacing: 3.5px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand p {
  color: var(--text-faint);
  font-size: 14px;
  line-height: 1.75;
  max-width: 220px;
}

.footer-col h4 {
  color: rgba(214,170,93,0.6);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a,
.footer-col p {
  display: block;
  color: rgba(255,255,255,0.42);
  font-size: 14px;
  margin-bottom: 11px;
  line-height: 1.6;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
}
.footer-copy em { font-style: normal; color: rgba(214,170,93,0.45); }

.footer-badge {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 6px 16px;
  border-radius: 100px;
}

/* ── Back to top ─────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 18px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  pointer-events: none;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(214,170,93,0.25);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .section-inner { padding: 64px 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .stat { min-width: 80px; padding: 0 16px; }
  .products-header { flex-direction: column; gap: 16px; }
  .products-sub { max-width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 14px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 52px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; justify-content: center; }
  .products-grid { grid-template-columns: 1fr; }
  .back-to-top { bottom: 20px; left: 20px; }
}
