/*
Theme Name: Hyborton New Theme
Description: Bold redesign for Hyborton Global Trading Co. - Industrial Luxury aesthetic
Version: 2.0
Author: Hyborton
License: GNU General Public License v2 or later
Text Domain: hyborton
*/

/* ============================================
   CSS VARIABLES & FOUNDATION
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400&display=swap');

:root {
  /* Color Palette - Industrial Luxury */
  --color-obsidian: #0d0d0d;
  --color-charcoal: #1a1a1a;
  --color-graphite: #2d2d2d;
  --color-steel: #4a4a4a;
  --color-silver: #8a8a8a;
  --color-pearl: #c5c5c5;
  --color-ivory: #f5f3ef;
  --color-cream: #faf9f7;

  /* Accent - Copper/Bronze */
  --color-copper: #b87333;
  --color-copper-light: #d4956a;
  --color-copper-dark: #8b5a2b;
  --color-bronze: #cd7f32;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 8rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 600ms ease;
  --transition-slower: 1000ms ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-copper: 0 4px 30px rgba(184,115,51,0.3);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-graphite);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--color-copper);
  color: var(--color-ivory);
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-charcoal);
}
::-webkit-scrollbar-thumb {
  background: var(--color-copper);
  border-radius: 4px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-obsidian);
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: var(--space-md);
  color: var(--color-steel);
}

a {
  color: var(--color-copper);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--color-copper-dark);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

/* ============================================
   HEADER - BOLD REDESIGN
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

/* Top Bar */
.header-top {
  background: var(--color-obsidian);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(184,115,51,0.2);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-contact {
  display: flex;
  gap: var(--space-lg);
}

.header-contact span {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: var(--color-silver);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

.header-contact .dashicons {
  color: var(--color-copper);
  font-size: 1rem;
}

.header-social {
  display: flex;
  gap: var(--space-md);
}

.header-social a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: var(--color-silver);
  transition: all var(--transition-fast);
}

.header-social a:hover {
  color: var(--color-copper);
  border-color: var(--color-copper);
  transform: translateY(-2px);
}

.header-social .dashicons,
.footer-social .dashicons {
  width: 18px;
  height: 18px;
  font-size: 18px;
  line-height: 18px;
}

/* Main Header */
.header-main {
  padding: var(--space-md) 0;
  background: var(--color-obsidian);
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  position: relative;
}

.site-logo a {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 50px;
  width: auto;
}

.site-logo-img {
  height: 50px;
  width: auto;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: var(--space-md);
}

.logo-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-copper);
}

/* Navigation */
.main-navigation ul {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
  position: relative;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  color: var(--color-ivory);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: var(--space-sm) 0;
  position: relative;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-copper);
  transition: width var(--transition-base);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after {
  width: 100%;
}

/* Dropdown Menu Styles */
.main-navigation ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-obsidian);
  min-width: 220px;
  padding: var(--space-md) 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  z-index: 1000;
}

.main-navigation ul li:hover > ul {
  display: block;
}

.main-navigation ul ul li {
  position: relative;
}

.main-navigation ul ul a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  text-transform: none;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.main-navigation ul ul a:hover {
  background: var(--color-charcoal);
  color: var(--color-copper);
}

.main-navigation ul ul a::after {
  display: none;
}

.main-navigation ul ul ul {
  left: 100%;
  top: 0;
}

/* Products dropdown specific */
.main-navigation .menu-item-has-children > a {
  padding-right: 14px;
}

.main-navigation .menu-item-has-children > a::before {
  content: '\25BE';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-45%);
  color: var(--color-copper);
  font-size: 0.58rem;
  line-height: 1;
}

/* Submenu toggle button - hidden on desktop, shown on mobile */
.main-navigation .submenu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-silver);
  padding: 4px 8px;
  margin-left: 4px;
  cursor: pointer;
  vertical-align: middle;
}

.main-navigation .submenu-toggle .dashicons {
  font-size: 14px;
}

/* Ensure submenu is properly hidden by default */
.main-navigation .sub-menu {
  display: none;
}

/* Show submenu on hover - ensure proper stacking context */
.main-navigation ul li:hover > .sub-menu {
  display: block;
  visibility: visible;
  opacity: 1;
}

/* Ensure dropdown appears above other content */
.main-navigation ul ul {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.2s ease;
}

.main-navigation ul li:hover > ul {
  visibility: visible;
  opacity: 1;
}

/* Mobile styles */
@media (max-width: 768px) {
  .main-navigation .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-navigation .sub-menu {
    display: none;
    visibility: visible;
    opacity: 1;
    position: static;
    box-shadow: none;
    padding-left: var(--space-lg);
    background: transparent;
  }

  .main-navigation .submenu-open > .sub-menu {
    display: block;
  }

  .main-navigation ul ul a {
    padding-left: var(--space-md);
  }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-copper);
  color: var(--color-ivory);
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  font-size: 1.5rem;
}

/* ============================================
   HERO SECTION - DRAMATIC
   ============================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: var(--color-obsidian);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.65) 0%,
    rgba(26,26,26,0.5) 50%,
    rgba(45,45,45,0.35) 100%
  );
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(10%) brightness(1.1);
  transform: scale(1.02);
  animation: heroZoom 20s ease infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

/* Panoramic slide - crop top to show bottom fully */
.hero-slide.panoramic .hero-slide-bg {
  background-size: cover;
  background-position: center bottom;
  filter: grayscale(5%) brightness(1.15);
  animation: none;
  transform: none;
}

.hero-slide.panoramic::before {
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.5) 0%,
    rgba(26,26,26,0.35) 50%,
    rgba(45,45,45,0.2) 100%
  );
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10%;
  max-width: 800px;
}

.hero-slide-content h2 {
  color: var(--color-ivory);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1s ease forwards 0.3s;
}

.hero-slide-content p {
  color: var(--color-pearl);
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1s ease forwards 0.6s;
}

.hero-slide-content .btn {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease forwards 0.9s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Decoration */
.hero-decoration {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border: 1px solid rgba(184,115,51,0.2);
  border-radius: 50%;
  animation: rotate 60s linear infinite;
}

.hero-decoration::before {
  content: '';
  position: absolute;
  inset: 50px;
  border: 1px solid rgba(184,115,51,0.15);
  border-radius: 50%;
}

.hero-decoration::after {
  content: '';
  position: absolute;
  inset: 100px;
  border: 1px solid rgba(184,115,51,0.1);
  border-radius: 50%;
}

@keyframes rotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

/* Slider Controls */
.slider-nav {
  position: absolute;
  bottom: 80px;
  left: 10%;
  display: flex;
  gap: var(--space-md);
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--color-copper);
  cursor: pointer;
  transition: all var(--transition-base);
}

.slider-dot.active,
.slider-dot:hover {
  background: var(--color-copper);
  box-shadow: 0 0 20px rgba(184,115,51,0.5);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(184,115,51,0.5);
  color: var(--color-copper);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: var(--color-copper);
  color: var(--color-obsidian);
  box-shadow: var(--shadow-copper);
}

.slider-arrow.prev { left: 40px; }
.slider-arrow.next { right: 40px; }

.slider-arrow .dashicons {
  font-size: 1.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-copper);
  color: var(--color-ivory);
}

.btn-primary:hover {
  background: var(--color-copper-light);
  color: var(--color-obsidian);
  transform: translateY(-3px);
  box-shadow: var(--shadow-copper);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-copper);
  color: var(--color-copper);
}

.btn-outline:hover {
  background: var(--color-copper);
  color: var(--color-ivory);
}

.btn-dark {
  background: var(--color-obsidian);
  color: var(--color-ivory);
}

.btn-dark:hover {
  background: var(--color-charcoal);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-copper);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.btn-link:hover {
  gap: var(--space-md);
}

/* ============================================
   SECTION TITLE
   ============================================ */
.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-md);
}

.section-title h2::before,
.section-title h2::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: var(--color-copper);
}

.section-title h2::before {
  right: calc(100% + 30px);
}

.section-title h2::after {
  left: calc(100% + 30px);
}

.section-title p {
  color: var(--color-steel);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   ABOUT SECTION - EDITORIAL STYLE
   ============================================ */
.about-section {
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,115,51,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-text h3 {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  position: relative;
}

.about-text h3::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-copper);
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-steel);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-ivory);
  border-left: 3px solid var(--color-copper);
  transition: all var(--transition-base);
}

.about-feature:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.about-feature:hover .about-feature-icon.icon-shield {
  box-shadow: 0 6px 20px rgba(231,76,60,0.6), inset 0 2px 3px rgba(255,255,255,0.4), inset 0 -2px 3px rgba(0,0,0,0.2);
}

.about-feature:hover .about-feature-icon.icon-clock {
  box-shadow: 0 6px 20px rgba(52,152,219,0.6), inset 0 2px 3px rgba(255,255,255,0.4), inset 0 -2px 3px rgba(0,0,0,0.2);
}

.about-feature:hover .about-feature-icon.icon-teams {
  box-shadow: 0 6px 20px rgba(46,204,113,0.6), inset 0 2px 3px rgba(255,255,255,0.4), inset 0 -2px 3px rgba(0,0,0,0.2);
}

.about-feature:hover .about-feature-icon.icon-globe {
  box-shadow: 0 6px 20px rgba(155,89,182,0.6), inset 0 2px 3px rgba(255,255,255,0.4), inset 0 -2px 3px rgba(0,0,0,0.2);
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3), inset 0 2px 3px rgba(255,255,255,0.3);
}

/* 3D Gradient Colors for each icon */
.about-feature-icon.icon-shield {
  background: linear-gradient(145deg, #e74c3c, #c0392b);
  box-shadow: 0 4px 15px rgba(231,76,60,0.4), inset 0 2px 3px rgba(255,255,255,0.4), inset 0 -2px 3px rgba(0,0,0,0.2);
}

.about-feature-icon.icon-clock {
  background: linear-gradient(145deg, #3498db, #2980b9);
  box-shadow: 0 4px 15px rgba(52,152,219,0.4), inset 0 2px 3px rgba(255,255,255,0.4), inset 0 -2px 3px rgba(0,0,0,0.2);
}

.about-feature-icon.icon-teams {
  background: linear-gradient(145deg, #2ecc71, #27ae60);
  box-shadow: 0 4px 15px rgba(46,204,113,0.4), inset 0 2px 3px rgba(255,255,255,0.4), inset 0 -2px 3px rgba(0,0,0,0.2);
}

.about-feature-icon.icon-globe {
  background: linear-gradient(145deg, #9b59b6, #8e44ad);
  box-shadow: 0 4px 15px rgba(155,89,182,0.4), inset 0 2px 3px rgba(255,255,255,0.4), inset 0 -2px 3px rgba(0,0,0,0.2);
}

.about-feature-icon .dashicons {
  color: var(--color-ivory);
  font-size: 1.5rem;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.about-feature span {
  font-weight: 600;
  color: var(--color-obsidian);
  font-size: 0.95rem;
}

.about-image {
  position: relative;
  align-self: flex-start; /* Align to top of parent */
  padding-top: 0;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: all var(--transition-slow);
}

.about-image:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.about-image::before {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100%;
  height: calc(100% - 60px);
  border: 2px solid var(--color-copper);
  z-index: -1;
}

.about-page .about-overview .about-image img {
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 3 / 2;
  object-position: center;
  filter: saturate(88%) contrast(1.04);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(18, 40, 59, 0.14);
}

.about-page .about-overview .about-image:hover img {
  filter: saturate(100%) contrast(1.03);
}

/* ============================================
   PRODUCTS SECTION - GRID LAYOUT
   ============================================ */
.products-section {
  background: var(--color-charcoal);
  position: relative;
}

.products-section .section-title h2,
.products-section .section-title p {
  color: var(--color-ivory);
}

.products-section .section-title h2::before,
.products-section .section-title h2::after {
  background: var(--color-copper-light);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.product-card {
  background: var(--color-graphite);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-copper), var(--color-bronze));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: all var(--transition-slow);
}

.product-card:hover .product-card-image img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.product-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 60%);
}

.product-card-content {
  padding: var(--space-lg);
  position: relative;
}

.product-card-content h3 {
  color: var(--color-ivory);
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.product-card-content h3 a {
  color: inherit;
}

.product-card-content h3 a:hover {
  color: var(--color-copper);
}

.product-card-content p {
  color: var(--color-silver);
  font-size: 0.9rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-content .btn-link {
  margin-top: var(--space-md);
  color: var(--color-copper);
}

.product-card-content .btn-link .dashicons {
  transition: transform var(--transition-fast);
}

.product-card-content .btn-link:hover .dashicons {
  transform: translateX(5px);
}

/* ============================================
   NEWS SECTION - ASYMMETRIC
   ============================================ */
.news-section {
  background: var(--color-cream);
  position: relative;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.news-card {
  background: var(--color-ivory);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.news-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-copper-dark), var(--color-copper));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.news-card:hover::after {
  transform: scaleX(1);
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.news-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: all var(--transition-slow);
}

.news-card:hover .news-card-image img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.news-card-content {
  padding: var(--space-lg);
}

.news-card-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-copper);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.news-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.news-card-content h3 a {
  color: var(--color-obsidian);
}

.news-card-content h3 a:hover {
  color: var(--color-copper);
}

.news-card-content p {
  font-size: 0.9rem;
  color: var(--color-steel);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   PRODUCTS SHOWCASE PAGE - 3 COLUMN GRID
   ============================================ */
.products-showcase-section {
  background: linear-gradient(180deg, var(--color-obsidian) 0%, var(--color-charcoal) 100%);
  padding: var(--space-2xl) 0;
  min-height: 60vh;
}

.products-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.product-showcase-card {
  background: var(--color-graphite);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.product-showcase-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-copper), var(--color-bronze));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.product-showcase-card:hover::after {
  transform: scaleX(1);
}

.product-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.product-showcase-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.product-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: all var(--transition-slow);
}

.product-showcase-card:hover .product-showcase-image img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

.product-showcase-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 92, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-showcase-card:hover .product-showcase-overlay {
  opacity: 1;
}

.product-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--color-copper);
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-base);
}

.product-view-btn:hover {
  background: var(--color-bronze);
  color: var(--color-white);
  transform: scale(1.05);
}

.product-showcase-content {
  padding: var(--space-lg);
}

.product-showcase-content h3 {
  color: var(--color-ivory);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.product-showcase-content h3 a {
  color: inherit;
}

.product-showcase-content h3 a:hover {
  color: var(--color-copper);
}

.product-showcase-content p {
  color: var(--color-silver);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Products Pagination */
.products-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.products-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 var(--space-md);
  background: var(--color-graphite);
  color: var(--color-ivory);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition-base);
}

.products-pagination .page-numbers:hover,
.products-pagination .page-numbers.current {
  background: var(--color-copper);
  color: var(--color-white);
  border-color: var(--color-copper);
}

.products-pagination .page-numbers.dots {
  background: transparent;
  border: none;
  cursor: default;
}

/* Products Count Info */
.products-count-info {
  text-align: center;
  margin-top: var(--space-lg);
  color: var(--color-silver);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* No Products Message */
.no-products-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-2xl);
  color: var(--color-silver);
}

.no-products-message .dashicons {
  font-size: 64px;
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-md);
  opacity: 0.5;
}

.no-products-message p {
  font-size: 1.1rem;
}

/* Page Header Subtitle */
.page-header-subtitle {
  color: var(--color-steel);
  font-size: 1.1rem;
  margin-top: var(--space-sm);
  max-width: 600px;
}

/* ============================================
   NEWS LIST PAGE - FULL WIDTH CARDS
   ============================================ */
.news-list-section {
  background: var(--color-ivory);
  padding: var(--space-2xl) 0;
}

.news-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.news-full-card {
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid rgba(0,0,0,0.08);
}

.news-full-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-full-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.news-full-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: all var(--transition-slow);
}

.news-full-card:hover .news-full-card-image img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.news-full-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-full-card-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-copper);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.news-full-card-content h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.news-full-card-content h3 a {
  color: var(--color-obsidian);
}

.news-full-card-content h3 a:hover {
  color: var(--color-copper);
}

.news-full-card-content p {
  font-size: 0.95rem;
  color: var(--color-steel);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-copper);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-base);
}

.btn-link:hover {
  color: var(--color-obsidian);
  gap: 10px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 var(--space-sm);
  background: var(--color-white);
  color: var(--color-obsidian);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  border: 1px solid rgba(0,0,0,0.1);
  transition: all var(--transition-base);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--color-copper);
  color: var(--color-white);
  border-color: var(--color-copper);
}

/* ============================================
   CONTACT CTA - BOLD SECTION
   ============================================ */
.contact-cta {
  background: linear-gradient(135deg, var(--color-obsidian) 0%, var(--color-charcoal) 100%);
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) 0;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(184,115,51,0.1) 0%, transparent 50%);
  animation: pulse 8s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.contact-cta .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-cta h2 {
  color: var(--color-ivory);
  margin-bottom: var(--space-md);
}

.contact-cta p {
  color: var(--color-silver);
  font-size: 1.2rem;
  margin-bottom: var(--space-xl);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-obsidian);
  color: var(--color-silver);
  padding-top: var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
  color: var(--color-ivory);
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.footer-brand p {
  color: var(--color-silver);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: var(--color-silver);
}

.footer-social a:hover {
  padding-left: 0;
  border-color: var(--color-copper);
  color: var(--color-copper);
  transform: translateY(-2px);
}

.footer-column h4 {
  color: var(--color-copper);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-lg);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: var(--space-sm);
}

.footer-column a {
  color: var(--color-silver);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-copper);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.footer-contact .dashicons {
  color: var(--color-copper);
  font-size: 1.2rem;
}

.footer-bottom {
  padding: var(--space-lg) 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--color-copper);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  background: var(--color-charcoal);
  padding: var(--space-md) 0;
  margin-top: 120px;
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  color: var(--color-steel);
}

.breadcrumb a {
  color: var(--color-silver);
}

.breadcrumb a:hover {
  color: var(--color-copper);
}

.breadcrumb .current {
  color: var(--color-copper);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-image {
    order: -1;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }

  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-obsidian);
    padding: var(--space-lg);
  }

  .main-navigation.active {
    display: block;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: var(--space-md);
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-slide-content {
    padding: 0 var(--space-lg);
  }

  .hero-decoration {
    display: none;
  }

  .section-title h2::before,
  .section-title h2::after {
    display: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .products-showcase-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .product-showcase-image {
    height: 200px;
  }

  .product-showcase-overlay {
    opacity: 1;
    background: rgba(26, 58, 92, 0.7);
  }

  .product-view-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .products-pagination {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-list-grid {
    grid-template-columns: 1fr;
  }

  .news-full-card {
    flex-direction: column;
  }

  .news-full-card-image {
    height: 180px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-page .about-overview .about-image img {
    height: auto;
    aspect-ratio: 3 / 2;
    object-position: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    margin-bottom: var(--space-lg);
  }

  .footer-social {
    justify-content: center;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-copper { color: var(--color-copper); }
.bg-dark { background: var(--color-obsidian); }
.bg-copper { background: var(--color-copper); }

/* ============================================
   HOME BUSINESS REDESIGN
   ============================================ */
body.home,
body.front-page {
  background: #f5f7f8;
}

body.home .site-header,
body.front-page .site-header {
  background: rgba(12, 28, 42, 0.98);
}

body.home .header-top,
body.front-page .header-top,
body.home .header-main,
body.front-page .header-main {
  background: transparent;
}

body.home .header-main,
body.front-page .header-main {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.business-hero {
  height: 760px;
  min-height: 680px;
  max-height: 860px;
  background: #0c1c2a;
  isolation: isolate;
}

.business-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(170, 119, 66, 0.65), transparent);
  z-index: 12;
}

.business-hero .hero-slide {
  transform: translateX(24px);
  transition: opacity 900ms ease, transform 900ms ease;
}

.business-hero .hero-slide.active {
  transform: translateX(0);
}

.business-hero .hero-slide::before {
  background:
    linear-gradient(90deg, rgba(8, 21, 33, 0.92) 0%, rgba(8, 21, 33, 0.76) 38%, rgba(8, 21, 33, 0.36) 72%, rgba(8, 21, 33, 0.24) 100%),
    linear-gradient(180deg, rgba(8, 21, 33, 0.58) 0%, rgba(8, 21, 33, 0.08) 42%, rgba(8, 21, 33, 0.56) 100%);
}

.business-hero .hero-slide-bg {
  filter: saturate(0.9) contrast(1.06) brightness(0.92);
  transform: scale(1.04);
  animation: none;
  transition: transform 6500ms ease, filter 900ms ease;
}

.business-hero .hero-slide.active .hero-slide-bg {
  transform: scale(1.1) translateX(-1.5%);
}

.business-hero .hero-slide.panoramic .hero-slide-bg {
  background-position: center bottom;
  transform: scale(1.02);
}

.business-hero .hero-slide.panoramic.active .hero-slide-bg {
  transform: scale(1.06) translateX(-1%);
}

.business-hero-content {
  padding: 158px 0 112px 8%;
  width: min(820px, 58vw);
  justify-content: center;
}

.business-hero-content .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #d0a06a;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(18px);
}

.business-hero-content .hero-kicker::before {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  background: #d0a06a;
}

.business-hero-content h1 {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0 0 24px;
  opacity: 0;
  transform: translateY(24px);
  text-wrap: balance;
}

.business-hero-content p {
  color: #d7dee5;
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 0 34px;
  opacity: 0;
  transform: translateY(24px);
}

.business-hero .hero-slide.active .hero-kicker,
.business-hero .hero-slide.active h1,
.business-hero .hero-slide.active p,
.business-hero .hero-slide.active .hero-actions,
.business-hero .hero-slide.active .hero-metric {
  animation: businessHeroIn 760ms ease forwards;
}

.business-hero .hero-slide.active h1 { animation-delay: 100ms; }
.business-hero .hero-slide.active p { animation-delay: 200ms; }
.business-hero .hero-slide.active .hero-actions { animation-delay: 300ms; }
.business-hero .hero-slide.active .hero-metric { animation-delay: 420ms; }

@keyframes businessHeroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  transform: translateY(22px);
}

.business-hero .btn {
  min-height: 48px;
  padding: 14px 26px;
  border-radius: 4px;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.95rem;
}

.business-hero .btn-primary {
  background: #b98148;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(6, 15, 24, 0.22);
}

.business-hero .btn-primary:hover {
  background: #d09961;
  color: #0c1c2a;
}

.business-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.business-hero .btn-outline:hover {
  border-color: #b98148;
  background: rgba(185, 129, 72, 0.18);
  color: #ffffff;
}

.hero-metric {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 42px;
  opacity: 0;
  transform: translateY(22px);
}

.hero-metric strong {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 2.25rem;
  line-height: 1;
  min-width: 74px;
}

.hero-metric span {
  color: #b9c5cf;
  max-width: 190px;
  line-height: 1.4;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: 16px;
}

.hero-trust-panel {
  position: absolute;
  right: 6%;
  bottom: 86px;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 320px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(9, 24, 37, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.hero-trust-panel > div {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust-panel > div:last-child {
  border-bottom: 0;
}

.hero-trust-panel span {
  display: block;
  color: #8fa2b2;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.hero-trust-panel strong {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 650;
}

.slider-controls {
  position: absolute;
  left: 8%;
  bottom: 70px;
  z-index: 11;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(500px, 42vw);
}

.slider-progress {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  border-radius: 999px;
}

.slider-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #d0a06a;
}

.business-hero.is-playing .slider-progress span {
  animation: sliderProgress 6500ms linear forwards;
}

@keyframes sliderProgress {
  from { width: 0; }
  to { width: 100%; }
}

.slider-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.slider-toggle:hover {
  border-color: #d0a06a;
  color: #d0a06a;
}

.business-hero .slider-nav {
  left: auto;
  right: 6%;
  top: 45%;
  bottom: auto;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 12px;
}

.business-hero .slider-dot {
  width: 46px;
  height: 34px;
  border-radius: 4px;
  border-color: rgba(255, 255, 255, 0.24);
  color: #d7dee5;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-mono);
  font-size: 0.76rem;
}

.business-hero .slider-dot.active,
.business-hero .slider-dot:hover {
  background: #b98148;
  border-color: #b98148;
  color: #ffffff;
  box-shadow: none;
}

.business-hero .slider-arrow {
  width: 48px;
  height: 48px;
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  background: rgba(9, 24, 37, 0.48);
}

.business-hero .slider-arrow:hover {
  background: #b98148;
  color: #ffffff;
  box-shadow: none;
}

.business-hero .slider-arrow.prev { left: 28px; }
.business-hero .slider-arrow.next { right: 28px; }

body.home .section-title h2,
body.front-page .section-title h2 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0;
  color: #12283b;
}

body.home .section-title p,
body.front-page .section-title p {
  color: #667482;
}

body.home .about-section,
body.front-page .about-section {
  background: #f5f7f8;
}

body.home .section,
body.front-page .section {
  padding: 80px 0;
}

body.home .section-title,
body.front-page .section-title {
  margin-bottom: 42px;
}

body.home .about-content,
body.front-page .about-content {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 42px 72px;
  align-items: start;
}

body.home .about-text,
body.front-page .about-text,
body.home .about-image,
body.front-page .about-image {
  align-self: start;
}

body.home .about-text p:last-of-type,
body.front-page .about-text p:last-of-type {
  margin-bottom: 0;
}

body.home .about-action,
body.front-page .about-action {
  margin-top: 30px;
}

body.home .about-image img,
body.front-page .about-image img {
  height: auto;
  aspect-ratio: 3 / 2;
  object-position: center;
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(18, 40, 59, 0.13);
}

body.home .about-image::before,
body.front-page .about-image::before {
  right: -18px;
  bottom: -18px;
  height: calc(100% - 36px);
  border-color: rgba(185, 129, 72, 0.38);
}

body.home .about-features,
body.front-page .about-features {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}

body.home .about-feature,
body.front-page .about-feature {
  min-height: 104px;
  justify-content: center;
  padding: 24px 22px;
  background: #ffffff;
  border: 1px solid #e3e9ee;
  border-left: 3px solid #b98148;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(18, 40, 59, 0.07);
}

body.home .about-feature:hover,
body.front-page .about-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(18, 40, 59, 0.12);
}

body.home .about-feature-icon,
body.front-page .about-feature-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  background: linear-gradient(145deg, #c58a50, #9e6331) !important;
  box-shadow: 0 8px 20px rgba(185, 129, 72, 0.24), inset 0 1px 2px rgba(255,255,255,0.35) !important;
}

body.home .about-feature span,
body.front-page .about-feature span {
  color: #12283b;
  font-size: 0.96rem;
}

body.home .products-section,
body.front-page .products-section {
  background: #ffffff;
}

body.home .news-section,
body.front-page .news-section {
  background: #eef2f4;
}

.section-action {
  margin-top: 36px;
  text-align: center;
}

body.home .product-card,
body.front-page .product-card,
body.home .news-card,
body.front-page .news-card {
  border-radius: 6px;
  border: 1px solid #e2e8ed;
  box-shadow: 0 14px 32px rgba(18, 40, 59, 0.08);
}

body.home .product-card:hover,
body.front-page .product-card:hover,
body.home .news-card:hover,
body.front-page .news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(18, 40, 59, 0.13);
}

body.home .contact-cta,
body.front-page .contact-cta {
  background: #10283b;
}

body.home .contact-cta::before,
body.front-page .contact-cta::before {
  background:
    linear-gradient(90deg, rgba(16, 40, 59, 0.9), rgba(16, 40, 59, 0.78)),
    url('/wp-content/themes/hyborton-theme/assets/images/home-about-us-office.jpg') center/cover;
}

@media (max-width: 1180px) {
  body.home .about-content,
  body.front-page .about-content {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 36px 44px;
  }

  body.home .about-image img,
  body.front-page .about-image img {
    height: auto;
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 992px) {
  body.home .about-content,
  body.front-page .about-content {
    grid-template-columns: 1fr;
  }

  body.home .about-image,
  body.front-page .about-image {
    order: 0;
  }

  body.home .about-features,
  body.front-page .about-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  body.home .section,
  body.front-page .section {
    padding: 56px 0;
  }

  body.home .section-title,
  body.front-page .section-title {
    margin-bottom: 30px;
  }

  body.home .about-features,
  body.front-page .about-features {
    grid-template-columns: 1fr;
  }

  body.home .about-feature,
  body.front-page .about-feature {
    justify-content: flex-start;
  }
}

.footer-products-all {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-products-all a {
  color: var(--color-copper-light);
  font-weight: 600;
}

.hyborton-contact-form,
.hyborton-contact-form .form-group,
.hyborton-contact-form input,
.hyborton-contact-form textarea {
  min-width: 0;
  max-width: 100%;
}

/* ============================================
   INNER PAGE COMPACT BANNERS
   ============================================ */
body.page-template-page-about .page-header,
body.page-template-page-products .page-header,
body.page-template-page-news .page-header,
body.page-template-page-contact .page-header {
  min-height: 180px !important;
  margin-top: 120px !important;
  padding: 32px 0 30px !important;
  display: flex !important;
  align-items: center !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(184, 115, 51, 0.18), transparent 30%),
    linear-gradient(135deg, #0c1c2a 0%, #162b3d 54%, #101820 100%) !important;
}

body.page-template-page-about .site-header + .breadcrumb,
body.page-template-page-products .site-header + .breadcrumb,
body.page-template-page-news .site-header + .breadcrumb,
body.page-template-page-contact .site-header + .breadcrumb {
  display: none !important;
}

body.page-template-page-about .page-header-content,
body.page-template-page-products .page-header-content,
body.page-template-page-news .page-header-content,
body.page-template-page-contact .page-header-content {
  gap: 8px !important;
}

body.page-template-page-about .breadcrumb-nav,
body.page-template-page-products .breadcrumb-nav,
body.page-template-page-news .breadcrumb-nav,
body.page-template-page-contact .breadcrumb-nav {
  display: none !important;
}

body.page-template-page-about .about-icon-wrapper,
body.page-template-page-products .products-icon-wrapper,
body.page-template-page-news .news-icon-wrapper,
body.page-template-page-contact .contact-icon-wrapper {
  display: none !important;
}

body.page-template-page-about .about-icon-inner,
body.page-template-page-products .products-icon-inner,
body.page-template-page-news .news-icon-inner {
  width: 54px !important;
  height: 54px !important;
  box-shadow: 0 10px 26px rgba(184, 115, 51, 0.24) !important;
}

body.page-template-page-contact .contact-icon-ring,
body.page-template-page-contact .contact-icon-pulse {
  display: none !important;
}

body.page-template-page-contact .contact-icon-inner {
  inset: 0 !important;
  width: 54px !important;
  height: 54px !important;
  box-shadow: 0 10px 26px rgba(184, 115, 51, 0.24) !important;
}

body.page-template-page-about .page-header .dashicons,
body.page-template-page-products .page-header .dashicons,
body.page-template-page-news .page-header .dashicons,
body.page-template-page-contact .page-header .dashicons {
  font-size: 1.65rem !important;
  width: 1.65rem !important;
  height: 1.65rem !important;
}

body.page-template-page-about .page-header h1,
body.page-template-page-products .page-header h1,
body.page-template-page-news .page-header h1,
body.page-template-page-contact .page-header h1 {
  font-size: clamp(2rem, 3vw, 2.55rem) !important;
  margin: 0 !important;
  letter-spacing: 1.2px !important;
  line-height: 1.08 !important;
}

body.page-template-page-about .page-header-subtitle,
body.page-template-page-products .page-header-subtitle,
body.page-template-page-news .page-header-subtitle,
body.page-template-page-contact .page-header-subtitle {
  max-width: 680px !important;
  margin: 0 !important;
  font-size: 0.96rem !important;
  line-height: 1.55 !important;
}

body.page-template-page-about .page-header-decoration,
body.page-template-page-products .page-header-decoration,
body.page-template-page-news .page-header-decoration,
body.page-template-page-contact .page-header-decoration {
  margin-top: 4px !important;
}

body.page-template-page-about .deco-line,
body.page-template-page-products .deco-line,
body.page-template-page-news .deco-line,
body.page-template-page-contact .deco-line {
  width: 44px !important;
}

@media (max-width: 768px) {
  body.page-template-page-about .page-header,
  body.page-template-page-products .page-header,
  body.page-template-page-news .page-header,
  body.page-template-page-contact .page-header {
    min-height: 176px !important;
    margin-top: 82px !important;
    padding: 28px 0 26px !important;
  }
}

@media (max-width: 1180px) {
  .business-hero-content {
    width: min(720px, 70vw);
  }

  .business-hero-content h1 {
    font-size: 3.35rem;
  }

  .hero-trust-panel {
    display: none;
  }

  .business-hero .slider-nav {
    right: 28px;
  }
}

@media (max-width: 768px) {
  .business-hero {
    height: 720px;
    min-height: 680px;
  }

  .business-hero-content {
    width: auto;
    padding: 130px 22px 130px;
  }

  .business-hero-content h1 {
    font-size: 2.45rem;
  }

  .business-hero-content p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .business-hero .btn {
    justify-content: center;
  }

  .hero-metric {
    margin-top: 28px;
  }

  .business-hero .slider-nav {
    left: 22px;
    right: auto;
    top: auto;
    bottom: 62px;
    transform: none;
    flex-direction: row;
  }

  .slider-controls {
    left: 22px;
    right: 22px;
    bottom: 26px;
    width: auto;
  }

  .business-hero .slider-arrow {
    display: none;
  }

  .business-hero .hero-metric {
    display: none;
  }
}
