/* Manrope = clean, medium-weight workhorse for body + general headings;
   Space Grotesk = distinctive-but-clean display for the hero + special moments. */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #182430;
  --muted: #5d6b78;
  --paper: #fbf9f4;
  --surface: #f1efe7;
  --surface-2: #e6f0f4;
  --line: #e4ded2;
  --accent: #0d87c2;
  --accent-dark: #086094;
  --accent-soft: #e6f3fa;
  --sun: #e8a23d;
  --max: 1180px;
  --radius: 16px;
  --shadow: 0 22px 55px rgba(23, 55, 78, 0.12);
  --shadow-sm: 0 8px 24px rgba(23, 55, 78, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  /* Faint flowing wave-line pattern — organic, on-theme, tiled at native size */
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='118' height='34'%3E%3Cpath d='M0%2017%20C14%209%2045%209%2059%2017%20C73%2025%20104%2025%20118%2017' fill='none' stroke='%230d87c2' stroke-width='1.4' opacity='0.05'/%3E%3C/svg%3E") 0 0 / 118px 34px repeat,
    var(--paper);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Paper grain — fine film texture, tiled at native size so it never pixelates */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 40; pointer-events: none; opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px; background-repeat: repeat;
}
a { color: inherit; }
img { display: block; width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.1;
  text-wrap: balance;
}
p { text-wrap: pretty; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.skip-link { position: fixed; top: 8px; left: 8px; z-index: 50; padding: 12px 16px; background: var(--ink); color: #fff; border-radius: 10px; text-decoration: none; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.eyebrow { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 16px; color: var(--accent-dark); font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 26px; height: 2px; border-radius: 2px; background: var(--accent); }
.eyebrow-light { color: rgba(255, 255, 255, 0.82); }
.eyebrow-light::before { background: rgba(255, 255, 255, 0.6); }

/* Buttons */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 27px;
  border: 1px solid var(--accent); border-radius: 40px;
  background: var(--accent); color: #fff;
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; text-decoration: none; white-space: nowrap;
  box-shadow: 0 12px 26px rgba(13, 135, 194, 0.24);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, box-shadow 0.22s ease;
}
.button:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 18px 34px rgba(8, 96, 148, 0.3); }
.button:active { transform: translateY(-1px); }
.button-ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none; }
.button-ghost:hover { background: var(--paper); border-color: var(--muted); color: var(--ink); }
.button-light { background: #fff; border-color: #fff; color: var(--accent-dark); box-shadow: 0 14px 32px rgba(4, 40, 60, 0.28); }
.button-light:hover { background: #f0f8fc; color: var(--accent-dark); }
.text-link { color: var(--accent-dark); font-weight: 700; text-decoration: none; border-bottom: 2px solid rgba(13, 135, 194, 0.3); transition: border-color 0.2s ease, color 0.2s ease; }
.text-link:hover { border-color: var(--accent-dark); }

/* Header */
.site-header {
  height: 76px; padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px;
  position: sticky; top: 0; z-index: 20;
  background: rgba(251, 249, 244, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px) saturate(1.2);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { flex: none; width: 52px; height: 52px; object-fit: cover; object-position: center; border-radius: 12px; mix-blend-mode: multiply; }
.brand-name { display: grid; gap: 1px; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 18.5px; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }
.brand-name small { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
nav { display: flex; justify-content: center; gap: 36px; }
nav a { font-size: 15px; font-weight: 600; color: var(--muted); text-decoration: none; transition: color 0.2s ease; }
nav a:hover { color: var(--ink); }
.header-call { display: grid; gap: 1px; text-align: right; text-decoration: none; }
.header-call span { color: var(--muted); font-size: 12px; font-weight: 600; }
.header-call strong { color: var(--ink); font-size: 17px; font-variant-numeric: tabular-nums; }
.header-call:hover strong { color: var(--accent-dark); }

/* Hero */
.hero {
  position: relative;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(46px, 8vh, 92px) 24px clamp(56px, 9vh, 104px);
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  column-gap: clamp(40px, 6vw, 88px); align-items: center;
}
.blob { position: absolute; z-index: -1; border-radius: 50%; filter: blur(6px); pointer-events: none; }
.blob-a { width: 460px; height: 460px; top: -8%; left: -18%; background: radial-gradient(circle at 40% 40%, rgba(13, 135, 194, 0.18), transparent 65%); animation: drift 16s ease-in-out infinite; }
.blob-b { width: 360px; height: 360px; right: -10%; bottom: -12%; background: radial-gradient(circle at 60% 40%, rgba(232, 162, 61, 0.16), transparent 65%); animation: drift 20s ease-in-out infinite reverse; }
.hero-copy { max-width: 620px; }
h1 {
  margin-bottom: 24px; font-size: clamp(42px, 5.6vw, 70px);
  font-family: 'Space Grotesk', 'Manrope', sans-serif; font-weight: 600; letter-spacing: -0.025em;
  line-height: 1.05;
}
h1 em {
  position: relative; font-style: normal; font-weight: 700; color: var(--accent);
  padding-bottom: 0.06em;
}
h1 em::after {
  content: ''; position: absolute; left: -2%; right: -2%; bottom: -0.06em; height: 0.34em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 22'%3E%3Cpath d='M5 14 Q 45 4 82 11 T 158 10 Q 205 6 242 12 T 296 10' fill='none' stroke='%23e8a23d' stroke-width='4.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.hero-brand { display: inline-flex; align-items: baseline; gap: 8px; margin-bottom: 14px; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: clamp(19px, 2vw, 23px); letter-spacing: -0.02em; color: var(--ink); }
.hero-brand span { font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-dark); }
.hero-intro { max-width: 520px; margin-bottom: 34px; color: var(--muted); font-size: clamp(17px, 1.4vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-trust { list-style: none; margin: 36px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px 24px; }
.hero-trust li { position: relative; padding-left: 25px; color: var(--ink); font-size: 14px; font-weight: 600; }
.hero-trust li::before { content: ''; position: absolute; left: 0; top: 50%; width: 16px; height: 16px; transform: translateY(-50%); border-radius: 50%; background: var(--accent-soft); box-shadow: inset 0 0 0 2px var(--accent); }
.hero-trust li::after { content: ''; position: absolute; left: 5px; top: 50%; width: 4px; height: 8px; margin-top: -1px; transform: translateY(-60%) rotate(45deg); border: solid var(--accent-dark); border-width: 0 2px 2px 0; }
.hero-media {
  position: relative; margin: 0; height: min(60vh, 580px);
  border-radius: 26px 26px 52px 26px;
  overflow: hidden; background: var(--surface-2);
  border: 1px solid var(--line);
  box-shadow: 18px 20px 0 rgba(13, 135, 194, 0.12), var(--shadow);
  transform: rotate(-1.2deg);
}
.hero-media img { height: 100%; object-fit: cover; object-position: 58% center; transform: scale(1.08); will-change: transform; }
.hero-drip {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  padding: 8px 15px; border-radius: 30px; background: rgba(251, 249, 244, 0.92);
  color: var(--accent-dark); font-size: 12px; font-weight: 700; letter-spacing: 0.03em;
  backdrop-filter: blur(6px); box-shadow: var(--shadow-sm); transform: rotate(1.2deg);
}

/* Services */
.services { max-width: var(--max); margin: 0 auto; padding: clamp(64px, 9vw, 110px) 24px; }
.section-heading { max-width: 720px; margin-bottom: 54px; }
.section-heading h2 { margin-bottom: 20px; font-size: clamp(34px, 4.4vw, 54px); }
.section-heading > p:last-child { max-width: 600px; margin: 0; color: var(--muted); font-size: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(22px, 2.6vw, 34px); }
.service-card {
  --tilt: 0deg;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.7s ease;
}
/* Stagger + tilt the grid so cards feel hand-placed, not stamped out */
.service-grid .service-card:nth-child(even) { margin-top: 34px; }
.service-grid .service-card:nth-child(1) { --tilt: -0.5deg; }
.service-grid .service-card:nth-child(2) { --tilt: 0.6deg; }
.service-grid .service-card:nth-child(3) { --tilt: 0.4deg; }
.service-grid .service-card:nth-child(4) { --tilt: -0.6deg; }
.service-image { height: 236px; overflow: hidden; background: var(--surface); border-bottom: 1px solid var(--line); }
.service-image img { height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.service-card:hover .service-image img { transform: scale(1.06); }
.service-copy { padding: 28px clamp(22px, 2.4vw, 32px) 32px; }
.service-copy h3 { margin-bottom: 12px; font-size: 24px; font-weight: 700; }
.service-copy p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* Feature / before-after */
.feature-work {
  max-width: var(--max); margin: 0 auto; padding: clamp(20px, 3vw, 40px) 24px clamp(64px, 9vw, 110px);
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(44px, 7vw, 92px); align-items: center;
}
.feature-photo { position: relative; height: 580px; border-radius: 52px 26px 26px 26px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: -20px 20px 0 rgba(232, 162, 61, 0.18), var(--shadow); transform: rotate(1deg); }
.feature-photo img { height: 100%; object-fit: cover; }
.feature-tag { position: absolute; left: 20px; top: 20px; padding: 9px 15px; border-radius: 30px; background: var(--sun); color: #3a2606; font-size: 12px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; box-shadow: var(--shadow-sm); transform: rotate(-2deg); animation: float 5s ease-in-out infinite; }
.feature-copy h2 { margin-bottom: 20px; font-size: clamp(31px, 4.2vw, 48px); }
.feature-copy > p:not(.eyebrow) { max-width: 520px; color: var(--muted); font-size: 18px; }
.commitments { margin-top: 32px; display: grid; gap: 2px; }
.commitments div { padding: 18px 0; display: grid; grid-template-columns: 190px 1fr; gap: 22px; border-top: 1px solid var(--line); }
.commitments div:last-child { border-bottom: 1px solid var(--line); }
.commitments strong { font-size: 15px; }
.commitments span { color: var(--muted); font-size: 15px; }

/* Process — the water band */
.process { position: relative; padding: clamp(96px, 12vw, 150px) 24px clamp(96px, 12vw, 150px); background: linear-gradient(155deg, #07557f, #0d87c2 58%, #3aa9d4); color: #fff; }
.wave { position: absolute; left: 0; width: 100%; height: clamp(48px, 6vw, 84px); display: block; }
.wave path { fill: var(--paper); }
.wave-top { top: -1px; }
.wave-bottom { bottom: -1px; }
.process-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(48px, 8vw, 110px); }
.process-heading { align-self: start; position: sticky; top: 110px; }
.process-heading h2 { margin-bottom: 18px; font-size: clamp(36px, 4.8vw, 58px); }
.process-heading p { max-width: 400px; color: rgba(255, 255, 255, 0.82); font-size: 18px; }
.process ol { margin: 0; padding: 0; list-style: none; counter-reset: step; }
.process li { padding: 28px 0; display: grid; grid-template-columns: 56px 1fr; gap: 24px; border-top: 1px solid rgba(255, 255, 255, 0.22); align-items: start; }
.process li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
.process li > span { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: rgba(255, 255, 255, 0.9); font-size: 24px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.process h3 { margin-bottom: 8px; font-size: 23px; font-weight: 700; }
.process li p { max-width: 520px; margin: 0; color: rgba(255, 255, 255, 0.84); font-size: 16px; }

/* About */
.about {
  max-width: var(--max); margin: 0 auto; padding: clamp(72px, 10vw, 130px) 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 7vw, 92px); align-items: center;
}
.about-media { height: 560px; border-radius: 26px 52px 26px 26px; overflow: hidden; border: 1px solid var(--line); box-shadow: 20px -16px 0 rgba(13, 135, 194, 0.13), var(--shadow); transform: rotate(-1deg); }
.about-media img { height: 100%; object-fit: cover; object-position: center 38%; transform: scale(1.06); will-change: transform; }
.about-copy h2 { margin-bottom: 22px; font-size: clamp(31px, 4.2vw, 48px); }
.about-copy > p:not(.eyebrow) { max-width: 520px; color: var(--muted); font-size: 18px; }
.about-copy .text-link { display: inline-block; margin-top: 14px; }

/* Final CTA */
.cta { max-width: var(--max); margin: 0 auto clamp(72px, 9vw, 110px); padding: 0 24px; }
.cta-inner {
  position: relative; overflow: hidden;
  padding: clamp(52px, 7vw, 92px) clamp(32px, 6vw, 80px);
  border-radius: 26px;
  background: radial-gradient(circle at 85% 12%, rgba(58, 169, 214, 0.6), transparent 48%), radial-gradient(circle at 8% 90%, rgba(232, 162, 61, 0.28), transparent 42%), linear-gradient(135deg, #06456a, #0d87c2);
  color: #fff; text-align: center;
}
.cta-inner h2 { max-width: 760px; margin: 0 auto 16px; font-size: clamp(36px, 5.2vw, 62px); }
.cta-sub { max-width: 540px; margin: 0 auto 34px; color: rgba(255, 255, 255, 0.88); font-size: 18px; }
.cta-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px; }
.cta-link { color: #fff; font-weight: 700; text-decoration: none; border-bottom: 2px solid rgba(255, 255, 255, 0.5); transition: border-color 0.2s ease; }
.cta-link:hover { border-color: #fff; }

/* Footer */
footer { max-width: var(--max); margin: 0 auto; padding: 56px 24px clamp(90px, 10vw, 80px); display: grid; grid-template-columns: 1.7fr 0.8fr 1fr; gap: 48px; color: var(--muted); font-size: 15px; border-top: 1px solid var(--line); }
.footer-brand img { width: 190px; margin-bottom: 16px; mix-blend-mode: multiply; }
.footer-brand p { max-width: 300px; margin: 0; }
footer > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 8px; }
footer strong { margin-bottom: 6px; color: var(--ink); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
footer a { text-decoration: none; }
footer a:hover { color: var(--accent-dark); }
footer small { grid-column: 1 / -1; padding-top: 28px; margin-top: 8px; border-top: 1px solid var(--line); }

/* Sticky mobile call */
.mobile-call { display: none; }

/* Reveal — staggered with a little tilt so it feels hand-placed */
[data-reveal] { opacity: 0; transform: translateY(30px) rotate(-0.6deg); transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0) rotate(0); }
/* Service cards keep their resting tilt through reveal + hover */
.service-grid .service-card[data-reveal] { transform: translateY(30px) rotate(var(--tilt)); }
.service-grid .service-card[data-reveal].is-visible { transform: translateY(0) rotate(var(--tilt)); }
.service-grid .service-card[data-reveal]:hover { transform: translateY(-7px) rotate(0deg); box-shadow: 10px 12px 0 rgba(13, 135, 194, 0.10), var(--shadow); border-color: var(--accent-soft); }
.service-grid .service-card:nth-child(2) { transition-delay: 0.08s; }
.service-grid .service-card:nth-child(3) { transition-delay: 0.04s; }
.service-grid .service-card:nth-child(4) { transition-delay: 0.12s; }
.process li:nth-child(2) { transition-delay: 0.07s; }
.process li:nth-child(3) { transition-delay: 0.14s; }
.process li:nth-child(4) { transition-delay: 0.21s; }
.reveal { animation: reveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) both; }
.delay-one { animation-delay: 0.14s; }
@keyframes reveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-7px) rotate(-2deg); } }
@keyframes drift { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(24px, -18px) scale(1.06); } }

/* Dark mode */
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #eaf1f6; --muted: #a2b1bd; --paper: #101a22; --surface: #182631;
    --surface-2: #143140; --line: #27353f; --accent-soft: #143140;
    --shadow: 0 22px 55px rgba(0, 0, 0, 0.42); --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.32);
  }
  body {
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='118' height='34'%3E%3Cpath d='M0%2017%20C14%209%2045%209%2059%2017%20C73%2025%20104%2025%20118%2017' fill='none' stroke='%2358b4e0' stroke-width='1.4' opacity='0.07'/%3E%3C/svg%3E") 0 0 / 118px 34px repeat,
      var(--paper);
  }
  body::before { opacity: 0.04; }
  .site-header { background: rgba(16, 26, 34, 0.82); }
  .brand img, .footer-brand img { mix-blend-mode: screen; filter: brightness(1.15); }
  .button-ghost { color: var(--ink); }
  .service-card { background: var(--surface); }
  .hero-drip { background: rgba(16, 26, 34, 0.9); color: #79c6ec; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; row-gap: 38px; padding-top: 40px; }
  .hero-media { height: 48vh; min-height: 320px; order: -1; transform: rotate(-1deg); }
  .feature-work { grid-template-columns: 1fr; }
  .process-inner { grid-template-columns: 1fr; }
  .process-heading { position: static; }
  .about { grid-template-columns: 1fr; }
  .about-media { order: -1; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .site-header { height: 66px; padding: 0 16px; grid-template-columns: 1fr auto; gap: 16px; }
  .brand { gap: 10px; }
  .brand img { width: 42px; height: 42px; }
  .brand-name { font-size: 15.5px; }
  .brand-name small { font-size: 9px; }
  nav, .header-call span { display: none; }
  .header-call strong { font-size: 15px; }
  .hero { padding: 26px 16px 48px; }
  .hero-media { transform: none; border-radius: 22px 22px 40px 22px; box-shadow: var(--shadow); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .services, .about { padding-left: 16px; padding-right: 16px; }
  .feature-work { padding: 0 16px 64px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid .service-card:nth-child(even) { margin-top: 0; }
  .service-grid .service-card { --tilt: 0deg; }
  .feature-photo { height: 420px; transform: none; border-radius: 40px 22px 22px 22px; box-shadow: var(--shadow); }
  .about-media { height: 380px; transform: none; border-radius: 22px 40px 22px 22px; box-shadow: var(--shadow); }
  .commitments div { grid-template-columns: 1fr; gap: 4px; }
  .process { padding-left: 16px; padding-right: 16px; }
  .cta { padding: 0 16px; }
  .cta-inner { padding: 48px 24px; border-radius: 30px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .button { width: 100%; }
  footer { padding-left: 16px; padding-right: 16px; grid-template-columns: 1fr; gap: 32px; padding-bottom: 100px; }
  .mobile-call {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    position: fixed; inset: auto 12px 12px; z-index: 15; min-height: 56px; padding: 0 20px;
    border-radius: 40px; background: var(--accent); color: #fff; text-decoration: none;
    box-shadow: 0 14px 30px rgba(7, 57, 78, 0.38);
  }
  .mobile-call span { font-size: 13px; font-weight: 600; opacity: 0.9; }
  .mobile-call strong { font-size: 16px; font-variant-numeric: tabular-nums; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .feature-tag, .blob { animation: none; }
  .button, .service-image img, [data-reveal] { transition: none; }
  [data-reveal] { opacity: 1; transform: none; }
  .service-grid .service-card[data-reveal],
  .service-grid .service-card[data-reveal].is-visible { transform: rotate(var(--tilt)); }
  .hero-media img, .about-media img { transform: scale(1.04); }
}
