/* ============================================
   SUMM TRADERS INTERNATIONAL - MAIN STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --red:        #9B1B1B;
  --red-dark:   #6E1111;
  --red-light:  #C0392B;
  --cream:      #FAF7F2;
  --off-white:  #F5F0E8;
  --charcoal:   #1A1A1A;
  --mid-grey:   #555555;
  --light-grey: #E8E0D5;
  --gold:       #C8A96E;
  --gold-light: #E8D5A8;
  --white:      #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);

  --radius:     4px;
  --transition: 0.3s 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 {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--red-dark);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.top-bar a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.top-bar a:hover { color: var(--gold-light); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 26px; height: 26px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--red);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(110, 17, 17, 0.97);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.logo-text { color: var(--white); }
.logo-text-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.logo-text-tagline {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.9;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--gold);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-link:hover::after, .nav-link.active::after {
  left: 16px; right: 16px;
}

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  border-top: 3px solid var(--red);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--charcoal);
  font-size: 14px;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.nav-dropdown a:hover {
  background: var(--off-white);
  color: var(--red);
  border-left-color: var(--red);
  padding-left: 24px;
}
.nav-cta {
  background: var(--gold);
  color: var(--charcoal) !important;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 4px;
  margin-left: 8px;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/cows.jpg');
  background-size: cover;
  background-position: center 60%;
  filter: brightness(0.45);
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(110, 17, 17, 0.6) 0%,
    rgba(26, 26, 26, 0.3) 50%,
    rgba(0,0,0,0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-text {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 169, 110, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.2s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.4s both;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 300;
  animation: fadeInUp 0.8s 0.6s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.8s both;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  animation: fadeInUp 0.8s 1s both;
}
.stat-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px 20px;
  border-radius: 8px;
  text-align: center;
  border-top: 2px solid var(--gold);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s 1.5s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(155, 27, 27, 0.4);
}
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ============================================
   SECTION COMMON
   ============================================ */
.section { padding: 100px 0; }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title span { color: var(--red); }
.section-subtitle {
  font-size: 16px;
  color: var(--mid-grey);
  line-height: 1.7;
  max-width: 560px;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* Light / Dark sections */
.section-light { background: var(--cream); }
.section-off-white { background: var(--off-white); }
.section-dark {
  background: var(--charcoal);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }
.section-red {
  background: var(--red);
  color: var(--white);
}
.section-red .section-label { color: var(--gold-light); }
.section-red .section-label::before { background: var(--gold-light); }
.section-red .section-title { color: var(--white); }
.section-red .section-subtitle { color: rgba(255,255,255,0.78); }

/* ============================================
   CEO MESSAGE SECTION
   ============================================ */
.ceo-section {
  background: var(--red);
  padding: 100px 0;
}
.ceo-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.ceo-image-wrapper { position: relative; }
.ceo-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
}
.ceo-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--charcoal);
  color: var(--gold);
  padding: 20px 24px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  text-align: center;
  border: 1px solid var(--gold);
}
.ceo-badge strong { display: block; font-size: 24px; margin-bottom: 2px; }
.ceo-text { color: var(--white); }
.ceo-text .section-label { color: var(--gold-light); }
.ceo-text .section-label::before { background: var(--gold-light); }
.ceo-text .section-title { color: var(--white); }
.ceo-quote {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0 32px;
}
.ceo-quote strong { color: var(--white); font-weight: 600; }
.ceo-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.ceo-sig-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.ceo-sig-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}
.ceo-sig-title {
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--red);
}
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
  width: 64px;
  height: 64px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--red);
  transition: all var(--transition);
}
.value-card:hover .value-icon {
  background: var(--red);
  color: var(--white);
}
.value-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.value-desc {
  font-size: 14px;
  color: var(--mid-grey);
  line-height: 1.6;
}

/* ============================================
   FOCUS AREAS / DIVISIONS
   ============================================ */
.divisions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.division-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.division-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.division-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.division-card:hover .division-img { transform: scale(1.04); }
.division-img-wrap { overflow: hidden; position: relative; }
.division-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.division-body { padding: 32px; }
.division-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.division-text {
  font-size: 14.5px;
  color: var(--mid-grey);
  line-height: 1.7;
  margin-bottom: 24px;
}
.division-products {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.product-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  transition: all var(--transition);
}
.product-chip:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ============================================
   PRODUCTS PAGE CARDS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-card-img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 24px;
  background: var(--off-white);
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img { transform: scale(1.05); }
.product-card-body { padding: 24px; }
.product-category {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 8px;
}
.product-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.product-card-desc {
  font-size: 13.5px;
  color: var(--mid-grey);
  line-height: 1.6;
  margin-bottom: 18px;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.product-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--charcoal);
}
.product-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-left: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--red);
}
.service-icon {
  width: 52px;
  height: 52px;
  color: var(--red);
  margin-bottom: 20px;
}
.service-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.service-text {
  font-size: 14px;
  color: var(--mid-grey);
  line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info {}
.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-item-text {}
.contact-item-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
}
.contact-social { margin-top: 40px; }
.contact-social-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 16px;
}
.contact-social-links {
  display: flex;
  gap: 12px;
}
.contact-social-links a {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--light-grey);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-grey);
  transition: all var(--transition);
}
.contact-social-links a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form { background: var(--white); padding: 40px; border-radius: 12px; box-shadow: var(--shadow-md); }
.form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--off-white);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--cream);
  transition: all var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(155, 27, 27, 0.08);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================
   INNER PAGE BANNER
   ============================================ */
.page-banner {
  background: var(--charcoal);
  position: relative;
  padding: 100px 0 60px;
  overflow: hidden;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: grayscale(100%);
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(110,17,17,0.8) 0%, rgba(26,26,26,0.9) 100%);
}
.page-banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-banner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.page-banner-breadcrumb a { color: var(--gold-light); }
.page-banner-breadcrumb span { color: rgba(255,255,255,0.3); }
.page-banner-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.page-banner-title span { color: var(--gold); }
.page-banner-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
  max-width: 500px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  background: var(--red-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text {}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0F0F0F;
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-img { width: 44px; height: 44px; border-radius: 4px; border: 1px solid var(--gold); object-fit: cover; }
.footer-logo-text { color: var(--white); font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.footer-logo-sub { font-size: 10px; letter-spacing: 2px; color: var(--gold-light); text-transform: uppercase; }
.footer-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '→';
  font-size: 11px;
  color: var(--red);
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--red); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-imgs { position: relative; }
.about-main-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}
.about-accent-img {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 45%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.about-text-block {}
.about-text-block p {
  font-size: 15px;
  color: var(--mid-grey);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-text-block p strong { color: var(--charcoal); }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.pillar {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--off-white);
  border-radius: 6px;
  border-left: 3px solid var(--red);
}
.pillar-icon { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.pillar-title { font-weight: 700; font-size: 14px; color: var(--charcoal); }
.pillar-text { font-size: 12.5px; color: var(--mid-grey); margin-top: 2px; }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}
.mobile-menu.open { pointer-events: all; }
.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.mobile-menu.open .mobile-menu-overlay { opacity: 1; }
.mobile-menu-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--charcoal);
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
  padding: 24px;
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}
.mobile-nav-link {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-sub {
  padding: 10px 0 10px 16px;
  display: none;
}
.mobile-nav-sub.open { display: block; }
.mobile-nav-sub a {
  display: block;
  padding: 8px 0;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: color var(--transition);
}
.mobile-nav-sub a:hover { color: var(--gold-light); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .ceo-grid { grid-template-columns: 1fr; }
  .ceo-image-wrapper { max-width: 420px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-imgs { max-width: 500px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .top-bar-left { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .divisions-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}
