/*
Theme Name: Boiler Links
Theme URI: https://boilerlinks.com
Author: Abbas Logic Lab
Author URI: https://techwork360.com
Description: Custom coded theme for Boiler Links Inc. — A World Wide Equipment & Procurement Syndicate. Built to match the approved brand mockup: dark charcoal + maroon-red industrial theme for an equipment sourcing/procurement company.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: boiler-links
*/

/* ==========================================================================
   1. Reset & Base
   ========================================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --logo-dark: #1A1A1A;
  --logo-red: #8B0F10;
  --logo-red-bright: #E21B1B;
  --logo-red-hover: #6E0C0D;
  --bg-page: #FAFAFB;
  --zinc-light: #F4F4F5;
  --border-muted: #E4E4E7;
  --text-body: #1a1a1a;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-tech: 'Poppins', 'Inter', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(20,20,20,.05);
  --shadow-md: 0 12px 28px rgba(20,20,20,.08);
  --shadow-lg: 0 24px 48px rgba(20,20,20,.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-page);
  color: #262626;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.font-tech { font-family: var(--font-tech); }

.btn {
  display: inline-block;
  padding: 15px 34px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all .25s ease;
  cursor: pointer;
  border: none;
}
.btn-red { background: linear-gradient(135deg, var(--logo-red-bright), var(--logo-red)); color: #fff; box-shadow: var(--shadow-sm); }
.btn-red:hover { background: linear-gradient(135deg, var(--logo-red), var(--logo-red-hover)); }
.btn-outline { border: 1px solid #525252; color: #fff; background: transparent; }
.btn-outline:hover { border-color: #a3a3a3; background: rgba(255,255,255,.05); }
.btn-sm { padding: 11px 22px; }

/* ==========================================================================
   2. Header
   ========================================================================== */
.site-header {
  background: #fff;
  color: var(--logo-dark);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #e4e4e7;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
  padding: 16px 0;
}
.site-header .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.site-logo { display: flex; align-items: center; }
.site-logo img { max-height: 58px; width: auto; height: auto; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.main-nav a {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #404040;
  transition: color .2s ease;
}
.main-nav a:hover,
.main-nav .current-menu-item a { color: var(--logo-red); }

/* ==========================================================================
   3. Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--logo-dark);
  color: #fff;
  padding: 150px 0 72px;
  text-align: left;
  overflow: hidden;
}
.hero-inner { padding-bottom: 0; }
.hero .container {
  position: relative; z-index: 1; max-width: 1200px;
  animation: bl-fade-up .8s ease both;
}
@keyframes bl-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-copy { max-width: 620px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border-left: 2px solid var(--logo-red-bright);
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 22px;
}
.hero-tag span {
  color: var(--logo-red-bright);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}
.hero h1 {
  font-family: var(--font-tech);
  font-size: clamp(2rem, 5vw, 3.3rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--logo-red-bright); }
.hero-rule { width: 64px; height: 3px; background: var(--logo-red-bright); border-radius: 2px; margin-bottom: 20px; }
.hero p {
  color: #d4d4d4; font-size: 15.5px; font-weight: 300; line-height: 1.7;
  max-width: 560px; margin: 0 0 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-flex { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.hero-numbered {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 220px;
  border-left: 1px solid rgba(255,255,255,.15);
  padding-left: 24px;
}
.hero-numbered .num-item .num { font-family: var(--font-tech); color: var(--logo-red-bright); font-weight: 800; font-size: 13px; }
.hero-numbered .num-item strong { display: block; font-size: 13.5px; color: #fff; margin: 3px 0 2px; }
.hero-numbered .num-item span { font-size: 12px; color: #a3a3a3; }

.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .card-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid-3 { grid-template-columns: 1fr; } }

/* Hero background carousel (2 crossfading images) */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slides::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,.88) 0%, rgba(26,26,26,.82) 55%, rgba(26,26,26,.94) 100%);
}

/* Feature strip (icon + label row under hero) */
.feature-strip { border-top: 1px solid var(--border-muted); background: var(--zinc-light); padding: 36px 0; }
.feature-strip .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.feature-strip .feature { display: flex; align-items: center; gap: 14px; }
.feature-strip .feature svg { flex-shrink: 0; width: 30px; height: 30px; color: var(--logo-red); }
.feature-strip .feature strong { display: block; font-size: 13.5px; color: var(--logo-dark); }
.feature-strip .feature span { display: block; font-size: 12px; color: #737373; }

/* Icon-based capability tiles (used on Home instead of photo cards) */
.icon-tile {
  background: #fff;
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.icon-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: var(--logo-red-bright); }
.icon-tile .icon-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--logo-red-bright), var(--logo-red));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.icon-tile .icon-circle svg { width: 24px; height: 24px; color: #fff; }
.icon-tile h3 { font-size: 18px; color: var(--logo-dark); font-weight: 700; margin-bottom: 10px; }
.icon-tile p { font-size: 13.5px; color: #525252; font-weight: 300; line-height: 1.7; flex-grow: 1; margin-bottom: 14px; }
.icon-tile .view-link { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--logo-red); }
.icon-tile:hover .view-link { color: var(--logo-red-bright); }

/* Brand marquee (auto-scrolling strip, off-white chips) */
.marquee { overflow: hidden; position: relative; }
.marquee-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: bl-marquee 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track-rev { animation-direction: reverse; }
.marquee-chip {
  flex-shrink: 0;
  background: #FAF7F2;
  border: 1px solid #ECE7DE;
  border-radius: var(--radius-sm);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
}
.marquee-chip img { max-height: 34px; width: auto; }
@keyframes bl-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Global network graphic (abstract, non-geographic) */
.network-graphic { position: relative; width: 100%; aspect-ratio: 16 / 10; }
.network-graphic svg { width: 100%; height: 100%; }
.network-graphic .pulse { animation: bl-pulse 2.4s ease-in-out infinite; }
@keyframes bl-pulse {
  0%, 100% { opacity: .4; r: 4; }
  50% { opacity: 1; r: 7; }
}

/* ==========================================================================
   4. Capabilities / Cards
   ========================================================================== */
.section { padding: 96px 0; }
.section-light { background: var(--zinc-light); }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head .eyebrow {
  display: block; color: var(--logo-red); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.2em; font-weight: 700; margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 900; color: var(--logo-dark); letter-spacing: -0.01em;
}
.section-head::after {
  content: "";
  display: block;
  width: 56px; height: 3px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, var(--logo-red-bright), var(--logo-red));
  border-radius: 2px;
}

.eyebrow-sm {
  display: block; color: var(--logo-red); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 700; margin-bottom: 10px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.cap-card {
  background: #fff;
  border: 1px solid var(--border-muted);
  border-top: 3px solid var(--logo-red);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cap-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-top-color: var(--logo-red-bright); }
.cap-card .img-wrap { width: 100%; height: 190px; background: var(--zinc-light); border-radius: var(--radius-sm); margin-bottom: 18px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.cap-card .img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .35s ease; }
.cap-card:hover .img-wrap img { transform: scale(1.06); }
.cap-card h3 {
  font-size: 21px; color: var(--logo-dark); font-weight: 700;
  margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid #f5f5f5;
}
.cap-card p { color: #525252; font-size: 13.5px; font-weight: 300; line-height: 1.75; flex-grow: 1; }
.oem {
  margin-top: 20px; padding-top: 14px; border-top: 1px solid #f5f5f5;
}
.oem span.label {
  display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  color: #a3a3a3; font-weight: 700; margin-bottom: 3px;
}
.oem span.value { font-size: 12.5px; font-weight: 700; color: var(--logo-red); }

/* ==========================================================================
   5. Brand strip
   ========================================================================== */
.brand-strip { background: var(--logo-dark); padding: 60px 0; text-align: center; }
.brand-strip .eyebrow {
  color: var(--logo-red-bright); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.25em; font-weight: 700; margin-bottom: 40px; display: block;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 24px;
  align-items: center;
  opacity: .85;
}
.brand-grid img { max-height: 44px; width: auto; margin: 0 auto; filter: grayscale(20%); transition: filter .25s ease, transform .25s ease; }
.brand-grid img:hover { filter: grayscale(0%); transform: scale(1.08); }

/* ==========================================================================
   6. RFQ CTA band
   ========================================================================== */
.cta-band {
  background: #171717; color: #fff; padding: 88px 0; text-align: center;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--logo-red-bright), transparent) 1;
}
.cta-band .container { max-width: 640px; }
.cta-band .eyebrow { color: var(--logo-red-bright); font-size: 11px; text-transform: uppercase; letter-spacing: 0.3em; font-weight: 700; }
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin: 12px 0 16px; }
.cta-band p { color: #a3a3a3; font-size: 14px; font-weight: 300; margin-bottom: 24px; }

/* ==========================================================================
   7. Footer
   ========================================================================== */
.site-footer { background: var(--logo-dark); color: #a3a3a3; padding: 76px 0 28px; font-size: 13.5px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 52px; }
.footer-logo-chip { display: inline-block; background: #fff; padding: 10px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.footer-logo-chip img { height: 36px; }
.footer-grid p { max-width: 340px; font-weight: 300; line-height: 1.75; color: #a3a3a3; }
.footer-grid h5 { color: #fff; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; font-size: 12px; margin-bottom: 18px; }
.footer-grid li { margin-bottom: 12px; font-weight: 300; }
.footer-grid a { transition: color .2s ease; }
.footer-grid a:hover { color: var(--logo-red-bright); }
.footer-bottom { text-align: center; padding-top: 32px; border-top: 1px solid #333; color: #737373; font-weight: 300; }

/* ==========================================================================
   8. Inner pages (About / Products / Contact)
   ========================================================================== */
.page-hero {
  background: var(--logo-dark); color: #fff; padding: 72px 0; text-align: center;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--logo-red-bright), transparent) 1;
}
.page-hero h1 { font-family: var(--font-tech); font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; }
.page-hero p { color: #a3a3a3; margin-top: 12px; font-weight: 300; font-size: 15px; }

/* About */
.about-banner { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-bottom: 52px; }
.about-copy { max-width: 780px; margin: 0 auto 64px; font-size: 15.5px; color: #404040; line-height: 1.85; }
.about-copy p { margin-bottom: 18px; }
.logo-cloud {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 24px; align-items: center; opacity: .8;
}
.logo-cloud img { max-height: 50px; width: auto; margin: 0 auto; filter: grayscale(60%); transition: filter .25s ease, opacity .25s ease; }
.logo-cloud img:hover { filter: grayscale(0%); opacity: 1; }

/* Products */
.category-filter {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 56px;
}
.category-filter button {
  background: #fff; border: 1px solid var(--border-muted); padding: 11px 20px;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700;
  border-radius: 999px; cursor: pointer; color: #525252; transition: all .2s ease;
}
.category-filter button.active,
.category-filter button:hover { background: var(--logo-red); color: #fff; border-color: var(--logo-red); box-shadow: var(--shadow-sm); }

.product-category { margin-bottom: 72px; }
.product-category-head { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.product-category-head h2 { font-family: var(--font-tech); font-size: 23px; color: var(--logo-dark); font-weight: 800; }
.product-category-head .line { flex-grow: 1; height: 1px; background: linear-gradient(90deg, var(--border-muted), transparent); }

.product-item {
  background: #fff; border: 1px solid var(--border-muted); border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column; height: 100%;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.product-item:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: #d4d4d8; }
.product-item .img-wrap { position: relative; width: 100%; height: 220px; background: var(--zinc-light); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-item .img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform .4s ease; }
.product-item:hover .img-wrap img { transform: scale(1.08); }
.product-item .body { padding: 22px; flex-grow: 1; display: flex; flex-direction: column; }
.product-item h3 { font-size: 16.5px; color: var(--logo-dark); font-weight: 700; margin-bottom: 8px; letter-spacing: -0.005em; }
.product-item p { font-size: 12.5px; color: #525252; font-weight: 300; line-height: 1.65; flex-grow: 1; }
.product-item .brands { margin-top: 16px; font-size: 11px; font-weight: 700; color: var(--logo-red); text-transform: uppercase; letter-spacing: 0.03em; }

/* Contact */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-info h2 { font-family: var(--font-tech); font-size: 22px; color: var(--logo-dark); margin-bottom: 16px; font-weight: 800; }
.contact-info p { color: #525252; font-size: 14px; margin-bottom: 24px; line-height: 1.7; }
.contact-info ul li { margin-bottom: 14px; font-size: 14px; color: #404040; }
.contact-info ul li strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: #a3a3a3; margin-bottom: 2px; }

.rfq-form { background: #fff; border: 1px solid var(--border-muted); border-radius: var(--radius-md); padding: 40px; box-shadow: var(--shadow-sm); }
.rfq-form .field { margin-bottom: 20px; }
.rfq-form label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: #525252; margin-bottom: 8px; }
.rfq-form input,
.rfq-form textarea,
.rfq-form select {
  width: 100%; border: 1px solid var(--border-muted); border-radius: var(--radius-sm);
  padding: 13px 15px; font-family: var(--font-sans); font-size: 14px; background: #fafafa;
  transition: border-color .2s ease, background .2s ease;
}
.rfq-form textarea { min-height: 130px; resize: vertical; }
.rfq-form input:focus, .rfq-form textarea:focus, .rfq-form select:focus { outline: none; border-color: var(--logo-red); background: #fff; box-shadow: 0 0 0 3px rgba(132,15,16,.08); }
.form-note { margin-top: 16px; font-size: 13px; }
.form-success { color: #166534; }
.form-error { color: var(--logo-red); }

/* ==========================================================================
   10. Scroll-reveal animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.btn { transform: translateY(0); transition: all .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,.15); }

/* ==========================================================================
   11. Single Product page
   ========================================================================== */
.single-product-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.single-product-media {
  background: var(--zinc-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  box-shadow: var(--shadow-sm);
}
.single-product-media img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.single-product-body h1 { margin-bottom: 4px; }
.single-product-desc { font-size: 15px; color: #404040; line-height: 1.8; }
.single-product-desc p { margin-bottom: 14px; }

.oem-box {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: var(--zinc-light);
  border-left: 3px solid var(--logo-red);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin-bottom: 24px;
}
.oem-box .label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: #a3a3a3; font-weight: 700; }
.oem-box .value { font-size: 13.5px; font-weight: 700; color: var(--logo-red); }

.breadcrumb { margin-bottom: 12px; font-size: 12px; }
.breadcrumb a { color: #a3a3a3; text-transform: uppercase; letter-spacing: 0.1em; transition: color .2s ease; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: #525252; margin: 0 8px; }
.breadcrumb .current { color: var(--logo-red-bright); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }

@media (max-width: 800px) {
  .single-product-wrap { grid-template-columns: 1fr; }
}

/* ==========================================================================
   12. About page — Vision/Mission + supply/why grids
   ========================================================================== */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.vm-card p { color: #404040; font-size: 15.5px; line-height: 1.85; margin-bottom: 16px; }
.vm-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

.mission-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 36px;
}
.mission-list li {
  position: relative;
  padding-left: 36px;
  font-size: 14.5px;
  color: #404040;
  line-height: 1.6;
}
.mission-list li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: -1px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--logo-red-bright), var(--logo-red));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 700px) {
  .vm-grid { grid-template-columns: 1fr; }
  .mission-list { grid-template-columns: 1fr; }
}

/* About hero — split text + real photo */
.about-hero { background: var(--logo-dark); padding: 64px 0; }
.about-hero .container { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.about-hero-copy { flex: 1 1 380px; }
.about-hero-copy .eyebrow { color: var(--logo-red-bright); font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 700; display: block; margin-bottom: 12px; }
.about-hero-copy h1 { font-family: var(--font-tech); font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 8px; }
.about-hero-copy h1 .accent { color: var(--logo-red-bright); }
.about-hero-copy p { color: #a3a3a3; font-size: 14.5px; margin-top: 12px; max-width: 460px; }
.about-hero-image { flex: 1 1 380px; }
.about-hero-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* Journey timeline */
.timeline-wrap { display: flex; gap: 48px; align-items: flex-start; flex-wrap: wrap; }
.timeline-year { font-family: var(--font-tech); font-size: clamp(3rem, 7vw, 5rem); font-weight: 800; color: #e4e4e7; line-height: 1; }
.timeline-year-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--logo-red); font-weight: 700; margin-top: 6px; }
.timeline-track {
  flex: 1 1 500px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.timeline-step {
  background: #fff;
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.timeline-step:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: var(--logo-red-bright); }
.timeline-step .dot { width: 34px; height: 34px; border-radius: 50%; background: var(--zinc-light); border: 1px solid var(--border-muted); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-bottom: 14px; }
.timeline-step .dot svg { width: 16px; height: 16px; color: var(--logo-red); }
.timeline-step strong { display: block; font-family: var(--font-tech); font-size: 14px; color: var(--logo-dark); margin-bottom: 6px; }
.timeline-step p { font-size: 12.5px; color: #737373; line-height: 1.6; flex-grow: 1; }

/* Mission / Vision / Values — dark 3-col block */
.mvv-dark { background: #171717; color: #fff; }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.mvv-item .icon-circle-outline {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--logo-red-bright);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.mvv-item .icon-circle-outline svg { width: 20px; height: 20px; color: var(--logo-red-bright); }
.mvv-item h3 { font-family: var(--font-tech); font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--logo-red-bright); font-weight: 700; margin-bottom: 12px; }
.mvv-item p { font-size: 13.5px; color: #d4d4d4; line-height: 1.75; }
.mvv-item ul li { font-size: 13.5px; color: #d4d4d4; line-height: 1.9; padding-left: 18px; position: relative; }
.mvv-item ul li::before { content: "\203A"; position: absolute; left: 0; color: var(--logo-red-bright); font-weight: 700; }

@media (max-width: 800px) {
  .mvv-grid { grid-template-columns: 1fr; }
  .timeline-track { grid-template-columns: 1fr; }
}

/* Expertise strip */
.expertise-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.expertise-item {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.expertise-item:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: var(--logo-red-bright); }
.expertise-item .icon-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--logo-red-bright), var(--logo-red));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.expertise-item .icon-circle svg { width: 24px; height: 24px; color: #fff; }
.expertise-item strong { display: block; font-size: 13.5px; color: var(--logo-dark); font-weight: 700; line-height: 1.4; }

/* ==========================================================================
   13. Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-header .container { flex-direction: column; text-align: center; }
  .main-nav ul { justify-content: center; gap: 18px; }
  .section { padding: 56px 0; }
}
