/* ══════════════════════════════════════════
   OIC — Shared Styles
   ══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg-deep: #08090c;
  --bg-card: #0e1017;
  --bg-subtle: #14161e;
  --accent: #c8a46e;
  --accent-dim: rgba(200, 164, 110, 0.12);
  --accent-glow: rgba(200, 164, 110, 0.06);
  --text-primary: #e8e4dd;
  --text-secondary: #8a8690;
  --text-muted: #8a8590;
  --border: rgba(200, 164, 110, 0.08);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --red-stat: #e07070;
  --red-pain: #e87070;
}

[data-theme="light"] {
  --bg-deep: #f4f1ec;
  --bg-card: #ffffff;
  --bg-subtle: #ece8e1;
  --accent: #8a6830;
  --accent-dim: rgba(138, 104, 48, 0.10);
  --accent-glow: rgba(138, 104, 48, 0.05);
  --text-primary: #1a1a1f;
  --text-secondary: #555560;
  --text-muted: #6e6a74;
  --border: rgba(138, 104, 48, 0.12);
  --red-stat: #a53a3a;
  --red-pain: #a53a3a;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── Accessibility ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: var(--bg-deep);
  padding: 12px 24px; font-family: var(--sans); font-size: 14px;
  font-weight: 600; text-decoration: none; z-index: 9999;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

/* ── Body ── */
body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--sans);
  font-weight: 300;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Ambient background ── */
.ambient {
  position: fixed; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.ambient::before {
  content: '';
  position: absolute; top: -40%; left: -20%;
  width: 80vw; height: 80vw;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  animation: drift 25s ease-in-out infinite alternate;
}
.ambient::after {
  content: '';
  position: absolute; bottom: -30%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  animation: drift 20s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5%, -5%) scale(1.1); }
}

/* ── Grain ── */
.grain {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none; opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ── Layout ── */
.wrapper {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

/* ── Nav ── */
nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 32px 0;
  opacity: 0; animation: fadeDown 1s ease 0.2s forwards;
}
.logo {
  font-family: var(--sans); font-weight: 600; font-size: 20px; letter-spacing: 4px;
  color: var(--text-primary); text-transform: uppercase;
  border: 1.5px solid var(--accent);
  padding: 6px 14px;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex; gap: 32px; align-items: center;
}
.nav-links a {
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-secondary); text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: -6px; left: 0; right: 0;
  height: 1px; background: var(--accent);
}

.nav-right {
  display: flex; align-items: center; gap: 16px;
}

.theme-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg-card);
  color: var(--text-secondary); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: border-color 0.3s ease;
  padding: 0;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* ── Mobile hamburger ── */
.nav-hamburger {
  display: none;
  width: 36px; height: 36px;
  border: 1px solid var(--border); background: var(--bg-card);
  color: var(--text-secondary); cursor: pointer;
  align-items: center; justify-content: center;
  font-size: 18px; padding: 0;
  transition: border-color 0.3s ease;
}
.nav-hamburger:hover { border-color: var(--accent); color: var(--accent); }

.nav-mobile-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg-deep);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-mobile-overlay.open {
  display: flex;
  opacity: 1;
}
.nav-mobile-overlay a {
  font-family: var(--serif); font-size: 32px;
  color: var(--text-primary); text-decoration: none;
  transition: color 0.3s ease;
}
.nav-mobile-overlay a:hover { color: var(--accent); }
.nav-mobile-close {
  position: absolute; top: 32px; right: clamp(24px, 5vw, 80px);
  width: 36px; height: 36px;
  border: 1px solid var(--border); background: var(--bg-card);
  color: var(--text-secondary); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; padding: 0;
}

/* ── Focus outlines ── */
.theme-toggle:focus-visible,
.nav-hamburger:focus-visible,
.nav-mobile-close:focus-visible,
footer a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }

/* ══════════════════════════════════════════
   PAGE HEADER (shared inner-page hero)
   ══════════════════════════════════════════ */
.page-header {
  padding: clamp(80px, 12vh, 160px) 0 clamp(40px, 6vh, 80px);
}
.page-header-label {
  display: inline-block; font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards;
  position: relative; padding-left: 28px;
}
.page-header-label::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 18px; height: 1px; background: var(--accent);
}
.page-header h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 5vw, 64px); line-height: 1.15;
  color: var(--text-primary); max-width: 800px;
  opacity: 0; animation: fadeUp 1s ease 0.7s forwards;
}
.page-header h1 em { font-style: italic; color: var(--accent); }
.page-header-sub {
  margin-top: 24px; font-size: clamp(16px, 1.8vw, 20px); line-height: 1.7;
  color: var(--text-secondary); max-width: 600px;
  opacity: 0; animation: fadeUp 1s ease 0.9s forwards;
}

/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */
.about-mission {
  padding: clamp(40px, 6vh, 80px) 0;
}
.about-mission-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.about-mission-text h2 {
  font-family: var(--serif); font-size: clamp(24px, 3vw, 36px);
  color: var(--text-primary); line-height: 1.3; margin-bottom: 24px;
}
.about-mission-text h2 em { font-style: italic; color: var(--accent); }
.about-mission-text p {
  font-size: clamp(15px, 1.5vw, 17px); line-height: 1.8;
  color: var(--text-secondary); margin-bottom: 20px;
}
.about-mission-visual {
  border: 1px solid var(--border); background: var(--bg-card);
  padding: clamp(32px, 4vw, 56px);
}
.about-mission-visual blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px); line-height: 1.4;
  color: var(--text-primary);
  border-left: 2px solid var(--accent);
  padding-left: 24px; margin-bottom: 20px;
}
.about-mission-visual cite {
  font-family: var(--sans); font-style: normal;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted);
}

/* Values */
.values-section { padding: clamp(40px, 6vh, 80px) 0; }
.values-label {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 40px;
  padding-left: 28px; position: relative;
}
.values-label::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 18px; height: 1px; background: var(--accent);
}
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.value-card {
  background: var(--bg-card); padding: clamp(28px, 3vw, 44px);
  transition: background 0.4s ease;
}
.value-card:hover { background: var(--bg-subtle); }
.value-card-number {
  font-family: var(--serif); font-size: 14px; color: var(--accent);
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: var(--serif); font-size: clamp(18px, 2vw, 24px);
  color: var(--text-primary); margin-bottom: 12px; font-weight: 400;
}
.value-card p {
  font-size: clamp(13px, 1.3vw, 15px); line-height: 1.7;
  color: var(--text-secondary);
}

/* Team */
.team-section { padding: clamp(40px, 6vh, 80px) 0; }
.team-label {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 40px;
  padding-left: 28px; position: relative;
}
.team-label::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 18px; height: 1px; background: var(--accent);
}
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.team-card {
  background: var(--bg-card); padding: clamp(28px, 3vw, 44px);
  transition: background 0.4s ease;
}
.team-card:hover { background: var(--bg-subtle); }
.team-card-initials {
  width: 56px; height: 56px;
  border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 600; font-size: 18px;
  letter-spacing: 2px; color: var(--accent); margin-bottom: 20px;
}
.team-card h3 {
  font-family: var(--serif); font-size: clamp(18px, 2vw, 22px);
  color: var(--text-primary); margin-bottom: 4px; font-weight: 400;
}
.team-card-role {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.team-card p {
  font-size: clamp(13px, 1.3vw, 15px); line-height: 1.7;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════════════ */
.services-grid {
  padding: clamp(40px, 6vh, 80px) 0;
}
.service-block {
  display: grid; grid-template-columns: 200px 1fr;
  gap: clamp(32px, 4vw, 60px);
  padding: clamp(40px, 5vh, 64px) 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.service-block:first-child { border-top: 1px solid var(--border); }
.service-number {
  font-family: var(--serif); font-size: clamp(48px, 6vw, 72px);
  color: var(--accent); line-height: 1; opacity: 0.4;
}
.service-content h3 {
  font-family: var(--serif); font-size: clamp(22px, 2.5vw, 32px);
  color: var(--text-primary); margin-bottom: 8px; font-weight: 400;
}
.service-tag {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px; display: inline-block;
}
.service-content p {
  font-size: clamp(15px, 1.5vw, 17px); line-height: 1.8;
  color: var(--text-secondary); margin-bottom: 16px; max-width: 600px;
}
.service-details {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px;
}
.service-detail-tag {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); padding: 8px 16px;
  border: 1px solid var(--border); background: var(--bg-card);
}

/* Process */
.process-section { padding: clamp(60px, 8vh, 100px) 0; }
.process-label {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 16px;
  padding-left: 28px; position: relative;
}
.process-label::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 18px; height: 1px; background: var(--accent);
}
.process-heading {
  font-family: var(--serif); font-size: clamp(24px, 3vw, 36px);
  color: var(--text-primary); line-height: 1.3; margin-bottom: 48px;
}
.process-heading em { font-style: italic; color: var(--accent); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.process-step {
  background: var(--bg-card); padding: clamp(24px, 3vw, 40px);
  transition: background 0.4s ease;
  position: relative;
}
.process-step:hover { background: var(--bg-subtle); }
.process-step-num {
  font-family: var(--serif); font-size: 12px; color: var(--accent);
  margin-bottom: 20px; letter-spacing: 2px;
}
.process-step h4 {
  font-family: var(--serif); font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-primary); margin-bottom: 12px; font-weight: 400;
}
.process-step p {
  font-size: clamp(13px, 1.3vw, 14px); line-height: 1.7;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════
   BLOG / INSIGHTS
   ══════════════════════════════════════════ */
.blog-section-label {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
  padding-left: 28px; position: relative;
  padding-top: clamp(40px, 6vh, 60px); padding-bottom: 0;
}
.blog-section-label::before {
  content: ''; position: absolute; left: 0; top: calc(clamp(40px, 6vh, 60px) + 6px);
  width: 18px; height: 1px; background: var(--accent);
}
.blog-grid {
  padding: clamp(40px, 6vh, 80px) 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.blog-card {
  background: var(--bg-card);
  padding: clamp(32px, 4vw, 48px);
  transition: background 0.4s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover { background: var(--bg-subtle); }
.blog-card-tag {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.blog-card h3 {
  font-family: var(--serif); font-size: clamp(20px, 2.2vw, 28px);
  color: var(--text-primary); margin-bottom: 16px; font-weight: 400;
  line-height: 1.3;
}
.blog-card h3 a {
  color: inherit; text-decoration: none;
  transition: color 0.3s ease;
}
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p {
  font-size: clamp(14px, 1.4vw, 16px); line-height: 1.7;
  color: var(--text-secondary); margin-bottom: 24px;
  flex: 1;
}
.blog-card-meta {
  font-size: 12px; color: var(--text-muted); letter-spacing: 1px;
}
.blog-card.featured {
  grid-column: 1 / -1;
}
.blog-card.featured h3 {
  font-size: clamp(24px, 3vw, 36px);
}

/* Article */
.article-content {
  padding: clamp(40px, 6vh, 80px) 0;
  max-width: 720px;
}
.article-meta {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 40px;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.article-content h2 {
  font-family: var(--serif); font-size: clamp(22px, 2.5vw, 30px);
  color: var(--text-primary); margin: 48px 0 20px; font-weight: 400;
  line-height: 1.3;
}
.article-content h2 em { font-style: italic; color: var(--accent); }
.article-content p {
  font-size: clamp(16px, 1.6vw, 18px); line-height: 1.85;
  color: var(--text-secondary); margin-bottom: 24px;
}
.article-content blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 2vw, 22px); line-height: 1.5;
  color: var(--text-primary);
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 24px; margin: 40px 0;
}
.article-content ul, .article-content ol {
  margin: 0 0 24px 24px;
}
.article-content li {
  font-size: clamp(15px, 1.5vw, 17px); line-height: 1.8;
  color: var(--text-secondary); margin-bottom: 8px;
}
.article-content li::marker { color: var(--accent); }
.article-back {
  display: inline-block; margin-top: 48px;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-secondary); text-decoration: none;
  transition: color 0.3s ease;
}
.article-back:hover { color: var(--accent); }

/* ══════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(40px, 6vh, 80px) 0;
  align-items: start;
}
.contact-form-section h2 {
  font-family: var(--serif); font-size: clamp(22px, 2.5vw, 30px);
  color: var(--text-primary); margin-bottom: 24px; font-weight: 400;
}
.contact-form {
  display: flex; flex-direction: column; gap: 16px;
}
.contact-field {
  display: flex; flex-direction: column; gap: 6px;
}
.contact-field label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted); font-weight: 400;
}
.contact-field input,
.contact-field textarea,
.contact-field select {
  padding: 14px 18px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-primary); font-family: var(--sans);
  font-size: 15px; font-weight: 300;
  outline: none; transition: border-color 0.3s ease;
  -webkit-appearance: none;
}
.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  border-color: var(--accent-dim);
}
.contact-field textarea { resize: vertical; min-height: 140px; }
.contact-field select { cursor: pointer; }
.contact-submit {
  padding: 16px 32px; background: var(--accent); color: var(--bg-deep);
  border: none; font-family: var(--sans); font-size: 13px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: opacity 0.3s ease;
  align-self: flex-start; margin-top: 8px;
}
.contact-submit:hover { opacity: 0.85; }

.contact-info h2 {
  font-family: var(--serif); font-size: clamp(22px, 2.5vw, 30px);
  color: var(--text-primary); margin-bottom: 24px; font-weight: 400;
}
.contact-info-block { margin-bottom: 32px; }
.contact-info-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.contact-info-value {
  font-size: clamp(15px, 1.5vw, 17px); line-height: 1.7;
  color: var(--text-secondary);
}
.contact-info-value a {
  color: var(--text-secondary); text-decoration: none;
  transition: color 0.3s ease;
}
.contact-info-value a:hover { color: var(--accent); }

/* ══════════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════════ */
.legal-content {
  padding: clamp(40px, 6vh, 80px) 0;
  max-width: 720px;
}
.legal-content h2 {
  font-family: var(--serif); font-size: clamp(20px, 2.2vw, 26px);
  color: var(--text-primary); margin: 40px 0 16px; font-weight: 400;
}
.legal-content h3 {
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  color: var(--text-primary); margin: 28px 0 12px;
}
.legal-content p {
  font-size: clamp(14px, 1.4vw, 16px); line-height: 1.8;
  color: var(--text-secondary); margin-bottom: 16px;
}
.legal-content ul {
  margin: 0 0 16px 24px;
}
.legal-content li {
  font-size: clamp(14px, 1.4vw, 16px); line-height: 1.8;
  color: var(--text-secondary); margin-bottom: 6px;
}
.legal-content li::marker { color: var(--accent); }
.legal-content a {
  color: var(--accent); text-decoration: none;
  transition: color 0.3s ease;
}
.legal-content a:hover { color: var(--text-primary); }
.legal-updated {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 32px;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}

/* ══════════════════════════════════════════
   SHARED CTA SECTION
   ══════════════════════════════════════════ */
.page-cta {
  padding: clamp(60px, 10vh, 120px) 0;
  text-align: center;
}
.page-cta h2 {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 50px);
  line-height: 1.2; margin-bottom: 16px;
}
.page-cta h2 em { font-style: italic; color: var(--accent); }
.page-cta p {
  font-size: clamp(14px, 1.4vw, 17px); color: var(--text-secondary);
  margin-bottom: 40px; line-height: 1.6;
}
.email-form {
  display: flex; gap: 0; max-width: 480px; margin: 0 auto;
  border: 1px solid var(--border); background: var(--bg-card);
  overflow: hidden; transition: border-color 0.3s ease;
}
.email-form:focus-within { border-color: var(--accent-dim); }
.email-form input {
  flex: 1; padding: 16px 20px; background: transparent;
  border: none; outline: none; color: var(--text-primary);
  font-family: var(--sans); font-size: 15px; font-weight: 300;
}
.email-form input::placeholder { color: var(--text-muted); }
.email-form button {
  padding: 16px 28px; background: var(--accent); color: var(--bg-deep);
  border: none; font-family: var(--sans); font-size: 13px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s ease; white-space: nowrap;
}
.email-form button:hover { opacity: 0.85; }
.form-note { margin-top: 14px; font-size: 12px; color: var(--text-muted); }

/* ── Footer ── */
footer {
  padding: 32px 0; display: flex; justify-content: space-between;
  align-items: center; border-top: 1px solid var(--border);
}
.footer-left { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; }
.footer-right { font-size: 12px; color: var(--text-muted); }
.footer-right a {
  color: var(--text-secondary); text-decoration: none;
  transition: color 0.3s ease; margin-left: 24px;
}
.footer-right a:hover { color: var(--accent); }

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  nav, .page-header-label, .page-header h1,
  .page-header-sub {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Light mode overrides ── */
[data-theme="light"] .grain { opacity: 0.08; }
[data-theme="light"] .logo { border-color: var(--accent); }
[data-theme="light"] .logo span { color: var(--accent); }
[data-theme="light"] .value-card,
[data-theme="light"] .team-card,
[data-theme="light"] .blog-card,
[data-theme="light"] .process-step,
[data-theme="light"] .service-detail-tag {
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* ══════════════════════════════════════════
   MOBILE RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .page-header-label { font-size: 9px; letter-spacing: 2.5px; }

  .about-mission-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .service-block { grid-template-columns: 1fr; gap: 16px; }
  .service-number { font-size: 36px; }
  .process-steps { grid-template-columns: 1fr 1fr; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: auto; }

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

  .email-form { flex-direction: column; }
  .email-form button { padding: 14px; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
  .footer-right a { margin: 0 12px; }
}
