/* ============================================
   SECTOR AS · Sistema de Diseño
   Editorial · Cinematográfico · Dark Lujo
   ============================================ */

:root {
  /* Color */
  --obsidian: #0a0809;
  --obsidian-2: #161316;
  --obsidian-3: #1f1b1d;
  --copper: #FF6D29;
  --copper-deep: #b56b3a;
  --copper-soft: #d68a52;
  --bone: #f5f1ea;
  --off-white: #bababa;
  --muted: #6b6660;
  --line: rgba(245, 241, 234, 0.08);
  --line-strong: rgba(245, 241, 234, 0.18);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Spacing */
  --container: 1280px;
  --container-narrow: 880px;
  --gutter: clamp(24px, 5vw, 80px);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--obsidian);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 70% 0%, rgba(255, 109, 41, 0.08), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(181, 107, 58, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

main, header, footer, section { position: relative; z-index: 2; }

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

a { color: inherit; text-decoration: none; transition: color .3s var(--ease-out); }
a:hover { color: var(--copper); }

::selection { background: var(--copper); color: var(--obsidian); }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--bone);
}

h1 { font-size: clamp(2.5rem, 6.5vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.4rem); font-family: var(--font-body); font-weight: 500; letter-spacing: 0.02em; }

em, .italic { font-style: italic; color: var(--copper-soft); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--copper);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.eyebrow::before { content: "—  "; opacity: .6; }

p { color: var(--off-white); }
p.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--bone); line-height: 1.5; max-width: 60ch; }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }

section { padding: clamp(80px, 12vh, 160px) 0; }
section.tight { padding: clamp(60px, 8vh, 100px) 0; }

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(10, 8, 9, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

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

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 32px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-menu a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--off-white);
  position: relative;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--copper);
  transition: width .35s var(--ease-out);
}
.nav-menu a:hover { color: var(--bone); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
  border: 1px solid var(--line-strong);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em !important;
  color: var(--bone) !important;
  transition: all .35s var(--ease-out);
}
.nav-cta:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--obsidian) !important;
}
.nav-cta::after { display: none !important; }

.burger {
  display: none;
  width: 28px;
  height: 18px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 110;
}
.burger span {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--bone);
  transition: all .3s var(--ease-out);
}
.burger span:nth-child(1) { top: 2px; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 2px; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* CTA Buttons */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--copper);
  color: var(--obsidian);
  padding: 18px 36px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ease-out);
  white-space: nowrap;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.25), transparent);
  transform: translateX(-100%);
  transition: transform .8s var(--ease-out);
}
.cta:hover { color: var(--obsidian); background: var(--copper-soft); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255, 109, 41, 0.25); }
.cta:hover::before { transform: translateX(100%); }
.cta-arrow { width: 16px; height: 1px; background: currentColor; position: relative; transition: width .3s var(--ease-out); }
.cta-arrow::after { content: ""; position: absolute; right: 0; top: 50%; width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: translateY(-50%) rotate(45deg); }
.cta:hover .cta-arrow { width: 24px; }

.cta-ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--line-strong);
}
.cta-ghost:hover { background: transparent; color: var(--copper); border-color: var(--copper); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 60px; }
.hero h1 {
  font-style: italic;
  margin-bottom: 2.5rem;
  max-width: 14ch;
}
.hero h1 .copper { font-style: normal; color: var(--copper); display: block; }
.hero .lead { margin-bottom: 3rem; max-width: 56ch; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-meta div {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta strong { color: var(--bone); font-weight: 400; display: block; margin-top: 6px; font-family: var(--font-display); font-style: italic; font-size: 1.05rem; letter-spacing: 0; text-transform: none; }

/* Authority strip */
.authority {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.authority-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.authority-item {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.authority-item strong { color: var(--copper); font-weight: 500; }

/* Section header */
.section-head { margin-bottom: 80px; max-width: 700px; }
.section-head h2 { margin-bottom: 1.5rem; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Cards / Problem */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card {
  background: var(--obsidian);
  padding: 48px 36px;
  transition: background .5s var(--ease-out);
}
.card:hover { background: var(--obsidian-2); }
.card-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--copper);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.card h3 { font-style: italic; margin-bottom: 18px; }
.card p { font-size: 0.95rem; line-height: 1.7; }

/* Solution components - alternating */
.component {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.component:last-child { border-bottom: none; }
.component-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.component-grid.flip { grid-template-columns: 1.2fr 1fr; }
.component-grid.flip .component-content { order: -1; }
.component-meta {
  position: sticky;
  top: 120px;
}
.component-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-style: italic;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 24px;
}
.component-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.component-content h3 { font-style: italic; margin-bottom: 24px; }
.component-content > p { margin-bottom: 30px; font-size: 1.05rem; }
.component-content ul { list-style: none; }
.component-content li {
  padding: 16px 0 16px 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 0.95rem;
  color: var(--bone);
}
.component-content li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--copper);
  font-family: var(--font-mono);
}
.component-content li:last-child { border-bottom: none; }
.component-content li small { display: block; color: var(--muted); font-size: 0.82rem; margin-top: 4px; }

/* Stats */
.stats {
  background: var(--obsidian-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}
.stat-block { text-align: left; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-style: italic;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 16px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
}

/* Process timeline */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.process-step {
  background: var(--obsidian);
  padding: 48px 36px;
  position: relative;
}
.process-day {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 24px;
}
.process-step h3 {
  font-style: italic;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.process-step p { font-size: 0.92rem; line-height: 1.7; }

/* Guarantee */
.guarantee {
  border: 1px solid var(--copper);
  padding: 60px 48px;
  background: linear-gradient(135deg, rgba(255,109,41,0.04), rgba(255,109,41,0.01));
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.guarantee .eyebrow { color: var(--copper); }
.guarantee h2 { font-style: italic; margin-bottom: 28px; }
.guarantee p { max-width: 60ch; margin: 0 auto; font-size: 1.05rem; }

/* FAQ */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-style: italic;
  color: var(--bone);
  list-style: none;
  position: relative;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  position: relative;
  transition: all .35s var(--ease-out);
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 1px;
  background: var(--bone);
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease-out);
}
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq[open] .faq-toggle { border-color: var(--copper); }
.faq[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(0); }
.faq[open] .faq-toggle::before { background: var(--copper); }
.faq-a {
  margin-top: 20px;
  font-size: 0.98rem;
  color: var(--off-white);
  line-height: 1.7;
  max-width: 70ch;
}

/* Footer */
footer {
  background: var(--obsidian-2);
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand img { height: 36px; margin-bottom: 24px; }
.footer-brand p { font-size: 0.92rem; max-width: 36ch; }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 0.92rem; color: var(--off-white); }
.footer-col a:hover { color: var(--copper); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.78rem;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--bone); }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease-out);
}
.socials a:hover { background: var(--copper); border-color: var(--copper); color: var(--obsidian); }
.socials svg { width: 14px; height: 14px; fill: currentColor; }

/* WhatsApp floating */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 90;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  transition: transform .3s var(--ease-out);
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse 2s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: white; position: relative; z-index: 2; }
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 520px;
  background: var(--obsidian-2);
  border: 1px solid var(--line-strong);
  padding: 24px;
  border-radius: 6px;
  z-index: 95;
  display: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 0.85rem; line-height: 1.55; margin-bottom: 16px; color: var(--off-white); }
.cookie-banner a { color: var(--copper); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--bone);
  border-radius: 3px;
  cursor: pointer;
  transition: all .3s;
}
.cookie-btn.primary { background: var(--copper); border-color: var(--copper); color: var(--obsidian); }
.cookie-btn:hover { border-color: var(--copper); color: var(--copper); }
.cookie-btn.primary:hover { background: var(--copper-soft); border-color: var(--copper-soft); color: var(--obsidian); }

/* Page hero (subpages) */
.page-hero {
  padding: 200px 0 100px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-style: italic; margin-bottom: 1.5rem; max-width: 18ch; }
.page-hero .lead { max-width: 60ch; }

/* Apply page */
.apply-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.apply-meta { position: sticky; top: 120px; }
.apply-step {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.apply-step:last-child { border: none; }
.apply-step-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--copper);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
.apply-step h4 { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; font-weight: 400; margin-bottom: 6px; }
.apply-step p { font-size: 0.9rem; }
.tally-wrap {
  border: 1px solid var(--line);
  padding: 8px;
  background: var(--obsidian-2);
  min-height: 600px;
}

/* Placeholder cards (for incomplete sections) */
.placeholder-card {
  border: 1px solid var(--line);
  padding: 80px 48px;
  text-align: center;
  background: var(--obsidian-2);
  max-width: 720px;
  margin: 0 auto;
}
.placeholder-card .eyebrow { color: var(--copper); }
.placeholder-card h3 { font-style: italic; margin-bottom: 20px; }
.placeholder-card p { max-width: 50ch; margin: 0 auto 28px; }

/* Legal content */
.legal-content { max-width: 720px; margin: 0 auto; }
.legal-content h2 { font-size: 1.6rem; margin: 48px 0 20px; font-style: italic; }
.legal-content h3 { font-size: 1.15rem; margin: 28px 0 14px; font-family: var(--font-body); font-weight: 500; letter-spacing: 0; }
.legal-content p, .legal-content li { font-size: 0.95rem; line-height: 1.75; margin-bottom: 16px; color: var(--off-white); }
.legal-content ul { padding-left: 24px; margin-bottom: 20px; }
.legal-content strong { color: var(--bone); font-weight: 500; }
.legal-content a { color: var(--copper); border-bottom: 1px dashed rgba(255,109,41,.4); }
.legal-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.85rem; }
.legal-content th, .legal-content td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; }
.legal-content th { background: var(--obsidian-2); color: var(--bone); font-weight: 500; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* 404 */
.notfound {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 24px;
}
.notfound h1 {
  font-size: clamp(6rem, 18vw, 14rem);
  font-style: italic;
  color: var(--copper);
  line-height: 0.85;
  margin-bottom: 20px;
}
.notfound h2 { font-style: italic; margin-bottom: 24px; }
.notfound p { max-width: 50ch; margin: 0 auto 40px; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: .12s; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: .36s; }

/* Final CTA */
.final-cta { text-align: center; padding: 140px 0; border-top: 1px solid var(--line); }
.final-cta .eyebrow { color: var(--copper); }
.final-cta h2 { font-style: italic; max-width: 18ch; margin: 0 auto 40px; }

/* Service detail meta sticky */
.service-meta {
  position: sticky;
  top: 120px;
  padding-right: 40px;
}
.service-meta dl { display: grid; gap: 24px; }
.service-meta dt { font-family: var(--font-mono); font-size: 0.7rem; color: var(--copper); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 6px; }
.service-meta dd { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--bone); }

/* Responsive */
@media (max-width: 1024px) {
  .cards { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .component-grid, .component-grid.flip { grid-template-columns: 1fr; gap: 40px; }
  .component-grid.flip .component-content { order: 0; }
  .component-meta { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .apply-grid { grid-template-columns: 1fr; gap: 40px; }
  .apply-meta { position: static; }
  .service-meta { position: static; padding: 0 0 40px; }
}

@media (max-width: 720px) {
  .nav-menu { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 100%; max-width: 360px; background: var(--obsidian-2); flex-direction: column; align-items: flex-start; padding: 100px 32px 32px; gap: 24px; border-left: 1px solid var(--line); }
  .nav-menu.open { display: flex; }
  .nav-menu a { font-size: 1rem; }
  .burger { display: block; }
  .hero { padding-top: 120px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; gap: 20px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  .wa-float { bottom: 18px; right: 18px; width: 50px; height: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}

:focus-visible { outline: 2px solid var(--copper); outline-offset: 4px; }
