/* ============================================
   IronGrid Supply Co. — Main Stylesheet
   Industrial / Lineworker / Power Grid aesthetic
   ============================================ */

/* --- Design Tokens --- */
:root,
[data-theme='light'] {
  /* Surfaces — warm industrial gray */
  --color-bg: #f2f1ee;
  --color-surface: #ffffff;
  --color-surface-2: #f7f6f4;
  --color-surface-offset: #e8e6e2;
  --color-surface-offset-2: #dddad5;
  --color-surface-dynamic: #d4d2cd;
  --color-divider: #d0cdc8;
  --color-border: #c8c5bf;

  /* Text */
  --color-text: #1a1a1a;
  --color-text-muted: #5a5a5a;
  --color-text-faint: #9a9a9a;
  --color-text-inverse: #f5f5f5;

  /* Primary Accent — Hazard Gold */
  --color-primary: #c4860e;
  --color-primary-hover: #a8720a;
  --color-primary-active: #8a5e06;
  --color-primary-highlight: #f0e4c8;

  /* High-Vis Orange */
  --color-orange: #d44e00;
  --color-orange-hover: #b03f00;
  --color-orange-active: #8c3200;
  --color-orange-highlight: #f5dcc8;

  /* Steel Blue */
  --color-steel: #4a5a6a;
  --color-steel-hover: #3a4a5a;

  /* Fonts */
  --font-display: 'Clash Display', 'Arial Narrow', sans-serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.14);
  --shadow-glow: 0 0 30px rgba(196, 134, 14, 0.15);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 1080px;
  --content-wide: 1320px;
  --content-full: 100%;

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 7.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

/* DARK MODE (default for this brand) */
[data-theme='dark'] {
  --color-bg: #0e0e0e;
  --color-surface: #181818;
  --color-surface-2: #1e1e1e;
  --color-surface-offset: #161616;
  --color-surface-offset-2: #222222;
  --color-surface-dynamic: #2a2a2a;
  --color-divider: #2a2a2a;
  --color-border: #333333;

  --color-text: #eaeaea;
  --color-text-muted: #8a8a8a;
  --color-text-faint: #555555;
  --color-text-inverse: #1a1a1a;

  --color-primary: #f5a623;
  --color-primary-hover: #ffba33;
  --color-primary-active: #d4901e;
  --color-primary-highlight: #2a2418;

  --color-orange: #ff6b1a;
  --color-orange-hover: #ff8533;
  --color-orange-active: #cc5500;
  --color-orange-highlight: #2a1a10;

  --color-steel: #6b7a8a;
  --color-steel-hover: #8a9aaa;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(245, 166, 35, 0.12);
}

/* Default to dark mode */
html {
  background-color: #0e0e0e;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 4vw, var(--space-12));
}

.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
}

/* --- Hazard Stripe --- */
.hazard-strip {
  height: 6px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--color-primary),
    var(--color-primary) 12px,
    #0e0e0e 12px,
    #0e0e0e 24px
  );
}

[data-theme='light'] .hazard-strip {
  background: repeating-linear-gradient(
    -45deg,
    var(--color-primary),
    var(--color-primary) 12px,
    #1a1a1a 12px,
    #1a1a1a 24px
  );
}

/* --- Header / Navigation --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header--hidden {
  transform: translateY(-100%);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-3) var(--space-3);
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 4vw, var(--space-12));
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.nav__logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav__brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.nav__brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.15em;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-interactive);
}

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

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

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-primary);
  color: #0e0e0e;
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn--block {
  width: 100%;
}

/* --- Theme Toggle --- */
.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.theme-toggle:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a0a;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 10, 10, 0.7) 0%,
      rgba(10, 10, 10, 0.4) 40%,
      rgba(10, 10, 10, 0.9) 100%
    ),
    linear-gradient(
      to right,
      rgba(10, 10, 10, 0.8) 0%,
      rgba(10, 10, 10, 0.2) 60%
    );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--content-default);
  padding-block: var(--space-32);
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero__eyebrow .bolt {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-6);
}

.hero__title .accent {
  color: var(--color-primary);
  display: block;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 52ch;
  margin-bottom: var(--space-10);
  line-height: 1.5;
}

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

.hero__actions .btn--primary {
  background: var(--color-primary);
  color: #0e0e0e;
}

.hero__actions .btn--outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.hero__actions .btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.hero__quote {
  position: absolute;
  bottom: var(--space-12);
  right: clamp(var(--space-4), 4vw, var(--space-12));
  max-width: 380px;
  z-index: 2;
  text-align: right;
  display: none;
}

.hero__quote p {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  line-height: 1.4;
}

.hero__quote cite {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: var(--space-3);
  font-style: normal;
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: var(--space-16);
  max-width: 640px;
}

.section-header--centered {
  margin-inline: auto;
  text-align: center;
}

.section-header--centered .eyebrow {
  justify-content: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
  line-height: 1.05;
}

.section-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- Product Grid --- */
.products {
  background: var(--color-bg);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
}

.product-card--featured {
  grid-column: span 2;
}

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

.product-card--featured .product-card__title {
  font-size: var(--text-xl);
}

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--color-text);
  text-decoration: none;
  transition:
    border-color var(--transition-interactive),
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive);
}

.product-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  transform: translateY(-4px);
}

.product-card__media {
  aspect-ratio: 4 / 3;
  background: var(--color-surface-offset);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card__media img {
  transform: scale(1.05);
}

.product-card__tag {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--color-surface);
  color: var(--color-primary);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-weight: 500;
  z-index: 2;
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: var(--space-4);
  opacity: 0;
  transition: opacity var(--transition-interactive);
}

.product-card__overlay span {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}

.product-card__overlay svg {
  color: var(--color-primary);
  transition: transform var(--transition-interactive);
}

.product-card:hover .product-card__overlay,
.product-card:focus-visible .product-card__overlay {
  opacity: 1;
}

.product-card:hover .product-card__overlay svg {
  transform: translateX(4px);
}

.product-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  flex: 1;
}

.product-card__action {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  text-decoration: none;
  margin-top: var(--space-2);
}

.product-card__action svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-interactive);
}

.product-card__action:hover svg {
  transform: translateX(4px);
}

/* --- Brand Story Section --- */
.story {
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-20));
  align-items: center;
}

.story__content .eyebrow {
  margin-bottom: var(--space-4);
}

.story__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: var(--space-6);
}

.story__title .accent {
  color: var(--color-primary);
}

.story__text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.story__quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
  padding-left: var(--space-6);
  border-left: 3px solid var(--color-primary);
  margin-block: var(--space-8);
  font-style: italic;
}

.story__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-lg);
}

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

.story__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  pointer-events: none;
  opacity: 0.3;
}

/* --- Values Strip --- */
.values {
  background: var(--color-surface-offset);
  border-block: 1px solid var(--color-border);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-8);
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.value-item__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: var(--color-primary-highlight);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-2);
}

.value-item__icon svg {
  width: 28px;
  height: 28px;
}

.value-item__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.value-item__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --- Custom Orders CTA --- */
.custom-orders {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.custom-orders__inner {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-10), 6vw, var(--space-20));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  align-items: center;
  overflow: hidden;
  position: relative;
}

.custom-orders__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  line-height: 1.1;
}

.custom-orders__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.custom-orders__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.custom-orders__features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 500;
}

.custom-orders__features svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.custom-orders__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}

.custom-orders__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

/* --- Newsletter / Contact --- */
.contact {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.contact__inner {
  text-align: center;
  max-width: var(--content-narrow);
  margin-inline: auto;
}

.contact__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.contact__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

/* --- Footer --- */
.footer {
  background: #0a0a0a;
  color: #aaa;
  padding-block: var(--space-16) var(--space-8);
}

[data-theme='light'] .footer {
  background: #0e0e0e;
}

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

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer__logo {
  width: 40px;
  height: 40px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.footer__brand-name span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: #777;
  letter-spacing: 0.15em;
  margin-top: 2px;
}

.footer__tagline {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.footer__desc {
  font-size: var(--text-sm);
  color: #888;
  line-height: 1.6;
  max-width: 40ch;
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: var(--space-4);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  font-size: var(--text-sm);
  color: #888;
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  border-top: 1px solid #222;
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: #666;
  font-family: var(--font-mono);
}

.footer__socials {
  display: flex;
  gap: var(--space-3);
}

.footer__socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  border: 1px solid #333;
  border-radius: var(--radius-sm);
}

.footer__socials a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.footer__socials svg {
  width: 18px;
  height: 18px;
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  padding: var(--space-20) var(--space-6) var(--space-8);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu--open {
  transform: translateX(0);
}

.mobile-menu__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.mobile-menu__links a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
}

.mobile-menu__links a:hover {
  color: var(--color-primary);
}

.mobile-menu__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__actions .btn {
    display: none;
  }

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

  .story__image {
    aspect-ratio: 16 / 10;
    order: -1;
  }

  .custom-orders__inner {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .hero__quote {
    display: none;
  }
}

@media (max-width: 768px) {
  .product-card--featured {
    grid-column: span 1;
  }

  .product-card--featured .product-card__media {
    aspect-ratio: 4 / 3;
  }

  .product-card--featured .product-card__title {
    font-size: var(--text-lg);
  }
}

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

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .nav__brand-text {
    font-size: var(--text-sm);
  }
}

@media (min-width: 1200px) {
  .hero__quote {
    display: block;
  }
}

/* --- Scroll Reveal Animations --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay='1'] {
  transition-delay: 0.1s;
}

[data-reveal-delay='2'] {
  transition-delay: 0.2s;
}

[data-reveal-delay='3'] {
  transition-delay: 0.3s;
}

[data-reveal-delay='4'] {
  transition-delay: 0.4s;
}

[data-reveal-delay='5'] {
  transition-delay: 0.5s;
}

[data-reveal-delay='6'] {
  transition-delay: 0.6s;
}
