/* ==========================================================================
   Sebaytis — Studio de Laval · Variation 09 "Accenture Startup" appliquée
   Palette : Blanc + Violet brand + Magenta/Teal/Orange shapes + Navy text
   ========================================================================== */

/* --- TOKENS --- */
:root {
  --bg: #FFFFFF;
  --bg-soft: #F8F7FD;
  --bg-section: #1A0E3D;
  --text: #1A0E3D;
  --text-soft: #4F4570;
  --muted: #8A839E;
  --border: #E5E1F0;
  --border-strong: #C9C0DC;
  --purple: #5B2EE6;
  --purple-bright: #8B5CF6;
  --purple-deep: #3B1AB0;
  --purple-light: #EDE7FC;
  --magenta: #E80368;
  --teal: #00D4B8;
  --orange: #FF7849;
  --success: #16A34A;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-feature-settings: 'kern'; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', system-ui, sans-serif; font-size: 16px; line-height: 1.6; overflow-x: hidden; }
::selection { background: var(--purple); color: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ol, ul { list-style: none; }

/* --- SCROLL PROGRESS --- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: var(--purple); z-index: 200; transition: width 80ms linear; pointer-events: none; }
@media (prefers-reduced-motion: reduce) { .scroll-progress { transition: none; } }

/* --- EYEBROW (commun à toutes sections) --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: var(--purple-light);
  border-radius: 4px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { color: var(--text); font-family: 'Inter', sans-serif; }
h1 em, h2 em, h3 em { font-style: normal; color: var(--purple); }

.vocation-h2 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 20px;
}

/* ==========================================================================
   1. NAVBAR
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: box-shadow 280ms var(--ease);
}
.nav.scrolled {
  box-shadow: 0 4px 24px rgba(26, 14, 61, 0.25);
}

/* Anchor scroll offsets to account for fixed navbar */
html { scroll-padding-top: 80px; }
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 40px;
  padding: 24px 6vw;
  max-width: 1480px;
  margin: 0 auto;
  transition: padding 280ms var(--ease);
}
.nav.scrolled .nav-inner { padding: 14px 6vw; }

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}
.nav-brand-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--purple-bright);
  border-radius: 4px;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 36px;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  position: relative;
  padding: 4px 0;
  transition: color 200ms var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease);
}
.nav-links a:hover { color: #FFFFFF; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 22px;
  background: var(--purple);
  color: #FFFFFF;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 200ms var(--ease);
}
.nav-cta:hover { background: var(--purple-bright); transform: translateY(-2px); }

.nav-hamburger span { background: #FFFFFF; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 280ms var(--ease), opacity 280ms var(--ease);
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* ==========================================================================
   2. HERO
   ========================================================================== */
.hero {
  padding: 160px 6vw 120px;
  max-width: 1480px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero-shapes {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
}
.shape { position: absolute; border-radius: 12px; opacity: 0.85; }
.shape-1 { width: 240px; height: 240px; background: var(--purple); top: 80px; right: 100px; transform: rotate(15deg); }
.shape-2 { width: 160px; height: 160px; background: var(--magenta); top: 240px; right: 280px; transform: rotate(-10deg); border-radius: 50%; }
.shape-3 { width: 120px; height: 120px; background: var(--teal); top: 100px; right: 0; transform: rotate(25deg); }
.shape-4 { width: 100px; height: 100px; background: var(--orange); bottom: 100px; right: 140px; border-radius: 50%; }
.shape-grid {
  position: absolute;
  bottom: 80px;
  right: 280px;
  display: grid;
  grid-template-columns: repeat(4, 14px);
  gap: 14px;
}
.shape-grid div { width: 14px; height: 14px; background: var(--text); }

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(48px, 7.5vw, 112px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: normal;
  color: var(--purple);
  background: var(--purple-light);
  padding: 2px 16px 6px;
  border-radius: 10px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero-sub {
  font-size: 20px;
  color: var(--text-soft);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: all 200ms var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--text);
  color: white;
}
.btn-primary:hover {
  background: var(--purple);
  transform: translateY(-3px);
}
.btn-ghost {
  background: white;
  color: var(--text);
  border-color: var(--text);
}
.btn-ghost:hover {
  background: var(--purple-light);
  border-color: var(--purple);
  color: var(--purple);
}

/* ==========================================================================
   3. TAGLINE BAR
   ========================================================================== */
.tagbar {
  padding: 32px 6vw;
  background: var(--text);
  color: white;
}
.tagbar-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
  align-items: center;
}
.tagbar-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.95;
}
.tagbar-label em { font-style: normal; color: var(--teal); }
.tagbar-stat { font-size: 14px; font-weight: 600; }
.tagbar-stat strong {
  color: var(--teal);
  font-weight: 800;
  font-size: 18px;
  margin-right: 6px;
}

/* ==========================================================================
   4. VOCATION sections (commun)
   ========================================================================== */
.vocation {
  padding: 120px 6vw;
  max-width: 1480px;
  margin: 0 auto;
}
.vocation-head {
  max-width: 880px;
  margin-bottom: 64px;
}
.vocation-lede {
  font-size: 18px;
  color: var(--text-soft);
  margin-top: 16px;
  max-width: 640px;
  line-height: 1.65;
}

/* ==========================================================================
   5. SERVICES — Vocation I
   ========================================================================== */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .services { grid-template-columns: repeat(3, 1fr); } }
.service {
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s var(--ease);
}
.service:hover {
  border-color: var(--purple);
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 8px 8px 0 var(--purple);
}
.service-num {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* Core expertise badge — top-left of service cards 01-04 */
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--teal);
  padding: 5px 10px;
  border-radius: 100px;
  align-self: flex-start;
  margin-bottom: 18px;
  white-space: nowrap;
}
.service-badge i { font-size: 11px; color: var(--text); }

/* Core variant — slightly more prominent */
.service--core {
  border-color: var(--border-strong);
}
.service--core:hover {
  box-shadow: 8px 8px 0 var(--teal);
  border-color: var(--purple);
}
.service-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: var(--purple-light);
  color: var(--purple);
  border-radius: 12px;
  margin-bottom: 24px;
}
.service:hover .service-icon { background: var(--purple); color: white; }
.service-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.service p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.service-tags li {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--bg-soft);
  color: var(--text);
  border-radius: 4px;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   6. PRODUITS — Vocation II
   ========================================================================== */

/* Feature card — ClipDog portfolio piece */
.card-feature {
  display: grid;
  grid-template-columns: 5fr 6fr;
  background: var(--text);
  border-radius: 24px;
  overflow: hidden;
  color: white;
  margin-bottom: 32px;
  position: relative;
  transition: all 0.3s var(--ease);
  box-shadow: 0 24px 60px -16px rgba(91, 46, 230, 0.30);
}
.card-feature:hover {
  transform: translateY(-6px) rotate(-0.3deg);
  box-shadow: 12px 12px 0 var(--purple), 0 32px 80px -16px rgba(91, 46, 230, 0.40);
}
.feature-media {
  background: linear-gradient(135deg, #5B2EE6 0%, #1A0E3D 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 48px;
  min-height: 380px;
}
.feature-media img {
  max-width: 160px; width: 60%; height: auto;
  position: relative; z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  transition: transform 0.4s var(--ease);
}
.card-feature:hover .feature-media img { transform: scale(1.04); }
.feature-shapes { position: absolute; inset: 0; pointer-events: none; }
.fshape { position: absolute; border-radius: 12px; opacity: 0.5; }
.fs-1 { width: 80px; height: 80px; background: var(--teal); top: 32px; left: 32px; transform: rotate(15deg); }
.fs-2 { width: 60px; height: 60px; background: var(--magenta); bottom: 40px; right: 40px; border-radius: 50%; }
.fs-3 { width: 100px; height: 100px; background: var(--orange); bottom: 32px; left: -30px; transform: rotate(-20deg); border-radius: 18px; opacity: 0.4; }

.feature-meta {
  padding: 48px;
  display: flex; flex-direction: column;
}
.feature-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.feature-num {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.55);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.card-feature .card-status {
  background: var(--teal); color: var(--text); font-weight: 700;
  padding: 6px 12px; border-radius: 4px; font-size: 11px;
  letter-spacing: 0.10em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.card-feature .card-status::before {
  content: ''; width: 6px; height: 6px;
  background: var(--text); border-radius: 50%;
  animation: blink-fea 1.5s infinite;
}
@keyframes blink-fea { 50% { opacity: 0.4; } }

.feature-title {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: white;
  margin-bottom: 20px;
}
.feature-title em { color: var(--purple-bright); font-style: normal; }
.feature-lede {
  font-size: 17px; line-height: 1.6;
  color: rgba(255,255,255,0.80);
  margin-bottom: 32px;
  max-width: 520px;
}
.feature-lede em {
  font-style: italic; color: white; font-weight: 500;
}
.feature-specs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 24px 0; margin-bottom: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.feature-specs > div { display: flex; flex-direction: column; gap: 6px; }
.feature-specs dt {
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.feature-specs dd {
  font-size: 22px; font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
}
.feature-specs .unit {
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin-left: 2px;
}
.feature-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.feature-url {
  font-size: 13px; color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}
.feature-url .dot-host { color: var(--purple-bright); font-weight: 600; }
.feature-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--text);
  padding: 13px 22px; border-radius: 4px;
  font-size: 14px; font-weight: 700;
  transition: all 0.2s var(--ease);
}
.card-feature:hover .feature-cta { background: var(--purple-bright); color: white; }

/* Grid of 4 other products */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .grid { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: all 0.3s var(--ease);
}
.card:hover {
  border-color: var(--purple);
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 8px 8px 0 var(--purple);
}
.card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px;
}
.card-icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px;
  background: var(--purple-light);
  color: var(--purple);
  border-radius: 12px;
}
.card-status {
  font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.status-live { background: var(--teal); color: var(--text); }
.status-soon { background: var(--orange); color: white; }
.status-dev { background: var(--magenta); color: white; }

.card h3 {
  font-size: 24px; font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 24px;
}
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700;
  color: var(--text);
  padding-top: 18px;
  border-top: 1px solid var(--border);
  transition: gap 0.2s, color 0.2s;
}
.card-link:hover { gap: 12px; color: var(--purple); }

/* ==========================================================================
   7. APPROCHE
   ========================================================================== */
.approach {
  padding: 120px 6vw;
  max-width: 1480px;
  margin: 0 auto;
  background: var(--bg-soft);
}
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
}
.step:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}
.step-n {
  font-size: 56px;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  display: block;
  opacity: 0.85;
}
.step h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.step p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ==========================================================================
   8. TÉMOIGNAGES (placeholder)
   ========================================================================== */
.testimonials {
  padding: 120px 6vw;
  max-width: 1480px;
  margin: 0 auto;
}
.quotes-empty {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 56px 48px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  position: relative;
  text-align: center;
}
.quotes-empty::before {
  content: '«';
  position: absolute;
  top: 16px; left: 24px;
  font-family: Georgia, serif;
  font-size: 140px;
  line-height: 0.6;
  color: var(--purple);
  opacity: 0.18;
  pointer-events: none;
}
.quotes-empty-text {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 28px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.quotes-empty-text em { color: var(--purple); font-style: italic; }
.quotes-empty-cite {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ==========================================================================
   9. À PROPOS
   ========================================================================== */
.about {
  padding: 120px 6vw;
  max-width: 1480px;
  margin: 0 auto;
}
.about-text {
  max-width: 820px;
}
.about-text p {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 18px;
}
.about-text p strong { color: var(--text); font-weight: 600; }
.about-lede { font-size: 19px !important; color: var(--text) !important; }

/* ==========================================================================
   10. CONTACT
   ========================================================================== */
.contact {
  padding: 120px 6vw;
  max-width: 1480px;
  margin: 0 auto;
  background: var(--bg-soft);
}
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
}
.contact-lede {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 32px;
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; position: relative; }
.field label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: white;
  border: 2px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-light);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231A0E3D' d='M1.4 0L6 4.6 10.6 0 12 1.4l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.form-error { font-size: 12px; color: var(--magenta); min-height: 14px; }


/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.footer {
  background: var(--text);
  color: white;
  padding: 56px 6vw 40px;
}
.footer-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.footer-brand .nav-brand-mark { background: var(--purple); }
.footer-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.40);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   12. RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero { padding: 130px 5vw 100px; }
  .hero-shapes { display: none; }
  .vocation { padding: 100px 5vw; }
  .approach, .testimonials, .about, .contact { padding: 100px 5vw; }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 80px 24px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 22px; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }

  .card-feature { grid-template-columns: 1fr; }
  .feature-media { min-height: 280px; padding: 32px; }
  .feature-media img { max-width: 130px; width: 50%; }
  .feature-meta { padding: 32px 28px; }
  .feature-specs { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 20px 0; margin-bottom: 24px; }
  .feature-foot { flex-direction: column; align-items: stretch; gap: 16px; }
  .feature-cta { width: 100%; justify-content: center; }
  .tagbar-inner { gap: 24px; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 110px 5vw 80px; }
  .hero h1 { font-size: clamp(40px, 11vw, 72px); }
  .hero-sub { font-size: 17px; }
  .vocation, .approach, .testimonials, .about, .contact { padding: 80px 5vw; }
  .quotes-empty { padding: 36px 24px; }
  .quotes-empty-text { font-size: 17px; }
  .feature-title { font-size: clamp(36px, 10vw, 56px); }
  .feature-meta { padding: 28px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}
