/* ============================================================
   ANIKI HARDWARE MFG. — Main Stylesheet
   White Premium Theme · Brass + YETI Red Accents
   ============================================================ */

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

/* ── TOKENS ── */
:root {
  --white:     #ffffff;
  --off-white: #f8f6f2;
  --paper:     #f2ede6;
  --charcoal:  #1c1c1c;
  --charcoal2: #2e2e2e;
  --mid:       #5a5a5a;
  --fog:       #9a9a9a;
  --rule:      #e0dbd2;
  --brass:     #b8913a;
  --brass-l:   #d4aa58;
  --brass-d:   #7a5c1e;
  --red:       #c0321a;
  --red-l:     #d94426;

  --nav-h:     72px;
  --max:       1280px;
  --pad:       clamp(24px, 5vw, 80px);
  --section:   clamp(72px, 10vw, 128px);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--charcoal);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── UTILITIES ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section-pad { padding: var(--section) 0; }

.label {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--brass);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.label::before { content: ''; width: 24px; height: 1px; background: var(--brass); }

h1, h2, h3 { font-family: 'Cormorant', serif; line-height: 1.1; }
h1 { font-size: clamp(44px, 6vw, 88px); font-weight: 600; }
h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 600; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; }
.italic { font-style: italic; }
.brass { color: var(--brass); }
.red { color: var(--red); }

.body-lg { font-size: 17px; line-height: 1.8; color: var(--mid); }
.body-sm { font-size: 14px; line-height: 1.75; color: var(--mid); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 12px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 14px 32px; border: none; transition: all 0.25s;
  cursor: pointer;
}
.btn-primary { background: var(--charcoal); color: var(--white); }
.btn-primary:hover { background: var(--charcoal2); transform: translateY(-1px); }
.btn-brass { background: var(--brass); color: var(--white); }
.btn-brass:hover { background: var(--brass-l); transform: translateY(-1px); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-l); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-brass {
  background: transparent; color: var(--brass);
  border: 1.5px solid var(--brass);
}
.btn-outline-brass:hover { background: var(--brass); color: var(--white); }
.btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center;
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; flex-direction: column; gap: 1px; }
.nav-brand .name {
  font-family: 'Cormorant', serif;
  font-size: 20px; font-weight: 700; color: var(--charcoal);
  letter-spacing: 0.04em;
}
.nav-brand .tagline {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass);
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500; color: var(--mid); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-links .nav-cta {
  padding: 9px 22px;
  background: var(--red); color: var(--white);
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: background 0.2s;
}
.nav-links .nav-cta:hover { background: var(--red-l); color: var(--white); }

/* Mobile menu */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--charcoal); transition: all 0.3s;
}
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--rule);
  z-index: 400; padding: 24px var(--pad);
  flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500; color: var(--charcoal); padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── PAGE HERO ── */
.page-hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 72px;
  padding-left: var(--pad); padding-right: var(--pad);
  max-width: var(--max); margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}
.page-hero .label { margin-bottom: 20px; }
.page-hero h1 { max-width: 800px; }
.page-hero p { max-width: 560px; margin-top: 20px; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--rule); }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--charcoal);
  padding: 24px 0;
}
.trust-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  display: flex; justify-content: center; gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--white);
}
.trust-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(184,145,58,0.4);
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 16px; height: 16px; stroke: var(--brass); fill: none; stroke-width: 1.5; }
.trust-text .val {
  font-family: 'Cormorant', serif;
  font-size: 20px; font-weight: 700; line-height: 1; color: var(--white);
}
.trust-text .lbl {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 2px;
}

/* ── PRODUCT CARDS ── */
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--rule);
}
.product-card {
  background: var(--white); padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
  display: flex; flex-direction: column;
}
.product-card:hover { background: var(--off-white); }
.product-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--brass);
  transform: scaleX(0); transition: transform 0.3s;
}
.product-card:hover::after { transform: scaleX(1); }
.pc-num {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 0.2em; color: var(--brass); margin-bottom: 20px;
}
.pc-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: border-color 0.3s;
}
.product-card:hover .pc-icon { border-color: var(--brass); }
.pc-icon svg { width: 22px; height: 22px; stroke: var(--charcoal); fill: none; stroke-width: 1.4; }
.pc-name { font-family: 'Cormorant', serif; font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }
.pc-desc { font-size: 13px; line-height: 1.7; color: var(--mid); flex: 1; }
.pc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brass); margin-top: 24px;
  transition: gap 0.2s;
}
.product-card:hover .pc-link { gap: 10px; }
.pc-link svg { width: 12px; height: 12px; stroke: var(--brass); fill: none; stroke-width: 2; }

/* ── TIMELINE ── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 32px; padding: 32px 0;
  border-bottom: 1px solid var(--rule);
}
.tl-item:first-child { border-top: 1px solid var(--rule); }
.tl-year {
  font-family: 'Cormorant', serif; font-size: 28px;
  font-weight: 700; color: var(--brass); line-height: 1; padding-top: 4px;
}
.tl-content {}
.tl-title { font-size: 16px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.tl-body { font-size: 14px; line-height: 1.7; color: var(--mid); }

/* ── FEATURE BLOCKS ── */
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--rule); }
.feat-block { background: var(--white); padding: 52px 44px; }
.feat-block.dark { background: var(--charcoal); }
.feat-block.paper { background: var(--paper); }
.feat-icon { margin-bottom: 24px; }
.feat-icon svg { width: 32px; height: 32px; stroke: var(--brass); fill: none; stroke-width: 1.2; }
.feat-title { font-family: 'Cormorant', serif; font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.feat-block.dark .feat-title { color: var(--white); }
.feat-body { font-size: 14px; line-height: 1.75; color: var(--mid); }
.feat-block.dark .feat-body { color: rgba(255,255,255,0.6); }

/* ── SECTION SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 120px); align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-text .label { margin-bottom: 16px; }
.split-text h2 { margin-bottom: 20px; }
.split-visual {
  background: var(--paper);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.split-visual-placeholder {
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--fog);
}
.split-visual-placeholder p { margin-top: 8px; font-size: 10px; }

/* ── CONTACT FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1/-1; }
.form-field label {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-d);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--off-white); border: 1px solid var(--rule);
  color: var(--charcoal); font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 300; padding: 13px 16px;
  outline: none; transition: border-color 0.2s; width: 100%;
  appearance: none; border-radius: 0;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--brass); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field select option { background: var(--white); }

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder {
  background: var(--paper); width: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  color: var(--fog);
}
.img-placeholder svg { width: 32px; height: 32px; stroke: var(--fog); fill: none; stroke-width: 1; }
.img-placeholder span {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
}

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  padding: 72px 0 36px;
  color: var(--white);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand .name {
  font-family: 'Cormorant', serif;
  font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 4px;
}
.footer-brand .tag {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass);
}
.footer-brand p {
  font-size: 13px; line-height: 1.75;
  color: rgba(255,255,255,0.5); margin-top: 20px; max-width: 260px;
}
.footer-col h4 {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-col .contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-col .contact-item svg { width: 14px; height: 14px; stroke: var(--brass); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.footer-col .contact-item span { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.55); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-yeti {
  font-family: 'Cormorant', serif; font-size: 16px; font-weight: 700;
  color: var(--red); letter-spacing: 0.08em;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── HERO (Homepage) ── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  padding: 80px var(--pad) 80px;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 720px; margin-left: auto;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.hero-eyebrow .line { width: 40px; height: 1px; background: var(--brass); }
.hero-eyebrow span {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass);
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em { color: var(--brass); }
.hero-desc { margin-bottom: 40px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-right {
  background: var(--paper);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-right::before {
  content: ''; position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(184,145,58,0.04) 40px,
    rgba(184,145,58,0.04) 41px
  );
}
.hero-img-area {
  position: relative; z-index: 2;
  width: 80%; aspect-ratio: 3/4;
  background: var(--white);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; color: var(--fog);
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.hero-img-area svg { width: 36px; height: 36px; stroke: var(--fog); fill: none; stroke-width: 1; }
/* REPLACE hero-img-area with <img src="assets/images/hero-product.jpg" /> */

.hero-badge {
  position: absolute; bottom: 40px; left: 40px;
  background: var(--charcoal); color: var(--white);
  padding: 16px 20px; z-index: 3;
}
.hero-badge-top {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass);
  margin-bottom: 4px;
}
.hero-badge-name {
  font-family: 'Cormorant', serif; font-size: 17px; font-weight: 700;
}

/* ── HERITAGE PREVIEW ── */
.heritage-strip {
  background: var(--paper);
  padding: clamp(56px, 8vw, 96px) 0;
}
.heritage-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.heritage-big {
  font-family: 'Cormorant', serif;
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 700; line-height: 0.9;
  color: rgba(184,145,58,0.15);
  user-select: none; pointer-events: none;
}
.heritage-text .label { margin-bottom: 16px; }
.heritage-text h2 { margin-bottom: 16px; }

/* ── CREATIVE LOCK PAGE ── */
.creative-hero {
  background: var(--charcoal);
  padding: calc(var(--nav-h) + 80px) var(--pad) 80px;
  max-width: 100%;
}
.creative-hero-inner { max-width: var(--max); margin: 0 auto; }
.creative-hero .label { --brass: #b8913a; }
.creative-hero h1 { color: var(--white); }
.creative-hero h1 em { color: var(--brass-l); }
.creative-hero p { color: rgba(255,255,255,0.6); margin-top: 16px; }

.creative-concepts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--rule);
}
.concept-card {
  background: var(--white); padding: 48px 36px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.concept-card:hover { background: var(--paper); }
.concept-num {
  font-family: 'Cormorant', serif; font-size: 56px;
  font-weight: 700; color: rgba(184,145,58,0.12); line-height: 1;
  margin-bottom: 16px;
}
.concept-title { font-family: 'Cormorant', serif; font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }
.concept-body { font-size: 14px; line-height: 1.75; color: var(--mid); }
.concept-emoji { font-size: 28px; margin-bottom: 16px; }

/* ── OEM STEPS ── */
.oem-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--rule); }
.oem-step {
  background: var(--white); padding: 44px 36px;
  border-top: 3px solid transparent; transition: border-color 0.3s, background 0.3s;
}
.oem-step:hover { border-color: var(--brass); background: var(--off-white); }
.oem-step-num {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 0.2em; color: var(--brass); margin-bottom: 16px;
}
.oem-step-title { font-family: 'Cormorant', serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.oem-step-body { font-size: 14px; line-height: 1.75; color: var(--mid); }

/* ── MARQUEE ── */
.marquee-bar { background: var(--brass); overflow: hidden; padding: 12px 0; }
.marquee-track {
  display: inline-flex; gap: 0; white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.marquee-item {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); padding: 0 36px;
}
.marquee-dot { color: rgba(255,255,255,0.4); padding: 0 8px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 400px; }
  .hero-left { max-width: 100%; padding: 60px var(--pad); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .creative-concepts { grid-template-columns: 1fr 1fr; }
  .oem-steps { grid-template-columns: 1fr 1fr; }
  .heritage-inner { grid-template-columns: 1fr; }
  .heritage-big { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .product-grid { grid-template-columns: 1fr; }
  .creative-concepts { grid-template-columns: 1fr; }
  .oem-steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: 1; }
  .footer-top { grid-template-columns: 1fr; }
  .trust-inner { gap: 24px; }
  .tl-item { grid-template-columns: 80px 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
