/* =====================================================
   NGV NOVA — STYLES
   Aesthetic: editorial / refined corporate
   Palette: cream + deep ink + warm terracotta
   Type: Fraunces (display) · DM Sans (body) · JetBrains Mono (tags)
   ===================================================== */

:root {
  /* Color */
  --bg:        #f5f1ea;
  --bg-alt:    #ece6d8;
  --ink:       #0e1a2b;
  --ink-soft:  #2a3445;
  --ink-mute:  #5a6478;
  --line:      #d8d1c1;
  --paper:     #fbf9f4;
  --accent:    #c2410c;        /* terracotta */
  --accent-2:  #1a3d2e;        /* deep forest */
  --warn:      #b91c1c;

  /* Type */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body:    "DM Sans", -apple-system, "Segoe UI", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --radius: 4px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  padding-inline: var(--gutter);
  margin-inline: auto;
}

/* =================== TYPOGRAPHY ===================== */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 360;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  color: var(--accent);
}

.section-head {
  max-width: 880px;
  margin-bottom: 64px;
}
.section-head--centered { margin-inline: auto; text-align: center; }
.section-head__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.section-head__tag--light { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.2); }
.section-head__title {
  font-size: clamp(38px, 5.5vw, 72px);
  margin-bottom: 24px;
}
.section-head__lede {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--ink-soft);
  max-width: 60ch;
}
.section-head--light .section-head__title,
.section-head--light .section-head__lede,
.section-head--light .section-head__tag { color: var(--paper); }
.section-head--light .section-head__lede { color: rgba(255,255,255,0.78); }

/* =================== BUTTONS ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 12px 22px;
  border-radius: var(--radius);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn--lg { font-size: 16px; padding: 16px 28px; }
.btn--solid {
  background: var(--ink);
  color: var(--paper);
}
.btn--solid:hover { background: var(--accent); transform: translateY(-2px); }
.btn--ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }

/* =================== NAV ===================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(245, 241, 234, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(245, 241, 234, 0.92);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav__logo {
  display: block;
  height: 56px;
  width: auto;
  color: var(--ink);   /* logo SVG uses currentColor */
}
.footer .nav__logo { color: var(--paper); height: 64px; }
.nav__links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 400;
}
.nav__links a {
  position: relative;
  color: var(--ink-soft);
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { font-size: 14px; padding: 10px 18px; }

.nav__toggle {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 24px var(--gutter) 32px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.nav__mobile a { font-size: 18px; }
.nav__mobile.is-open { display: flex; }

/* =================== HERO ===================== */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 12vw, 160px) clamp(80px, 10vw, 130px);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(800px 400px at 80% 0%, rgba(194,65,12,0.08), transparent 60%),
    radial-gradient(600px 600px at 0% 70%, rgba(26,61,46,0.05), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
}
.dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 999px;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.hero__title {
  font-size: clamp(46px, 9vw, 132px);
  letter-spacing: -0.035em;
  margin-bottom: 36px;
  max-width: 18ch;
}
.hero__lede {
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
  max-width: 60ch;
  color: var(--ink-soft);
  margin-bottom: 44px;
}
.hero__ctas {
  display: flex; flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 84px;
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 920px;
}
.hero__meta div { display: flex; flex-direction: column; gap: 6px; }
.hero__meta dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__meta dd {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 350;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* =================== TRUST / MARQUEE ===================== */

.trust {
  padding-block: 56px;
  border-block: 1px solid var(--line);
  background: var(--paper);
}
.trust__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
  text-align: center;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  gap: 64px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 350;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  white-space: nowrap;
  transition: color .3s var(--ease);
}
.marquee__track span:hover { color: var(--ink); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =================== SERVICES ===================== */

.services { padding-block: clamp(80px, 10vw, 140px); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--bg);
  padding: clamp(28px, 3.2vw, 48px);
  transition: background .3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.service-card:hover {
  background: var(--paper);
}
.service-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.service-card h3 {
  font-size: clamp(26px, 2.6vw, 34px);
  margin-bottom: 4px;
}
.service-card p {
  color: var(--ink-soft);
  max-width: 50ch;
}
.service-card ul {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.service-card li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  top: 4px;
}

/* =================== APPROACH (DARK) ===================== */

.approach {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.approach::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(194,65,12,0.18), transparent 70%);
  pointer-events: none;
}
.phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 48px;
}
.phase {
  padding: 36px 24px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .3s var(--ease);
}
.phase:last-child { border-right: 0; }
.phase:hover { background: rgba(255,255,255,0.03); }
.phase__num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}
.phase h4 {
  color: var(--paper);
  font-size: 24px;
  font-weight: 360;
}
.phase p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.55;
}

/* =================== INDUSTRIES ===================== */

.industries { padding-block: clamp(80px, 10vw, 140px); }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.industry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.industry span {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 360;
  letter-spacing: -0.01em;
}
.industry em {
  font-style: normal;
  color: var(--ink-mute);
  font-family: var(--font-mono);
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.industry:hover {
  background: var(--ink);
  color: var(--paper);
}
.industry:hover em {
  color: var(--accent);
  transform: translateX(8px);
}

/* =================== CASES ===================== */

.cases { padding-block: clamp(80px, 10vw, 140px); background: var(--paper); }
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.case {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.case:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
}
.case__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.case__meta span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--line);
  color: var(--ink-mute);
}
.case h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 4px 0 0;
}
.case p { color: var(--ink-soft); }
.case__stat {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.case__stat span {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--accent);
  font-weight: 350;
  letter-spacing: -0.02em;
  line-height: 1;
}
.case__stat em {
  font-style: normal;
  font-size: 13px;
  color: var(--ink-mute);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =================== TESTIMONIALS ===================== */

.testimonials { padding-block: clamp(80px, 10vw, 140px); }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.quote {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.45;
  color: var(--ink);
  font-style: italic;
  font-weight: 360;
  letter-spacing: -0.005em;
  position: relative;
  padding-left: 16px;
}
.quote blockquote::before {
  content: "“";
  position: absolute;
  left: -8px; top: -16px;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
}
.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.quote figcaption strong {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
}
.quote figcaption span {
  color: var(--ink-mute);
  font-size: 13px;
}

/* =================== ABOUT ===================== */

.about { padding-block: clamp(80px, 10vw, 140px); background: var(--bg-alt); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about__title {
  font-size: clamp(40px, 5.5vw, 76px);
  margin-top: 24px;
}

.founder {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
  padding: 0;
}
.founder__photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
  filter: grayscale(8%) contrast(1.02);
  transition: filter .4s var(--ease);
}
.founder__photo:hover { filter: grayscale(0%) contrast(1); }
.founder figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 14px;
  border-left: 2px solid var(--accent);
}
.founder figcaption strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.founder figcaption span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.about__body p {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.about__bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.about__bullets li {
  padding-left: 24px;
  position: relative;
  color: var(--ink-soft);
}
.about__bullets li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 600;
}
.about__bullets strong { color: var(--ink); font-weight: 600; }

/* =================== CONTACT (DARK) ===================== */

.contact {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  bottom: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,61,46,0.35), transparent 70%);
  pointer-events: none;
}
.contact__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.contact__title {
  font-size: clamp(40px, 5.5vw, 76px);
  color: var(--paper);
  margin: 24px 0 28px;
}
.contact__title em { color: var(--accent); }
.contact__lede {
  color: rgba(255,255,255,0.78);
  font-size: clamp(17px, 1.5vw, 19px);
  max-width: 50ch;
  margin-bottom: 40px;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact__details > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact__details span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.contact__details a, .contact__details p {
  color: var(--paper);
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 350;
  letter-spacing: -0.005em;
}
.contact__details a:hover { color: var(--accent); }

.contact__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: clamp(24px, 3vw, 40px);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 10px 0 12px;
  color: var(--paper);
  border-radius: 0;
  transition: border-color .25s var(--ease);
}
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='white' fill='none' stroke-width='1.5'/></svg>"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px; }
.field option { color: var(--ink); }
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: 0; border-color: var(--accent); }

.field--submit { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding-top: 8px; }
.field--submit .btn--solid { background: var(--accent); }
.field--submit .btn--solid:hover { background: var(--paper); color: var(--ink); }
.contact__note {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.contact__note.is-error { color: #ffb4a2; }
.contact__note.is-success { color: #b8e0c2; }

/* =================== FOOTER ===================== */

.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0 24px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: 56px;
}
.footer__brand p {
  margin-top: 14px;
  font-size: 14px;
  max-width: 30ch;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__cols h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 16px;
}
.footer__cols a {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  color: rgba(255,255,255,0.62);
}
.footer__cols a:hover { color: var(--accent); }
.footer__bar {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* =================== REVEAL ANIMATION ===================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* =================== RESPONSIVE ===================== */

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero__meta { grid-template-columns: repeat(2, 1fr); }

  .service-grid { grid-template-columns: 1fr; }
  .phases { grid-template-columns: repeat(2, 1fr); }
  .phase { border-right: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); }
  .phase:nth-child(2) { border-right: 0; }
  .phase:nth-child(3) { border-bottom: 0; }
  .phase:nth-child(4) { border-bottom: 0; border-right: 0; }

  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }

  .about__inner { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero__title { font-size: clamp(40px, 12vw, 60px); }
  .hero__meta { grid-template-columns: 1fr 1fr; gap: 18px; }
  .industry-grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__bar { flex-direction: column; gap: 8px; align-items: flex-start; }
  .contact__form { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
