/* ============================================================
   AL-MAHMOOD CO. — Luxury Dark Theme
   Font: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

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

/* ── Root Variables ─────────────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E2C47A;
  --gold-dim:    #8A6E2F;
  --black:       #050505;
  --dark:        #0D0D0D;
  --dark-2:      #141414;
  --dark-3:      #1C1C1C;
  --dark-4:      #242424;
  --border:      rgba(201,168,76,0.18);
  --text:        #E8E4DC;
  --text-muted:  #9B9590;
  --text-dim:    #6B6560;
  --white:       #FDFCFA;
  --radius:      4px;
  --transition:  all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.12);
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-accent:  'Cinzel', serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* Selection */
::selection { background: var(--gold); color: var(--black); }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
}

.display-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

p { color: var(--text-muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── Utility ────────────────────────────────────────────── */
.gold { color: var(--gold); }
.text-muted-custom { color: var(--text-muted); }
.container-xl { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

.section-pad { padding: 7rem 0; }
.section-pad-sm { padding: 4rem 0; }

/* Gold line divider */
.gold-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem 0;
}
.gold-line.center { margin: 1.5rem auto; }

/* ── Scroll Animations ──────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.delay-1 { transition-delay: 0.15s; }
.animate-on-scroll.delay-2 { transition-delay: 0.30s; }
.animate-on-scroll.delay-3 { transition-delay: 0.45s; }
.animate-on-scroll.delay-4 { transition-delay: 0.60s; }
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navbar ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 0.6rem 2.5rem;
}

/* ── Navbar ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.8rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 0.5rem 2.5rem;
}

/* ── Nav Brand: logo + company name ─────────────────────── */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.3s;
}
.nav-brand:hover { opacity: 0.88; }

/* Logo image */
.nav-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* Subtle gold border to frame the logo */
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 6px;
  padding: 3px 7px;
  background: rgba(201,168,76,0.04);
  transition: border-color 0.3s, background 0.3s;
}
.nav-brand:hover .nav-logo-wrap {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.08);
}
.nav-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
  transition: height 0.3s;
}
.site-nav.scrolled .nav-logo { height: 38px; }

/* Company name text beside logo */
.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  /* Separated from logo by a thin gold vertical line */
  padding-left: 0.85rem;
  border-left: 1px solid rgba(201,168,76,0.3);
}
.nav-brand-name {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}
.nav-brand-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Mobile Nav ─────────────────────────────────────────── */
.mobile-nav-logo-wrap { display: none; } /* old — not used */
.mobile-nav-logo-bg   { display: none; } /* old — not used */

.mobile-nav-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.mobile-nav-header .mobile-nav-logo-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 6px 14px;
  background: rgba(201,168,76,0.05);
}
.mobile-nav-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
}
.mobile-nav-brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.mobile-nav-brand-name {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  line-height: 1;
}
.mobile-nav-brand-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.mobile-nav-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem auto 1.5rem;
}

/* Footer logo */
.footer-logo-link {
  display: inline-flex;
  margin-bottom: 1.25rem;
}
.footer-logo-bg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
}

/* ── Responsive nav adjustments ─────────────────────────── */
@media (max-width: 900px) {
  .nav-brand-text { display: none; }
}
@media (max-width: 768px) {
  .site-nav { padding: 0.7rem 1.25rem; }
  .nav-logo  { height: 42px; }
  .site-nav.scrolled .nav-logo { height: 34px; }
}
@media (max-width: 480px) {
  .nav-logo { height: 38px; }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-links .nav-link {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links .nav-link:hover,
.nav-links .nav-link.active {
  color: var(--gold);
}
.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after {
  transform: scaleX(1);
}

/* Mobile hamburger */
.nav-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.nav-toggler span {
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-toggler.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggler.open span:nth-child(2) { opacity: 0; }
.nav-toggler.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--text);
  transition: color 0.3s;
}
.mobile-nav .nav-link:hover { color: var(--gold); }
.mobile-nav .nav-link.active { color: var(--gold); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1541123437800-1bb1317badc2?w=1600&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.15) saturate(0.5);
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
              linear-gradient(to right, rgba(5,5,5,0.8) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease forwards;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badges {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.4s ease forwards;
}

.hero-badge {
  text-align: right;
}
.hero-badge .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hero-badge .lbl {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.6s ease forwards;
}
.hero-scroll span {
  font-family: var(--font-accent);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-gold:hover { color: var(--black); }
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.06);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Stats Bar ──────────────────────────────────────────── */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-item .stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ── Cards ──────────────────────────────────────────────── */
.product-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.product-card .card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.product-card:hover .card-img { transform: scale(1.05); }
.product-card .card-body {
  padding: 1.5rem;
}
.product-card .card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.product-card .card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.product-card .card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.product-card .card-link {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card-link::after {
  content: '→';
  transition: transform 0.3s;
}
.product-card:hover .card-link::after { transform: translateX(4px); }

/* ── Image Gallery ──────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 8px;
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.85);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  background: none;
  border: 1px solid var(--border);
  color: var(--gold);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--black); }
.lightbox-nav {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.lightbox-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  transition: var(--transition);
}
.lightbox-btn:hover { background: var(--gold); color: var(--black); }

/* ── Feature List ───────────────────────────────────────── */
.feature-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.feature-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}
.feature-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* ── Section: About ─────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: brightness(0.75);
}
.about-image-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  text-align: center;
}
.about-image-badge .num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.about-image-badge .lbl {
  font-family: var(--font-accent);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Mission / Vision ───────────────────────────────────── */
.mv-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
}
.mv-card:hover {
  border-color: var(--gold-dim);
  box-shadow: var(--shadow-gold);
}
.mv-number {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 300;
  color: var(--dark-4);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 2rem;
  pointer-events: none;
  user-select: none;
}
.mv-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.mv-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Clients ────────────────────────────────────────────── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.client-cell {
  background: var(--dark-2);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-cell:hover {
  background: var(--dark-3);
}
.client-cell span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.3s;
  text-align: center;
}
.client-cell:hover span { color: var(--gold); }

/* ── Contact ────────────────────────────────────────────── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-label {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.contact-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
}

/* Contact form */
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold-dim);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form select option { background: var(--dark-2); }

/* ── Page Hero ──────────────────────────────────────────── */
.page-hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.1) saturate(0.3);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.4) 100%);
}
.page-hero-content { position: relative; z-index: 2; }

/* ── Product Detail ─────────────────────────────────────── */
.product-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .brand-name {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}
.footer-brand .brand-tagline {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}
.footer-brand p {
  font-size: 0.83rem;
  color: var(--text-dim);
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.7;
}
.footer-col h5 {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--text-dim);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ── Specta Page ────────────────────────────────────────── */
.specta-header {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}
.specta-header::after {
  content: 'SPECTA';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-accent);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(201,168,76,0.04);
  pointer-events: none;
  letter-spacing: 0.1em;
}

.collection-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 3rem;
}
.collection-card:hover { border-color: var(--gold-dim); }
.collection-card .col-images {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  height: 300px;
  gap: 3px;
}
.collection-card .col-images img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.collection-card:hover .col-images img { transform: scale(1.04); }
.collection-card .col-body {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}
.collection-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.collection-origin {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.collection-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.finish-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.finish-tag {
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--border);
  font-family: var(--font-accent);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Decorative ─────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  background: var(--dark-2);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0 3rem;
  white-space: nowrap;
}
.marquee-item .dot {
  color: var(--gold);
  margin-right: 3rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Specta Teaser Grid ──────────────────────────────────── */
.specta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.specta-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 768px) {
  .specta-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .specta-images {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Tabs ───────────────────────────────────────────────── */
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
  overflow-x: auto;
}
.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 1rem 1.5rem;
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  margin-bottom: -1px;
}
.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.tab-btn:hover { color: var(--text); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-badge { right: 1rem; }
  .product-detail-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 5rem 0; }
  .nav-links { display: none; }
  .nav-toggler { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  /* Footer: brand full width, then nav+products side by side, contact full width */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: 1 / -1; }
  .hero-badges { display: none; }
  .collection-card .col-images { grid-template-columns: 1fr; height: 220px; }
  .collection-card .col-images img:not(:first-child) { display: none; }
  .collection-card .col-body { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .site-nav { padding: 0.75rem 1.25rem; }
  /* Logo responsive */
  .nav-logo { height: 42px; }
  .site-nav.scrolled .nav-logo { height: 34px; }
  .footer-logo { height: 50px; }
  .mobile-nav-logo { height: 68px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
  .btn-gold, .btn-outline { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section-pad { padding: 4rem 0; }
  .nav-logo { height: 44px; }
  .site-nav.scrolled .nav-logo { height: 36px; }
}
