/* ============================================================
   EMMANUEL GROUPE — Corporate Website Stylesheet
   Brand palette extracted directly from the logo:
   - Navy Blue  : #06234B
   - Champagne  : #BD9A56
   ============================================================ */

:root {
  /* Brand colors — change these to re-theme the entire site */
  --color-primary:        #06234B;
  --color-secondary:      #BD9A56;
  --color-primary-dark:   #041938;
  --color-secondary-light:#D4B97A;

  /* Neutrals */
  --color-dark:   #0E1116;
  --color-light:  #F7F8FA;
  --color-white:  #FFFFFF;
  --color-text:   #1F2937;
  --color-muted:  #6B7280;
  --color-border: #E5E7EB;

  /* Typography */
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-max:   1280px;
  --section-padding: 6rem 0;
  --transition:      all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  --shadow-sm: 0 2px 8px  rgba(6, 35, 75, 0.06);
  --shadow-md: 0 8px 24px rgba(6, 35, 75, 0.10);
  --shadow-lg: 0 20px 60px rgba(6, 35, 75, 0.18);
}

/* ============= Skip link (accessibility) ============= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* ============= Reset ============= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============= Buttons ============= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
}
.btn-primary:hover {
  background: transparent;
  color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}
.btn-dark:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-primary);
}

/* ============= Navbar ============= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  background: transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--color-primary);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.nav-logo-text span { color: var(--color-secondary); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-menu a {
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.5rem 0;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--color-secondary);
  transition: width 0.3s ease;
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a:hover { color: var(--color-secondary); }

.nav-cta {
  padding: 0.65rem 1.5rem;
  background: var(--color-secondary);
  color: var(--color-primary) !important;
  border-radius: 2px;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--color-white); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}
.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ============= Hero ============= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-white);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 35, 75, 0.85) 0%, rgba(6, 35, 75, 0.65) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 950px;
  padding: 0 1.5rem;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
}
.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}
.hero h1 .accent { color: var(--color-secondary); font-style: italic; }
.hero p.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--color-white);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.8;
  animation: bounce 2s infinite;
}
.scroll-indicator .line {
  width: 1px;
  height: 40px;
  background: var(--color-white);
  margin: 0.5rem auto 0;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -10px); }
}

/* ============= Sections ============= */
section { padding: var(--section-padding); }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}
.section-header .eyebrow::before,
.section-header .eyebrow::after {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--color-secondary);
  vertical-align: middle;
  margin: 0 0.8rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--color-muted); font-size: 1.1rem; }

/* ============= Intro (about + text-image rows) ============= */
.intro-section { background: var(--color-light); position: relative; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-text .eyebrow {
  color: var(--color-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.intro-text h2 { margin-bottom: 1.5rem; }
.intro-text p {
  color: var(--color-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.intro-image {
  position: relative;
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.intro-image:hover img { transform: scale(1.04); }
.intro-image .placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 2rem;
}
.intro-image::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 100px; height: 100px;
  border: 3px solid var(--color-secondary);
  z-index: 2;
}

/* ============= Services ============= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--color-secondary);
  transition: width 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { width: 100%; }
.service-icon {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(189, 154, 86, 0.12);
  color: var(--color-secondary);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 28px; height: 28px; }
.service-number {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(6, 35, 75, 0.06);
}
.service-card h3 { font-size: 1.35rem; margin-bottom: 1rem; }
.service-card p { color: var(--color-muted); font-size: 0.95rem; }

/* ============= Sectors ============= */
.sectors-section {
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.sectors-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(189, 154, 86, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.sectors-section .section-header h2 { color: var(--color-white); }
.sectors-section .section-header p { color: rgba(255, 255, 255, 0.7); }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.sector-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(189, 154, 86, 0.2);
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
}
.sector-card:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
  transform: translateY(-5px);
}
.sector-card svg {
  width: 44px; height: 44px;
  margin: 0 auto 1rem;
  color: var(--color-secondary);
  transition: var(--transition);
}
.sector-card:hover svg { color: var(--color-primary); }
.sector-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: inherit;
}

/* ============= Stats ============= */
.stats-section {
  background: var(--color-light);
  padding: 5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item { padding: 2rem 1rem; position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 25%;
  width: 1px; height: 50%;
  background: var(--color-border);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-number .plus { color: var(--color-secondary); }
.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 500;
}

/* ============= Approach ============= */
.approach-section { background: var(--color-white); }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.approach-step {
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
}
.approach-step .step-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--color-secondary);
  margin-bottom: 1rem;
  display: block;
}
.approach-step h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.approach-step p { color: var(--color-muted); font-size: 0.95rem; }
.approach-step::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--color-secondary);
  margin: 0 auto 1.5rem;
}

/* ============= CTA strip ============= */
.cta-strip {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-strip h2 { color: var(--color-white); margin-bottom: 1rem; position: relative; }
.cta-strip p {
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  position: relative;
}

/* ============= Footer ============= */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 60px; margin-bottom: 1rem; }
.footer-brand .brand-name {
  font-family: var(--font-display);
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-brand .brand-name span { color: var(--color-secondary); }
.footer-brand p { font-size: 0.95rem; max-width: 320px; }
.footer h5 {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--color-secondary);
}
.footer ul li { margin-bottom: 0.65rem; font-size: 0.95rem; }
.footer ul li a:hover { color: var(--color-secondary); }
.footer-contact a:hover { color: var(--color-secondary); }
.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-contact svg {
  width: 16px; height: 16px;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 4px;
}
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}
.footer-bottom .social {
  display: flex;
  gap: 1rem;
}
.footer-bottom .social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.footer-bottom .social a:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-primary);
}
.footer-bottom .social svg { width: 16px; height: 16px; }

/* ============= Page hero (inner pages) ============= */
.page-hero {
  height: 50vh;
  min-height: 380px;
  background: linear-gradient(135deg, rgba(6, 35, 75, 0.92), rgba(6, 35, 75, 0.85)),
              linear-gradient(135deg, #06234B, #041938);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
}
.page-hero h1 { color: var(--color-white); margin-bottom: 0.75rem; }
.page-hero .breadcrumb {
  color: var(--color-secondary);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: var(--color-secondary); }

/* ============= Contact ============= */
.contact-section { background: var(--color-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1.5rem; color: var(--color-primary); }
.contact-info .info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-info .icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  background: var(--color-primary);
  color: var(--color-secondary);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.contact-info .icon svg { width: 20px; height: 20px; }
.contact-info h5 {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.contact-info p { color: var(--color-muted); margin: 0; }
.contact-info a:hover { color: var(--color-secondary); }

.contact-form {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--color-light);
  color: var(--color-text);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(189, 154, 86, 0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-success {
  display: none;
  padding: 1rem;
  background: rgba(189, 154, 86, 0.12);
  color: var(--color-primary);
  border-left: 4px solid var(--color-secondary);
  margin-bottom: 1rem;
}
.form-success.show { display: block; }

.map-wrap {
  margin-top: 4rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ============= Projects ============= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.project-card {
  position: relative;
  height: 380px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  background-size: cover;
  background-position: center;
}
.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 35, 75, 0.95) 0%, rgba(6, 35, 75, 0.3) 50%, transparent 100%);
  z-index: 1;
  transition: var(--transition);
}
.project-card .project-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  color: var(--color-white);
  z-index: 2;
  transition: var(--transition);
}
.project-card .project-category {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}
.project-card h3 {
  color: var(--color-white);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.project-card .project-location { font-size: 0.9rem; opacity: 0.85; }
.project-card:hover::before {
  background: linear-gradient(to top, rgba(6, 35, 75, 0.98) 0%, rgba(6, 35, 75, 0.6) 100%);
}
.project-card:hover .project-content { transform: translateY(-8px); }

/* ============= Reveal animation ============= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============= 404 page ============= */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #06234B 0%, #041938 100%);
  color: #fff;
  padding: 2rem;
}
.error-page img { height: 100px; margin: 0 auto 2rem; }
.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 1rem;
}
.error-page h1 { color: #fff; margin-bottom: 1rem; }
.error-page p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 2rem; }

/* ============= Responsive ============= */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-image { height: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  :root { --section-padding: 4rem 0; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-primary);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 2.5rem;
    gap: 1.5rem;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    transition: right 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .nav-menu.active { right: 0; }
  .nav-menu a { font-size: 1.1rem; }
  .hero { min-height: 600px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .stat-item:not(:last-child)::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .nav-logo-text { font-size: 1.1rem; }
  .nav-logo img { height: 42px; }
  .contact-form { padding: 1.5rem; }
}

@media print {
  .navbar, .footer, .hero-video, .scroll-indicator { display: none !important; }
  body { color: #000; background: #fff; }
}
