/*
Theme Name: Taylor Sanger 2026
Theme URI: https://www.taylorsanger.com
Description: Personal brand site for Taylor Sanger — VP of Operations at Ideal Talent Group
Author: Taylor Sanger
Version: 1.0
Text Domain: taylorsanger2026
*/

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

:root {
  --navy: #111111;
  --navy-light: #1a1a1a;
  --cyan: #d4a843;
  --cyan-dark: #b8922e;
  --white: #ffffff;
  --off-white: #fafaf8;
  --gray-100: #f0eeeb;
  --gray-200: #d9d5cf;
  --gray-400: #908a80;
  --gray-600: #6b6560;
  --gray-800: #2d2a27;
  --text: #1a1917;
  --text-light: #6b6560;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --section-padding: 120px;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

p { color: var(--text-light); font-size: 1.0625rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--cyan);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(212, 168, 67, 0.35);
}
.btn-primary:hover {
  background: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '\2192';
  transition: transform 0.3s ease;
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.site-nav.scrolled {
  background: rgba(15, 25, 35, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px !important;
  background: var(--cyan) !important;
  color: var(--white) !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--cyan-dark) !important;
  transform: translateY(-1px);
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #111111 0%, #0e0e0c 50%, #151412 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content { max-width: 560px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, #e8c96a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 40px;
}

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

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 420px;
  height: 500px;
}

.hero-image-frame {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--navy-light) 0%, rgba(212, 168, 67, 0.1) 100%);
  border: 1px solid rgba(212, 168, 67, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-frame .hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--white);
}

.hero-float-card.card-1 {
  bottom: -20px;
  left: -40px;
}

.hero-float-card.card-2 {
  top: 30px;
  right: -30px;
}

.float-card-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.float-card-value {
  font-size: 1.25rem;
  font-weight: 700;
}

.float-card-value .cyan { color: var(--cyan); }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 40px 0;
  position: relative;
  z-index: 3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.25rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.stat-item h3 .cyan { color: var(--cyan); }

.stat-item p {
  font-size: 0.875rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-main {
  border-radius: 16px;
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-main .about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border-radius: 16px;
  background: var(--cyan);
  opacity: 0.08;
  z-index: -1;
}

.about-content h2 { margin-bottom: 20px; color: var(--navy); }

.about-text {
  margin-bottom: 32px;
}

.about-text p {
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--gray-800);
  font-size: 0.9375rem;
}

.highlight-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.1);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.services-header h2 { color: var(--navy); margin-bottom: 16px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(212, 168, 67, 0.2);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(212, 168, 67, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  filter: none;
}

.service-icon.logo-white-bg {
  background: #fff;
  border: 1px solid var(--gray-100);
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ============================================
   IDEAL TALENT GROUP SECTION
   ============================================ */
.company {
  padding: var(--section-padding) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.company::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.company-content .section-label { color: var(--cyan); }
.company-content h2 { color: var(--white); margin-bottom: 20px; }
.company-content p { color: rgba(255,255,255,0.6); margin-bottom: 16px; }

.company-features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.company-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212, 168, 67, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
}

.feature-text h4 { color: var(--white); margin-bottom: 4px; }
.feature-text p { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin: 0; }

.company-visual {
  display: flex;
  justify-content: center;
}

.company-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 48px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.company-card-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.company-card-logo .cyan { color: var(--cyan); }

.company-card-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  margin-bottom: 32px;
}

.company-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.company-stat {
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}

.company-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 2px;
}

.company-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   VENTURES GRID
   ============================================ */
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.venture-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.venture-card:hover {
  border-color: rgba(212, 168, 67, 0.3);
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}

.venture-featured {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.08) 0%, rgba(212, 168, 67, 0.02) 100%);
  border-color: rgba(212, 168, 67, 0.2);
}

.venture-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(212, 168, 67, 0.12);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.venture-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.venture-type {
  font-size: 0.8125rem !important;
  color: var(--cyan) !important;
  font-weight: 500;
  margin-bottom: 12px !important;
}

.venture-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9375rem;
}

.venture-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}
.venture-link:hover { color: #e8c96a; }

@media (max-width: 968px) {
  .ventures-grid { grid-template-columns: 1fr 1fr; }
  .venture-featured { grid-column: 1 / -1; padding: 36px 28px; }
}

@media (max-width: 640px) {
  .ventures-grid { grid-template-columns: 1fr; }
}

/* ============================================
   INTERESTS / PASSIONS
   ============================================ */
.passions {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.passions-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.passions-header h2 { color: var(--navy); margin-bottom: 16px; }

.passions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.passion-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.passion-card:hover {
  border-color: rgba(212, 168, 67, 0.2);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.passion-emoji {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.passion-card h3 { margin-bottom: 10px; color: var(--navy); }
.passion-card p { font-size: 0.9375rem; }

/* ============================================
   CONTACT / CTA
   ============================================ */
.cta {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.cta-card {
  background: linear-gradient(135deg, #111111 0%, #0e0e0c 100%);
  border-radius: 24px;
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-card h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-card p {
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* CF7 Form Styling */
.contact-form-wrap {
  max-width: 480px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
  text-align: left;
}

.contact-form-wrap .wpcf7-form p {
  margin-bottom: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

.contact-form-wrap .wpcf7-form label {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  font-weight: 500;
}

.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  margin-top: 6px;
  transition: border-color 0.3s ease;
  outline: none;
}

.contact-form-wrap input[type="text"]:focus,
.contact-form-wrap input[type="email"]:focus,
.contact-form-wrap textarea:focus {
  border-color: var(--cyan);
}

.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.contact-form-wrap textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form-wrap input[type="submit"] {
  width: 100%;
  padding: 16px 32px;
  background: var(--cyan);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(212, 168, 67, 0.3);
}

.contact-form-wrap input[type="submit"]:hover {
  background: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.35);
}

.contact-form-wrap .wpcf7-response-output {
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 0.875rem;
  margin: 16px 0 0 !important;
}

.cta-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.375rem;
  margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--cyan); }
.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.9375rem;
  max-width: 320px;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.4);
  font-size: 0.9375rem;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8125rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--cyan);
  color: var(--white);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  :root { --section-padding: 80px; }

  .hero-grid,
  .about-grid,
  .company-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero { text-align: center; padding-top: 120px; }
  .hero-content { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-image-wrapper { width: 300px; height: 360px; margin: 0 auto; }

  .services-grid,
  .passions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .cta-card { padding: 48px 24px; }
}

@media (max-width: 640px) {
  .services-grid,
  .passions-grid {
    grid-template-columns: 1fr;
  }

  .about-highlights { grid-template-columns: 1fr; }
  .company-stats { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ============================================
   WP ADMIN BAR FIX
   ============================================ */
body.admin-bar .site-nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-nav { top: 46px; } }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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