/* ============================================================
   LivMalik · Design System
   A boutique developer brand. Editorial, refined, restrained.
   Built for slow reading and full transparency.
   ============================================================ */

/* ----------------------------------------
   Design Tokens
   ---------------------------------------- */
:root {
  /* Color palette, locked to the brand identity */
  --navy: #091835;
  --navy-deep: #050d1f;
  --navy-mid: #122D62;
  --navy-light: #17387B;
  --sand: #BFB182;
  --sand-light: #d4caa3;
  --sand-pale: #e8e0c4;
  --cream: #F9F7F3;
  --cream-warm: #EBE7D8;
  --cream-pale: #FFF6D7;
  --obsidian: #151515;

  /* Functional tones */
  --line: rgba(9, 24, 53, 0.12);
  --line-soft: rgba(9, 24, 53, 0.06);
  --line-dark: rgba(249, 247, 243, 0.14);
  --muted: rgba(9, 24, 53, 0.62);
  --muted-strong: rgba(9, 24, 53, 0.82);
  --muted-dark: rgba(249, 247, 243, 0.68);

  /* Status tones */
  --status-available: var(--cream);
  --status-reserved: var(--sand);
  --status-sold: var(--navy-deep);

  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Libre Franklin', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-w: 1280px;
  --max-w-narrow: 880px;
  --max-w-prose: 680px;
  --pad: clamp(20px, 4vw, 56px);
  --pad-section: clamp(64px, 9vw, 120px);
  --pad-section-large: clamp(80px, 11vw, 140px);

  /* Easing curves */
  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------
   Reset and Base
   ---------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-feature-settings: "kern" 1, "liga" 1, "dlig" 1;
}

p {
  hanging-punctuation: first last;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--sand);
  color: var(--navy);
}

/* ----------------------------------------
   Live Build Status Strip
   Top edge of every page
   ---------------------------------------- */
.status-strip {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 10px var(--pad);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line-dark);
}
.status-strip .status-ticker {
  display: none;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--sand);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
  animation: status-pulse 2.4s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.status-strip .label { color: var(--sand); }
.status-strip .sep { opacity: 0.4; }
.status-strip a {
  color: var(--cream);
  border-bottom: 1px solid var(--sand);
  padding-bottom: 1px;
}
.status-strip a:hover { color: var(--sand); }

@media (max-width: 720px) {
  .status-strip {
    font-size: 10.5px;
    gap: 0;
    padding: 0;
    overflow: hidden;
    display: block;
  }
  .status-strip .sep { display: none; }
  .status-strip > span {
    display: none;
  }
  .status-strip .status-ticker {
    display: flex;
    white-space: nowrap;
    animation: status-ticker-scroll 18s linear infinite;
    width: max-content;
    padding: 9px 0;
    gap: 40px;
  }
  .status-strip .status-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  @keyframes status-ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
}

/* ----------------------------------------
   Header / Site Navigation
   ---------------------------------------- */
header.site {
  background: rgba(249, 247, 243, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px var(--pad);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease, border-color 0.4s ease;
}

header.site.is-scrolled {
  box-shadow: 0 4px 30px rgba(9, 24, 53, 0.06);
}

@media (max-width: 980px) {
  header.site {
    padding: 14px var(--pad);
  }
  header.site.is-scrolled {
    background: rgba(249, 247, 243, 0.55);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom-color: rgba(9, 24, 53, 0.06);
    box-shadow: 0 4px 30px rgba(9, 24, 53, 0.08);
  }
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.logo {
  width: 128px;
  flex-shrink: 0;
}

.logo svg { width: 100%; height: auto; }

@media (max-width: 480px) {
  .logo { width: 72px; }
}
@media (min-width: 481px) and (max-width: 980px) {
  .logo { width: 88px; }
}

nav.main ul {
  display: flex;
  gap: 36px;
  list-style: none;
}

nav.main a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--navy);
  position: relative;
  transition: color 0.2s;
}

nav.main a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sand);
  transition: width 0.4s var(--ease-out-soft);
}

nav.main a:hover::after,
nav.main a.is-active::after {
  width: 100%;
}

nav.main a.is-active {
  color: var(--navy-mid);
}

.header-cta {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 2px;
  letter-spacing: 0.02em;
  transition: all 0.25s var(--ease-out-soft);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn-sand {
  background: var(--sand);
  color: var(--navy);
  border-color: var(--sand);
}
.btn-sand:hover {
  background: var(--sand-light);
  border-color: var(--sand-light);
}

.btn-ghost-light {
  background: rgba(249, 247, 243, 0.06);
  color: var(--cream);
  border: 1.5px solid rgba(249, 247, 243, 0.6);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

@media (max-width: 980px) {
  nav.main, .header-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 100;
  padding: 24px var(--pad) 56px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
}
.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.mobile-nav-close {
  width: 40px;
  height: 40px;
  font-size: 28px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-nav a {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.mobile-nav-cta {
  margin-top: auto;
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.mobile-nav-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 22px;
  font-size: 15px;
  color: var(--cream);
}
.mobile-nav-cta .btn.btn-primary {
  background: var(--navy);
  color: #FFFFFF;
}
.mobile-nav-cta .btn.btn-ghost {
  color: var(--navy);
}

/* ----------------------------------------
   Section primitives
   ---------------------------------------- */
section {
  padding: var(--pad-section) var(--pad);
}

section.large {
  padding: var(--pad-section-large) var(--pad);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.container-narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}

.container-prose {
  max-width: var(--max-w-prose);
  margin: 0 auto;
}

/* Eyebrow label */
.eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy-mid);
  margin-bottom: 22px;
  display: inline-block;
  position: relative;
  padding-left: 30px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--sand);
}
.eyebrow.center {
  padding-left: 30px;
  padding-right: 30px;
}
.eyebrow.center::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--sand);
}
.eyebrow.on-dark {
  color: var(--sand);
}
.eyebrow.on-dark::before, .eyebrow.on-dark::after {
  background: var(--sand);
}

/* Section title */
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 5.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  margin-bottom: 28px;
  max-width: 800px;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--navy-mid);
}
.section-title.on-dark {
  color: var(--cream);
}
.section-title.on-dark em {
  color: var(--sand-light);
}

/* Lede */
.lede {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--muted);
  max-width: 640px;
  line-height: 1.55;
}
.lede.on-dark {
  color: var(--muted-dark);
}

/* Body prose */
.prose {
  max-width: var(--max-w-prose);
}
.prose p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted-strong);
  margin-bottom: 1.4em;
}
.prose p:last-child { margin-bottom: 0; }
.prose h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-top: 2.4em;
  margin-bottom: 0.7em;
  font-variation-settings: "opsz" 144;
}
.prose h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.25;
  color: var(--navy);
  margin-top: 1.8em;
  margin-bottom: 0.5em;
  font-variation-settings: "opsz" 144;
}
.prose em {
  font-style: italic;
  color: var(--navy-mid);
}
.prose strong {
  font-weight: 600;
  color: var(--navy);
}
.prose ul, .prose ol {
  margin: 0 0 1.4em 1.4em;
  padding: 0;
}
.prose li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted-strong);
  margin-bottom: 0.5em;
}

/* Page hero header (used on inner pages) */
.page-hero {
  background: var(--cream);
  padding: clamp(80px, 10vw, 140px) var(--pad) clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.022em;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: 32px;
  max-width: 14ch;
}
.page-hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--navy-mid);
}
.page-hero-sub {
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--muted);
  max-width: 600px;
  line-height: 1.55;
}

/* ----------------------------------------
   View-all / inline link
   ---------------------------------------- */
.view-all {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s var(--ease-out-soft);
}
.view-all:hover { gap: 14px; }

.view-all.on-dark {
  color: var(--sand);
  border-bottom-color: var(--sand);
}
.view-all.on-dark:hover {
  color: var(--cream);
}

/* ----------------------------------------
   Image-render tag (for visualisations)
   ---------------------------------------- */
.render-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(9, 24, 53, 0.82);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 1px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
}
.render-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sand);
  border-radius: 50%;
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
footer.site {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 72px var(--pad) 32px;
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .logo {
  width: 130px;
  margin-bottom: 24px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sand);
  font-size: 18px;
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144;
}
.footer-address {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted-dark);
  max-width: 280px;
}
.footer-address a {
  color: inherit;
  opacity: 0.92;
  transition: opacity 0.2s;
}
.footer-address a:hover {
  opacity: 1;
  color: var(--sand);
}
.footer-col h5 {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a {
  color: var(--cream);
  font-size: 14px;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.footer-col a:hover {
  opacity: 1;
  color: var(--sand);
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
  color: var(--muted-dark);
}
.footer-bottom a {
  opacity: 0.65;
  transition: opacity 0.2s;
}
.footer-bottom a:hover { opacity: 1; }

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  footer.site { padding: 48px var(--pad) 24px; }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 12px;
    padding-bottom: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }
  .footer-brand .logo { width: 90px; margin-bottom: 14px; }
  .footer-tagline { font-size: 15px; margin-bottom: 10px; }
  .footer-address { font-size: 12px; }
  .footer-col h5 { font-size: 9.5px; margin-bottom: 12px; }
  .footer-col li { margin-bottom: 7px; }
  .footer-col a { font-size: 12px; }
  .footer-bottom {
    padding-top: 20px;
    font-size: 11px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ----------------------------------------
   Inline article images with captions
   ---------------------------------------- */
.prose-image {
  margin: 40px 0;
}
.prose-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.prose-image figcaption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 10px;
  font-variation-settings: "opsz" 144;
}

/* ----------------------------------------
   Verify cards
   ---------------------------------------- */
.verify-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}
.verify-card {
  border: 1px solid var(--line);
  padding: 20px 24px;
  border-radius: 2px;
  transition: border-color 0.2s;
}
.verify-card:hover {
  border-color: var(--sand);
}
.verify-card-registry {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 6px;
}
.verify-card-check {
  font-size: 15px;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 10px;
}
.verify-card a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.verify-card a:hover {
  opacity: 1;
  color: var(--sand);
}
@media (max-width: 480px) {
  .verify-card { padding: 16px 18px; }
  .verify-card-check { font-size: 14px; }
  .prose-image { margin: 28px 0; }
  .prose-image figcaption { font-size: 12.5px; }
}

/* ----------------------------------------
   Blog posts
   ---------------------------------------- */
.blog-post {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.blog-post:first-child {
  padding-top: 0;
}
.blog-post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.blog-post-tag {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
}
.blog-post-read,
.blog-post-date {
  font-size: 13px;
  color: var(--muted);
}
.blog-post-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 3.2vw, 38px);
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.012em;
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144;
}
.blog-post-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-strong);
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .blog-post { padding: 36px 0; }
  .blog-post-meta { gap: 10px; margin-bottom: 14px; }
  .blog-post-title { font-size: 20px; line-height: 1.25; margin-bottom: 14px; }
  .blog-post-content p { font-size: 14px; line-height: 1.65; }
}

/* ----------------------------------------
   WhatsApp floating button
   ---------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  z-index: 90;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}
.whatsapp-float svg { width: 30px; height: 30px; }

/* ----------------------------------------
   Motion System
   ---------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1s var(--ease-out-soft),
    transform 1s var(--ease-out-soft);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--ease-out-soft),
    transform 0.9s var(--ease-out-soft);
}
.reveal-stagger.in-view > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
.reveal-stagger.in-view > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 120ms; }
.reveal-stagger.in-view > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 240ms; }
.reveal-stagger.in-view > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 360ms; }
.reveal-stagger.in-view > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 480ms; }
.reveal-stagger.in-view > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 600ms; }

/* Entrance animations for hero */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ----------------------------------------
   Utilities
   ---------------------------------------- */
.bg-cream { background: var(--cream); }
.bg-cream-warm { background: var(--cream-warm); }
.bg-navy { background: var(--navy); color: var(--cream); }
.bg-navy-deep { background: var(--navy-deep); color: var(--cream); }

.text-center { text-align: center; }
.text-sand { color: var(--sand); }

.mt-section { margin-top: var(--pad-section); }
.mb-section { margin-bottom: var(--pad-section); }
