@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --ink: #0d0b09;
  --ink-soft: #2a2520;
  --ink-muted: #5c544a;
  --paper: #f8f4ef;
  --paper-warm: #fff9f0;
  --sand: #ebe3d7;
  --terracotta: #c4451c;
  --terracotta-deep: #8b2d0e;
  --terracotta-glow: rgba(196, 69, 28, 0.15);
  --sage: #6b7c5e;
  --sage-soft: rgba(107, 124, 94, 0.12);
  --line: rgba(13, 11, 9, 0.1);
  --line-strong: rgba(13, 11, 9, 0.2);
  --content: 1320px;
  --content-narrow: 980px;
  --radius-sharp: 4px;
  --radius-soft: 12px;
  --radius-medium: 20px;
  --radius-full: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'DM Sans', sans-serif;
  font-optical-sizing: auto;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--terracotta);
  color: white;
}

.site-shell {
  position: relative;
  overflow-x: hidden;
}

.site-shell::after {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  width: 45%;
  height: 100vh;
  z-index: -1;
  background: linear-gradient(135deg, var(--terracotta-glow) 0%, transparent 60%);
  opacity: 0.6;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
  padding: 1.25rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line);
}

.topbar-copy {
  max-width: 38ch;
}

.topbar-links {
  display: flex;
  gap: 1.5rem;
}

.topbar-links a {
  transition: color 0.2s ease;
}

.topbar-links a:hover {
  color: var(--terracotta);
}

.nav {
  position: sticky;
  top: 1.5rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(calc(100% - 3rem), var(--content));
  margin: 1.5rem auto 0;
  padding: 1rem 1.5rem;
  background: rgba(248, 244, 239, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sharp);
  box-shadow: 
    0 1px 0 var(--line),
    0 20px 50px -12px rgba(13, 11, 9, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: var(--radius-sharp);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.9rem 1.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius-sharp);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.button:hover {
  transform: translateY(-2px);
}

.button-accent {
  background: var(--terracotta);
  color: white;
  box-shadow: 
    0 4px 12px rgba(196, 69, 28, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.button-accent:hover {
  background: var(--terracotta-deep);
  box-shadow: 
    0 8px 24px rgba(196, 69, 28, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 4px 12px rgba(13, 11, 9, 0.15);
}

.button-dark:hover {
  background: var(--ink-soft);
  box-shadow: 0 8px 24px rgba(13, 11, 9, 0.25);
}

.button-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}

.button-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
  padding: 6rem 0 4rem;
  align-items: start;
}

.hero::before {
  content: '';
  position: absolute;
  top: 8rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background: var(--sage-soft);
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: var(--terracotta);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-sharp);
}

.hero-copy {
  padding-top: 2rem;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1 span {
  display: block;
}

.hero-lead {
  max-width: 42ch;
  margin-top: 2rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  padding-right: 1rem;
}

.hero-facts strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
}

.hero-facts span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.hero-card-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-medium);
  box-shadow: 
    0 2px 0 var(--line),
    0 30px 60px -20px rgba(13, 11, 9, 0.2);
}

.hero-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(13, 11, 9, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-card-main img {
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card-main:hover img {
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: 20rem;
  padding: 1.25rem 1.5rem;
  background: rgba(13, 11, 9, 0.85);
  backdrop-filter: blur(12px);
  color: var(--paper);
  border-radius: var(--radius-soft);
  z-index: 2;
}

.hero-overlay p {
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 400;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-sharp);
  overflow: hidden;
}

.signal-band > div {
  padding: 2rem 2.5rem;
  border-right: 1px solid rgba(248, 244, 239, 0.1);
}

.signal-band > div:last-child {
  border-right: none;
}

.signal-label {
  margin-bottom: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  opacity: 0.9;
}

.signal-band p {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.4;
}

.section {
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
  padding: 7rem 0;
}

.section-heading {
  max-width: var(--content-narrow);
  margin-bottom: 3rem;
}

.section-heading .eyebrow {
  margin-bottom: 1.25rem;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-heading > p {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 52ch;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 380px);
  gap: 3rem;
  align-items: end;
  max-width: none;
}

.split-heading p {
  margin-top: 0;
}

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

.service-card {
  position: relative;
  padding: 2rem;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-sharp);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 20px 40px -16px rgba(13, 11, 9, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-index {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 1px;
}

.section-contrast {
  position: relative;
  background: linear-gradient(180deg, var(--sand) 0%, var(--paper) 100%);
  padding: 7rem 0;
  margin: 0;
  width: 100%;
}

.section-contrast::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.section-contrast .section-heading,
.section-contrast .process-grid {
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-sharp);
  overflow: hidden;
}

.process-step {
  padding: 2rem;
  border-right: 1px solid var(--line);
  transition: background 0.25s ease;
}

.process-step:last-child {
  border-right: none;
}

.process-step:hover {
  background: white;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: var(--radius-sharp);
  margin-bottom: 1.5rem;
}

.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.project-figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sharp);
  box-shadow: 0 30px 60px -20px rgba(13, 11, 9, 0.2);
}

.project-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-figure:hover img {
  transform: scale(1.02);
}

.project-large {
  grid-row: span 2;
  height: fit-content;
}

.project-large img {
  aspect-ratio: 4/5;
}

.project-small {
  height: fit-content;
}

.project-small img {
  aspect-ratio: 16/10;
}

.project-copy {
  padding: 2.5rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-sharp);
}

.project-copy h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.project-copy > p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.checklist {
  list-style: none;
  margin-bottom: 2rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border: 2px solid var(--terracotta);
  border-radius: 2px;
}

.founder-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.founder-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  padding: 2rem;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-sharp);
}

.founder-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-soft);
  filter: grayscale(20%);
}

.founder-card .eyebrow {
  font-size: 0.65rem;
  padding: 0.4rem 0.8rem;
  margin-bottom: 1rem;
}

.founder-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
}

.founder-meta {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.trust-panel {
  padding: 2rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-sharp);
}

.trust-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.trust-panel .checklist li::before {
  border-color: var(--terracotta);
  background: var(--terracotta);
}

.consultation {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.consult-copy {
  padding-right: 2rem;
}

.consult-copy h2 {
  margin-top: 1rem;
}

.consult-copy > p {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.consult-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding: 2.5rem;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-sharp);
}

.consult-form label {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px var(--terracotta-glow);
}

.consult-form input::placeholder,
.consult-form textarea::placeholder {
  color: var(--ink-muted);
  opacity: 0.6;
}

.form-span {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

#form-status {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.faq-section {
  border-top: 1px solid var(--line);
}

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

.faq-grid details {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-sharp);
  transition: border-color 0.25s ease;
}

.faq-grid details[open] {
  border-color: var(--terracotta);
}

.faq-grid summary {
  padding: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

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

.faq-grid summary::before {
  content: '+';
  float: right;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--terracotta);
  transition: transform 0.25s ease;
}

.faq-grid details[open] summary::before {
  content: '−';
}

.faq-grid summary:hover {
  color: var(--terracotta);
}

.faq-grid p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 3rem;
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer > div:first-child p:first-of-type {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 40ch;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: right;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--terracotta);
}

.footer-note {
  grid-column: 1 / -1;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(40px);
}

.motion-ready .reveal.is-visible {
  animation: revealUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.motion-ready .hero-copy {
  opacity: 0;
}

.motion-ready .hero-copy.is-visible {
  animation: heroReveal 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

@keyframes heroReveal {
  to {
    opacity: 1;
  }
}

.motion-ready .hero-visual {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
}

.motion-ready .hero-visual.is-visible {
  animation: heroVisualReveal 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

@keyframes heroVisualReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.motion-ready .service-card {
  opacity: 0;
  transform: translateY(30px);
}

.motion-ready .service-card.is-visible:nth-child(1) { animation: cardReveal 0.6s ease 0.1s forwards; }
.motion-ready .service-card.is-visible:nth-child(2) { animation: cardReveal 0.6s ease 0.2s forwards; }
.motion-ready .service-card.is-visible:nth-child(3) { animation: cardReveal 0.6s ease 0.3s forwards; }

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.motion-ready .process-step {
  opacity: 0;
  transform: translateY(20px);
}

.motion-ready .process-step.is-visible:nth-child(1) { animation: cardReveal 0.5s ease 0.1s forwards; }
.motion-ready .process-step.is-visible:nth-child(2) { animation: cardReveal 0.5s ease 0.2s forwards; }
.motion-ready .process-step.is-visible:nth-child(3) { animation: cardReveal 0.5s ease 0.3s forwards; }
.motion-ready .process-step.is-visible:nth-child(4) { animation: cardReveal 0.5s ease 0.4s forwards; }

.motion-ready .signal-band > div {
  opacity: 0;
  transform: translateY(15px);
}

.motion-ready .signal-band.is-visible > div:nth-child(1) { animation: cardReveal 0.5s ease 0.1s forwards; }
.motion-ready .signal-band.is-visible > div:nth-child(2) { animation: cardReveal 0.5s ease 0.2s forwards; }
.motion-ready .signal-band.is-visible > div:nth-child(3) { animation: cardReveal 0.5s ease 0.3s forwards; }

@media (prefers-reduced-motion: reduce) {
  .motion-ready .reveal,
  .motion-ready .hero-copy,
  .motion-ready .hero-visual,
  .motion-ready .service-card,
  .motion-ready .process-step,
  .motion-ready .signal-band > div {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 1100px) {
  .hero,
  .project-grid,
  .founder-section,
  .consultation,
  .split-heading {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-step:nth-child(2) {
    border-right: none;
  }
  
  .process-step:nth-child(1),
  .process-step:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
  
  .project-large {
    grid-row: auto;
  }
  
  .project-copy {
    order: -1;
  }
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .topbar-links {
    justify-content: center;
  }
  
  .nav {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .signal-band {
    grid-template-columns: 1fr;
  }
  
  .signal-band > div {
    border-right: none;
    border-bottom: 1px solid rgba(248, 244, 239, 0.1);
    padding: 1.5rem 2rem;
  }
  
  .signal-band > div:last-child {
    border-bottom: none;
  }
  
  .service-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-facts {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .consult-form {
    grid-template-columns: 1fr;
  }
  
  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .founder-card img {
    margin: 0 auto;
  }
  
  .footer {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 4rem 0 3rem;
    gap: 2rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.85rem;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  
  .process-step:last-child {
    border-bottom: none;
  }
  
  .button {
    width: 100%;
    justify-content: center;
  }
  
  .consultation {
    gap: 2rem;
  }
  
  .consult-copy {
    padding-right: 0;
  }
}
