/* ===================================================
   MAALAUSLIIKE KOUKONEN — Design System
   Color: Warm Ochre + Charcoal + Cream
   Typography: Playfair Display + Plus Jakarta Sans
   =================================================== */

/* ── Tokens ────────────────────────────────────────── */
:root {
  --brand:        oklch(0.52 0.14 65);    /* rich ochre */
  --brand-light:  oklch(0.72 0.12 70);    /* warm amber */
  --brand-dark:   oklch(0.30 0.10 60);    /* deep bronze */
  --brand-muted:  oklch(0.88 0.06 72);    /* pale ochre tint */

  --surface-1:    oklch(0.98 0.01 75);    /* warm white */
  --surface-2:    oklch(0.94 0.02 70);    /* cream */
  --surface-3:    oklch(0.88 0.03 68);    /* warm sand */
  --surface-dark: oklch(0.18 0.03 60);    /* deep charcoal */

  --text-primary:   oklch(0.15 0.03 60);  /* near-black warm */
  --text-secondary: oklch(0.45 0.04 60);  /* medium grey-warm */
  --text-muted:     oklch(0.65 0.03 65);  /* muted warm */
  --text-on-dark:   oklch(0.96 0.01 70);  /* cream on dark */

  --accent:       oklch(0.60 0.20 140);   /* forest green accent */

  /* Spacing (4-point) */
  --s-xs:  4px;  --s-sm: 8px;   --s-md: 16px;
  --s-lg: 24px;  --s-xl: 32px;  --s-2xl: 48px;
  --s-3xl: 64px; --s-4xl: 96px; --s-5xl: 128px;

  /* Typography scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.82rem + 0.28vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.0625rem);
  --text-md:   clamp(1.125rem, 1rem    + 0.625vw, 1.25rem);
  --text-lg:   clamp(1.25rem,  1.1rem  + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.3rem  + 1vw,    1.875rem);
  --text-2xl:  clamp(2rem,     1.6rem  + 2vw,    2.5rem);
  --text-3xl:  clamp(2.5rem,   2rem    + 2.5vw,  3.25rem);
  --text-4xl:  clamp(3rem,     2.4rem  + 3vw,    4rem);

  --radius-sm: 6px; --radius-md: 12px;
  --radius-lg: 20px; --radius-xl: 32px;

  --shadow-sm: 0 1px 3px oklch(0.3 0.05 60 / 0.12), 0 1px 2px oklch(0.3 0.05 60 / 0.08);
  --shadow-md: 0 4px 16px oklch(0.3 0.05 60 / 0.12), 0 2px 6px oklch(0.3 0.05 60 / 0.08);
  --shadow-lg: 0 16px 40px oklch(0.3 0.05 60 / 0.15), 0 4px 12px oklch(0.3 0.05 60 / 0.10);

  --transition: 200ms ease-out;
  --transition-slow: 400ms ease-out;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--surface-1);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ── Layout ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(var(--s-md), 5vw, var(--s-3xl));
}
section { padding-block: var(--s-4xl); }

/* ── Typography ────────────────────────────────────── */
.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--s-sm);
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--text-3xl);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: var(--s-md);
}
.section-subtitle {
  font-size: var(--text-md);
  color: var(--text-secondary);
  max-width: 56ch;
}
.section-header {
  text-align: center;
  margin-bottom: var(--s-3xl);
}
.section-header .section-subtitle { margin-inline: auto; }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-sm);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 4px 16px oklch(0.52 0.14 65 / 0.35);
}
.btn--primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px oklch(0.52 0.14 65 / 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--text-on-dark);
  border: 2px solid oklch(1 0 0 / 0.25);
}
.btn--ghost:hover { background: oklch(1 0 0 / 0.1); border-color: oklch(1 0 0 / 0.5); }
.btn--outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn--outline-white:hover { background: white; color: var(--brand-dark); }
.btn--lg { padding: 16px 36px; font-size: var(--text-base); }
.btn--full { width: 100%; justify-content: center; }

/* ── NAV ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: oklch(0.15 0.03 60 / 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px oklch(0 0 0 / 0.3);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  color: white;
  font-size: var(--text-base);
  font-weight: 500;
}
.nav__brand strong { font-weight: 700; }
.nav__brand-icon { font-size: 1.5em; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--s-xl);
}
.nav__menu a {
  color: oklch(0.9 0.01 70);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color var(--transition);
}
.nav__menu a:hover { color: var(--brand-light); }
.nav__cta {
  background: var(--brand) !important;
  color: white !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
}
.nav__cta:hover { background: var(--brand-dark) !important; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--surface-dark);
  padding-block: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__brush-1, .hero__brush-2, .hero__brush-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hero__brush-1 {
  width: 600px; height: 600px;
  background: var(--brand);
  top: -100px; right: -200px;
  animation: drift 8s ease-in-out infinite alternate;
}
.hero__brush-2 {
  width: 400px; height: 400px;
  background: oklch(0.60 0.18 40);
  bottom: -80px; left: -100px;
  animation: drift 10s ease-in-out infinite alternate-reverse;
}
.hero__brush-3 {
  width: 300px; height: 300px;
  background: var(--brand-light);
  top: 40%; left: 40%;
  animation: drift 12s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.05); }
}

/* Diagonal stripe overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    oklch(1 0 0 / 0.02) 0,
    oklch(1 0 0 / 0.02) 1px,
    transparent 1px,
    transparent 24px
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3xl);
  align-items: center;
  padding-top: 96px;
  padding-bottom: var(--s-4xl);
}
.hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: var(--s-md);
}
.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--text-4xl);
  font-weight: 900;
  line-height: 1.05;
  color: white;
  margin-bottom: var(--s-lg);
}
.hero__title em {
  font-style: italic;
  color: var(--brand-light);
}
.hero__subtitle {
  font-size: var(--text-md);
  line-height: 1.7;
  color: oklch(0.78 0.02 70);
  max-width: 48ch;
  margin-bottom: var(--s-2xl);
}
.hero__actions {
  display: flex;
  gap: var(--s-md);
  flex-wrap: wrap;
}

/* Hero card */
.hero__visual { display: flex; justify-content: center; }
.hero__card {
  background: oklch(1 0 0 / 0.06);
  border: 1px solid oklch(1 0 0 / 0.15);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: var(--s-2xl);
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: var(--s-xl);
}
.hero__stat { text-align: center; }
.hero__stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--brand-light);
  line-height: 1;
}
.hero__stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(0.70 0.03 70);
  margin-top: 4px;
  display: block;
}
.hero__divider {
  height: 1px;
  background: oklch(1 0 0 / 0.15);
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 600;
  color: oklch(0.75 0.12 140);
  background: oklch(0.60 0.20 140 / 0.12);
  border-radius: var(--radius-sm);
  padding: var(--s-sm) var(--s-md);
  border: 1px solid oklch(0.60 0.20 140 / 0.25);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--s-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-sm);
  color: oklch(0.6 0.02 70);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__scroll-arrow {
  width: 20px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 10px;
  position: relative;
}
.hero__scroll-arrow::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 6px;
  background: currentColor;
  border-radius: 2px;
  animation: scroll-bounce 1.5s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.3; }
}

/* ── TRUST BAR ─────────────────────────────────────── */
.trust-bar {
  padding-block: var(--s-xl);
  background: var(--brand);
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-xl);
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  color: white;
  font-size: var(--text-sm);
  font-weight: 600;
}
.trust-item svg { opacity: 0.85; flex-shrink: 0; }

/* ── SERVICES ──────────────────────────────────────── */
.services { background: var(--surface-1); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--s-lg);
}
.service-card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--surface-3);
  border-radius: var(--radius-lg);
  padding: var(--s-2xl);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-muted);
}
.service-card--featured {
  background: var(--surface-dark);
  border-color: var(--brand-dark);
  color: var(--text-on-dark);
}
.service-card--featured .service-card__text {
  color: oklch(0.70 0.02 70);
}
.service-card--featured .service-card__list li {
  color: oklch(0.78 0.03 70);
}
.service-card--featured .service-card__list li::before {
  color: var(--brand-light);
}
.service-card__badge {
  position: absolute;
  top: var(--s-lg);
  right: var(--s-lg);
  background: var(--brand);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}
.service-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--s-md);
  line-height: 1;
}
.service-card__title {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--s-sm);
}
.service-card__text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.65;
  margin-bottom: var(--s-md);
}
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card__list li {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card__list li::before {
  content: '✓';
  font-weight: 700;
  color: var(--brand);
  flex-shrink: 0;
}

/* ── ABOUT ─────────────────────────────────────────── */
.about { background: var(--surface-2); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4xl);
  align-items: start;
}
.about__image-wrap {
  position: relative;
  margin-bottom: var(--s-xl);
}
.about__image-placeholder {
  background: var(--surface-dark);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-md);
  color: oklch(0.65 0.03 70);
  font-size: var(--text-sm);
  font-weight: 600;
}
.about__image-icon { font-size: 4rem; }
.about__image-badge {
  position: absolute;
  bottom: -16px;
  right: var(--s-xl);
  background: var(--brand);
  color: white;
  border-radius: var(--radius-md);
  padding: var(--s-sm) var(--s-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about__image-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  font-weight: 900;
  line-height: 1;
}
.about__image-badge span {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}
.about__quote-block {
  background: var(--surface-dark);
  border-radius: var(--radius-md);
  padding: var(--s-xl);
  margin-top: var(--s-2xl);
  border-left: 4px solid var(--brand);
}
.about__quote-block blockquote {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-md);
  font-style: italic;
  color: var(--text-on-dark);
  line-height: 1.6;
  margin-bottom: var(--s-sm);
}
.about__quote-block cite {
  font-size: var(--text-sm);
  color: var(--brand-light);
  font-style: normal;
  font-weight: 600;
}
.about__lead {
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--s-2xl);
}
.about__features {
  display: flex;
  flex-direction: column;
  gap: var(--s-xl);
  margin-bottom: var(--s-2xl);
}
.about__feature {
  display: flex;
  gap: var(--s-md);
  align-items: flex-start;
}
.about__feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--brand-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  margin-top: 2px;
}
.about__feature strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}
.about__feature p { font-size: var(--text-sm); color: var(--text-secondary); }

/* ── REFERENSSIT ───────────────────────────────────── */
.refs { background: var(--surface-1); }
.refs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--s-md);
  margin-bottom: var(--s-3xl);
}
.ref-card {
  background: var(--surface-2);
  border: 1px solid var(--surface-3);
  border-radius: var(--radius-md);
  padding: var(--s-xl);
  display: flex;
  gap: var(--s-md);
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.ref-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ref-card--large {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--surface-dark) 0%, oklch(0.22 0.04 60) 100%);
  color: var(--text-on-dark);
  border-color: var(--brand-dark);
}
.ref-card--large h3 { color: white; }
.ref-card--large p { color: oklch(0.70 0.02 70); }
.ref-card--large .ref-card__tag { background: var(--brand); }
.ref-card__icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.ref-card__content h3 {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-md);
  font-weight: 700;
  margin-bottom: 6px;
}
.ref-card__content p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--s-sm);
}
.ref-card__tag {
  display: inline-block;
  background: var(--brand-muted);
  color: var(--brand-dark);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 100px;
}

/* Testimonials */
.testimonials__title {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--s-2xl);
  color: var(--text-primary);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}
.testimonial {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: var(--s-xl);
  border-left: 4px solid var(--brand);
}
.testimonial p {
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--s-md);
}
.testimonial footer strong {
  display: block;
  font-weight: 700;
  font-size: var(--text-sm);
}
.testimonial footer span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ── CTA ───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--brand-dark) 0%, oklch(0.25 0.08 55) 100%);
  padding-block: var(--s-4xl);
}
.cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2xl);
  flex-wrap: wrap;
}
.cta-section__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: white;
  margin-bottom: var(--s-sm);
}
.cta-section__content p {
  color: oklch(0.75 0.03 70);
  font-size: var(--text-md);
}
.cta-section__actions { display: flex; gap: var(--s-md); flex-wrap: wrap; }

/* ── CONTACT ───────────────────────────────────────── */
.contact { background: var(--surface-2); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4xl);
  align-items: start;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--s-xl);
  margin-top: var(--s-2xl);
  margin-bottom: var(--s-lg);
}
.contact__detail {
  display: flex;
  gap: var(--s-md);
  align-items: flex-start;
}
.contact__detail svg {
  flex-shrink: 0;
  color: var(--brand);
  margin-top: 3px;
}
.contact__detail strong {
  display: block;
  font-weight: 700;
  font-size: var(--text-sm);
  margin-bottom: 4px;
}
.contact__detail a, .contact__detail span {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}
.contact__detail a:hover { color: var(--brand); }
.contact__business-id {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* Form */
.contact__form {
  background: var(--surface-1);
  border: 1px solid var(--surface-3);
  border-radius: var(--radius-lg);
  padding: var(--s-2xl);
  box-shadow: var(--shadow-md);
}
.contact__form-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--s-xl);
}
.form-group { margin-bottom: var(--s-md); }
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--surface-3);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--text-primary);
  font-size: var(--text-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px oklch(0.52 0.14 65 / 0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  margin-top: var(--s-md);
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-align: center;
}

/* ── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--surface-dark);
  padding-block: var(--s-2xl);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-lg);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  color: var(--text-on-dark);
  font-weight: 600;
  font-size: var(--text-sm);
}
.footer__brand-icon { font-size: 1.5em; }
.footer__links {
  display: flex;
  gap: var(--s-xl);
}
.footer__links a {
  color: oklch(0.65 0.03 70);
  font-size: var(--text-sm);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--brand-light); }
.footer__copy {
  font-size: var(--text-xs);
  color: oklch(0.5 0.02 70);
  width: 100%;
  text-align: center;
}

/* ── ANIMATIONS ────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__content { animation: fade-up 0.7s ease-out both; }
.hero__visual  { animation: fade-up 0.7s ease-out 0.15s both; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { justify-content: center; }
  .hero__card { max-width: 400px; flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .about__inner { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .refs__grid { grid-template-columns: 1fr 1fr; }
  .ref-card--large { grid-column: span 2; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .cta-section__inner { text-align: center; justify-content: center; }
  .cta-section__actions { justify-content: center; }
}

@media (max-width: 640px) {
  .nav__menu { display: none; flex-direction: column; position: fixed; top: 72px; inset-inline: 0; background: oklch(0.12 0.02 60 / 0.98); backdrop-filter: blur(16px); padding: var(--s-xl); gap: var(--s-lg); }
  .nav__menu.open { display: flex; }
  .nav__toggle { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .refs__grid { grid-template-columns: 1fr; }
  .ref-card--large { grid-column: span 1; }
  .trust-bar__inner { gap: var(--s-lg); }
  .trust-item { font-size: var(--text-xs); }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero__brush-1, .hero__brush-2, .hero__brush-3 { animation: none; }
}
