/* ══════════════════════════════════
   Analog Precision — Standalone
   Serif + Caveat. Warm off-white. Scattered post-its.
   Torn edges. Tape strips. Paper grain. Handmade meets precise.
   ══════════════════════════════════ */

:root {
  --bg: #FAFAF8;
  --bg-alt: #F2F1EE;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --accent: #C8102E;
  --accent-dark: #A00D24;
  --accent-light: #FCE8EB;
  --hotpink: #FF2D6B;
  --orange: #FF8C42;
  --yellow: #FFE566;
  --green-note: #7ED39C;
  --pink-note: #FF6B9D;
  --orange-note: #FFB347;
  --border: #E5E5E3;
  --white: #FFFFFF;

  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --hand: 'Caveat', cursive;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Base ── */

body {
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* Paper grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

::selection { background: var(--accent-light); color: var(--accent); }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.1; }

img { display: block; max-width: 100%; }

.reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════
   Switcher (same as Methodical)
   ══════════════════════════════════ */

.switcher { position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 10000; font-family: var(--sans); }
.switcher-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--text); color: var(--bg); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; box-shadow: 0 2px 12px rgba(0,0,0,0.15); }
.switcher-panel { position: absolute; bottom: calc(100% + 0.75rem); left: 0; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 0.75rem; min-width: 180px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity 200ms ease, transform 200ms ease; display: flex; flex-direction: column; gap: 0.25rem; }
.switcher-panel.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.switcher-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); padding: 0.25rem 0.5rem; }
.switcher-option { display: block; text-decoration: none; padding: 0.5rem 0.75rem; border-radius: 4px; font-size: 13px; font-weight: 500; color: var(--text); transition: background 150ms ease; }
.switcher-option:hover { background: var(--bg-alt); }
.switcher-option.is-active { background: var(--text); color: var(--bg); }

/* ══════════════════════════════════
   Navigation
   ══════════════════════════════════ */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 4.5rem; z-index: 100;
  transition: background 300ms ease, border-color 300ms ease;
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: rgba(250, 250, 248, 0.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}

.nav-logo {
  font-family: var(--serif); font-size: 1.3rem; color: var(--text);
  text-decoration: none; letter-spacing: -0.02em;
}

.logo-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-left: 2px; vertical-align: super;
}

.nav-links { display: flex; gap: 2.5rem; }

.nav-links a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.02em;
  text-transform: uppercase; color: var(--text-muted); text-decoration: none;
  position: relative; transition: color 200ms ease;
}

.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 50%; width: 0; height: 1.5px;
  background: var(--accent); transition: width 300ms var(--ease), left 300ms var(--ease);
}

.nav-links a:hover::after { width: 100%; left: 0; }
.nav-links a:hover { color: var(--text); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; cursor: pointer; border: none; background: none; }
.nav-toggle span { display: block; height: 1.5px; width: 100%; background: var(--text); transition: transform 300ms var(--ease), opacity 200ms ease; transform-origin: center; }

.mobile-overlay {
  position: fixed; inset: 0; z-index: 99; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 300ms var(--ease);
}
.mobile-overlay.is-open { opacity: 1; pointer-events: auto; }
.mobile-nav-links { text-align: center; list-style: none; }
.mobile-nav-links li { margin-bottom: 2rem; }
.mobile-nav-links a { font-family: var(--serif); font-size: 2.5rem; color: var(--text); text-decoration: none; }
.mobile-nav-links a:hover { color: var(--accent); }

/* ══════════════════════════════════
   Hero
   ══════════════════════════════════ */

.hero {
  min-height: 100svh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: 4.5rem;
}

.hero-content {
  position: relative; z-index: 1; text-align: center;
  max-width: 1200px; margin: 0 auto; padding: 4rem 2rem;
}

.hero-heading {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(3.5rem, 2rem + 7vw, 8rem);
  line-height: 1.0; letter-spacing: -0.04em; color: var(--text);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.15rem; color: var(--text-muted); line-height: 1.6;
  max-width: 42ch; margin: 0 auto 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); z-index: 1;
}

.scroll-line {
  display: block; width: 1px; height: 48px; background: var(--text); opacity: 0.25;
  animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.15; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 0.3; }
}

/* Scatter notes */
.hero-scatter, .contact-scatter {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}

.scatter-note {
  position: absolute; left: var(--x); top: var(--y);
  width: clamp(48px, 6vw, 85px); aspect-ratio: 1;
  transform: rotate(var(--rot)); opacity: 0;
  animation: scatter-in 600ms var(--ease) var(--d) forwards;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07); will-change: transform;
}

.scatter-note--green { background: var(--green-note); }
.scatter-note--pink { background: var(--pink-note); }
.scatter-note--orange { background: var(--orange-note); }
.scatter-note--yellow { background: var(--yellow); }

@keyframes scatter-in {
  0% { opacity: 0; transform: rotate(var(--rot, 0deg)) scale(0.5) translateY(-30px); }
  100% { opacity: 0.65; transform: rotate(var(--rot, 0deg)) scale(1) translateY(0); }
}

/* ── Buttons ── */

.btn {
  display: inline-block; padding: 0.9rem 2rem; font-family: var(--sans);
  font-size: 0.9rem; font-weight: 600; border-radius: 4px; text-decoration: none;
  border: none; cursor: pointer; transition: background 200ms ease, transform 150ms ease, box-shadow 200ms ease;
  background: var(--accent); color: var(--white);
}

.btn:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(45,90,61,0.2); }

.btn--ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn--ghost:hover { background: var(--bg-alt); border-color: var(--text-muted); box-shadow: none; }

/* ══════════════════════════════════
   Shared section styles
   ══════════════════════════════════ */

.section-label {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent); margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 1.5rem + 2.5vw, 3.2rem);
  font-weight: 400; letter-spacing: -0.02em; line-height: 1.1;
  color: var(--text); margin-bottom: 1rem; max-width: 22ch;
}

.section-intro {
  font-size: 1.1rem; color: var(--text-muted); line-height: 1.7;
  max-width: 50ch; margin-bottom: 3.5rem;
}

.handwritten { font-family: var(--hand); font-weight: 700; letter-spacing: 0; }

.display-heading {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 1.2rem + 3.5vw, 4rem);
  line-height: 1.12; letter-spacing: -0.02em; color: var(--text);
  max-width: 100%;
}

.highlight {
  background-image: linear-gradient(transparent 60%, rgba(200, 16, 46, 0.25) 60%, rgba(200, 16, 46, 0.25) 88%, transparent 88%);
  background-size: 0% 100%; background-repeat: no-repeat;
  transition: background-size 0.8s var(--ease);
}

.highlight.is-visible { background-size: 100% 100%; }

/* ══════════════════════════════════
   About
   ══════════════════════════════════ */

.about {
  padding: clamp(5rem, 4rem + 6vw, 10rem) 2rem;
}

.about-inner { max-width: 1200px; margin: 0 auto; }

.about-top { margin-bottom: clamp(3rem, 2rem + 3vw, 5rem); }

.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}

.about-image { border-radius: 4px; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.about-text p {
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; max-width: 50ch;
}

.about-details {
  display: flex; gap: 2.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border);
}

.about-detail { display: flex; flex-direction: column; gap: 0.25rem; }

.detail-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted);
}

.detail-value { font-size: 0.95rem; font-weight: 500; color: var(--text); }

/* ══════════════════════════════════
   Manifesto
   ══════════════════════════════════ */

.manifesto {
  padding: clamp(5rem, 4rem + 6vw, 10rem) 2rem;
  background: var(--bg-alt);
  position: relative;
}

/* Torn top edge */
.manifesto::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 20px;
  background: var(--bg);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 24' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1200v12c-60 8-120-4-180 6s-120-6-180 4-120 8-180-2-120-8-180 2-120 6-180-4S120 24 60 18 0 24 0 18Z' fill='%23fff'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 24' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1200v12c-60 8-120-4-180 6s-120-6-180 4-120 8-180-2-120-8-180 2-120 6-180-4S120 24 60 18 0 24 0 18Z' fill='%23fff'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%; z-index: 1;
}

.manifesto::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 20px;
  background: var(--bg);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 24' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1200v12c-60 8-120-4-180 6s-120-6-180 4-120 8-180-2-120-8-180 2-120 6-180-4S120 24 60 18 0 24 0 18Z' fill='%23fff'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 24' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1200v12c-60 8-120-4-180 6s-120-6-180 4-120 8-180-2-120-8-180 2-120 6-180-4S120 24 60 18 0 24 0 18Z' fill='%23fff'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%; transform: scaleY(-1); z-index: 1;
}

.manifesto-inner { max-width: 800px; margin: 0 auto; text-align: center; }

.manifesto-label {
  font-family: var(--hand); font-size: 1.3rem; font-weight: 600;
  color: var(--accent); margin-bottom: 2rem;
}

.manifesto-text {
  font-family: var(--serif); font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  font-weight: 400; font-style: italic; line-height: 1.5; color: var(--text);
}

.manifesto-text em {
  font-style: normal; background-image: linear-gradient(transparent 60%, var(--yellow) 60%, var(--yellow) 88%, transparent 88%);
}

.manifesto-accent {
  display: block; margin-top: 1.5rem; font-style: normal;
  font-family: var(--hand); font-size: 1.5em; color: var(--accent);
}

/* ══════════════════════════════════
   Approach
   ══════════════════════════════════ */

.approach { padding: clamp(5rem, 4rem + 6vw, 10rem) 2rem; }
.approach-inner { max-width: 1200px; margin: 0 auto; }

.steps { display: flex; flex-direction: column; }

.step {
  display: grid; grid-template-columns: 80px 1fr 160px; gap: 2rem;
  align-items: start; padding: 3rem 0; border-top: 1px solid var(--border);
}

.step:last-child { border-bottom: 1px solid var(--border); }

.step-number {
  font-family: var(--serif); font-size: 1rem; color: var(--text-muted);
  padding-top: 0.3rem; font-variant-numeric: tabular-nums;
}

.step-body h3 {
  font-family: var(--serif); font-size: clamp(1.5rem, 1rem + 1.5vw, 2.2rem);
  font-weight: 400; letter-spacing: -0.02em; margin-bottom: 0.75rem; color: var(--text);
}

.step-body p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; max-width: 52ch; margin-bottom: 1.25rem; }

.step-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.tag {
  font-size: 0.75rem; font-weight: 600; color: var(--accent); background: var(--accent-light);
  padding: 0.3rem 0.75rem; border-radius: 100px;
}

/* Post-it accent note on each step */
.step-note {
  font-family: var(--hand); font-size: 0.95rem; font-weight: 600;
  padding: 0.8rem 1rem; color: rgba(0,0,0,0.6); align-self: center;
  transform: rotate(-2deg); box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.step-note--yellow { background: var(--yellow); }
.step-note--green { background: var(--green-note); }
.step-note--pink { background: var(--pink-note); }
.step-note--orange { background: var(--orange-note); }

/* ══════════════════════════════════
   Services
   ══════════════════════════════════ */

.services { padding: clamp(5rem, 4rem + 6vw, 10rem) 2rem; background: var(--bg-alt); }
.services-inner { max-width: 1200px; margin: 0 auto; }

.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.service-card {
  background: var(--white); padding: 2.5rem; border-radius: 8px;
  border: 1px solid var(--border);
  transition: box-shadow 300ms var(--ease), transform 300ms var(--ease);
}

.service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.06); transform: translateY(-3px); }

.service-icon { font-size: 1.8rem; display: block; margin-bottom: 1.25rem; }

.service-card h3 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 400;
  letter-spacing: -0.01em; color: var(--text); margin-bottom: 0.75rem;
}

.service-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ══════════════════════════════════
   Voices (Testimonials)
   ══════════════════════════════════ */

.voices { padding: clamp(5rem, 4rem + 6vw, 10rem) 2rem; }
.voices-inner { max-width: 1200px; margin: 0 auto; }

.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.voice-card {
  padding: 2.5rem; border-radius: 0; display: flex; flex-direction: column;
  justify-content: space-between; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transform: rotate(-0.5deg);
}

.voice-card--yellow { background: var(--yellow); }
.voice-card--green { background: var(--green-note); }
.voice-card--pink { background: var(--pink-note); }

.voice-card p {
  font-family: var(--hand); font-size: 1.25rem; font-weight: 600;
  line-height: 1.4; color: rgba(0,0,0,0.7); margin-bottom: 2rem;
}

.voice-card footer { display: flex; flex-direction: column; gap: 0.1rem; }
.voice-card footer strong { font-family: var(--sans); font-size: 0.85rem; font-weight: 700; color: rgba(0,0,0,0.65); }
.voice-card footer cite { font-family: var(--sans); font-style: normal; font-size: 0.78rem; color: rgba(0,0,0,0.4); }

/* ══════════════════════════════════
   Full-bleed image
   ══════════════════════════════════ */

.image-break {
  width: 100%; max-height: 50vh; overflow: hidden;
}

.image-break img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════
   FAQ
   ══════════════════════════════════ */

.faq { padding: clamp(5rem, 4rem + 6vw, 10rem) 2rem; }
.faq-inner { max-width: 800px; margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-top: 1px solid var(--border); padding: 1.75rem 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-item summary {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--text);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+'; font-family: var(--sans); font-size: 1.3rem; font-weight: 300;
  color: var(--text-muted); transition: transform 200ms ease; flex-shrink: 0; margin-left: 1rem;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; max-width: 55ch; margin-top: 1rem; }

/* ══════════════════════════════════
   Contact
   ══════════════════════════════════ */

.contact {
  padding: clamp(5rem, 4rem + 6vw, 10rem) 2rem;
  position: relative; overflow: hidden;
}

.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start;
}

.contact-text .display-heading {
  margin-bottom: 1.5rem;
}

.contact-text > p {
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.7;
  max-width: 40ch; margin-bottom: 3rem;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.contact-block { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-block span, .contact-block a { font-size: 1rem; color: var(--text); text-decoration: none; }

.contact-email { font-family: var(--hand); font-size: 1.5rem !important; }

.social-links { display: flex; gap: 1.5rem; }
.social-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--text); text-decoration: none;
  background-image: linear-gradient(var(--orange), var(--orange));
  background-size: 0% 2px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size 300ms var(--ease);
}
.social-links a:hover { background-size: 100% 2px; }

/* Form */
.contact-form { }

.form-group { position: relative; margin-bottom: 2rem; }

.form-group input,
.form-group textarea {
  width: 100%; padding: 1rem 0 0.5rem; border: none;
  border-bottom: 1.5px solid var(--border); background: transparent;
  font-family: var(--sans); font-size: 1rem; color: var(--text);
  transition: border-color 300ms ease; border-radius: 0;
}

.form-group input:focus, .form-group textarea:focus { outline: none; border-bottom-color: var(--accent); }

.form-group label {
  position: absolute; top: 1rem; left: 0; font-size: 1rem; color: var(--text-muted);
  pointer-events: none; transition: transform 300ms var(--ease), font-size 300ms var(--ease), color 300ms var(--ease);
  transform-origin: left;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.5rem); font-size: 0.78rem; color: var(--accent);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ══════════════════════════════════
   Footer
   ══════════════════════════════════ */

.footer {
  padding: 4rem 2rem; position: relative;
  border-top: none;
}

/* Wavy top */
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 4' preserveAspectRatio='none'%3E%3Cpath d='M0 2c50-2 100 2 150 0s100-2 150 0 100 2 150 0 100-2 150 0 100 2 150 0 100-2 150 0 100 2 150 0' stroke='%23E5E5E3' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
}

.footer-logo {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 400;
  color: var(--text); display: block; margin-bottom: 0.5rem;
}

.footer-tagline { font-family: var(--hand); font-size: 1rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

.footer-right { display: flex; gap: 4rem; }

.footer-col { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-col strong { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.25rem; }
.footer-col span, .footer-col a { font-size: 0.875rem; color: var(--text); text-decoration: none; font-weight: 500; }
.footer-col a:hover { color: var(--accent); }

/* ══════════════════════════════════
   Responsive
   ══════════════════════════════════ */

@media (max-width: 64em) {
  .about-split { grid-template-columns: 1fr; }
  .about-top { max-width: none; }
  .service-grid { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .voice-card { transform: none; }
  .step { grid-template-columns: 60px 1fr; }
  .step-note { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 2.5rem; }
  .footer-right { gap: 3rem; }
}

@media (max-width: 48em) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-heading { font-size: clamp(2.5rem, 1.5rem + 5vw, 4rem); }
  .hero-content { text-align: center; }
  .about-details { flex-direction: column; gap: 1.25rem; }
  .scatter-note:nth-child(n+5) { display: none; }
  .step { grid-template-columns: 1fr; gap: 0.5rem; }
  .step-number { padding-top: 0; }
  .footer-right { flex-direction: column; gap: 2rem; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scatter-note { opacity: 0.65; animation: none; }
  .scroll-line { animation: none; opacity: 0.2; }
  .highlight { background-size: 100% 100%; transition: none; }
}
