/* ============================================================
   CIRCONIS — Base Stylesheet
   style.css
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* --- Brand Colors --- */
  --color-primary:      #DCA950;   /* Circonis gold */
  --color-black:        #000000;
  --color-accent:       #A1463D;   /* Circonis red-brown */
  --color-bg:           #E7DBC7;   /* Warm parchment */
  --color-text:         #1F1709;   /* Deep warm black */

  /* --- Extended Palette --- */
  --color-bg-dark:      #0E0C08;   /* Near-black warm */
  --color-bg-mid:       #2A2318;   /* Dark warm brown */
  --color-surface:      #F2EAD8;   /* Light parchment card */
  --color-surface-dark: #1A1510;   /* Dark card bg */
  --color-muted:        #7A6A52;   /* Muted text */
  --color-border:       rgba(220, 169, 80, 0.25);
  --color-border-dark:  rgba(220, 169, 80, 0.12);

  --color-primary-hover: #E8BA60;
  --color-accent-hover:  #B8534A;

  /* --- Typography --- */
  --font-heading: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;

  /* --- Type Scale --- */
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-md:   1.125rem;   /* 18px */
  --text-lg:   1.25rem;    /* 20px */
  --text-xl:   1.5rem;     /* 24px */
  --text-2xl:  2rem;       /* 32px */
  --text-3xl:  2.75rem;    /* 44px */
  --text-4xl:  3.5rem;     /* 56px */
  --text-5xl:  5rem;       /* 80px */
  --text-6xl:  7rem;       /* 112px */

  /* --- Heading letter-spacing (Bebas Neue looks best wide) --- */
  --ls-heading: 0.04em;
  --ls-label:   0.12em;

  /* --- Spacing Scale (8px base) --- */
  --sp-1:  0.25rem;   /* 4px */
  --sp-2:  0.5rem;    /* 8px */
  --sp-3:  0.75rem;   /* 12px */
  --sp-4:  1rem;      /* 16px */
  --sp-5:  1.25rem;   /* 20px */
  --sp-6:  1.5rem;    /* 24px */
  --sp-8:  2rem;      /* 32px */
  --sp-10: 2.5rem;    /* 40px */
  --sp-12: 3rem;      /* 48px */
  --sp-16: 4rem;      /* 64px */
  --sp-20: 5rem;      /* 80px */
  --sp-24: 6rem;      /* 96px */
  --sp-32: 8rem;      /* 128px */

  /* --- Layout --- */
  --max-width:       1280px;
  --content-width:   1100px;
  --gutter:          clamp(1.25rem, 5vw, 3rem);

  /* --- Border Radius --- */
  --radius-sm:  2px;
  --radius-md:  4px;
  --radius-lg:  8px;
  --radius-xl:  16px;

  /* --- Shadows --- */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.35);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.45);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 32px rgba(220, 169, 80, 0.2);

  /* --- Transitions --- */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:   160ms;
  --dur-mid:    300ms;
  --dur-slow:   600ms;

  /* --- Nav --- */
  --nav-height: 72px;
}


/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--color-primary);
  color: var(--color-bg-dark);
}


/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.heading {
  font-family: var(--font-heading);
  letter-spacing: var(--ls-heading);
  line-height: 1.0;
  text-transform: uppercase;
}

.label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}

.body-sm  { font-size: var(--text-sm);  }
.body-md  { font-size: var(--text-md);  }
.muted    { color: var(--color-muted);  }
.gold     { color: var(--color-primary); }
.accent   { color: var(--color-accent); }


/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  letter-spacing: var(--ls-heading);
  padding: var(--sp-3) var(--sp-8);
  border-radius: var(--radius-sm);
  transition:
    background var(--dur-mid) var(--ease-out),
    color var(--dur-mid) var(--ease-out),
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-mid) var(--ease-out);
  white-space: nowrap;
  line-height: 1;
}

.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-primary);
  color: var(--color-bg-dark);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 24px rgba(220, 169, 80, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn--outline:hover {
  background: rgba(220, 169, 80, 0.08);
  border-color: var(--color-primary-hover);
}

.btn--dark {
  background: var(--color-bg-dark);
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
}
.btn--dark:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-gold);
}

.btn--sm {
  font-size: var(--text-base);
  padding: var(--sp-2) var(--sp-5);
}

.btn--lg {
  font-size: var(--text-xl);
  padding: var(--sp-4) var(--sp-10);
}


/* ============================================================
   DIVIDER / ORNAMENT
   ============================================================ */
.divider {
  width: 100%;
  height: 1px;
  background: var(--color-border);
}

.ornament {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  color: var(--color-primary);
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}


/* ============================================================
   SECTION SPACING
   ============================================================ */
.section {
  padding-block: clamp(var(--sp-16), 8vw, var(--sp-32));
}

.section--tight {
  padding-block: clamp(var(--sp-8), 4vw, var(--sp-16));
}


/* ============================================================
   BADGES / TAGS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  padding: 3px var(--sp-3);
  border-radius: var(--radius-sm);
}

.badge--gold {
  background: rgba(220, 169, 80, 0.15);
  color: var(--color-primary);
  border: 1px solid rgba(220, 169, 80, 0.3);
}

.badge--accent {
  background: rgba(161, 70, 61, 0.15);
  color: var(--color-accent);
  border: 1px solid rgba(161, 70, 61, 0.3);
}


/* ============================================================
   NOISE TEXTURE OVERLAY
   ============================================================ */
.noise-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}


/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar          { width: 8px; height: 8px; }
::-webkit-scrollbar-track    { background: var(--color-bg-dark); }
::-webkit-scrollbar-thumb    { background: var(--color-muted); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary); }


/* ============================================================
   FOCUS
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition:
    background var(--dur-mid) var(--ease-out),
    border-color var(--dur-mid) var(--ease-out),
    backdrop-filter var(--dur-mid) var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(14, 12, 8, 0.92);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border-bottom-color: var(--color-border-dark);
}

.nav__inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.nav__logo {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.7));
  transition: opacity var(--dur-fast) var(--ease-out);
}
.nav__logo:hover { opacity: 0.85; }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-bg);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
  transition: color var(--dur-fast) var(--ease-out);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-primary);
  transition: width var(--dur-mid) var(--ease-out);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-primary);
}

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

.nav__cta {
  font-size: var(--text-sm);
  padding: var(--sp-2) var(--sp-5);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-bg);
  transition: transform var(--dur-mid) var(--ease-out), opacity var(--dur-mid);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: rgba(14, 12, 8, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  z-index: 99;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity var(--dur-mid) var(--ease-out),
    transform var(--dur-mid) var(--ease-out);
  pointer-events: none;
}

.nav__mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav__mobile .nav__link {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  letter-spacing: var(--ls-heading);
  color: var(--color-bg);
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-bg-dark);
}

/* Background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroZoom 12s var(--ease-inout) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}

/* Gradient overlays */
.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(14, 12, 8, 0.98) 0%,
      rgba(14, 12, 8, 0.7)  35%,
      rgba(14, 12, 8, 0.15) 65%,
      rgba(14, 12, 8, 0.25) 100%
    );
}

/* Side vignette */
.hero__gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(14, 12, 8, 0.5) 0%,
    transparent 40%,
    transparent 60%,
    rgba(14, 12, 8, 0.3) 100%
  );
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: clamp(var(--sp-16), 8vw, var(--sp-24));
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp var(--dur-slow) var(--ease-out) 0.3s forwards;
}

.hero__eyebrow-line {
  width: 48px;
  height: 1.5px;
  background: var(--color-primary);
}

.hero__eyebrow-text {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-primary);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-4xl), 10vw, var(--text-6xl));
  letter-spacing: var(--ls-heading);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--color-bg);
  max-width: 12ch;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp var(--dur-slow) var(--ease-out) 0.5s forwards;
}

.hero__title em {
  font-style: normal;
  color: var(--color-primary);
}

.hero__subtitle {
  margin-top: var(--sp-6);
  font-size: clamp(var(--text-base), 1.5vw, var(--text-md));
  font-weight: 400;
  line-height: 1.65;
  color: rgba(231, 219, 199, 0.65);
  max-width: 48ch;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp var(--dur-slow) var(--ease-out) 0.7s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp var(--dur-slow) var(--ease-out) 0.9s forwards;
}

/* Stats strip */
.hero__stats {
  display: flex;
  gap: clamp(var(--sp-8), 4vw, var(--sp-16));
  margin-top: var(--sp-16);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(220, 169, 80, 0.15);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn var(--dur-slow) var(--ease-out) 1.1s forwards;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  letter-spacing: var(--ls-heading);
  color: var(--color-primary);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(231, 219, 199, 0.45);
  margin-top: var(--sp-1);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  right: var(--gutter);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.5s forwards;
}

.hero__scroll-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(220, 169, 80, 0.5);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--color-primary));
  animation: scrollPulse 2s ease-in-out 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}


/* ============================================================
   TRUST BAR (below hero)
   ============================================================ */
.trust-bar {
  background: var(--color-surface-dark);
  border-top: 1px solid var(--color-border-dark);
  border-bottom: 1px solid var(--color-border-dark);
  padding-block: var(--sp-5);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--sp-6), 4vw, var(--sp-16));
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(231, 219, 199, 0.55);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.trust-bar__icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

.trust-bar__divider {
  width: 1px;
  height: 20px;
  background: var(--color-border-dark);
}


/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav__links,
  .nav__cta-wrap {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile {
    display: flex;
  }

  .hero__stats {
    gap: var(--sp-8);
  }

  .hero__scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .trust-bar__divider {
    display: none;
  }
}

/* ============================================================
   SECTION HEADERS (shared pattern)
   ============================================================ */
.section-header {
  margin-bottom: clamp(var(--sp-10), 5vw, var(--sp-16));
  max-width: 52ch;
}

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

.section-header__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

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

.eyebrow-line {
  width: 32px;
  height: 1.5px;
  background: var(--color-primary);
  flex-shrink: 0;
}

.section-header__title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  color: var(--color-bg);
  line-height: 1.0;
}

.section-header__desc {
  margin-top: var(--sp-5);
  font-size: var(--text-md);
  color: var(--color-muted);
  line-height: 1.7;
}

.section-header__desc--center {
  max-width: 56ch;
  margin-inline: auto;
}


/* ============================================================
   PRODUCTS PREVIEW
   ============================================================ */
.products-preview {
  background: var(--color-bg-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-2);
}

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

.product-card:hover {
  border-color: rgba(220, 169, 80, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.product-card__image-wrap {
  background: #0a0806;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--sp-8);
}

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

.product-card:hover .product-card__image {
  transform: scale(1.06);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--sp-6);
  gap: var(--sp-3);
  border-top: 1px solid var(--color-border-dark);
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  letter-spacing: var(--ls-heading);
  color: var(--color-bg);
  line-height: 1.1;
}

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

.product-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  letter-spacing: var(--ls-heading);
  color: var(--color-primary);
  line-height: 1;
  display: block;
}

.product-card__vat {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-2);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--color-border-dark);
}

.product-card__size {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-muted);
}

.product-card__cta {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  transition: gap var(--dur-fast);
}

.product-card:hover .product-card__cta {
  text-decoration: underline;
}

.products-preview__all {
  display: flex;
  justify-content: center;
  margin-top: var(--sp-12);
}


/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries {
  background: var(--color-bg-mid);
  border-top: 1px solid var(--color-border-dark);
  border-bottom: 1px solid var(--color-border-dark);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-4);
}

.industry-card {
  background: var(--color-surface-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition:
    border-color var(--dur-mid) var(--ease-out),
    transform var(--dur-mid) var(--ease-out);
}

.industry-card:hover {
  border-color: rgba(220, 169, 80, 0.3);
  transform: translateY(-2px);
}

.industry-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(220, 169, 80, 0.08);
  border: 1px solid rgba(220, 169, 80, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: var(--sp-5);
}

.industry-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  letter-spacing: var(--ls-heading);
  color: var(--color-bg);
  margin-bottom: var(--sp-3);
}

.industry-card__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.7;
}


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--color-bg-dark);
}

/* Pictogram image — full width, white PNG on dark bg */
.hiw-pictogram {
  width: 100%;
  margin-bottom: var(--sp-4);
  /* Subtle gold tint on hover via filter */
}

.hiw-pictogram__img {
  width: 50%;
  height: auto;
  display: block;
  margin-inline: auto;
  filter: brightness(1.0);
  transition: filter var(--dur-slow) var(--ease-out);
  max-height: 340px;
  object-fit: contain;
}

/* Divider between image and step labels */
.hiw-pictogram::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--color-border) 20%,
    var(--color-border) 80%,
    transparent
  );
  margin-top: var(--sp-8);
}

/* 4-column grid of step descriptors */
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  padding-top: var(--sp-8);
}

.hiw-step {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1.5px solid var(--color-border-dark);
  transition: border-color var(--dur-mid) var(--ease-out);
}

.hiw-step:hover {
  border-top-color: rgba(220, 169, 80, 0.5);
}

.hiw-step__number {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  letter-spacing: var(--ls-label);
  color: var(--color-primary);
  opacity: 0.7;
}

.hiw-step__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  letter-spacing: var(--ls-heading);
  color: var(--color-bg);
  line-height: 1.1;
}

.hiw-step__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.7;
}


/* ============================================================
   BRAND / ABOUT STRIP
   ============================================================ */
.brand-strip {
  background: var(--color-bg-mid);
  border-top: 1px solid var(--color-border-dark);
}

.brand-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-12), 6vw, var(--sp-24));
  align-items: center;
}

.brand-strip__title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  color: var(--color-bg);
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-6);
  line-height: 1.05;
}

.brand-strip__desc {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}

.brand-strip__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-10);
}

.brand-strip__logo-wrap {
  background: rgba(220, 169, 80, 0.04);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-xl);
  padding: var(--sp-12);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-strip__logo {
  width: clamp(140px, 18vw, 220px);
  height: auto;
}

.brand-strip__facts {
  display: flex;
  gap: var(--sp-8);
  width: 100%;
  justify-content: center;
}

.brand-strip__fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
}

.brand-strip__fact-value {
  font-size: var(--text-2xl);
  color: var(--color-primary);
  display: block;
}

.brand-strip__fact-label {
  color: var(--color-muted);
  display: block;
  font-size: var(--text-xs);
}


/* ============================================================
   SHIPPING BANNER
   ============================================================ */
.shipping-banner {
  background: var(--color-primary);
  padding-block: clamp(var(--sp-10), 4vw, var(--sp-16));
}

.shipping-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.shipping-banner__title {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  color: var(--color-bg-dark);
  margin-bottom: var(--sp-2);
}

.shipping-banner__desc {
  font-size: var(--text-base);
  color: rgba(30, 20, 5, 0.65);
  max-width: 52ch;
}

.shipping-banner .btn--dark {
  background: var(--color-bg-dark);
  color: var(--color-primary);
  border-color: transparent;
  white-space: nowrap;
  flex-shrink: 0;
}

.shipping-banner .btn--dark:hover {
  background: var(--color-bg-mid);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080604;
  border-top: 1px solid var(--color-border-dark);
  padding-top: clamp(var(--sp-16), 6vw, var(--sp-24));
  padding-bottom: var(--sp-8);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: clamp(var(--sp-12), 6vw, var(--sp-24));
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--color-border-dark);
}

.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: var(--sp-5);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.footer__legal-note {
  font-size: var(--text-xs);
  color: rgba(122, 106, 82, 0.6);
  line-height: 1.65;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.footer__nav-heading {
  display: block;
  color: var(--color-bg);
  margin-bottom: var(--sp-4);
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--color-muted);
  transition: color var(--dur-fast) var(--ease-out);
}

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-8);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(122, 106, 82, 0.5);
  letter-spacing: 0.04em;
}

.footer__payment-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(122, 106, 82, 0.5);
}


/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 960px) {
  .brand-strip__inner {
    grid-template-columns: 1fr;
  }

  .brand-strip__visual {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-8);
  }

  .brand-strip__logo-wrap {
    width: auto;
    padding: var(--sp-8);
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

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

  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .shipping-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* How It Works: 2-column on tablet */
  .hiw-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .hiw-pictogram__img {
    max-height: 240px;
    width: 70%;
  }
}

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

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

  .brand-strip__visual {
    flex-direction: column;
  }

  /* How It Works: single column on mobile */
  .hiw-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-5);
  }

  .hiw-pictogram__img {
    max-height: 180px;
    width: 90%;
  }
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }


/* ============================================================
   COOKIE SETTINGS FOOTER LINK
   ============================================================ */
.footer__cookie-link {
  font-size: var(--text-xs);
  color: rgba(122, 106, 82, 0.5);
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color var(--dur-fast) var(--ease-out),
              text-decoration-color var(--dur-fast);
}

.footer__cookie-link:hover {
  color: var(--color-primary);
  text-decoration-color: rgba(220, 169, 80, 0.4);
}