/*
Theme Name: John Mattes - Investigative Journalist
Theme URI: https://johnmattes.com
Author: Viral Magik
Author URI: https://viralmagik.com
Description: Pixel-perfect Elementor WordPress theme for John Mattes, award-winning investigative journalist. Modeled after the Guardity security template design with Anton font, dark aesthetic, and blue accent. Fully responsive, mobile-first.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: john-mattes-theme
Tags: one-page, elementor, custom-colors, dark, professional
*/

/* ============================================================
   ROOT DESIGN TOKENS — Guardity-matched
   ============================================================ */
:root {
  --jm-bg:           #0a0a0a;
  --jm-bg-card:      #1f1f1f;
  --jm-blue:         #0d4ed1;
  --jm-blue-hover:   #0b3faa;
  --jm-blue-light:   rgba(13,78,209,0.15);
  --jm-white:        #ffffff;
  --jm-gray:         #aaaaaa;
  --jm-gray-light:   #d1d1d1;
  --jm-border:       rgba(255,255,255,0.08);
  --jm-font-head:    'Anton', sans-serif;
  --jm-font-body:    'Inter', 'Open Sans', Arial, sans-serif;
  --jm-radius:       10px;
  --jm-radius-lg:    20px;
  --jm-shadow:       0 8px 40px rgba(0,0,0,0.5);
  --jm-transition:   0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--jm-bg);
  color: var(--jm-gray-light);
  font-family: var(--jm-font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--jm-blue); text-decoration: none; transition: color var(--jm-transition); }
a:hover { color: #4d88ff; }
ul, ol { list-style: none; }

/* ============================================================
   SITE WRAPPER
   ============================================================ */
#page { overflow-x: hidden; }

/* ============================================================
   STICKY HEADER
   ============================================================ */
.jm-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--jm-bg);
  border-bottom: 1px solid var(--jm-border);
  transition: all var(--jm-transition);
}
.jm-header.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(13,78,209,0.3);
}
.jm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 75px;
  gap: 24px;
}
.jm-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.jm-logo img { height: 40px; width: auto; }
.jm-logo-text {
  font-family: var(--jm-font-head);
  font-size: 22px;
  color: var(--jm-white);
  letter-spacing: 1px;
  line-height: 1;
}
.jm-logo-text span {
  display: block;
  font-size: 10px;
  font-family: var(--jm-font-body);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--jm-blue);
  margin-top: 3px;
}
.jm-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.jm-nav a {
  font-family: var(--jm-font-head);
  font-size: 16px;
  color: var(--jm-gray-light);
  padding: 8px 16px;
  border-radius: 6px;
  transition: color var(--jm-transition);
  letter-spacing: 0.5px;
}
.jm-nav a:hover, .jm-nav a.active { color: var(--jm-blue); }
.jm-nav-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.jm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--jm-blue);
  color: var(--jm-white);
  font-family: var(--jm-font-head);
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: all var(--jm-transition);
  text-decoration: none;
  white-space: nowrap;
}
.jm-btn-primary:hover { background: var(--jm-blue-hover); color: var(--jm-white); transform: translateY(-1px); }
.jm-btn-primary .arrow { font-size: 18px; font-weight: 300; }
.jm-dots-btn {
  display: flex;
  flex-direction: column;
  gap: 3px;
  cursor: pointer;
  padding: 6px;
}
.jm-dots-btn span { display: flex; gap: 3px; }
.jm-dots-btn i { width: 5px; height: 5px; background: var(--jm-white); border-radius: 50%; display: block; }
.jm-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.jm-hamburger span { display: block; width: 24px; height: 2px; background: var(--jm-white); transition: all var(--jm-transition); border-radius: 2px; }

/* Mobile nav drawer */
.jm-mobile-nav {
  display: none;
  position: fixed;
  top: 75px; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  z-index: 9998;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.jm-mobile-nav.open { display: flex; }
.jm-mobile-nav a {
  font-family: var(--jm-font-head);
  font-size: 24px;
  color: var(--jm-white);
  padding: 14px 0;
  border-bottom: 1px solid var(--jm-border);
  display: block;
}
.jm-mobile-nav a:hover { color: var(--jm-blue); }
.jm-mobile-nav .jm-btn-primary { margin-top: 16px; justify-content: center; border-radius: 10px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.jm-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 75px;
  background-color: var(--jm-bg);
}
.jm-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.jm-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 30%, rgba(13,78,209,0.12) 100%);
}
.jm-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  min-height: calc(100vh - 75px);
}

/* Hero left column */
.jm-hero-left { display: flex; flex-direction: column; gap: 0; }
.jm-available-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 8px 18px;
  width: fit-content;
  margin-bottom: 28px;
}
.jm-available-dot {
  width: 10px; height: 10px;
  background: var(--jm-blue);
  border-radius: 50%;
  animation: blink 2s infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.jm-available-text {
  font-family: var(--jm-font-body);
  font-size: 14px;
  color: var(--jm-gray-light);
  letter-spacing: 0.5px;
}

.jm-hero-headline {
  font-family: var(--jm-font-head);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--jm-gray-light);
  margin-bottom: 28px;
}
.jm-hero-headline .blue { color: var(--jm-blue); }

/* Hero right stats */
.jm-hero-right { display: flex; flex-direction: column; gap: 0; align-items: flex-end; }
.jm-hero-stat { text-align: right; padding: 16px 0; }
.jm-hero-stat + .jm-hero-stat { border-top: 1px solid var(--jm-border); }
.jm-hero-stat-num {
  font-family: var(--jm-font-head);
  font-size: clamp(32px, 4vw, 54px);
  color: var(--jm-gray-light);
  line-height: 1;
  margin-bottom: 4px;
}
.jm-hero-stat-num .plus { color: var(--jm-blue); }
.jm-hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
}

/* Hero center image */
.jm-hero-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.jm-hero-img {
  width: clamp(260px, 28vw, 440px);
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.8));
}
.jm-hero-circle-badge {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 110px;
  height: 110px;
  z-index: 3;
}
.jm-circle-text {
  width: 110px; height: 110px;
  position: relative;
}
.jm-circle-text svg {
  width: 100%; height: 100%;
  animation: rotateSVG 12s linear infinite;
}
@keyframes rotateSVG { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.jm-circle-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 42px; height: 42px;
  background: var(--jm-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--jm-transition);
  text-decoration: none;
}
.jm-circle-play:hover { background: var(--jm-blue-hover); transform: translate(-50%,-50%) scale(1.1); }
.jm-circle-play svg { width: 14px; fill: white; margin-left: 2px; }

/* Hero large background text */
.jm-hero-bigtext {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  text-align: center;
  line-height: 0.85;
  pointer-events: none;
  padding: 0 20px;
}
.jm-hero-bigtext-line1 {
  font-family: var(--jm-font-head);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(170,170,170,0.25);
  text-stroke: 1px rgba(170,170,170,0.25);
  text-transform: uppercase;
  letter-spacing: -2px;
  display: block;
}
.jm-hero-bigtext-line2 {
  font-family: var(--jm-font-head);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 400;
  color: rgba(100,100,100,0.35);
  text-transform: uppercase;
  letter-spacing: -2px;
  display: block;
}

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.jm-marquee {
  background: var(--jm-bg);
  border-top: 1px solid var(--jm-border);
  border-bottom: 1px solid var(--jm-border);
  overflow: hidden;
  padding: 14px 0;
}
.jm-marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.jm-marquee-track:hover { animation-play-state: paused; }
.jm-marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  padding: 0 32px;
}
.jm-marquee-text {
  font-family: var(--jm-font-head);
  font-size: 15px;
  color: var(--jm-gray-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.jm-marquee-dot {
  width: 6px; height: 6px;
  background: var(--jm-blue);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT / ELITE SECTION
   ============================================================ */
.jm-about {
  background: var(--jm-bg);
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}
.jm-elite-strip {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  background: var(--jm-blue);
  padding: 28px 14px;
  border-radius: var(--jm-radius);
  font-family: var(--jm-font-head);
  font-size: 16px;
  color: var(--jm-white);
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.jm-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.jm-about-images { display: flex; flex-direction: column; gap: 16px; }
.jm-about-img-main {
  border-radius: var(--jm-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.jm-about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.jm-about-img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.jm-about-img-small { border-radius: var(--jm-radius); overflow: hidden; aspect-ratio: 1; }
.jm-about-img-small img { width: 100%; height: 100%; object-fit: cover; }
.jm-about-text { display: flex; flex-direction: column; gap: 24px; padding-top: 8px; }
.jm-about-learn {
  font-family: var(--jm-font-head);
  font-size: 18px;
  color: var(--jm-blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.jm-about-learn:hover { color: #4d88ff; }
.jm-about-learn .arrow { font-size: 20px; }
.jm-star-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--jm-blue);
  border-radius: var(--jm-radius);
  padding: 14px 20px;
  width: fit-content;
}
.jm-star-avatars { display: flex; gap: -4px; }
.jm-star-avatars img { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--jm-blue); margin-right: -6px; object-fit: cover; }
.jm-star-plus {
  width: 32px; height: 32px;
  background: var(--jm-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--jm-blue); font-weight: 700;
}
.jm-star-info { display: flex; flex-direction: column; }
.jm-star-score { font-family: var(--jm-font-head); font-size: 20px; color: var(--jm-white); line-height: 1; }
.jm-star-label { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 2px; }
.jm-about-para {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ============================================================
   STATS + BOOKING SECTION
   ============================================================ */
.jm-stats-booking {
  background: var(--jm-bg);
  padding: 0 40px 100px;
}
.jm-stats-booking-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1.6fr;
  gap: 20px;
  align-items: stretch;
}
.jm-stat-card {
  background: var(--jm-bg-card);
  border-radius: var(--jm-radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.jm-stat-card.blue { background: var(--jm-blue); }
.jm-stat-num {
  font-family: var(--jm-font-head);
  font-size: clamp(48px, 5vw, 72px);
  color: var(--jm-white);
  line-height: 1;
}
.jm-stat-num .blue-text { color: var(--jm-blue); }
.jm-stat-card.blue .jm-stat-num { color: var(--jm-white); }
.jm-stat-card-label {
  font-family: var(--jm-font-head);
  font-size: 20px;
  color: var(--jm-gray-light);
}
.jm-stat-card.blue .jm-stat-card-label { color: rgba(255,255,255,0.85); }
.jm-stat-card-desc { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.jm-stat-card.blue .jm-stat-card-desc { color: rgba(255,255,255,0.7); }
.jm-explore-text {
  font-family: var(--jm-font-head);
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--jm-white);
  line-height: 1.2;
  margin-top: auto;
}
.jm-explore-avatars {
  display: flex;
  align-items: center;
  gap: 8px;
}
.jm-explore-avatars img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--jm-bg-card); object-fit: cover; margin-right: -10px; }
.jm-explore-avatars .plus-circle {
  width: 36px; height: 36px;
  background: var(--jm-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--jm-white); font-weight: 700;
  margin-left: 10px;
}

.jm-booking-card {
  background: var(--jm-bg-card);
  border-radius: var(--jm-radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
}
.jm-booking-card-img {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  object-fit: cover;
  object-position: top;
}
.jm-booking-card-content {
  position: relative;
  z-index: 2;
  padding: 36px;
  background: linear-gradient(to right, var(--jm-bg-card) 50%, transparent 100%);
  max-width: 60%;
}
.jm-booking-title {
  font-family: var(--jm-font-head);
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--jm-white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.jm-booking-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  line-height: 1.6;
}
.jm-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--jm-blue);
  color: var(--jm-white);
  font-family: var(--jm-font-head);
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  transition: all var(--jm-transition);
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}
.jm-btn-outline:hover { background: var(--jm-blue-hover); color: var(--jm-white); }
.jm-btn-outline .arrow { font-size: 18px; }

/* ============================================================
   SERVICES / INVESTIGATIONS SECTION
   ============================================================ */
.jm-services {
  background: var(--jm-bg);
  padding: 100px 40px;
}
.jm-services-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.jm-services-left {}
.jm-section-eyebrow {
  font-family: var(--jm-font-head);
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.jm-section-title {
  font-family: var(--jm-font-head);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--jm-white);
  line-height: 1.1;
  margin-bottom: 12px;
  font-weight: 400;
}
.jm-section-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 40px;
}
.jm-service-list { display: flex; flex-direction: column; }
.jm-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--jm-border);
  cursor: pointer;
  transition: all var(--jm-transition);
  gap: 16px;
}
.jm-service-item:first-child { border-top: 1px solid var(--jm-border); }
.jm-service-item:hover .jm-service-name { color: var(--jm-blue); }
.jm-service-item:hover .jm-service-arrow { background: var(--jm-blue); }
.jm-service-name {
  font-family: var(--jm-font-head);
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--jm-white);
  transition: color var(--jm-transition);
  font-weight: 400;
}
.jm-service-arrow {
  width: 44px; height: 44px;
  background: var(--jm-bg-card);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--jm-transition);
  font-size: 18px;
  color: var(--jm-white);
  transform: rotate(-45deg);
}

.jm-services-right {}
.jm-services-media {
  position: relative;
  border-radius: var(--jm-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--jm-bg-card);
}
.jm-services-media img { width: 100%; height: 100%; object-fit: cover; }
.jm-services-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 50%, transparent 100%);
}
.jm-services-media-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  z-index: 2;
}
.jm-play-btn {
  width: 60px; height: 60px;
  background: var(--jm-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--jm-transition);
  border: none;
  margin-bottom: 24px;
}
.jm-play-btn svg { width: 20px; fill: white; margin-left: 3px; }
.jm-play-btn:hover { background: var(--jm-blue-hover); transform: scale(1.1); }

/* ============================================================
   PARTNERS STRIP
   ============================================================ */
.jm-partners {
  background: var(--jm-bg);
  padding: 60px 40px;
  border-top: 1px solid var(--jm-border);
  border-bottom: 1px solid var(--jm-border);
}
.jm-partners-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.jm-partners-headline {
  font-family: var(--jm-font-head);
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--jm-white);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
}
.jm-partners-headline .blue { color: var(--jm-blue); }
.jm-partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 60px;
}
.jm-partner-name {
  font-family: var(--jm-font-head);
  font-size: 22px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
  transition: color var(--jm-transition);
  cursor: default;
  text-transform: uppercase;
}
.jm-partner-name:hover { color: rgba(255,255,255,0.5); }

/* ============================================================
   TRUST SECTION — "WHY CLIENTS TRUST US"
   ============================================================ */
.jm-trust {
  background: var(--jm-bg);
  padding: 100px 40px;
}
.jm-trust-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.jm-trust-left {}
.jm-trust-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.jm-trust-img {
  border-radius: var(--jm-radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.jm-trust-img img { width: 100%; height: 100%; object-fit: cover; }
.jm-trust-img:first-child { aspect-ratio: 1; }
.jm-trust-stat-card {
  background: var(--jm-blue);
  border-radius: var(--jm-radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.jm-trust-stat-num { font-family: var(--jm-font-head); font-size: 36px; color: var(--jm-white); line-height: 1; }
.jm-trust-stat-label { font-size: 13px; color: rgba(255,255,255,0.8); }

.jm-trust-right {}
.jm-trust-big-title {
  font-family: var(--jm-font-head);
  font-size: clamp(32px, 4.5vw, 60px);
  color: var(--jm-white);
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 400;
}
.jm-trust-big-title .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.35);
  text-stroke: 1px rgba(255,255,255,0.35);
}
.jm-trust-desc { font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 32px; }
.jm-trust-list { display: flex; flex-direction: column; gap: 16px; }
.jm-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--jm-font-head);
  font-size: 18px;
  color: var(--jm-gray-light);
}
.jm-trust-check {
  width: 24px; height: 24px;
  background: var(--jm-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: var(--jm-white);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.jm-testimonials {
  background: var(--jm-bg);
  padding: 100px 40px;
}
.jm-testimonials-inner { max-width: 1400px; margin: 0 auto; }
.jm-section-header { margin-bottom: 60px; }
.jm-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.jm-testimonial-card {
  background: var(--jm-bg-card);
  border-radius: var(--jm-radius-lg);
  padding: 32px;
  position: relative;
  transition: transform var(--jm-transition);
}
.jm-testimonial-card:hover { transform: translateY(-4px); }
.jm-testimonial-quote-icon {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--jm-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--jm-white);
  font-family: Georgia, serif;
  line-height: 1;
  padding-bottom: 4px;
}
.jm-testimonial-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid var(--jm-bg);
}
.jm-testimonial-name {
  font-family: var(--jm-font-head);
  font-size: 20px;
  color: var(--jm-blue);
  margin-bottom: 2px;
}
.jm-testimonial-role {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.jm-stars { display: flex; gap: 3px; margin-bottom: 16px; color: #f5a623; font-size: 16px; }
.jm-testimonial-text { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; text-align: center; }

/* ============================================================
   TEAM SECTION — Mosaic Layout
   ============================================================ */
.jm-team {
  background: var(--jm-bg);
  padding: 100px 40px;
}
.jm-team-inner { max-width: 1400px; margin: 0 auto; }
.jm-team-row1, .jm-team-row2 {
  display: grid;
  gap: 16px;
}
.jm-team-row1 { grid-template-columns: 1fr auto 1fr; align-items: center; margin-bottom: 16px; }
.jm-team-row2 { grid-template-columns: 1fr 1fr 1fr 1fr; }

.jm-team-card {
  position: relative;
  border-radius: var(--jm-radius-lg);
  overflow: hidden;
  background: var(--jm-bg-card);
}
.jm-team-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.jm-team-card:hover img { transform: scale(1.05); }
.jm-team-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, transparent 60%);
  padding: 24px 20px 20px;
}
.jm-team-card-name {
  font-family: var(--jm-font-head);
  font-size: 18px;
  color: var(--jm-white);
  margin-bottom: 2px;
}
.jm-team-card-role {
  font-size: 12px;
  color: var(--jm-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Row 1 cards */
.jm-team-row1 .jm-team-card { aspect-ratio: 3/4; }
.jm-team-row1 .jm-team-card:first-child { aspect-ratio: 2/3; }
.jm-team-row1 .jm-team-card:last-child { aspect-ratio: 2/3; }

/* Meet Our Team center text */
.jm-team-center-text {
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.jm-meet-bigtext {
  font-family: var(--jm-font-head);
  font-size: clamp(36px, 5vw, 70px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.25);
  text-stroke: 1.5px rgba(255,255,255,0.25);
  text-transform: uppercase;
  line-height: 1;
  display: block;
}
.jm-meet-bigtext .solid { color: var(--jm-white); -webkit-text-stroke: 0; }
.jm-meet-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.jm-meet-avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--jm-bg);
  object-fit: cover;
  margin-right: -8px;
}
.jm-see-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--jm-blue);
  font-family: var(--jm-font-head);
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color var(--jm-transition);
  padding: 10px;
  border-radius: 10px;
  background: var(--jm-bg-card);
}
.jm-see-all-btn:hover { color: #4d88ff; }

/* Row 2 cards */
.jm-team-row2 .jm-team-card { aspect-ratio: 3/4; }

/* ============================================================
   BLOG SECTION
   ============================================================ */
.jm-blog {
  background: var(--jm-bg);
  padding: 100px 40px;
}
.jm-blog-inner { max-width: 1400px; margin: 0 auto; }
.jm-blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}
.jm-view-all {
  font-family: var(--jm-font-head);
  font-size: 16px;
  color: var(--jm-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.jm-view-all:hover { color: #4d88ff; }
.jm-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.jm-blog-card {
  background: var(--jm-bg-card);
  border-radius: var(--jm-radius-lg);
  overflow: hidden;
  transition: transform var(--jm-transition);
  cursor: pointer;
}
.jm-blog-card:hover { transform: translateY(-5px); }
.jm-blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.jm-blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.jm-blog-card:hover .jm-blog-card-img img { transform: scale(1.06); }
.jm-blog-card-content { padding: 28px; }
.jm-blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.jm-blog-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
  padding: 5px 10px;
  border-radius: 20px;
}
.jm-blog-date svg { width: 12px; opacity: 0.5; fill: currentColor; }
.jm-blog-cat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
  padding: 5px 10px;
  border-radius: 20px;
}
.jm-blog-title {
  font-family: var(--jm-font-head);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--jm-white);
  line-height: 1.25;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
  transition: color var(--jm-transition);
  font-weight: 400;
}
.jm-blog-title:hover { color: var(--jm-blue); }
.jm-blog-excerpt { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.6; }

/* ============================================================
   CTA SECTION — "LET'S WORK WITH JOHN MATTES"
   ============================================================ */
.jm-cta {
  background: var(--jm-bg);
  padding: 80px 40px;
  border-top: 1px solid var(--jm-border);
}
.jm-cta-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.jm-cta-text-wrap {}
.jm-cta-bigtext {
  font-family: var(--jm-font-head);
  font-size: clamp(40px, 7vw, 100px);
  line-height: 0.9;
  font-weight: 400;
  display: block;
}
.jm-cta-bigtext .line1 {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.2);
  text-stroke: 1.5px rgba(255,255,255,0.2);
  display: block;
}
.jm-cta-bigtext .line2 {
  color: rgba(100,100,100,0.5);
  display: block;
}
.jm-cta-bigtext .line2 .white { color: var(--jm-white); }
.jm-cta-arrow-btn {
  width: clamp(80px, 10vw, 140px);
  height: clamp(80px, 10vw, 140px);
  background: var(--jm-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: all var(--jm-transition);
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}
.jm-cta-arrow-btn:hover { background: var(--jm-blue-hover); transform: scale(1.05); }
.jm-cta-arrow-btn svg { width: 40%; fill: none; stroke: white; stroke-width: 2.5; }

/* ============================================================
   FOOTER
   ============================================================ */
.jm-footer {
  background: var(--jm-bg);
  border-top: 1px solid var(--jm-border);
  padding: 72px 40px 0;
}
.jm-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}
.jm-footer-brand {}
.jm-footer-logo { margin-bottom: 20px; display: block; }
.jm-footer-desc { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.8; margin-bottom: 24px; max-width: 280px; }
.jm-footer-social { display: flex; gap: 10px; }
.jm-footer-social-btn {
  width: 38px; height: 38px;
  background: var(--jm-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--jm-white);
  font-size: 15px;
  text-decoration: none;
  transition: all var(--jm-transition);
}
.jm-footer-social-btn:hover { background: var(--jm-blue-hover); color: var(--jm-white); transform: translateY(-2px); }
.jm-footer-col-title {
  font-family: var(--jm-font-head);
  font-size: 13px;
  color: var(--jm-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.jm-footer-links { display: flex; flex-direction: column; gap: 12px; }
.jm-footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--jm-transition);
}
.jm-footer-links a:hover { color: var(--jm-white); }
.jm-footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.jm-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.jm-footer-contact-icon {
  width: 20px; height: 20px;
  background: var(--jm-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  color: white;
  flex-shrink: 0;
  margin-top: 1px;
}
.jm-footer-bottom {
  border-top: 1px solid var(--jm-border);
  background: var(--jm-blue);
  margin: 0 -40px;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.jm-footer-bottom-text { font-size: 13px; color: rgba(255,255,255,0.85); }
.jm-footer-bottom-credit { font-size: 13px; color: rgba(255,255,255,0.85); }
.jm-footer-bottom-credit a { color: white; text-decoration: underline; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.jm-scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--jm-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 18px;
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--jm-transition);
  z-index: 9000;
  text-decoration: none;
}
.jm-scroll-top.show { opacity: 1; transform: translateY(0); }
.jm-scroll-top:hover { background: var(--jm-blue-hover); color: white; }

/* ============================================================
   ELEMENTOR INTEGRATION OVERRIDES
   ============================================================ */
.elementor-page { background: var(--jm-bg) !important; }
.elementor-widget-heading .elementor-heading-title { font-family: var(--jm-font-head) !important; }

/* ============================================================
   RESPONSIVE — TABLET ≤1024px
   ============================================================ */
@media (max-width: 1024px) {
  .jm-header-inner { padding: 0 24px; }
  .jm-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; padding: 40px 24px; }
  .jm-hero-left { align-items: center; }
  .jm-hero-right { align-items: center; }
  .jm-hero-stat { text-align: center; }
  .jm-hero-center { order: -1; }
  .jm-hero-circle-badge { right: 0; top: 0; transform: none; }
  .jm-about { grid-template-columns: 1fr; padding: 60px 24px; }
  .jm-elite-strip { writing-mode: horizontal-tb; transform: none; min-height: auto; padding: 14px 28px; }
  .jm-about-content { grid-template-columns: 1fr; }
  .jm-stats-booking { padding: 0 24px 60px; }
  .jm-stats-booking-inner { grid-template-columns: 1fr 1fr; }
  .jm-booking-card { grid-column: 1 / -1; }
  .jm-services { padding: 60px 24px; }
  .jm-services-inner { grid-template-columns: 1fr; gap: 48px; }
  .jm-trust { padding: 60px 24px; }
  .jm-trust-inner { grid-template-columns: 1fr; gap: 48px; }
  .jm-testimonials { padding: 60px 24px; }
  .jm-testimonials-grid { grid-template-columns: 1fr 1fr; }
  .jm-team { padding: 60px 24px; }
  .jm-team-row1 { grid-template-columns: 1fr 1fr; }
  .jm-team-row1 .jm-team-card:nth-child(2) { display: none; }
  .jm-team-row2 { grid-template-columns: repeat(2, 1fr); }
  .jm-blog { padding: 60px 24px; }
  .jm-blog-grid { grid-template-columns: 1fr 1fr; }
  .jm-cta { padding: 60px 24px; }
  .jm-cta-inner { flex-direction: column; align-items: flex-start; }
  .jm-footer { padding: 60px 24px 0; }
  .jm-footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .jm-footer-bottom { margin: 0 -24px; padding: 16px 24px; }
}

/* ============================================================
   RESPONSIVE — MOBILE ≤767px
   ============================================================ */
@media (max-width: 767px) {
  .jm-nav { display: none; }
  .jm-dots-btn { display: none; }
  .jm-hamburger { display: flex; }
  .jm-nav-actions .jm-btn-primary { display: none; }
  .jm-hero-img { width: clamp(200px, 70vw, 320px); }
  .jm-hero-bigtext-line1, .jm-hero-bigtext-line2 { font-size: clamp(40px, 10vw, 80px); }
  .jm-stats-booking-inner { grid-template-columns: 1fr; }
  .jm-testimonials-grid { grid-template-columns: 1fr; }
  .jm-team-row1 { grid-template-columns: 1fr; }
  .jm-team-row1 .jm-team-card:nth-child(3) { display: none; }
  .jm-team-row2 { grid-template-columns: 1fr 1fr; }
  .jm-blog-grid { grid-template-columns: 1fr; }
  .jm-footer-inner { grid-template-columns: 1fr; }
  .jm-cta-bigtext { font-size: clamp(32px, 10vw, 64px); }
  .jm-partners { padding: 40px 24px; }
  .jm-partners-logos { gap: 24px 32px; }
  .jm-partner-name { font-size: 18px; }
  .jm-blog-header { flex-direction: column; align-items: flex-start; }
  .jm-trust-images { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE ≤480px
   ============================================================ */
@media (max-width: 480px) {
  .jm-hero-inner { padding: 32px 16px; }
  .jm-available-badge { flex-wrap: wrap; }
  .jm-team-row2 { grid-template-columns: 1fr; }
  .jm-services { padding: 48px 16px; }
  .jm-testimonials { padding: 48px 16px; }
  .jm-blog { padding: 48px 16px; }
  .jm-cta { padding: 48px 16px; }
  .jm-footer { padding: 48px 16px 0; }
  .jm-footer-bottom { margin: 0 -16px; padding: 16px; }
  .jm-cta-inner { gap: 24px; }
}
