/* ============================================
   MAMONAKU AI — Design System
   "The future has arrived quietly."
   ============================================ */

/* ---------- Tokens ---------- */
:root {
  /* Primary palette */
  --charcoal: #0D0F13;
  --deep-slate: #1C2128;
  --midnight: #26364D;
  --steel: #3F5B7A;
  --warm-white: #F6F5F2;

  /* Neutral palette */
  --graphite: #33383F;
  --stone: #7A8087;
  --ash: #B7BDC3;
  --light-greige: #E6E4E1;
  --off-white: #FBFBFA;

  /* Accent palette — used sparingly */
  --indigo: #596D8C;
  --deep-teal: #29636D;
  --dusty-blue: #8FA6BE;
  --sand: #D6C9B3;
  --copper: #B87A4A;

  /* Type */
  --font-primary: 'Satoshi', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-editorial: 'IBM Plex Sans', Georgia, serif;

  /* Fluid type scale */
  --type-display: clamp(3rem, 8.5vw, 7.5rem);
  --type-h1: clamp(2.25rem, 5vw, 4.25rem);
  --type-h2: clamp(1.75rem, 3.2vw, 2.75rem);
  --type-h3: clamp(1.25rem, 1.8vw, 1.5rem);
  --type-body: 1.0625rem;
  --type-small: 0.875rem;
  --type-eyebrow: 0.75rem;

  /* Spacing (8px scale) */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4.5rem;
  --s-7: 7rem;
  --s-8: 10rem;
  --s-9: 14rem;

  /* Layout */
  --container-max: 1440px;
  --container-pad: clamp(1.5rem, 5vw, 5rem);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 220ms;
  --t-med: 480ms;
  --t-slow: 800ms;
}

/* ---------- Dark theme ---------- */
/* Warm dark palette — closer to "architecture studio at night" than pure void.
   Canvas starts at brand's Deep Slate (#1C2128) and lifts up from there. */
[data-theme="dark"] {
  /* Canvas tier */
  --off-white: #1C2128;            /* main background — brand Deep Slate */
  --warm-white: #252A32;           /* slightly elevated surface */

  /* Inverted ink — slightly warmer to match the warmer canvas */
  --charcoal: #F6F5F2;             /* primary text, headings */
  --graphite: #D0D3D8;             /* body text — comfortable on warm dark */
  --stone: #ACB1B9;                /* secondary text — bumped lighter for dark-canvas legibility */
  --ash: #444A53;                  /* borders, dividers */

  /* Surface tier */
  --light-greige: #2D333D;         /* section backgrounds */
  --deep-slate: #363D48;           /* lifted dark surfaces */

  /* Midnight stays as-is — works as elevated accent in both themes */
  /* Accent palette (indigo, deep-teal, dusty-blue, sand, copper, steel) stays as-is */
}

/* Section-specific overrides where tokens alone can't carry the meaning */
[data-theme="dark"] .nav {
  background: rgba(28, 33, 40, 0.78);
}
[data-theme="dark"] .nav.scrolled {
  border-bottom-color: var(--light-greige);
}

/* Manifesto: midnight panel remains light-text-on-dark in both themes */
[data-theme="dark"] .manifesto {
  color: #F6F5F2;
}
[data-theme="dark"] .manifesto blockquote {
  color: #F6F5F2;
}

/* Offerings hierarchy: section slightly elevated, cards more elevated */
[data-theme="dark"] .offerings {
  background: #252A32;
}
[data-theme="dark"] .offer {
  background: #2D333D;
}

/* Closing CTA: bg matches canvas, border becomes ash */
[data-theme="dark"] .closing {
  background: var(--off-white);
  border-top-color: var(--ash);
}

/* Footer: matches canvas color, top border separates from body */
[data-theme="dark"] footer {
  background: var(--off-white);
  border-top: 1px solid var(--ash);
  color: var(--stone);
}
[data-theme="dark"] footer .brand .nav-logo,
[data-theme="dark"] footer .brand .nav-logo .wordmark {
  color: #F6F5F2;
}
[data-theme="dark"] footer .brand p {
  color: var(--stone);  /* light-mode used --ash here, which flipped to a dark border tone */
}
[data-theme="dark"] footer .col a {
  color: #F6F5F2;
}
[data-theme="dark"] footer .col a:hover {
  color: var(--dusty-blue);
}
[data-theme="dark"] footer .legal {
  border-top-color: var(--deep-slate);
}

/* Hero eyebrow dot — green for visibility on the dark canvas */
[data-theme="dark"] .hero-eyebrow .dot {
  background: #22c55e;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-primary);
  font-size: var(--type-body);
  line-height: 1.7;
  color: var(--graphite);
  background: var(--off-white);
  font-feature-settings: "ss01", "cv11";
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  margin: 0;
  color: var(--charcoal);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.display {
  font-size: var(--type-display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--charcoal);
}

h1 { font-size: var(--type-h1); letter-spacing: -0.025em; line-height: 1.04; }
h2 { font-size: var(--type-h2); letter-spacing: -0.02em; line-height: 1.1; }
h3 { font-size: var(--type-h3); font-weight: 500; letter-spacing: -0.005em; line-height: 1.25; }

p { margin: 0 0 var(--s-2); }
p.lead {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.55;
  color: var(--graphite);
  max-width: 56ch;
}

.eyebrow {
  font-size: var(--type-eyebrow);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  font-family: var(--font-primary);
}

.kanji {
  font-family: var(--font-editorial);
  font-weight: 300;
  font-style: italic;
  color: var(--stone);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

section {
  padding-top: var(--s-8);
  padding-bottom: var(--s-8);
}
section.tight { padding-top: var(--s-6); padding-bottom: var(--s-6); }

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s-4);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--s-3) 0;
  background: rgba(251, 251, 250, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med) var(--ease-out), padding var(--t-med) var(--ease-out);
}
.nav.scrolled { border-bottom-color: var(--light-greige); padding: var(--s-2) 0; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--charcoal);
}
.nav-logo svg { width: 28px; height: 28px; flex-shrink: 0; }
.nav-logo .wordmark {
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.nav-links {
  display: flex;
  gap: var(--s-4);
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--graphite);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--t-fast) var(--ease-out);
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a[aria-current="page"] { color: var(--charcoal); }
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--charcoal);
}

.nav-links a.nav-cta {
  font-size: 0.9rem;
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  color: var(--charcoal);
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.nav-links a.nav-cta:hover { background: var(--charcoal); color: var(--warm-white); }

/* Theme toggle (sun/moon button in nav) */
.theme-toggle {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--graphite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.theme-toggle:hover { color: var(--charcoal); background: var(--light-greige); }
.theme-toggle:focus-visible { outline: 2px solid var(--charcoal); outline-offset: 2px; }
.theme-toggle .theme-icon { width: 16px; height: 16px; }
.theme-toggle .theme-icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .theme-icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .theme-icon-sun { display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background var(--t-med) var(--ease-out),
              color var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out),
              transform var(--t-med) var(--ease-out);
}
.btn .arrow {
  display: inline-block;
  transition: transform var(--t-med) var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--charcoal);
  color: var(--warm-white);
  border-color: var(--charcoal);
}
.btn-primary:hover { background: var(--midnight); border-color: var(--midnight); }

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-secondary:hover { background: var(--light-greige); }

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  padding-left: 0; padding-right: 0;
}
.btn-ghost:hover { color: var(--midnight); }

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(8rem, 14vw, 12rem);
  padding-bottom: var(--s-8);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--s-4);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 3.6s var(--ease-in-out) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero-headline { grid-column: 1 / span 11; }
.hero-headline .kanji-inline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  color: var(--stone);
}

.hero-meta {
  grid-column: 1 / span 12;
  margin-top: var(--s-6);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s-4);
  align-items: end;
}
.hero-meta .sub { grid-column: 1 / span 6; }
.hero-meta .cta { grid-column: 8 / span 5; display: flex; gap: var(--s-2); flex-wrap: wrap; }

@media (max-width: 800px) {
  .hero-meta .sub { grid-column: 1 / -1; }
  .hero-meta .cta { grid-column: 1 / -1; margin-top: var(--s-3); }
}

/* ---------- Marquee strip (quiet) ---------- */
.strip {
  border-top: 1px solid var(--light-greige);
  border-bottom: 1px solid var(--light-greige);
  padding: var(--s-3) 0;
  color: var(--stone);
  font-size: var(--type-small);
}
.strip-inner {
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.strip-inner span:first-child { color: var(--graphite); }

/* ---------- "What is mamonaku" editorial section ---------- */
.editorial .grid-12 { align-items: start; }
.editorial .label { grid-column: 1 / span 3; }
.editorial .body { grid-column: 5 / span 7; }
.editorial .body p { font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.45; color: var(--charcoal); margin-bottom: var(--s-3); font-weight: 400; letter-spacing: -0.005em; }
.editorial .body p + p { color: var(--graphite); font-size: clamp(1rem, 1.3vw, 1.125rem); line-height: 1.65; font-weight: 400; }

@media (max-width: 800px) {
  .editorial .label, .editorial .body { grid-column: 1 / -1; }
  .editorial .label { margin-bottom: var(--s-3); }
}

/* ---------- Approach (numbered phases) ---------- */
.approach-head { margin-bottom: var(--s-6); }
.approach-head .grid-12 { align-items: end; }
.approach-head h2 { grid-column: 1 / span 7; }
.approach-head .note { grid-column: 9 / span 4; color: var(--stone); font-size: var(--type-small); }

.phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ash);
}
.phase {
  padding: var(--s-5) var(--s-3);
  border-right: 1px solid var(--light-greige);
}
.phase:first-child { padding-left: 0; }
.phase:last-child { padding-right: 0; border-right: none; }
.phase .num {
  font-family: var(--font-editorial);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--stone);
  letter-spacing: 0.08em;
}
.phase h3 { margin-top: var(--s-3); margin-bottom: var(--s-2); }
.phase p { color: var(--graphite); font-size: 0.95rem; margin: 0; }

@media (max-width: 900px) {
  .phases { grid-template-columns: 1fr 1fr; }
  .phase:nth-child(2) { border-right: none; }
  .phase { border-bottom: 1px solid var(--light-greige); }
}
@media (max-width: 560px) {
  .phases { grid-template-columns: 1fr; }
  .phase { border-right: none; padding-right: 0; }
}

/* ---------- Offerings (home page preview) ---------- */
.offerings { background: var(--light-greige); }
.offerings .grid-12 { row-gap: var(--s-6); }
.offerings .head { grid-column: 1 / span 12; margin-bottom: var(--s-4); }

.offer {
  grid-column: span 6;
  background: var(--off-white);
  padding: var(--s-5) var(--s-5) var(--s-6);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.offer .tag { color: var(--stone); }
.offer h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing: -0.02em; }
.offer p { color: var(--graphite); margin: 0; }
.offer ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ash); }
.offer li {
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--ash);
  font-size: 0.95rem;
  color: var(--graphite);
  display: flex; align-items: baseline; gap: 0.75rem;
}
.offer li::before {
  content: '';
  width: 6px; height: 1px;
  background: var(--stone);
  flex-shrink: 0;
  transform: translateY(-3px);
}
.offer .link { margin-top: auto; }

@media (max-width: 800px) {
  .offer { grid-column: 1 / -1; padding: var(--s-4); }
}

/* ---------- Manifesto / quote moment ---------- */
.manifesto {
  background: var(--midnight);
  color: var(--warm-white);
  padding-top: var(--s-9);
  padding-bottom: var(--s-9);
}
.manifesto .grid-12 { align-items: end; }
.manifesto blockquote {
  grid-column: 2 / span 9;
  margin: 0;
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--warm-white);
}
.manifesto blockquote .em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  color: var(--dusty-blue);
}
.manifesto-body {
  grid-column: 2 / span 8;
  margin-top: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.manifesto-body p {
  margin: 0;
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--dusty-blue);
}

@media (max-width: 800px) {
  .manifesto-body { grid-column: 1 / -1; }
}

/* ---------- Principles ---------- */
.principles .grid-12 { row-gap: var(--s-5); }
.principles .head { grid-column: 1 / span 12; margin-bottom: var(--s-4); }
.principle { grid-column: span 4; }
.principle .index {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  color: var(--stone);
  font-size: 0.875rem;
  margin-bottom: var(--s-2);
}
.principle h3 { margin-bottom: var(--s-2); }
.principle p { color: var(--graphite); margin: 0; font-size: 0.975rem; }

@media (max-width: 800px) {
  .principle { grid-column: 1 / -1; }
}

/* ---------- Closing CTA ---------- */
.closing {
  padding-top: var(--s-9);
  padding-bottom: var(--s-9);
  background: var(--off-white);
  border-top: 1px solid var(--light-greige);
}
.closing .grid-12 { align-items: end; }
.closing h2 { grid-column: 1 / span 8; font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.03em; line-height: 1.0; }
.closing .meta { grid-column: 10 / span 3; text-align: right; }
.closing .meta a {
  display: block;
  color: var(--charcoal);
  border-bottom: 1px solid var(--ash);
  padding: 0.875rem 0;
  font-size: 0.95rem;
  transition: border-color var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.closing .meta a:hover { border-color: var(--charcoal); }
.closing .meta .contact-num {
  display: block;
  color: var(--stone);
  font-size: 0.85rem;
  padding-top: 0.4rem;
}
.closing .meta .contact-icon { width: 18px; height: 18px; }
.closing .actions { grid-column: 1 / span 12; margin-top: var(--s-5); display: flex; gap: var(--s-2); flex-wrap: wrap; }

@media (max-width: 800px) {
  .closing h2 { grid-column: 1 / -1; }
  .closing .meta { grid-column: 1 / -1; text-align: left; margin-top: var(--s-4); }
}

/* ---------- Footer ---------- */
footer {
  background: var(--charcoal);
  color: var(--ash);
  padding: var(--s-6) 0 var(--s-4);
}
footer .grid-12 { row-gap: var(--s-5); }
footer .brand { grid-column: 1 / span 5; }
footer .brand .nav-logo { color: var(--warm-white); margin-bottom: var(--s-3); gap: 0.875rem; }
footer .brand .nav-logo svg { width: 44px; height: 44px; }
footer .brand .nav-logo .wordmark { color: var(--warm-white); font-size: 1.5rem; letter-spacing: 0.03em; }
footer .brand p { max-width: 36ch; color: var(--ash); font-size: 0.95rem; }

footer .col { grid-column: span 2; }
footer .col h4 {
  font-size: var(--type-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: var(--s-3);
  font-weight: 500;
}
footer .col ul { list-style: none; margin: 0; padding: 0; }
footer .col li { margin-bottom: 0.6rem; }
footer .col a {
  color: var(--warm-white);
  font-size: 0.95rem;
  transition: color var(--t-fast) var(--ease-out);
}
footer .col a:hover { color: var(--dusty-blue); }

footer .legal {
  grid-column: 1 / -1;
  border-top: 1px solid var(--deep-slate);
  padding-top: var(--s-3);
  margin-top: var(--s-3);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--stone);
  flex-wrap: wrap;
  gap: var(--s-2);
}

@media (max-width: 800px) {
  footer .brand, footer .col { grid-column: 1 / -1; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding-top: clamp(8rem, 14vw, 12rem);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--light-greige);
}
.page-hero .eyebrow { margin-bottom: var(--s-3); }
.page-hero h1 { grid-column: 1 / span 10; }
.page-hero .lead { grid-column: 1 / span 8; margin-top: var(--s-4); }
@media (max-width: 800px) {
  .page-hero h1, .page-hero .lead { grid-column: 1 / -1; }
}

/* ---------- Services page specific ---------- */
.service-block {
  padding-top: var(--s-7);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--light-greige);
}
.service-block .label { grid-column: 1 / span 3; }
.service-block .label .num {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  color: var(--stone);
  font-size: 0.875rem;
  margin-bottom: var(--s-2);
}
.service-block .body { grid-column: 5 / span 7; }
.service-block .body h2 { margin-bottom: var(--s-3); }
.service-block .body p.lead { margin-bottom: var(--s-4); }
.service-block .body h4 {
  font-size: var(--type-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin: var(--s-4) 0 var(--s-2);
  font-weight: 500;
}
.service-block .body ul {
  margin: 0; padding: 0; list-style: none;
}
.service-block .body li {
  padding: 0.875rem 0;
  border-top: 1px solid var(--light-greige);
  color: var(--graphite);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--s-3);
}
.service-block .body li:last-child { border-bottom: 1px solid var(--light-greige); }
.service-block .body li strong { color: var(--charcoal); font-weight: 500; }

@media (max-width: 800px) {
  .service-block .label, .service-block .body { grid-column: 1 / -1; }
  .service-block .label { margin-bottom: var(--s-3); }
  .service-block .body li { grid-template-columns: 1fr; gap: 0.25rem; }
}

/* ---------- About page specific ---------- */
.manifesto-text .grid-12 { align-items: start; }
.manifesto-text .label { grid-column: 1 / span 3; }
.manifesto-text .body { grid-column: 5 / span 7; }
.manifesto-text .body p {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.55;
  color: var(--graphite);
  margin-bottom: var(--s-3);
}
.manifesto-text .body p strong { color: var(--charcoal); font-weight: 500; }
.manifesto-text .body .pull {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  font-weight: 400;
  margin: var(--s-4) 0;
  padding-left: var(--s-3);
  border-left: 1px solid var(--ash);
}

@media (max-width: 800px) {
  .manifesto-text .label, .manifesto-text .body { grid-column: 1 / -1; }
  .manifesto-text .label { margin-bottom: var(--s-3); }
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Selection ---------- */
::selection {
  background: var(--charcoal);
  color: var(--warm-white);
}

/* ---------- Contact links with icons ---------- */
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
}
