/* ============================================================
   FAMECREST INTERNATIONAL LLC
   Bold Industrial Theme — Primary: #ed1d26
   Inspired by Constrc construction template aesthetic
   Fonts: Barlow Condensed (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,600;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── Variables ─── */
:root {
  --red:        #ed1d26;
  --red-dark:   #c4151d;
  --red-light:  rgba(237,29,38,0.1);
  --red-glow:   rgba(237,29,38,0.18);
  --maroon:     #9a192a;
  --dark:       #111111;
  --dark-2:     #1a1a1a;
  --dark-3:     #222222;
  --dark-4:     #2d2d2d;
  --mid:        #555555;
  --light:      #888888;
  --border:     #e8e8e8;
  --off-white:  #f6f6f6;
  --white:      #ffffff;
  --text:       #1a1a1a;
  --text-mid:   #4a4a4a;
  --font-disp:  'Barlow Condensed', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--white); color: var(--text); font-family: var(--font-body); font-weight: 400; line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--red); color: white; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ─── Container ─── */
.container { max-width: 1220px; margin: 0 auto; padding: 0 40px; }

/* ─── Utilities ─── */
.text-red { color: var(--red); }
.bg-dark { background: var(--dark); }
.bg-dark-2 { background: var(--dark-2); }
.bg-off { background: var(--off-white); }

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-disp);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-red {
  background: var(--red);
  color: white;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.btn-red::before { background: var(--red-dark); }
.btn-red span, .btn-red svg { position: relative; z-index: 1; }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(237,29,38,0.4); }

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-outline-red::before { background: var(--red); }
.btn-outline-red:hover { color: white; transform: translateY(-2px); }
.btn-outline-red span { position: relative; z-index: 1; }

.btn-white-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-white-outline::before { background: white; }
.btn-white-outline:hover { color: var(--dark); }
.btn-white-outline span { position: relative; z-index: 1; }

.btn-arrow-icon {
  font-size: 1rem;
  transition: transform 0.3s;
  position: relative;
  z-index: 1;
}
.btn:hover .btn-arrow-icon { transform: translateX(5px); }

/* ─── Section Spacing ─── */
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.section-lg { padding: 130px 0; }

/* ─── Headings ─── */
.section-title {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dark);
  margin-bottom: 20px;
}
/* .section-title span { color: var(--red); } */
.section-title.light { color: white; }
.section-title.light span { color: var(--red); }

.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 580px;
}
.section-sub.light { color: rgba(255,255,255,0.65); }

/* ─── Red bar accent ─── */
.red-bar {
  display: block;
  width: 50px;
  height: 4px;
  background: var(--red);
  margin-bottom: 20px;
}
.red-bar.center { margin: 0 auto 20px; }

/* ============================================================
   TOPBAR
============================================================ */
.topbar {
  background: var(--dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--dark-3);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}
.topbar-item a { color: inherit; }
.topbar-item:hover, .topbar-item a:hover { color: var(--red); }
.topbar-icon { font-size: 0.85rem; }
.topbar-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.12); }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.4s, background 0.4s;
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.1);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 40px;
}
.nav-logo img {
  height: 75px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav-links li a {
  display: block;
  padding: 10px 22px;
  font-family: var(--font-disp);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color 0.3s;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 22px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav-links li a:hover::after,
.nav-links li a.active::after { width: calc(100% - 44px); }
.nav-links li a:hover,
.nav-links li a.active { color: var(--red); }

.nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 1200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-disp);
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-close {
  position: absolute;
  top: 28px; right: 36px;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.mobile-close:hover { color: var(--red); }

/* ============================================================
   PAGE BANNER (inner pages)
============================================================ */
.page-banner {
  position: relative;
  padding: 80px 0;
  background: var(--dark);
  overflow: hidden;
}
.page-banner-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17,17,17,0.95) 40%, rgba(237,29,38,0.25) 100%);
}
.page-banner-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.breadcrumb a, .breadcrumb span {
  font-family: var(--font-disp);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--red); }
.page-banner h1 {
  font-family: var(--font-disp);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--maroon);
  line-height: 1;
}
.page-banner h1 span { color: var(--white); }

/* ============================================================
   HERO — Home
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  /* display: flex; */
  /* align-items: center; */
  overflow: hidden;
  background: var(--dark);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  /* background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1900&q=85'); */
  background-image: url('../images/hero.jpeg');
  background-size: cover;
  background-position: center;
  transition: transform 0.1s ease-out;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(17,17,17,0.96) 0%,
    rgba(17,17,17,0.82) 50%,
    rgba(17,17,17,0.4) 100%
  );
  z-index: 1;
}
/* Diagonal slice */
.hero-diagonal {
  position: absolute;
  right: -1px; top: 0; bottom: 0;
  width: 38%;
  background: rgba(237,29,38,0.07);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}
.hero-diagonal-line {
  position: absolute;
  right: 37%;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  z-index: 2;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 40px 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-tag-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-tag-text {
  font-family: var(--font-disp);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: rgba(255,255,255,1);
}

.hero-h1 {
  font-family: var(--font-disp);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: white;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.hero-h1 em {
  display: block;
  font-style: italic;
  color: var(--red);
  font-weight: 900;
}

.hero-p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 16px;
}
.hero-small {
  font-family: var(--font-disp);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero bottom info bar */
.hero-infobar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-infobar-inner {
  display: flex;
  height: 72px;
  align-items: stretch;
}
.hero-info-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.hero-info-item:last-child { border-right: none; }
.hii-icon { font-size: 1.2rem; color: var(--red); flex-shrink: 0; }
.hii-text { display: flex; flex-direction: column; }
.hii-label { font-family: var(--font-disp); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.7); font-weight: 600;}
.hii-val { font-family: var(--font-disp); font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.85); letter-spacing: 0.05em; }

/* ============================================================
   ABOUT PREVIEW — Home
============================================================ */
.about-preview {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.ap-img-wrap { position: relative; }
.ap-main-img {
  width: 100%;
  aspect-ratio: 4/4.8;
  object-fit: cover;
  display: block;
}
/* Red box accent */
.ap-red-block {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 160px; height: 160px;
  background: var(--red);
  z-index: -1;
}
/* Dark overlay corner tag */
.ap-corner-tag {
  position: absolute;
  top: 0; left: 0;
  background: var(--dark);
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ap-corner-tag .ct-label {
  font-family: var(--font-disp);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
}
.ap-corner-tag .ct-val {
  font-family: var(--font-disp);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.ap-content .section-sub { max-width: 480px; }
.ap-content h2 { margin-bottom: 22px; }
.ap-content p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 16px; }
.ap-list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ap-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 500;
}
.ap-list-item::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

/* ============================================================
   SEGMENTS — Home (horizontal cards with diagonal)
============================================================ */
.segments-section {
  padding: 60px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.segments-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--red);
}

.segments-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

/* 5-column horizontal layout */
.segments-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.segment-item {
  position: relative;
  overflow: hidden;
  background: white;
  border-right: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
}
.segment-item:last-child { border-right: none; }
.segment-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
}
.segment-item:hover::before { transform: scaleY(1); }

.segment-inner {
  position: relative;
  z-index: 2;
  padding: 44px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 320px;
  justify-content: space-between;
}
.seg-num {
  font-family: var(--font-disp);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  transition: color 0.4s;
  position: absolute;
  top: 16px; right: 16px;
}
.segment-item:hover .seg-num { color: rgba(255,255,255,0.05); }

.seg-icon {
  font-size: 2rem;
  margin-bottom: 24px;
  transition: filter 0.4s;
}
.seg-title {
  font-family: var(--font-disp);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 12px;
  transition: color 0.4s;
}
.segment-item:hover .seg-title { color: white; }

.seg-text {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
  transition: color 0.4s;
}
.segment-item:hover .seg-text { color: rgba(255,255,255,0.55); }

.seg-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-disp);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 24px;
  transition: gap 0.3s, color 0.4s;
}
.segment-item:hover .seg-link { gap: 14px; color: var(--red); }
.seg-link::after { content: '→'; }

/* ============================================================
   WHY CHOOSE — Home
============================================================ */
.why-section {
  padding: 60px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: 'WHY US';
  position: absolute;
  font-family: var(--font-disp);
  font-size: 14rem;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img-col { position: relative; }
.why-img-main {
  width: 100%;
  aspect-ratio: 4/4.5;
  object-fit: cover;
}
.why-img-red-edge {
  position: absolute;
  top: 40px; left: -20px;
  width: 8px;
  height: calc(100% - 80px);
  background: var(--red);
}

.why-points-col h2 { margin-bottom: 14px; }
.why-points-col .section-sub { margin-bottom: 48px; }

.why-points { display: flex; flex-direction: column; gap: 0; }
.why-point {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding-left 0.3s;
}
.why-point:hover { padding-left: 12px; }
.why-point:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.wp-icon {
  width: 48px; height: 48px;
  background: var(--red-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.wp-body h4 {
  font-family: var(--font-disp);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  margin-bottom: 6px;
}
.wp-body p { font-size: 0.86rem; color: rgba(255,255,255,0.5); line-height: 1.75; }

/* ============================================================
   CTA — Home
============================================================ */
.cta-section {
  padding: 0;
  position: relative;
  overflow: hidden;
  max-height: 480px;
  display: flex;
  align-items: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1611095562057-7b4f4c5b4b4a?w=1600&q=80');
  background-size: cover;
  background-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(237,29,38,0.95) 0%, rgba(180,20,28,0.88) 50%, rgba(17,17,17,0.7) 100%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.cta-text h2 {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.cta-text p { font-size: 0.97rem; color: rgba(255,255,255,0.72); max-width: 520px; line-height: 1.8; }
.cta-actions { flex-shrink: 0; }

/* ============================================================
   ABOUT PAGE — Full
============================================================ */
.about-main { padding: 60px 0; }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 20px;
}
.aig-img {
  width: 100%;
  aspect-ratio: 4/4.5;
  object-fit: cover;
}
.aig-img-wrap { position: relative; }
.aig-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80px; height: 80px;
  background: var(--red);
  z-index: -1;
}
.aig-text h2 { margin-bottom: 20px; }
.aig-text p { font-size: 0.95rem; color: var(--text); line-height: 1.9; }

/* Mission Vision - split layout */
.mv-section {
  background: var(--dark);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.mv-section::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.mv-block {
  padding: 56px 60px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: background 0.3s;
}
.mv-block:hover { background: rgba(255,255,255,0.02); }
.mv-block:last-child { border-right: none; }
.mv-block-icon { font-size: 2.5rem; margin-bottom: 20px; }
.mv-block h3 {
  font-family: var(--font-disp);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.mv-block h3 span { color: var(--red); }
.mv-block p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.9; }

/* Values - horizontal list */
.values-section { padding: 60px 0; background: var(--off-white); }
.values-list {
  display: flex;
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--border);
}
.value-item {
  flex: 1;
  padding: 44px 32px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.35s;
}
.value-item:last-child { border-right: none; }
.value-item:hover { background: white; }
.value-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.value-item:hover::before { transform: scaleX(1); }
.vi-num {
  font-family: var(--font-disp);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
}
.vi-title {
  font-family: var(--font-disp);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  margin-bottom: 12px;
}
.vi-text { font-size: 0.86rem; color: var(--text-mid); line-height: 1.8; }

/* Global Trade — dark split section */
.global-section {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.global-img-side {
  position: relative;
  overflow: hidden;
}
.global-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.global-content-side {
  background: var(--dark);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.global-content-side::before {
  content: '';
  position: absolute;
  left: 0; top: 40px; bottom: 40px;
  width: 4px;
  background: var(--red);
}
.global-content-side h2 { margin-bottom: 24px; }
.global-content-side p { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.9; }

/* ============================================================
   PRODUCTS PAGE
============================================================ */
.products-page { padding: 60px 0; }

/* Intro text row */
.products-intro-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 40px;
}
.pir-left h2 { margin-bottom: 18px; }
.pir-right p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.9; }

/* Product Categories — large alternating layout */
.product-cat {
  margin-bottom: 0;
  position: relative;
}

/* full-bleed image + content split */
.pcat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.pcat-row.reverse { direction: rtl; }
.pcat-row.reverse > * { direction: ltr; }

.pcat-img-panel {
  position: relative;
  overflow: hidden;
}
.pcat-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.pcat-img-panel:hover img { transform: scale(1.04); }
.pcat-img-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.3);
  transition: background 0.4s;
}
.pcat-img-panel:hover::after { background: rgba(17,17,17,0.1); }

.pcat-content-panel {
  background: var(--dark);
  padding: 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.pcat-content-panel.light-bg {
  background: var(--off-white);
}
.pcat-num {
  font-family: var(--font-disp);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 20px; right: 28px;
  line-height: 1;
}
.light-bg .pcat-num { color: rgba(0,0,0,0.04); }

.pcat-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.pcat-label-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.pcat-label-text {
  font-family: var(--font-disp);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
}
.pcat-title {
  font-family: var(--font-disp);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: white;
  margin-bottom: 18px;
  line-height: 1;
}
.light-bg .pcat-title { color: var(--dark); }

.pcat-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 30px;
}
.light-bg .pcat-desc { color: var(--text-mid); }

.pcat-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 36px;
}
.pcat-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-disp);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.3s;
}
.light-bg .pcat-tag { color: var(--text-mid); border-bottom-color: var(--border); }
.pcat-tag::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.pcat-tag:hover { color: var(--red); }
.light-bg .pcat-tag:hover { color: var(--red); }

/* Products closing section */
.products-closing {
  background: var(--dark);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.products-closing::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.pc-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.pc-text h2 { margin-bottom: 16px; }
.pc-text p { font-size: 0.97rem; color: rgba(255,255,255,0.55); max-width: 560px; line-height: 1.85; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-section { padding: 100px 0; }
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Form */
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap .sub { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 40px; line-height: 1.7; }

.fc-form { display: flex; flex-direction: column; gap: 0; }
.fc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.fc-group {
  margin-bottom: 0;
  position: relative;
}
.fc-group label {
  display: none;
}
.fc-group input,
.fc-group select,
.fc-group textarea {
  width: 100%;
  background: var(--off-white);
  border: none;
  border-bottom: 2px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 20px 22px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
}
.fc-group input:focus,
.fc-group select:focus,
.fc-group textarea:focus {
  border-bottom-color: var(--red);
  background: white;
}
.fc-group input::placeholder,
.fc-group textarea::placeholder { color: var(--light); font-size: 0.87rem; }
.fc-group select option { background: white; }
.fc-group textarea { resize: vertical; min-height: 160px; }
.fc-group.full { grid-column: 1 / -1; }
.fc-group.full input,
.fc-group.full textarea { border-right: none; }

/* Info side */
.contact-info-side { display: flex; flex-direction: column; }
.contact-info-side h3 {
  font-family: var(--font-disp);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.contact-info-side .sub { font-size: 0.92rem; color: var(--text-mid); margin-bottom: 44px; line-height: 1.7; }

.ci-items { display: flex; flex-direction: column; }
.ci-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s;
}
.ci-item:hover { padding-left: 8px; }
.ci-item:first-child { border-top: 1px solid var(--border); }
.ci-icon-box {
  width: 46px; height: 46px;
  /* background: var(--maroon); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.ci-body strong {
  display: block;
  font-family: var(--font-disp);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 6px;
}
.ci-body span, .ci-body a {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s;
  line-height: 1.6;
}
.ci-body a:hover { color: var(--red); }

/* Contact CTA dark */
.contact-cta {
  margin-top: 80px;
  background: var(--dark);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--red);
}
.contact-cta h3 {
  font-family: var(--font-disp);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.contact-cta p { font-size: 0.95rem; color: rgba(255,255,255,0.6); max-width: 500px; line-height: 1.75; }

/* Map */
.map-section { padding: 80px 0 0; }
.map-section h3 {
  font-family: var(--font-disp);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}
.map-embed {
  overflow: hidden;
  border: 2px solid var(--border);
  position: relative;
}
.map-embed::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--red);
  z-index: 10;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--dark-2);
  padding: 80px 0 0;
  border-top: 4px solid var(--red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .f-logo { margin-bottom: 22px; }
.footer-brand .f-logo img { height: 75px; width: auto; opacity: 0.8; }
.footer-brand p { font-size: 0.87rem; color: rgba(255,255,255,0.42); line-height: 1.9; max-width: 260px; }

.footer-col h5 {
  font-family: var(--font-disp);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.42);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: var(--red); padding-left: 6px; }

.f-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.f-ci-icon { color: var(--red); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.f-ci-text { font-size: 0.84rem; color: rgba(255,255,255,0.42); line-height: 1.65; }
.f-ci-text a { color: inherit; transition: color 0.3s; }
.f-ci-text a:hover { color: var(--red); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.28); transition: color 0.3s; font-family: var(--font-disp); letter-spacing: 0.15em; }
.footer-bottom-links a:hover { color: var(--red); }

* { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'IBM Plex Sans', sans-serif; font-size: 15px; color: #2c2c2c; background: #fff; line-height: 1.75; }
  h1, h2, h3 { font-family: 'Playfair Display', serif; }

  /* CONTENT */
  .content-section { padding: 50px 0 50px; }
  /* .container { max-width: 900px; margin: 0 auto; padding: 0 24px; } */

  .lead { font-size: 1.05rem; color: #444; border-left: 4px solid #2d5986; padding-left: 16px; margin-bottom: 40px; }

  .policy-section { margin-bottom: 34px; }
  .policy-section h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; padding-bottom: 8px; border-bottom: 2px solid #e8f0f8; }
  .policy-section h3 .num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: var(--red-dark); color: #fff; border-radius: 50%; font-size: .85rem; font-family: 'IBM Plex Sans', sans-serif; flex-shrink: 0; }
  .policy-section p { margin-bottom: 12px; color: var(--dark); }
  .policy-section a { color: var(--red-dark); }
  .policy-section ul { padding-left: 20px; margin-bottom: 12px; }
  .policy-section ul li { margin-bottom: 8px; color: var(--dark); }
  .policy-section ul li strong { color: var(--dark); font-weight: 500;}
  .note { color: #666; font-style: italic; font-size: 0.92rem; }

  .contact-box { background: #ed1d2633; border: 1px solid #ed1d261A; border-radius: 8px; padding: 24px 28px; margin-top: 12px; }
  .contact-box p { margin-bottom: 8px; color: #333; }
  .contact-box p:last-child { margin-bottom: 0; }
  .contact-box a { color: #2d5986; text-decoration: none; }
  .contact-box a:hover { text-decoration: underline; }

  .privacy-links a { color: rgba(255, 255, 255, 0.5); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; padding-left: 10px; }
  .privacy-links a:hover { color: var(--primary); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .segments-row { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .about-preview-grid, .why-grid, .about-intro-grid,
  .contact-main-grid, .products-intro-row { grid-template-columns: 1fr; gap: 50px; }
  .global-section { grid-template-columns: 1fr; }
  .global-img-side { height: 360px; }
  .pcat-row { grid-template-columns: 1fr; }
  .pcat-row.reverse { direction: ltr; }
  .pcat-img-panel { height: 320px; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-list { flex-wrap: wrap; }
  .value-item { flex: 1 1 40%; }
  .cta-inner { flex-direction: column; text-align: center; }
  .pc-inner { flex-direction: column; gap: 36px; }
  .contact-cta { flex-direction: column; gap: 28px; }
  .hero-infobar { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .container { padding: 0 20px; }
  .hero-h1 { font-size: 2.8rem; }
  .segments-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .fc-row { grid-template-columns: 1fr; }
  .values-list { flex-direction: column; }
  .pcat-content-panel { padding: 44px 32px; }
  .global-content-side { padding: 56px 36px; }
  .contact-cta { padding: 40px; }
}
