/* ── HERO ──────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: calc(100vh - 320px);
  position: relative;
  overflow: hidden;
}

/* LEFT — dark panel */
.hero-left {
  position: relative;
  background: var(--dark);
  padding: 60px 64px 60px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  min-height: calc(100vh - 320px);
}

/* dot grid texture */
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}

/* diagonal cut on right edge */
.hero-left::after {
  content: '';
  position: absolute;
  top: 0; right: -48px; bottom: 0;
  width: 96px;
  background: var(--dark);
  clip-path: polygon(0 0, 50% 0, 100% 100%, 0 100%);
  z-index: 3;
}

.hero-left > * { position: relative; z-index: 4; }

/* red left edge accent */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--red), transparent);
  z-index: 10;
}

/* eyebrow */
.h-ey {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fu .6s .2s forwards;
}
.eyebrow-line {
  width: 36px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.eyebrow-text {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* heading */
.h1 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.2rem, 3.3vw, 3.4rem);
  line-height: 1.12;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  animation: fu .6s .35s forwards;
}
.h1 em { font-style: italic; color: var(--red-lt); }

/* subtext */
.h-sub {
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(255,255,255,.5);
  max-width: 420px;
  font-weight: 300;
  margin-bottom: 20px;
  opacity: 0;
  animation: fu .6s .5s forwards;
}

/* CTA buttons */
.cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  opacity: 0;
  animation: fu .6s .65s forwards;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  font-family: "Geist", sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .25s, transform .2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  transform: translateX(-100%);
  transition: transform .3s;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { background: var(--red-lt); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.7);
  font-family: "Geist", sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 15px 24px;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color .25s, color .25s, transform .2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.6);
  color: #fff;
  transform: translateY(-2px);
}

/* stats */
.h-stats {
  display: flex;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 14px;
  opacity: 0;
  animation: fu .6s .85s forwards;
}
.stat {
  flex: 1;
  padding: 0 20px 0 0;
  position: relative;
}
.stat:first-child { padding-left: 0; }
.stat:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.08);
  margin-right: 20px;
}
.stat:before {
  content: '';
  position: absolute;
  top: -32px; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background .3s;
}
.stat:hover:before { background: var(--red); }
.stat-n {
  font-family: "Instrument Serif", serif;
  font-size: 1.55rem;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}
.stat-l {
  font-size: .63rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
}

/* RIGHT — light panel */
.hero-right {
  background: #FAF8F5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 96px;
  position: relative;
  opacity: 0;
  animation: fi .8s .3s forwards;
  min-height: calc(100vh - 320px);
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#E2DDD8 1px, transparent 1px),
    linear-gradient(90deg, #E2DDD8 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .45;
  pointer-events: none;
}
.hero-right > * { position: relative; z-index: 1; }

.dp-lbl {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 20px;
}

/* department cards grid */
.dept-grid-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.dept-card {
  background: #fff;
  border: 1px solid #E2DDD8;
  padding: 16px 18px;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.dept-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 18px rgba(192,39,45,.1);
  transform: translateY(-2px);
}
.dept-icon {
  width: 36px; height: 36px;
  background: #FAF8F5;
  border: 1px solid #E2DDD8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background .2s;
}
.dept-card:hover .dept-icon { background: #fde8e9; }
.dept-name {
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.dept-count {
  font-size: .67rem;
  color: var(--ink-3);
}

/* Quick RFQ box */
.rfq-box {
  background: #fff;
  border: 1px solid #E2DDD8;
  padding: 24px 26px 22px;
}
.rfq-box-tag {
  font-size: .61rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rfq-box-tag:before {
  content: '';
  width: 18px; height: 1.5px;
  background: var(--red);
}
.rfq-box h3 {
  font-family: "Instrument Serif", serif;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.rfq-box p {
  font-size: .76rem;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 16px;
}
.rfq-row { display: flex; }
.rfq-inp {
  flex: 1;
  border: 1px solid #E2DDD8;
  border-right: none;
  padding: 11px 14px;
  font-family: "Geist", sans-serif;
  font-size: .82rem;
  color: var(--ink);
  background: #FAF8F5;
  outline: none;
  transition: border-color .2s;
}
.rfq-inp:focus { border-color: var(--red); }
.rfq-inp::placeholder { color: #aaa; }
.rfq-btn {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 11px 20px;
  font-family: "Geist", sans-serif;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.rfq-btn:hover { background: var(--red-lt); }

/* ── HOW IT WORKS ───────────────────────────────── */
.hiw {
  padding: 96px 0;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  margin-top: 52px;
}
.steps:before {
  content: "";
  position: absolute;
  top: 26px;
  left: 10%; right: 10%;
  height: 1px;
  background: var(--rule-lt);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}
.step-n {
  width: 52px; height: 52px;
  border: 1.5px solid var(--rule);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Instrument Serif", serif;
  font-size: 1rem;
  color: var(--ink-3);
  margin-bottom: 16px;
  transition: all .3s;
  flex-shrink: 0;
}
.step:hover .step-n {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.step-em { font-size: 1.15rem; margin-bottom: 8px; }
.step-t { font-size: .79rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.step-d { font-size: .73rem; line-height: 1.6; color: var(--ink-3); }

/* proof bar */
.proof {
  margin-top: 52px;
  display: flex;
  align-items: stretch;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.proof-lbl {
  background: var(--bg);
  padding: 20px 26px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 200px;
  gap: 6px;
}
.proof-lbl strong {
  font-family: "Instrument Serif", serif;
  font-size: .98rem;
}
.proof-items { display: flex; flex: 1; }
.pi {
  flex: 1;
  padding: 20px 22px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pi:last-child { border-right: none; }
.pi-l {
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.pi-v { font-size: 1rem; font-weight: 600; color: var(--ink); }
.proof-total {
  background: var(--red);
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 120px;
}
.proof-total .pi-l { color: rgba(255,255,255,.55); }
.proof-total .pi-v { color: #fff; font-size: 1.15rem; }

/* ── DEPARTMENTS ────────────────────────────────── */
.depts {
  padding: 96px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 48px;
}
.dc {
  background: var(--white);
  padding: 30px 26px;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: background .2s;
  display: flex;
  flex-direction: column;
}
.dc:after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.dc:hover { background: var(--bg); }
.dc:hover:after { transform: scaleX(1); }
.dc-arr {
  position: absolute;
  top: 26px; right: 22px;
  font-size: .74rem;
  color: var(--rule);
  transition: color .2s, transform .2s;
}
.dc:hover .dc-arr { color: var(--ink-3); transform: translate(2px,-2px); }
.dc-icon { font-size: 1.55rem; margin-bottom: 14px; }
.dc-name {
  font-family: "Instrument Serif", serif;
  font-size: 1.1rem;
  margin-bottom: 7px;
}
.dc-desc {
  font-size: .74rem;
  line-height: 1.68;
  color: var(--ink-3);
  margin-bottom: 14px;
  flex: 1;
}
.dc-link {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
}
.cat-strip {
  background: var(--ink);
  padding: 22px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--ink);
  border-top: none;
}
.cat-strip p { font-size: .87rem; color: rgba(255,255,255,.55); font-weight: 300; }
.cat-strip strong { color: #fff; }

/* ── NOVA ───────────────────────────────────────── */
.nova-sec {
  padding: 96px 0;
  background: var(--nova);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--red);
}
.nova-sec:before {
  content: "NOVA";
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Instrument Serif", serif;
  font-size: 30vw;
  line-height: 1;
  color: rgba(255,255,255,.025);
  pointer-events: none;
  letter-spacing: -.03em;
}
.nova-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nova-grid .section-h2 { color: #fff; }
.nova-grid .section-h2 em { color: var(--gold); }
.nova-grid .section-desc { color: rgba(255,255,255,.45); }
.nova-quote {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  font-size: .81rem;
  color: rgba(255,255,255,.38);
  font-style: italic;
  line-height: 1.75;
  margin-top: 26px;
}
.nova-quote strong { color: rgba(255,255,255,.6); font-style: normal; }
.eco-stack { display: flex; flex-direction: column; gap: 8px; }
.eco {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 15px 18px;
  transition: background .2s, border-color .2s;
}
.eco:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); }
.eco.active { background: rgba(192,39,45,.12); border-color: rgba(192,39,45,.35); }
.eco-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.eco.active .eco-dot { background: var(--red); }
.eco-name { font-size: .81rem; font-weight: 600; color: #fff; min-width: 110px; }
.eco-desc { font-size: .73rem; color: rgba(255,255,255,.38); line-height: 1.5; flex: 1; }
.eco-tag {
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(192,39,45,.35);
  padding: 3px 8px;
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
}

/* ── CONTACT ────────────────────────────────────── */
.contact-sec {
  padding: 96px 0;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}
.contact-grid > div > p {
  font-size: .87rem;
  line-height: 1.85;
  color: var(--ink-3);
  font-weight: 300;
  margin-bottom: 28px;
}
.channels { display: flex; flex-direction: column; gap: 9px; }
.ch {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s, background .2s, transform .15s;
}
.ch:hover { border-color: var(--red); background: var(--bg); transform: translateX(3px); }
.ch-ico {
  width: 32px; height: 32px;
  background: var(--bg);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: background .2s;
}
.ch:hover .ch-ico { background: #fdeaea; }
.ch-l {
  font-size: .61rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 2px;
}
.ch-v { font-size: .83rem; font-weight: 500; }

/* RFQ form */
.form-box {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 32px;
}
.form-tag {
  font-size: .61rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.form-tag:before { content: ""; width: 14px; height: 1.5px; background: var(--red); }
.form-box h3 {
  font-family: "Instrument Serif", serif;
  font-size: 1.35rem;
  margin-bottom: 5px;
}
.form-box > form > p,
.form-box > p {
  font-size: .79rem;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 22px;
}
.ff { margin-bottom: 10px; }
.ff input, .ff textarea, .ff select {
  width: 100%;
  border: 1px solid var(--rule);
  padding: 10px 13px;
  font-family: "Geist", sans-serif;
  font-size: .82rem;
  color: var(--ink);
  background: var(--white);
  outline: none;
  resize: vertical;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.ff input:focus, .ff textarea:focus, .ff select:focus { border-color: var(--red); }
.ff input::placeholder, .ff textarea::placeholder { color: #b0b4c0; }
.ff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.f-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 13px;
  font-family: "Geist", sans-serif;
  font-size: .79rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  margin-top: 4px;
}
.f-submit:hover { background: var(--red-lt); }

/* ── RESPONSIVE ─────────────────────────────────── */
@media(max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 64px 40px 56px; }
  .hero-left::after { display: none; }
  .hero-right { padding: 52px 40px 64px; }
  .dept-grid-hero { grid-template-columns: 1fr 1fr; }
  .nova-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .dept-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .steps:before { display: none; }
  .proof { flex-wrap: wrap; }
}
@media(max-width: 768px) {
  .hero-left { padding: 52px 24px 44px; }
  .hero-right { padding: 40px 24px 52px; }
  .h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .h-stats { flex-wrap: wrap; gap: 20px; }
  .stat { min-width: 40%; border-right: none !important; margin-right: 0 !important; }
  .stat:before { display: none; }
  .cta-group { flex-direction: column; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .dept-grid { grid-template-columns: 1fr; }
  .cat-strip { flex-direction: column; text-align: center; padding: 20px 24px; }
  .ff-row { grid-template-columns: 1fr; }
  .hiw, .depts, .nova-sec, .contact-sec { padding: 64px 0; }
}
@media(max-width: 480px) {
  .dept-grid-hero { grid-template-columns: 1fr; }
  .rfq-row { flex-direction: column; }
  .steps { grid-template-columns: 1fr; }
  .proof { flex-direction: column; }
  .proof-lbl { min-width: unset; border-right: none; border-bottom: 1px solid var(--rule); }
  .proof-total { min-width: unset; }
  .nova-sec:before { display: none; }
  .hiw, .depts, .nova-sec, .contact-sec { padding: 52px 0; }
}