/* ============================================================
   M A NXELE & ASSOCIATES ATTORNEYS — MAIN STYLESHEET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

:root {
  --navy: #0B1C2C;
  --navy-mid: #102236;
  --navy-light: #163047;
  --gold: #C9A24A;
  --gold-light: #DDB96A;
  --gold-pale: #e8d49a;
  --white: #FFFFFF;
  --off-white: #F4F1EA;
  --text-muted: #8a9ab0;
  --cream: #F0EAD9;
  --serif: 'Fira Sans Condensed', sans-serif;
  --display: 'Fira Sans Condensed', sans-serif;
  --sans: 'Fira Sans Condensed', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--navy); color: var(--white); overflow-x: hidden; padding-top: 100px; }

/* ── UTILITY ── */
.gold { color: var(--gold); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.divider { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 20px 0; }
.divider-center { width: 80px; height: 1px; background: var(--gold); margin: 20px auto; }

/* ── BUTTON ANIMATIONS ── */
@keyframes btnThrob {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,74,0.45); }
  50%       { box-shadow: 0 0 0 10px rgba(201,162,74,0); }
}
@keyframes btnThrobDark {
  0%, 100% { box-shadow: 0 0 0 0 rgba(11,28,44,0.35); }
  50%       { box-shadow: 0 0 0 10px rgba(11,28,44,0); }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; font-family: var(--sans); font-size: 15px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--navy); background: var(--gold);
  padding: 24px 64px; text-decoration: none; border: none; cursor: pointer;
  border-radius: 6px; transition: all 0.3s ease; position: relative; overflow: hidden;
  animation: btnThrob 2.4s ease-in-out infinite;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.4s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,162,74,0.5); animation: none;
}
.btn-outline {
  display: inline-block; font-family: var(--sans); font-size: 15px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold); border: 2px solid var(--gold);
  padding: 22px 64px; text-decoration: none; cursor: pointer; border-radius: 6px;
  transition: all 0.3s ease; background: transparent;
  animation: btnThrob 2.4s ease-in-out infinite;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); animation: none; }

/* ── NAVIGATION ── */
nav#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 60px; display: flex; align-items: center; justify-content: space-between;
  height: 100px; background: #FFFFFF;
  border-bottom: 2px solid rgba(201,162,74,0.35);
  box-shadow: 0 2px 16px rgba(11,28,44,0.06);
  transition: all 0.3s ease;
}
nav#site-nav.scrolled { height: 84px; border-bottom: 2px solid rgba(201,162,74,0.5); }
nav#site-nav.scrolled .nav-logo img { height: 68px; padding: 4px 0; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 90px; width: auto; display: block; padding: 4px 0; transition: height 0.3s ease; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--navy);
  text-decoration: none; transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.current-menu-item::after { width: 100%; }
.nav-links a.current-menu-item { color: var(--gold); }

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

/* ── HERO — CINEMATIC FULL-BLEED ── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -100px;   /* pull up behind nav */
  padding-top: 100px;   /* push content back down */
}
/* The photo — slow Ken Burns zoom */
.hero-img-bg {
  position: absolute;
  inset: -5%;
  /* background-image set via inline style in front-page.php */
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1.00); background-position: center 28%; }
  to   { transform: scale(1.08); background-position: center 38%; }
}
/* Deep cinematic overlay — navy-heavy left, lighter right */
.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(6, 12, 22, 0.92) 0%,
    rgba(11, 28, 44, 0.82) 50%,
    rgba(11, 28, 44, 0.50) 100%
  );
}
/* Atmospheric gold glow */
.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 88%, rgba(201,162,74,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 8%, rgba(201,162,74,0.06) 0%, transparent 45%);
}
.hero-scales-icon { display: none; }
.hero-content { position: relative; z-index: 2; max-width: 780px; padding: 80px 0; animation: heroFadeUp 1.2s ease forwards; }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 6px; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; display: flex; align-items: center; gap: 16px; }
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-headline { font-family: var(--serif); font-size: clamp(56px, 8vw, 100px); font-weight: 800; line-height: 1.0; color: var(--white); margin-bottom: 12px; letter-spacing: 0px; text-shadow: 0 4px 40px rgba(0,0,0,0.5); }
.hero-headline .gold-line { color: var(--gold); display: block; }
.hero-sub { font-family: var(--display); font-size: 22px; font-weight: 400; font-style: italic; color: rgba(255,255,255,0.70); margin-bottom: 56px; letter-spacing: 3px; }
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 60px; border-top: 1px solid rgba(201,162,74,0.25); padding-top: 48px; }
.stat-num { font-family: var(--serif); font-size: 40px; font-weight: 700; color: var(--gold); display: block; }
.stat-label { font-family: var(--sans); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.hero-line { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.5; }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.scroll-label { font-family: var(--sans); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(201,162,74,0.5); }

/* ── INTRO ── */
.intro-section { background: var(--off-white); padding: 100px 0; position: relative; overflow: hidden; }
.intro-section::before { content: 'LAW'; position: absolute; right: -20px; top: 50%; transform: translateY(-50%); font-family: var(--serif); font-size: 200px; font-weight: 900; color: rgba(11,28,44,0.04); letter-spacing: -10px; pointer-events: none; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-heading { font-family: var(--serif); font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 24px; }
.intro-body { font-family: var(--sans); font-size: 17px; font-weight: 400; line-height: 1.9; color: #3a4a5a; margin-bottom: 32px; }
.intro-right { position: relative; padding: 40px; background: var(--navy); clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%); }
.intro-quote { font-family: var(--display); font-size: 22px; font-style: italic; font-weight: 400; color: var(--white); line-height: 1.7; margin-bottom: 24px; position: relative; }
.intro-quote::before { content: '\201C'; font-size: 80px; color: var(--gold); opacity: 0.4; line-height: 0.5; display: block; margin-bottom: 16px; }
.intro-quote-attr { font-family: var(--sans); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.ornament { display: flex; align-items: center; gap: 16px; margin: 16px 0; }
.ornament::before, .ornament::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament-diamond { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* ── SERVICES GRID ── */
.services-section { background: var(--navy); padding: 100px 0; position: relative; }
.services-section::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.3; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-heading { font-family: var(--serif); font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--white); line-height: 1.2; }
.section-heading.dark { color: var(--navy); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,162,74,0.1); border: 1px solid rgba(201,162,74,0.1); }
.service-card { background: var(--navy-mid); padding: 40px 32px; transition: all 0.4s ease; cursor: pointer; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--gold); transition: height 0.4s ease; }
.service-card:hover::before { height: 100%; }
.service-card:hover { background: var(--navy-light); transform: translateY(-4px); }
.service-icon { font-size: 28px; margin-bottom: 20px; display: block; transition: transform 0.3s; }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-title { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--gold); margin-bottom: 12px; line-height: 1.3; }
.service-desc { font-family: var(--sans); font-size: 15px; font-weight: 400; line-height: 1.7; color: var(--text-muted); }

/* ── WHY CHOOSE US ── */
.why-section { background: var(--off-white); padding: 100px 0; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 60px; }
.why-card { text-align: center; padding: 40px 20px; border-top: 2px solid var(--navy); transition: border-color 0.3s; }
.why-card:hover { border-color: var(--gold); }
.why-num { font-family: var(--serif); font-size: 48px; font-weight: 900; color: rgba(11,28,44,0.08); display: block; line-height: 1; margin-bottom: 16px; }
.why-title { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.why-desc { font-family: var(--sans); font-size: 15px; font-weight: 400; line-height: 1.7; color: #5a6a7a; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--gold); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(11,28,44,0.03) 20px, rgba(11,28,44,0.03) 40px); }
.cta-heading { font-family: var(--serif); font-size: clamp(24px, 4vw, 40px); font-weight: 700; color: var(--navy); margin-bottom: 8px; position: relative; }
.cta-sub { font-family: var(--display); font-size: 18px; font-style: italic; color: rgba(11,28,44,0.6); margin-bottom: 40px; position: relative; }
.cta-banner .btn-primary { background: var(--navy); color: var(--gold); position: relative; }
.cta-banner .btn-primary:hover { background: #0d2035; }

/* ── FOOTER ── */
footer#site-footer { background: #060f18; padding: 60px 0 30px; border-top: 1px solid rgba(201,162,74,0.2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-tagline { font-family: var(--display); font-size: 15px; font-style: italic; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.footer-contact-item span:first-child { color: var(--gold); }
.footer-heading { font-family: var(--serif); font-size: 14px; font-weight: 600; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-family: var(--sans); font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-family: var(--sans); font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 1px; }
.footer-logo img { height: 48px; width: auto; }

/* ── PAGE HERO ── */
.page-hero { min-height: 45vh; background: var(--navy); display: flex; align-items: flex-end; padding: 40px 0 60px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.page-hero-label { font-family: var(--sans); font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.page-hero-label::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.page-hero-title { font-family: var(--serif); font-size: clamp(40px, 6vw, 72px); font-weight: 700; color: var(--white); line-height: 1.1; }
.page-hero-title .gold { color: var(--gold); }

/* ── ABOUT PAGE ── */
.about-content { background: var(--off-white); }
.about-block { padding: 80px 0; border-bottom: 1px solid rgba(11,28,44,0.08); }
.about-block:last-child { border-bottom: none; }
.about-block.dark { background: var(--navy); }
.about-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-heading { font-family: var(--serif); font-size: 34px; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 24px; }
.about-body { font-family: var(--sans); font-size: 16px; font-weight: 400; line-height: 1.9; color: #3a4a5a; margin-bottom: 20px; }
.mvv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mvv-card { padding: 32px; background: var(--navy); position: relative; }
.mvv-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); }
.mvv-title { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.mvv-body { font-family: var(--sans); font-size: 15px; font-weight: 400; line-height: 1.7; color: var(--text-muted); }
.values-list { list-style: none; }
.values-list li { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(201,162,74,0.15); font-family: var(--sans); font-size: 16px; color: #3a4a5a; }
.values-list li::before { content: '◆'; color: var(--gold); font-size: 8px; flex-shrink: 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(11,28,44,0.1); }
.team-card { background: var(--white); padding: 40px 30px; text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: var(--navy); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--gold); border: 3px solid var(--gold); }
.team-name { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.team-role { font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

/* ── SERVICES PAGE ── */
.services-page { background: var(--off-white); }
.service-detail { padding: 80px 0; border-bottom: 1px solid rgba(11,28,44,0.08); }
.service-detail:nth-child(even) { background: var(--white); }
.service-detail-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.service-detail-num { font-family: var(--serif); font-size: 80px; font-weight: 900; color: rgba(11,28,44,0.06); line-height: 1; }
.service-detail-title { font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--navy); margin-bottom: 4px; line-height: 1.2; }
.service-detail-tag { font-family: var(--sans); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: block; }
.service-detail-body { font-family: var(--sans); font-size: 16px; font-weight: 400; line-height: 1.9; color: #3a4a5a; margin-bottom: 20px; }
.service-benefits { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.benefit-tag { font-family: var(--sans); font-size: 11px; letter-spacing: 1px; color: var(--navy); background: rgba(201,162,74,0.15); border: 1px solid rgba(201,162,74,0.3); padding: 6px 14px; }

/* ── BLOG ── */
.blog-page { background: var(--off-white); padding: 60px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(11,28,44,0.1); }
.blog-card { background: var(--white); cursor: pointer; transition: all 0.3s; overflow: hidden; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(11,28,44,0.15); }
.blog-card:first-child { grid-column: span 2; }
.blog-card-top { height: 4px; background: var(--gold); }
.blog-card-body { padding: 36px 32px; }
.blog-card:first-child .blog-card-body { padding: 48px; }
.blog-cat { font-family: var(--sans); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.blog-title { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 16px; }
.blog-card:first-child .blog-title { font-size: 28px; }
.blog-excerpt { font-family: var(--sans); font-size: 15px; font-weight: 400; line-height: 1.7; color: #5a6a7a; margin-bottom: 24px; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid rgba(11,28,44,0.08); }
.blog-date { font-family: var(--sans); font-size: 11px; color: var(--text-muted); letter-spacing: 1px; }
.blog-read { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); text-decoration: none; transition: color 0.3s; }
.blog-read:hover { color: var(--gold); }

/* ── CONTACT ── */
.contact-page { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 600px; }
.contact-left { background: var(--navy); padding: 80px 60px; }
.contact-heading { font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.contact-sub { font-family: var(--display); font-size: 18px; font-style: italic; color: var(--text-muted); margin-bottom: 48px; line-height: 1.6; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
.contact-icon { width: 44px; height: 44px; border: 1px solid rgba(201,162,74,0.3); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-info-label { font-family: var(--sans); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-info-val { font-family: var(--sans); font-size: 16px; font-weight: 400; color: var(--white); }
.contact-right { background: var(--white); padding: 80px 60px; }
.form-group { margin-bottom: 24px; }
.form-label { font-family: var(--sans); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--navy); display: block; margin-bottom: 8px; font-weight: 600; }
.form-input { width: 100%; padding: 14px 16px; border: 1px solid rgba(11,28,44,0.15); background: transparent; font-family: var(--sans); font-size: 14px; color: var(--navy); outline: none; transition: border-color 0.3s; appearance: none; }
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: rgba(11,28,44,0.3); font-style: italic; }
textarea.form-input { resize: none; height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.map-placeholder { background: var(--navy); height: 300px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; }
.map-placeholder-icon { font-size: 40px; color: var(--gold); opacity: 0.5; }
.map-placeholder-text { font-family: var(--sans); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }

/* ── MOBILE ── */
@media (max-width: 992px) {
  nav#site-nav { padding: 0 24px; top: 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100px; left: 0; right: 0; background: var(--navy); padding: 30px; gap: 20px; border-bottom: 2px solid var(--gold); }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--white); font-size: 14px; }
  .nav-toggle { display: flex; }
  .container { padding: 0 24px; }
  .hero-headline { font-size: 42px; }
  .hero-visual { display: none; }
  .intro-grid, .about-two-col, .contact-grid, .services-grid, .why-grid, .mvv-grid, .footer-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:first-child { grid-column: span 1; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-left, .contact-right { padding: 60px 30px; }
}
@media (max-width: 576px) {
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── WORDPRESS SPECIFIC ── */
.wp-block img { max-width: 100%; height: auto; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }
.screen-reader-text { position: absolute; left: -9999px; }

/* Old SVG hero animations removed — replaced with photo hero */
