/* ========================================================
   L HULL INDUSTRIES · Sterling Refined
   ======================================================== */

:root {
  --ink: #0E0E10;
  --ink-soft: #1A1A1D;
  --cream: #F8F5F0;
  --cream-deep: #EFE9DC;
  --bg: #FFFFFF;
  --line: #E8E5DF;
  --line-soft: #F0EBE3;
  --silver: #A8AFB7;
  --silver-dark: #818892;
  --silver-soft: #D4D8DE;
  --muted: #6B7280;
  --muted-soft: #9CA3AF;
  --gold: #B8946A;
  --accent: #B8946A;
  --surface: #F8F5F0;
  --shadow-sm: 0 1px 2px rgba(14, 14, 16, 0.04);
  --shadow-md: 0 12px 32px rgba(14, 14, 16, 0.06);
  --shadow-lg: 0 32px 64px rgba(14, 14, 16, 0.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 15.5px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h1 {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h3 { font-size: 1.0625rem; font-weight: 700; }

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: 0; background: transparent; }
img { display: block; max-width: 100%; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

/* Type utilities */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--silver-dark);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--silver);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 24px; height: 1px;
  background: var(--silver);
}

.lead {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ============ ANNOUNCEMENT ============ */
.announce {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  padding: 10px 24px;
}
.announce strong { color: white; font-weight: 600; }
.announce .sep { color: rgba(255, 255, 255, 0.3); margin: 0 8px; }

/* ============ HEADER ============ */
.header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--ink);
  border-radius: 8px;
  color: white;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo-sub {
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}
.nav {
  display: flex; gap: 8px;
}
.nav a {
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 999px;
  transition: background 0.2s var(--ease);
}
.nav a:hover { background: var(--cream); }
.nav-cta {
  background: var(--ink);
  color: white !important;
  padding: 10px 20px !important;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
  transition: all 0.25s var(--ease-out);
}
.nav-cta:hover { background: var(--ink-soft) !important; transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ============ HERO ============ */
.hero {
  padding: 88px 0 120px;
  background:
    radial-gradient(80% 50% at 100% 0%, rgba(168, 175, 183, 0.10), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F8F5F0 100%);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 96px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 11px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-tag .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}
.hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
}
.hero h1 .accent { color: var(--silver-dark); font-weight: 600; }
.hero h1 .dot-end {
  display: inline-block;
  width: 14px; height: 14px;
  background: var(--silver);
  border-radius: 50%;
  margin-left: 10px;
  vertical-align: middle;
  transform: translateY(-12px);
}
.hero-lead {
  font-size: 1.1875rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 44px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  letter-spacing: -0.005em;
}
.btn-primary { background: var(--ink); color: white; }
.btn-primary:hover { background: var(--ink-soft); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: white;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--ink); }
.btn-arrow { transition: transform 0.2s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* Hero brand preview (right column) */
.hero-side {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-side::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(168, 175, 183, 0.4), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-side-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.hero-side-title { font-size: 12.5px; font-weight: 700; letter-spacing: -0.005em; }
.hero-side-meta {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--silver-dark);
}
.hero-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
}
.hero-brand {
  background: white;
  padding: 22px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-align: center;
  display: flex; align-items: center; justify-content: center;
  min-height: 64px;
  transition: background 0.2s var(--ease);
}
.hero-brand:hover { background: var(--cream); }
.hero-side-foot {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
.hero-side-foot strong { color: var(--ink); font-weight: 700; }

/* ============ CREDENTIAL STRIP ============ */
.cred {
  padding: 36px 0;
  background: var(--ink);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cred-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  align-items: center;
}
.cred-item {
  display: flex; flex-direction: column; gap: 6px;
}
.cred-item .key {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.cred-item .val {
  font-size: 14.5px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.005em;
}

/* ============ SECTION SHELLS ============ */
.section { padding: 120px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.section-head h2 { margin: 14px 0 16px; }
.section-head p { color: var(--muted); font-size: 1.1rem; max-width: 580px; margin-left: auto; margin-right: auto; }

/* ============ ABOUT / COMPANY ============ */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-left h2 { margin-bottom: 24px; }
.about-left .eyebrow { margin-bottom: 18px; }
.about-list { display: flex; flex-direction: column; gap: 28px; }
.about-item {
  padding-left: 24px;
  border-left: 1px solid var(--silver);
}
.about-item h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.about-item p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.about-item .label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--silver-dark);
  margin-bottom: 4px;
  display: block;
}

/* ============ BRAND WALL ============ */
.brands { background: white; }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
}
.brand {
  background: white;
  padding: 34px 16px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.02em;
  transition: background 0.25s var(--ease);
  min-height: 110px;
  text-align: center;
}
.brand:hover { background: var(--cream); }
.brand .amp { color: var(--silver-dark); font-style: italic; font-weight: 500; padding: 0 2px; }

/* ============ CATEGORIES ============ */
.cats { background: var(--cream); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  display: block;
  color: var(--ink);
}
.cat:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.cat .cat-num {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--silver-dark);
  margin-bottom: 24px;
  display: block;
}
.cat h3 {
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.cat p { color: var(--muted); font-size: 13.5px; margin: 0 0 22px; line-height: 1.55; }
.cat .cat-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  color: var(--muted-soft);
}
.cat .cat-meta::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--silver);
}
.cat .cat-arrow {
  position: absolute;
  top: 36px; right: 32px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  transition: all 0.3s var(--ease-out);
}
.cat:hover .cat-arrow {
  background: var(--ink);
  color: white;
  transform: translate(2px, -2px);
}
.cat .cat-arrow svg { width: 13px; height: 13px; }

/* ============ WHY PARTNER ============ */
.why { background: white; }
.why-head { text-align: left; max-width: none; display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; margin-bottom: 72px; align-items: end; }
.why-head h2 { margin: 14px 0 0; }
.why-head .why-summary { color: var(--muted); font-size: 1rem; line-height: 1.65; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.pillar {
  padding: 36px 28px 32px;
  border-top: 1px solid var(--ink);
  transition: all 0.3s var(--ease);
}
.pillar:hover { background: var(--cream); border-radius: 0 0 14px 14px; }
.pillar .pillar-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--silver-dark);
  margin-bottom: 24px;
  display: block;
}
.pillar h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.pillar p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0; }

/* ============ WHOLESALE CTA ============ */
.wholesale {
  background: var(--ink);
  color: white;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.wholesale::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 0% 100%, rgba(168, 175, 183, 0.12), transparent 60%),
    radial-gradient(50% 60% at 100% 0%, rgba(184, 148, 106, 0.08), transparent 60%);
  pointer-events: none;
}
.wholesale-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 96px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.wholesale .eyebrow { color: var(--silver); }
.wholesale .eyebrow::before, .wholesale .eyebrow::after { background: var(--silver-dark); }
.wholesale h2 { color: white; margin: 16px 0 24px; }
.wholesale-lead { color: rgba(255, 255, 255, 0.7); font-size: 1.0625rem; line-height: 1.65; max-width: 540px; margin-bottom: 36px; }
.wholesale .btn-primary { background: white; color: var(--ink); }
.wholesale .btn-primary:hover { background: var(--cream); }
.wholesale .btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}
.wholesale .btn-outline:hover { border-color: white; }

.wholesale-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.wholesale-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14.5px;
  line-height: 1.5;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.wholesale-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.wholesale-list .num {
  font-size: 11px;
  font-weight: 700;
  color: var(--silver);
  letter-spacing: 1px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
  padding: 88px 0 32px;
  font-size: 13.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.foot-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.foot-brand .logo { color: white; }
.foot-brand .logo-name { color: white; }
.foot-brand .logo-sub { color: rgba(255, 255, 255, 0.45); }
.foot-brand p { margin-top: 22px; max-width: 360px; line-height: 1.7; color: rgba(255, 255, 255, 0.6); }
.foot-col h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: white; margin-bottom: 22px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 11px; }
.foot-col a { color: rgba(255, 255, 255, 0.55); transition: color 0.18s var(--ease); }
.foot-col a:hover { color: white; }

.foot-bottom {
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  align-items: center;
}
.foot-legal { line-height: 1.7; }
.foot-legal strong { color: rgba(255, 255, 255, 0.7); font-weight: 600; }
.foot-meta { display: flex; gap: 10px; align-items: center; }
.foot-chip {
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.7);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-side { max-width: 520px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .why-head { grid-template-columns: 1fr; gap: 24px; }
  .wholesale-inner { grid-template-columns: 1fr; gap: 56px; }
  .cred-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .container, .container-narrow { padding: 0 22px; }
  .header-inner { padding: 18px 0; }
  .nav { display: none; }
  .nav-cta { display: inline-flex; }
  .hero { padding: 56px 0 80px; }
  h1 { font-size: clamp(2rem, 9vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section { padding: 80px 0; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; gap: 0; }
  .pillar { border-top: 1px solid var(--ink); border-bottom: 0; padding: 28px 0 32px; }
  .pillar:last-child { border-bottom: 1px solid var(--ink); }
  .cred-inner { grid-template-columns: 1fr; gap: 20px; }
  .foot-top { grid-template-columns: 1fr; gap: 36px; }
  .foot-bottom { grid-template-columns: 1fr; }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ CURRENTLY IN STOCK · LIVE TRADING ============ */
.stock { background: white; }
.stock-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stock-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: block;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
}
.stock-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.stock-img {
  aspect-ratio: 1 / 1;
  background: var(--cream);
  overflow: hidden;
}
.stock-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.stock-card:hover .stock-img img { transform: scale(1.04); }
.stock-body { padding: 18px 20px 22px; }
.stock-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--silver-dark);
  margin-bottom: 8px;
}
.stock-body h3 {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.38;
  margin: 0;
  color: var(--ink);
}
.stock-foot {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.stock-foot-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver-dark);
}
.stock-foot-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s var(--ease);
}
.stock-foot-cta:hover { gap: 12px; }

@media (max-width: 1080px) {
  .stock-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .stock-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stock-body { padding: 14px 16px 18px; }
}
@media (max-width: 480px) {
  .stock-grid { grid-template-columns: 1fr; }
}
