/* ================================================
   RED DIAMOND STRATEGIC - Global Stylesheet v3
   Deep Crimson #8B0000 | Navy #003366
   © 2026 Red Diamond Strategic, LLC
   ================================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Brand Colors */
  --crimson:        #8B0000;
  --crimson-light:  #A52020;
  --crimson-dark:   #6B0000;
  --navy:           #003366;
  --navy-light:     #004080;
  --navy-dark:      #002244;
  --charcoal:       #2C2C2C;
  --charcoal-mid:   #3E3E3E;
  --charcoal-light: #5A5A5A;
  --gold:           #C5A258;
  --gold-light:     #D4B870;
  --white:          #FFFFFF;
  --off-white:      #F8F7F5;
  --light-gray:     #EEECEC;
  --mid-gray:       #B0AEAE;
  --dark-text:      #1A1A1A;
  --body-text:      #3D3D3D;

  /* Fonts — Cormorant Garamond headings, Inter body */
  --font-primary:   'Cormorant Garamond', 'Georgia', serif;
  --font-body:      'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-display:   'Cormorant Garamond', 'Georgia', serif;

  --max-w:          1200px;
  --transition:     all 0.35s ease;
  --shadow-sm:      0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:      0 6px 30px rgba(0,0,0,0.14);
  --shadow-lg:      0 15px 50px rgba(0,0,0,0.18);
  --radius:         4px;
  --radius-lg:      10px;
}

/* ---------- 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);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection {
  background: var(--crimson);
  color: var(--white);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-primary);
  color: var(--charcoal);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; }

p { max-width: 68ch; }

.lead {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--charcoal-light);
  line-height: 1.8;
  max-width: 70ch;
  font-family: var(--font-body);
  font-weight: 400;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section--dark {
  background: var(--navy);
  color: var(--off-white);
}
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}
.section--dark p,
.section--dark .lead {
  color: rgba(255,255,255,0.7);
}

.section--charcoal {
  background: var(--charcoal);
  color: var(--off-white);
}

.section--crimson {
  background: var(--crimson);
  color: var(--white);
}
.section--crimson h2,
.section--crimson h3 {
  color: var(--white);
}
.section--crimson p {
  color: rgba(255,255,255,0.85);
}

.section--off-white {
  background: var(--off-white);
}

.section-header {
  margin-bottom: 3.5rem;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered p {
  margin: 0 auto;
}

.text-center  { text-align: center; }
.text-gold    { color: var(--gold); }
.text-crimson { color: var(--crimson); }
.text-navy    { color: var(--navy); }

/* ---------- Diamond Motif ---------- */
.diamond-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--gold);
  transform: rotate(45deg);
  margin-right: 8px;
  flex-shrink: 0;
}
.diamond-icon--sm     { width: 8px;  height: 8px; }
.diamond-icon--lg     { width: 22px; height: 22px; }
.diamond-icon--crimson{ background: var(--crimson); }
.diamond-icon--navy   { background: var(--navy); }
.diamond-icon--white  { background: var(--white); }

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1.2rem 0 1.5rem;
}
.divider__line {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.15;
}
.divider--centered {
  justify-content: center;
}
.divider--centered .divider__line {
  max-width: 80px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--crimson);
  color: var(--white);
  border-color: var(--crimson);
}
.btn--primary:hover {
  background: var(--crimson-dark);
  border-color: var(--crimson-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139,0,0,0.35);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,51,102,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197,162,88,0.35);
}

.btn--outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.85rem 0;
  transition: box-shadow 0.4s ease, padding 0.4s ease;
  background: var(--navy);
}

.navbar.scrolled {
  background: var(--navy);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  padding: 0.55rem 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo — image-based */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__logo-img {
  height: 52px;
  width: auto;
  display: block;
  /* remove white background via multiply blending */
  mix-blend-mode: screen;
  filter: brightness(1.05);
  transition: opacity 0.25s ease;
}
.navbar__logo:hover .navbar__logo-img {
  opacity: 0.85;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text__primary {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.logo-text__sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar__link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 4px;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--crimson);
  transition: width 0.3s ease;
}
.navbar__link:hover,
.navbar__link.active {
  color: var(--white);
}
.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__cta {
  margin-left: 1rem;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 25, 51, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
}
.mobile-menu .navbar__link {
  font-size: 1.6rem;
  font-family: var(--font-primary);
  letter-spacing: 0.04em;
  color: var(--white);
}
.mobile-menu .navbar__link::after { display: none; }
.mobile-menu .navbar__link:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 1rem; }

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

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(185,28,28,0.18) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(45deg, var(--white) 0, var(--white) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
  z-index: 0;
}

.hero__large-diamond {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 520px;
  height: 520px;
  border: 1.5px solid rgba(197,162,88,0.10);
  z-index: 0;
}
.hero__large-diamond::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(197,162,88,0.06);
}

.hero__tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.hero__tagline-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-family: var(--font-primary);
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 620px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-primary);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%        { opacity: 1;   transform: scaleY(1.1); }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--crimson);
  padding: 2rem 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat__number {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat__number sup {
  font-size: 50%;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}
.stat__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--crimson);
  transition: height 0.35s ease;
  border-radius: 0 0 4px 0;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before {
  height: 100%;
}

.service-card--dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  color: var(--off-white);
}
.service-card--dark h3,
.service-card--dark h4 {
  color: var(--white);
}
.service-card--dark p {
  color: rgba(255,255,255,0.62);
}
.service-card--dark::before {
  background: var(--gold);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  position: relative;
}

.icon-diamond {
  width: 42px;
  height: 42px;
  background: rgba(139,0,0,0.08);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
.icon-diamond svg {
  transform: rotate(-45deg);
  width: 20px;
  height: 20px;
  color: var(--crimson);
}
.service-card--dark .icon-diamond {
  background: rgba(197,162,88,0.12);
}
.service-card--dark .icon-diamond svg {
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--charcoal-light);
  margin-bottom: 1.25rem;
}
.service-card .arrow-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--crimson);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease;
}
.service-card--dark .arrow-link { color: var(--gold); }
.service-card .arrow-link:hover { gap: 10px; }

/* ---------- Why Section ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(139,0,0,0.07);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--crimson);
}
.why-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
  font-family: var(--font-primary);
}
.why-item p {
  font-size: 0.87rem;
  color: var(--charcoal-light);
  line-height: 1.65;
  max-width: none;
}

.why-visual__card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-visual__card::before {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 180px; height: 180px;
  border: 1px solid rgba(197,162,88,0.15);
  transform: rotate(45deg);
}
.why-visual__card::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  border: 1px solid rgba(197,162,88,0.1);
  transform: rotate(45deg);
}
.why-visual__quote {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.why-visual__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-visual__badge {
  background: var(--crimson);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  border-radius: 4px;
  flex-shrink: 0;
}
.why-visual__badge-inner {
  transform: rotate(-45deg);
  font-size: 1rem;
  color: var(--white);
}
.why-visual__name {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.why-visual__title {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* ---------- Industries ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.industry-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  text-align: center;
}
.industry-card:hover {
  background: rgba(139,0,0,0.15);
  border-color: rgba(197,162,88,0.3);
  transform: translateY(-4px);
}
.industry-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197,162,88,0.1);
  border-radius: 50%;
}
.industry-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}
.industry-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.industry-card p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  max-width: none;
}

/* ---------- Testimonials ---------- */
.testimonials-area {
  text-align: center;
}
.testimonials-placeholder {
  border: 2px dashed rgba(0,51,102,0.2);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  color: rgba(0,0,0,0.25);
  margin-top: 2.5rem;
}
.testimonials-placeholder p {
  font-style: italic;
  font-size: 0.9rem;
  max-width: none;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
}
.cta-section__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, var(--white) 0, var(--white) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.cta-section__diamond-1,
.cta-section__diamond-2 {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.07);
  transform: rotate(45deg);
}
.cta-section__diamond-1 {
  width: 300px; height: 300px;
  top: -100px; left: -80px;
}
.cta-section__diamond-2 {
  width: 200px; height: 200px;
  bottom: -70px; right: -50px;
}
.cta-section__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255,255,255,0.75);
  margin: 0 auto 2rem;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--navy);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(45deg, var(--white) 0, var(--white) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.page-hero__diamond {
  position: absolute;
  right: 5%; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 280px; height: 280px;
  border: 1px solid rgba(197,162,88,0.08);
}
.page-hero__content {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero .lead {
  color: rgba(255,255,255,0.62);
}

/* ---------- Services Page ---------- */
.services-page-grid {
  display: grid;
  gap: 2.5rem;
}

.service-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  align-items: start;
}
.service-block:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}
.service-block:hover .service-block__num {
  color: var(--crimson);
}
.service-block__num {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 700;
  color: var(--light-gray);
  line-height: 1;
  transition: color 0.3s ease;
}
.service-block__body h3 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.service-block__body p {
  font-size: 0.91rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.service-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  background: var(--off-white);
  color: var(--charcoal-light);
  border: 1px solid var(--light-gray);
}
.tag--crimson {
  background: rgba(139,0,0,0.08);
  color: var(--crimson);
  border-color: rgba(139,0,0,0.15);
}
.tag--navy {
  background: rgba(0,51,102,0.08);
  color: var(--navy);
  border-color: rgba(0,51,102,0.15);
}

/* ---------- About Page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-photo-area {
  position: relative;
}
.about-photo-placeholder {
  aspect-ratio: 4/5;
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.about-photo-placeholder::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border: 1px solid rgba(197,162,88,0.1);
  transform: rotate(45deg);
}
.photo-placeholder-diamond {
  width: 70px; height: 70px;
  border: 2px dashed rgba(197,162,88,0.3);
  transform: rotate(45deg);
}
.about-photo-placeholder p {
  font-size: 0.8rem;
  text-align: center;
  max-width: none;
}
.about-photo__badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--crimson);
  border: 4px solid var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.about-photo__badge-num {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.about-photo__badge-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}
.about-content .lead {
  color: var(--charcoal-light);
}
.about-content p {
  font-size: 0.94rem;
  line-height: 1.85;
  color: var(--body-text);
  margin-bottom: 1.25rem;
}
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.5rem;
  background: #0A66C2;
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  margin-top: 0.5rem;
}
.linkedin-btn:hover {
  background: #004182;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10,102,194,0.3);
}
.linkedin-btn svg {
  width: 18px; height: 18px;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.value-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--crimson);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.value-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}
.value-card:hover::after {
  transform: scaleX(1);
}
.value-card__icon {
  width: 52px; height: 52px;
  background: rgba(139,0,0,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.value-card__icon svg {
  width: 22px; height: 22px;
  color: var(--crimson);
}
.value-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.84rem;
  color: var(--charcoal-light);
  max-width: none;
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.contact-info .lead {
  font-size: 0.93rem;
}
.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail__icon {
  width: 44px; height: 44px;
  background: rgba(139,0,0,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail__icon svg {
  width: 20px; height: 20px;
  color: var(--crimson);
}
.contact-detail__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.contact-detail__value {
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: 500;
}
.contact-detail__value a {
  color: var(--crimson);
  transition: color 0.2s;
}
.contact-detail__value a:hover { color: var(--crimson-dark); }

/* Form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.form-group label span {
  color: var(--crimson);
}
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark-text);
  background: var(--off-white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,51,102,0.08);
  background: var(--white);
}
textarea.form-control {
  resize: vertical;
  min-height: 140px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-note {
  font-size: 0.76rem;
  color: var(--mid-gray);
  margin-top: 1rem;
  text-align: center;
}

/* Form states */
.form-success {
  display: none;
  background: #f0faf0;
  border: 1px solid #68c968;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: #2a6a2a;
  margin-top: 1rem;
}
.form-success.visible { display: block; }
.form-error-msg {
  color: var(--crimson);
  font-size: 0.76rem;
  margin-top: 4px;
  display: none;
}
.form-control.has-error { border-color: var(--crimson); }
.form-control.has-error + .form-error-msg { display: block; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-dark);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.5);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer__brand h3 {
  font-family: var(--font-primary);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.footer__brand p {
  font-size: 0.86rem;
  line-height: 1.75;
  max-width: 320px;
  color: rgba(255,255,255,0.42);
}
.footer__brand-tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.42);
  transition: color 0.25s ease;
}
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.28);
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover {
  background: var(--crimson);
  transform: translateY(-2px);
}
.back-to-top {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
  cursor: pointer;
  background: none;
  border: none;
}
.back-to-top:hover { color: var(--gold); }
.back-to-top svg { width: 14px; height: 14px; }

/* ---------- Hero Two-Column Layout ---------- */
.hero__two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__image-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-frame {
  position: relative;
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.hero__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  /* Slightly darken to blend with navy hero bg */
  filter: brightness(0.88) contrast(1.05);
  border: 2px solid rgba(197,162,88,0.2);
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(0,51,102,0.25) 0%,
    transparent 60%,
    rgba(139,0,0,0.15) 100%
  );
  pointer-events: none;
}

/* Floating credential badge on image */
.hero__badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--navy-dark);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.hero__badge-diamond {
  width: 20px;
  height: 20px;
  background: var(--crimson);
  transform: rotate(45deg);
  flex-shrink: 0;
  border-radius: 2px;
}

.hero__badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hero__badge-num {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero__badge-num sup {
  font-size: 55%;
  vertical-align: super;
  color: var(--gold);
}

.hero__badge-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
  line-height: 1.3;
}

/* Responsive: stack on tablet/mobile */
@media (max-width: 900px) {
  .hero__two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero__image-col {
    display: none;
  }
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .why-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .why-visual     { max-width: 480px; }
  .about-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-area { max-width: 400px; }
  .contact-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
  .footer__brand  { grid-column: 1 / -1; }
  .stats-bar__grid{ grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .navbar__nav   { display: none; }
  .hamburger     { display: flex; }

  .hero { min-height: 100svh; }
  .hero__large-diamond { display: none; }

  .service-block {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-block__num { font-size: 2rem; }
  .service-block:hover { transform: none; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 2rem 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 8rem 0 4rem; }
  .navbar__logo-img { height: 42px; }
}
