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

:root {
  --red: #8d3741;
  --red-dark: #6b2a32;
  --red-light: #b04a56;
  --cream: #f7f3ee;
  --warm-white: #fdfaf7;
  --charcoal: #1a1a1a;
  --mid: #4a4a4a;
  --light-gray: #e8e3de;
  --accent-gold: #c9a84c;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  width: auto;
  height: 50px;
  object-fit: contain;
}
.nav-logo-placeholder {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: white;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--red);
  color: white !important;
  padding: 10px 22px;
  border-radius: 3px;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase;
  font-size: 12px !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-cta::after { display: none !important; }

.hero {
  margin-top: 72px;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(141,55,65,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--red-light);
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  color: white;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--red-light);
}

.hero-body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 420px;
  margin-bottom: 44px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--red-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.07); }

.hero-right {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}

.hero-logo-display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  max-width: 360px;
  opacity: 0.12;
  pointer-events: none;
}
/* Replace the SVG placeholder below with:
   <img src="logo-rect.png" class="hero-logo-display" alt="" />
   once you have the file */
.hero-logo-display-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  text-align: center;
  opacity: 0.1;
  pointer-events: none;
}
.hero-logo-display-placeholder span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -2px;
  display: block;
  line-height: 1;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.hero-stat { }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.ticker {
  background: var(--red);
  color: white;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  gap: 48px;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.ticker-item::before {
  content: '◆';
  font-size: 8px;
  opacity: 0.6;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--red);
  display: inline-block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--mid);
  max-width: 560px;
}

#about { background: var(--warm-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-block {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--charcoal);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.about-img-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1a1e 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(141,55,65,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141,55,65,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.about-img-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: rgba(141,55,65,0.3);
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1;
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--red);
  color: white;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(141,55,65,0.4);
}
.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.about-badge-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1.3;
  margin-top: 2px;
}

.about-content { }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.about-pillar {
  background: var(--cream);
  border-left: 3px solid var(--red);
  padding: 20px 20px;
  border-radius: 0 4px 4px 0;
}
.about-pillar-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.about-pillar-body {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

#divisions { background: var(--charcoal); }
#divisions .section-label { color: var(--red-light); }
#divisions .section-label::before { background: var(--red-light); }
#divisions .section-title { color: white; }
#divisions .section-body { color: rgba(255,255,255,0.55); }

.divisions-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

.division-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.division-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;        /* text breathing room */
  background: #222;     /* fallback if no image */
}

/* the red top-bar on hover — z-index 3 to clear the overlay */
.division-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
  z-index: 3;
}
.division-card:hover::before { transform: scaleX(1); }

/* gradient overlay — z-index 1 */
.division-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 45%, rgba(0,0,0,0.15) 100%);
  z-index: 1;
  pointer-events: none;
}

/* full-cover background image — z-index 0 */
.division-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}
.division-card:hover .division-bg-img {
  transform: scale(1.08);
}

/* all text above the overlay */
.division-name,
.division-desc,
.division-tag {
  position: relative;
  z-index: 2;
}

.division-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.division-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.division-tag {
  display: inline-block;   /* inline so it only wraps its text */
  align-self: flex-start;  /* prevents it stretching full width */
  margin-top: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-light);
  border: 1px solid rgba(141,55,65,0.35);
  padding: 4px 10px;
  border-radius: 2px;
}

#products { background: var(--cream); }

.products-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-bottom: 72px;
  align-items: end;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--light-gray);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.1);
}
  
/* full-cover image */
.product-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}
.product-card:hover .product-bg-img {
  transform: scale(1.08);
}
  
/* gradient overlay */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 40%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
  pointer-events: none;
}
  
.product-info {
  position: relative;
  z-index: 2;
  padding: 24px;
}
  
.product-name {
  font-weight: 700;
  font-size: 15px;
  color: white;
  margin-bottom: 6px;
}
  
.product-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
  
.product-badge {
  display: inline-block;
  align-self: flex-start;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red-light);
  border: 1px solid rgba(141,55,65,0.35);
  padding: 4px 10px;
  border-radius: 2px;
}

.planet-banner {
  background: var(--red-dark);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.planet-banner::before {
  content: 'COPPER 9';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 180px;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -4px;
}

.planet-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.planet-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.planet-banner p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.75;
}

.planet-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.planet-metric {}
.planet-metric-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
  color: rgba(255,255,255,0.9);
}
.planet-metric-label {
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 0.06em;
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

#values { background: var(--warm-white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.value-card {
  position: relative;
  padding: 40px 32px;
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
}
.value-card::after {
  content: attr(data-number);
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  font-weight: 900;
  color: rgba(141,55,65,0.06);
  line-height: 1;
  pointer-events: none;
}
.value-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.value-text {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
}
.value-footnote {
  font-size: 10px;
  color: rgba(74,74,74,0.35);
  margin-top: 20px;
  font-style: italic;
  line-height: 1.5;
}

#careers {
  background: var(--charcoal);
  padding: 100px 0;
  text-align: center;
}
#careers .section-label { color: var(--red-light); justify-content: center; }
#careers .section-label::before { background: var(--red-light); }
#careers .section-title { color: white; margin: 0 auto 20px; }
#careers .section-body { color: rgba(255,255,255,0.55); margin: 0 auto 48px; text-align: center; }

.perks-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 140px;
}
.perk-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(141,55,65,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.perk-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.perk-asterisk {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

footer {
  background: #111;
  color: rgba(255,255,255,0.4);
  padding: 60px 0 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { }
.footer-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-box {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: white;
}
.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-domain {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--red-light);
  opacity: 0.7;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.45); }

.disclaimer {
  font-size: 9px;
  color: rgba(255,255,255,0.1);
  text-align: center;
  margin-top: 24px;
  font-style: italic;
  line-height: 1.6;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }


@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 64px 32px; }
  .hero-right { padding: 48px 32px; }
  .hero-stat-row { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .divisions-header, .products-intro, .planet-banner-inner { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .division-cards { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 24px; }
}
@media (max-width: 600px) {
  .division-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr; }
}