/* ========================================
   OMNIA ADVISORY — Modern Redesign
   Color Palette:
     Navy:    #0B1D3A
     Dark:    #0F2847
     Accent:  #B8965A (warm gold)
     Light:   #F7F6F3
     White:   #FFFFFF
     Text:    #1A1A2E
     Muted:   #6B7280
   ======================================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0B1D3A;
  --navy-light: #0F2847;
  --gold: #B8965A;
  --gold-light: #D4B07A;
  --cream: #F7F6F3;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --text-light: #6B7280;
  --text-inverse: #E5E7EB;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(11, 29, 58, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.15);
}

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

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

.nav-logo-img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.nav.scrolled .nav-logo-img {
  height: 40px;
}

.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: var(--transition);
  border-radius: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  transition: var(--transition);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* ========================================
   HERO
   ======================================== */

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

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 29, 58, 0.88) 0%, rgba(15, 40, 71, 0.75) 40%, rgba(11, 29, 58, 0.85) 100%),
    linear-gradient(180deg, rgba(11, 29, 58, 0.3) 0%, rgba(11, 29, 58, 0.6) 60%, rgba(11, 29, 58, 1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 140px 24px 100px;
  width: 100%;
}

.hero-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-inverse);
  max-width: 620px;
  margin-bottom: 20px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-hook {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.85s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 1s;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 150, 90, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

/* ========================================
   STATS STRIP
   ======================================== */

.stats-strip {
  background: var(--navy);
  padding: 52px 0;
  border-top: 1px solid rgba(184, 150, 90, 0.15);
}

.stats-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.stat-number-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.stat-veteran {
  position: relative;
  padding: 20px 32px;
  border-radius: 10px;
  overflow: hidden;
  background: url('US_Flag.jpg') center / cover no-repeat;
}

.stat-flag-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 58, 0.72);
  border-radius: 10px;
}

.stat-veteran .stat-number,
.stat-veteran .stat-label {
  position: relative;
  z-index: 1;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(184, 150, 90, 0.2);
}

/* ========================================
   SECTION COMMON
   ======================================== */

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================
   SERVICES
   ======================================== */

.services {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.services::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
  z-index: 2;
}

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

.service-card {
  padding: 48px 40px;
  background: var(--cream);
  border-radius: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 14px;
  margin-bottom: 24px;
  color: var(--gold);
  border: 1px solid rgba(184, 150, 90, 0.15);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--navy);
}

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

.service-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 24px;
  opacity: 0.4;
  transition: var(--transition);
}

.service-card:hover .service-line {
  width: 60px;
  opacity: 1;
}

/* ========================================
   PROCESS TIMELINE
   ======================================== */

.process {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 20px;
}

.process-line {
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(184, 150, 90, 0.1), var(--gold), rgba(184, 150, 90, 0.1));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 auto 20px;
  border: 2px solid var(--gold);
  transition: var(--transition);
}

.process-step:hover .step-marker {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

.process-step h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* ========================================
   WHO WE SERVE
   ======================================== */

.serve {
  padding: 80px 0 100px;
  background: var(--cream);
  overflow: hidden;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.serve-card {
  padding: 32px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.serve-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.serve-icon {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 8px;
}

.serve-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
}

.serve-industries {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.serve-industries p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

.serve-industries strong {
  color: var(--text);
  font-weight: 600;
}

/* ========================================
   ABOUT
   ======================================== */

.about {
  padding: 120px 0;
  background: var(--white);
}

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

.about-image {
  position: relative;
}

.about-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: var(--navy);
}

.about-headshot {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.about-img-accent {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--gold);
  border-radius: 16px;
  opacity: 0.2;
  z-index: 1;
}

.about-photos-stack {
  position: relative;
  margin-top: 40px;
  height: 280px;
}

.stack-photo {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  border: 3px solid var(--white);
}

.stack-photo-back {
  width: 65%;
  height: 240px;
  left: 0;
  top: 0;
  transform: rotate(-2deg);
  z-index: 1;
}

.stack-photo-front {
  width: 55%;
  height: 210px;
  right: 0;
  bottom: 0;
  transform: rotate(1.5deg);
  z-index: 2;
}

.about-content {
  padding-top: 16px;
}

.about-content .section-tag {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 32px;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text strong {
  color: var(--text);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.highlight-marker {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  margin-top: 7px;
}

.highlight p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.about-quote {
  margin: 36px 0;
  padding: 28px 32px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
}

.about-quote p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
}

.about-personal {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-top: 24px;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.detail {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.detail strong {
  min-width: 110px;
  color: var(--navy);
  font-weight: 600;
}

.detail span {
  color: var(--text-light);
}

/* ========================================
   CONTACT
   ======================================== */

.contact {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--navy);
  clip-path: polygon(0 100%, 100% 0%, 100% 100%);
  z-index: 2;
}

.contact .section-tag {
  color: var(--gold);
}

.contact .section-title {
  color: var(--white);
}

.contact-centered {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-centered .section-tag {
  text-align: center;
}

.contact-centered .section-title {
  text-align: center;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--text-inverse);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}

.contact-centered .btn {
  margin-bottom: 16px;
}

.cta-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0;
}

.contact-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--gold);
}

.contact-link svg {
  flex-shrink: 0;
  color: var(--gold);
}

.contact-divider {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: #060E1A;
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo-img {
  height: 120px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  margin-top: 20px;
}

.footer-brand-location {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 0;
}

.footer-links {
  display: flex;
  gap: 80px;
  justify-content: flex-end;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
}

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

/* ========================================
   FLOATING CTA
   ======================================== */

.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 32px rgba(184, 150, 90, 0.35), 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(184, 150, 90, 0.45), 0 4px 12px rgba(0, 0, 0, 0.12);
}

.floating-cta svg {
  flex-shrink: 0;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.1); }
}

/* Scroll-triggered animations */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 300px 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-cta {
    text-align: center;
    width: 100%;
  }

  .hero-content {
    padding: 120px 24px 80px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-scroll {
    display: none;
  }

  .stats-items {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 1 1 40%;
  }

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

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .process-line {
    display: none;
  }

  .service-card {
    padding: 36px 28px;
  }

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

  .about-img-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }

  .about-img-accent {
    display: none;
  }

  .about-content .section-tag,
  .about-content .section-title {
    text-align: center;
  }

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

  .contact-alt {
    flex-direction: column;
    gap: 16px;
  }

  .contact-divider {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 48px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .floating-cta span {
    display: none;
  }

  .floating-cta {
    padding: 14px;
    border-radius: 50%;
    bottom: 24px;
    right: 24px;
  }

}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .platform-logos {
    gap: 12px;
  }

  .platform-logo {
    padding: 14px 20px;
  }

  .detail {
    flex-direction: column;
    gap: 4px;
  }

  .detail strong {
    min-width: auto;
  }
}

/* ========================================
   Service Pages — shared page chrome
   ======================================== */

body.interior-page .nav {
  background: rgba(11, 29, 58, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.15);
}

body.interior-page .nav-logo-img {
  height: 40px;
}

.breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid rgba(11, 29, 58, 0.08);
  padding: 18px 0;
  font-size: 14px;
  margin-top: 68px;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
}

.breadcrumb li + li::before {
  content: "›";
  color: var(--text-light);
  opacity: 0.5;
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition);
}

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

.breadcrumb [aria-current="page"] {
  color: var(--navy);
  font-weight: 500;
}

.hero-service {
  min-height: 60vh;
}

.section-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-body p {
  color: var(--text);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-body p:last-child {
  margin-bottom: 0;
}

.section-body strong {
  color: var(--navy);
  font-weight: 600;
}

.section-body em {
  font-style: italic;
  color: var(--text);
}

.section-body .eyebrow-quote {
  margin: 40px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--navy);
  border-radius: 0 8px 8px 0;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.scope-item {
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(11, 29, 58, 0.08);
  border-radius: 12px;
  transition: var(--transition);
}

.scope-item:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(11, 29, 58, 0.06);
}

.scope-item h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.scope-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.scope-item .scope-line {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-top: 18px;
  opacity: 0.5;
  transition: var(--transition);
}

.scope-item:hover .scope-line {
  width: 48px;
  opacity: 1;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-item {
  border-bottom: 1px solid rgba(11, 29, 58, 0.12);
  padding: 24px 0;
}

.faq-item:first-child {
  border-top: 1px solid rgba(11, 29, 58, 0.12);
}

.faq-item summary {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  margin-top: 14px;
}

.related-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.related-card {
  display: block;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(11, 29, 58, 0.1);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
}

.related-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(11, 29, 58, 0.08);
}

.related-card h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 8px;
}

.related-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

.related-card .arrow {
  color: var(--gold);
  font-weight: 500;
  font-size: 14px;
  margin-top: 14px;
  display: inline-block;
}
