/* ===========================
   GILAKI — Design System
   Premium Ethnic Food Brand
   =========================== */

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

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors — derived from logo gradient */
  --clr-brand-deep:    #8B1A1A;
  --clr-brand-red:     #C0392B;
  --clr-brand-crimson: #A93226;
  --clr-brand-gold:    #D4A017;
  --clr-brand-amber:   #E8A838;
  --clr-brand-leaf:    #4A7C59;
  --clr-brand-leaf-lt: #6DAF7B;

  /* Neutrals */
  --clr-bg:            #0D0D0D;
  --clr-bg-warm:       #1A1410;
  --clr-bg-card:       #1E1914;
  --clr-bg-elevated:   #2A241E;
  --clr-surface:       rgba(255, 255, 255, 0.04);
  --clr-border:        rgba(255, 255, 255, 0.08);
  --clr-border-warm:   rgba(212, 160, 23, 0.15);

  /* Text */
  --clr-text-primary:  #F5F0EB;
  --clr-text-secondary:#B8AFA5;
  --clr-text-muted:    #7A7268;

  /* Gradients */
  --grad-brand:        linear-gradient(135deg, var(--clr-brand-deep), var(--clr-brand-red), var(--clr-brand-gold));
  --grad-brand-soft:   linear-gradient(135deg, rgba(192,57,43,0.15), rgba(212,160,23,0.10));
  --grad-hero:         linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(26,20,16,0.85) 40%, rgba(139,26,26,0.25) 100%);
  --grad-section:      linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-warm) 100%);

  /* Typography */
  --ff-display:        'Playfair Display', Georgia, serif;
  --ff-body:           'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-hero:           clamp(2.8rem, 6vw, 5rem);
  --fs-h1:             clamp(2rem, 4vw, 3.2rem);
  --fs-h2:             clamp(1.6rem, 3vw, 2.4rem);
  --fs-h3:             clamp(1.2rem, 2vw, 1.6rem);
  --fs-body:           1rem;
  --fs-small:          0.875rem;
  --fs-xs:             0.75rem;

  /* Spacing */
  --space-xs:          0.5rem;
  --space-sm:          1rem;
  --space-md:          1.5rem;
  --space-lg:          2.5rem;
  --space-xl:          4rem;
  --space-2xl:         6rem;
  --space-3xl:         8rem;

  /* Radius */
  --radius-sm:         8px;
  --radius-md:         12px;
  --radius-lg:         20px;
  --radius-xl:         28px;
  --radius-full:       9999px;

  /* Shadows */
  --shadow-sm:         0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:         0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:         0 16px 64px rgba(0,0,0,0.5);
  --shadow-glow:       0 0 40px rgba(212,160,23,0.15);

  /* Transitions */
  --ease-out:          cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:       cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:          0.2s;
  --dur-normal:        0.4s;
  --dur-slow:          0.6s;
}

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

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-text-primary);
  background-color: var(--clr-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--dur-fast) var(--ease-out);
}

ul { list-style: none; }

.container {
  width: min(90%, 1280px);
  margin-inline: auto;
}

/* --- Utility Classes --- */
.text-gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-brand-gold);
  margin-bottom: var(--space-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--clr-brand-gold);
}

.section-title {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-desc {
  color: var(--clr-text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(212,160,23,0.1); }
  50%      { box-shadow: 0 0 40px rgba(212,160,23,0.25); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   NAVIGATION
   ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--dur-normal) var(--ease-out);
  overflow-x: hidden;
}

.nav.scrolled {
  padding: var(--space-sm) 0;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--clr-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform var(--dur-fast) var(--ease-out), filter var(--dur-fast) var(--ease-out);
}

.nav__logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 16px rgba(212,160,23,0.3));
}

.footer__logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
  margin-bottom: var(--space-sm);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-shrink: 0;
}

.nav__link {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--clr-text-secondary);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--dur-fast) var(--ease-out);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 1px;
  transition: width var(--dur-normal) var(--ease-out);
}

.nav__link:hover {
  color: var(--clr-text-primary);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.6rem;
  background: var(--grad-brand);
  color: #fff;
  font-size: var(--fs-small);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast) var(--ease-out);
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.35);
}

/* Mobile menu toggle */
.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--clr-text-primary);
  border-radius: 2px;
  transition: all var(--dur-fast) var(--ease-out);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeInUp 1s var(--ease-out) 0.3s both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-brand-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(8px);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-brand-gold);
  animation: pulse-glow 2s ease infinite;
}

.hero__title {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.hero__title em {
  font-style: italic;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.15rem;
  color: var(--clr-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: all var(--dur-fast) var(--ease-spring);
}

.btn--primary {
  background: var(--grad-brand);
  color: #fff;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(192,57,43,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--clr-text-primary);
  border: 1px solid var(--clr-border);
  backdrop-filter: blur(8px);
}

.btn--outline:hover {
  border-color: var(--clr-brand-gold);
  color: var(--clr-brand-gold);
  transform: translateY(-3px);
}

.btn__arrow {
  transition: transform var(--dur-fast) var(--ease-out);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* Hero scroll indicator */
.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.75rem;
  animation: fadeIn 1s var(--ease-out) 1.5s both;
}

.hero__scroll-text {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--clr-brand-gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); }
}

/* =====================
   STATS BAR
   ===================== */
.stats {
  position: relative;
  z-index: 10;
  margin-top: -3rem;
  padding: 0 0 var(--space-xl);
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.stats__item {
  padding: var(--space-lg);
  text-align: center;
  position: relative;
  transition: background var(--dur-fast) var(--ease-out);
}

.stats__item:hover {
  background: var(--clr-surface);
}

.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--clr-border);
}

.stats__number {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-xs);
}

.stats__label {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  font-weight: 500;
}

/* =====================
   PRODUCTS / CATEGORIES
   ===================== */
.products {
  padding: var(--space-3xl) 0;
  background: var(--grad-section);
}

.products__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.products__header .section-desc {
  margin-inline: auto;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

/* Large featured cards */
.products__grid--featured {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}

.product-card--featured {
  aspect-ratio: 16/10;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.2) 50%, transparent 100%);
}

.product-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  transform: translateY(10px);
  transition: transform var(--dur-normal) var(--ease-out);
}

.product-card:hover .product-card__content {
  transform: translateY(0);
}

.product-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  backdrop-filter: blur(8px);
}

.product-card__title {
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-card__subtitle {
  font-size: var(--fs-small);
  color: var(--clr-text-secondary);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--dur-normal) var(--ease-out) 0.05s;
}

.product-card:hover .product-card__subtitle {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   ABOUT SECTION
   ===================== */
.about {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 2px solid var(--clr-brand-gold);
  border-radius: var(--radius-xl);
  opacity: 0.3;
  z-index: -1;
}

.about__content {
  padding-left: var(--space-lg);
}

.about__text {
  color: var(--clr-text-secondary);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.about__feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--grad-brand-soft);
  border: 1px solid var(--clr-border-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.about__feature-text {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--clr-text-primary);
}

.about__feature-desc {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-top: 0.2rem;
}

/* =====================
   WHY GILAKI / VALUE PROPS
   ===================== */
.why {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-warm);
  position: relative;
}

.why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border-warm), transparent);
}

.why__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.why__header .section-desc {
  margin-inline: auto;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.why-card {
  padding: var(--space-xl);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  transition: all var(--dur-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-normal) var(--ease-out);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  border-color: var(--clr-border-warm);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--grad-brand-soft);
  border: 1px solid var(--clr-border-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.why-card__title {
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.why-card__text {
  font-size: var(--fs-small);
  color: var(--clr-text-secondary);
  line-height: 1.8;
}

/* =====================
   BRANDS MARQUEE
   ===================== */
.brands {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
}

.brands__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.brands__track {
  display: flex;
  gap: var(--space-2xl);
  animation: marquee 30s linear infinite;
  width: max-content;
}

.brands__track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brands__item {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out);
  padding: var(--space-sm) var(--space-lg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
}

.brands__item:hover {
  color: var(--clr-brand-gold);
  border-color: var(--clr-border-warm);
}

/* =====================
   CONTACT / CTA SECTION
   ===================== */
.contact {
  padding: var(--space-3xl) 0;
  position: relative;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact__info {
  padding-right: var(--space-lg);
}

.contact__details {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--grad-brand-soft);
  border: 1px solid var(--clr-border-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact__detail-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact__detail-value {
  font-weight: 500;
  margin-top: 0.15rem;
}

.contact__form-wrapper {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1.1rem;
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text-primary);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--clr-brand-gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.12);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  padding: var(--space-2xl) 0 var(--space-lg);
  border-top: 1px solid var(--clr-border);
  background: var(--clr-bg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand-desc {
  color: var(--clr-text-secondary);
  font-size: var(--fs-small);
  line-height: 1.8;
  margin-top: var(--space-md);
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--dur-fast) var(--ease-out);
}

.footer__social-link:hover {
  border-color: var(--clr-brand-gold);
  color: var(--clr-brand-gold);
  background: rgba(212,160,23,0.08);
}

.footer__heading {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-body);
  margin-bottom: var(--space-md);
  color: var(--clr-text-primary);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  transition: color var(--dur-fast) var(--ease-out), padding-left var(--dur-fast) var(--ease-out);
}

.footer__link:hover {
  color: var(--clr-brand-gold);
  padding-left: 4px;
}

.footer__bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--clr-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.footer__legal {
  display: flex;
  gap: var(--space-md);
}

.footer__legal a {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.footer__legal a:hover {
  color: var(--clr-brand-gold);
}

/* =====================
   DISTRIBUTION / WHOLESALE
   ===================== */
.distribution {
  padding: var(--space-3xl) 0;
  background: var(--clr-bg-warm);
  border-top: 1px solid var(--clr-border);
}

.distribution__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.distribution__text {
  color: var(--clr-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.distribution__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.distribution__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: var(--clr-bg-card);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  transition: all var(--dur-fast) var(--ease-out);
}

.distribution__list li:hover {
  border-color: var(--clr-brand-gold);
  transform: translateX(4px);
  background: var(--clr-surface);
}

.dist-icon {
  font-size: 1.5rem;
  background: rgba(212,160,23,0.15);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.distribution__list strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--clr-text-primary);
  margin-bottom: 0.2rem;
}

.distribution__list span {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
}

.distribution__visual {
  position: relative;
}

.dist-img-stack {
  position: relative;
  height: 500px;
}

.dist-img-1,
.dist-img-2 {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
  object-fit: cover;
  transition: transform var(--dur-normal) var(--ease-out);
}

.dist-img-1 {
  width: 75%;
  height: 70%;
  top: 0;
  right: 0;
  z-index: 1;
}

.dist-img-2 {
  width: 65%;
  height: 60%;
  bottom: 0;
  left: 0;
  z-index: 2;
  border: 4px solid var(--clr-bg-warm);
}

.dist-img-stack:hover .dist-img-1 {
  transform: translate(-10px, -10px) scale(1.02);
}

.dist-img-stack:hover .dist-img-2 {
  transform: translate(10px, 10px) scale(1.02);
}

.distribution__accent {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(192,57,43,0.1) 0%, transparent 70%);
  z-index: 0;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  /* Mobile menu */
  .nav__links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,13,13,0.97);
    backdrop-filter: blur(20px);
    padding: 6rem var(--space-lg);
    gap: var(--space-lg);
    z-index: 999;
    animation: fadeIn 0.3s var(--ease-out);
  }

  .nav__links.active .nav__link {
    font-size: 1.3rem;
    color: var(--clr-text-primary);
  }

  /* Consistent section spacing */
  .hero,
  .stats,
  .products,
  .distribution,
  .about,
  .why,
  .contact {
    padding: var(--space-xl) 0;
  }

  /* Center all section headers on mobile */
  .products__header,
  .about__content,
  .why .container > .products__header,
  .contact .products__header {
    text-align: center;
  }

  .section-desc {
    margin-inline: auto;
  }

  .section-label {
    justify-content: center;
  }

  /* Hero */
  .hero {
    min-height: 85vh;
  }

  .hero__content {
    text-align: center;
    align-items: center;
    padding: 0 var(--space-sm);
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero__desc {
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Stats */
  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .stats__item:not(:last-child)::after {
    display: none;
  }

  .stats__item {
    text-align: center;
  }

  /* Products grid */
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .products__grid--featured {
    grid-template-columns: 1fr;
  }

  /* About */
  .about__grid,
  .distribution__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .dist-img-stack {
    height: 400px;
  }

  .about__content {
    padding-left: 0;
    text-align: center;
  }

  .about__text {
    text-align: center;
  }

  .about__features {
    justify-items: center;
  }

  .about__feature {
    text-align: center;
  }

  /* Why section */
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .why-card {
    text-align: center;
    align-items: center;
    padding: var(--space-md);
  }

  .why-card__title {
    font-size: var(--fs-small);
  }

  .why-card__text {
    font-size: var(--fs-xs);
  }

  /* Contact forms */
  .contact__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .contact__form-wrapper {
    text-align: left;
  }

  .contact__form-wrapper .section-title {
    text-align: center;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .footer__links {
    align-items: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

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

@media (max-width: 480px) {
  .stats__inner {
    grid-template-columns: 1fr;
  }

  .products__grid {
    grid-template-columns: 1fr;
  }

  .about__features {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .nav__logo-img {
    height: 34px;
  }
}
