:root {
  color-scheme: dark;
  --ink: #f4efe4;
  --muted: #b9afa0;
  --muted-strong: #d6cbb8;
  --night: #0b0b09;
  --night-soft: #11110e;
  --charcoal: #191813;
  --line: rgba(244, 239, 228, 0.14);
  --line-strong: rgba(244, 239, 228, 0.24);
  --copper: #c79a57;
  --teal: #2aa198;
  --rose: #d65a4a;
  --paper: #f1eadc;
  --paper-ink: #17140f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::selection {
  background: rgba(199, 154, 87, 0.35);
}

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

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

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

button {
  cursor: pointer;
}

#signalCanvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(11, 11, 9, 0.72), rgba(11, 11, 9, 0.96)),
    radial-gradient(circle at 70% 12%, rgba(42, 161, 152, 0.14), transparent 28rem),
    var(--night);
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--paper-ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 18px 32px;
  border-bottom: 1px solid transparent;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    padding 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  border-bottom-color: var(--line);
  background: rgba(11, 11, 9, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 0.95rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(244, 239, 228, 0.035);
}

.site-nav a {
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(244, 239, 228, 0.1);
  color: var(--ink);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(199, 154, 87, 0.48);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(199, 154, 87, 0.12);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: end;
  overflow: clip;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 9, 0.97) 0%, rgba(11, 11, 9, 0.78) 42%, rgba(11, 11, 9, 0.22) 100%),
    linear-gradient(180deg, rgba(11, 11, 9, 0.18), rgba(11, 11, 9, 0.92));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.92) contrast(1.06);
}

.hero-inner {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 360px;
  gap: 42px;
  align-items: end;
  padding: 132px 0 52px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--copper);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1,
.intro h2,
.section-heading h2,
.method h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 800px;
  font-size: 5rem;
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.signature-block {
  width: min(320px, 78vw);
  margin-top: 22px;
}

.signature-block img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button::after,
.header-cta::after {
  content: "→";
  margin-left: 8px;
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
}

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

.button-secondary {
  background: rgba(244, 239, 228, 0.06);
  color: var(--ink);
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 11, 9, 0.48);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.panel-line {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-line:last-child {
  border-bottom: 0;
}

.panel-line span {
  color: var(--muted);
  font-size: 0.78rem;
}

.panel-line strong {
  color: var(--ink);
  font-size: 1rem;
}

.signal-strip {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--line);
}

.signal-strip div {
  padding: 22px;
  background: rgba(17, 17, 14, 0.88);
}

.signal-strip strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.signal-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-light {
  background: var(--paper);
  color: var(--paper-ink);
}

.section-light .section-kicker {
  color: #8a5c20;
}

.section-light p {
  color: rgba(23, 20, 15, 0.72);
}

.intro > .section-kicker,
.intro-grid,
.section-heading,
.service-grid,
.project-grid,
.method,
.proof-grid,
.library > .section-heading,
.library-tools,
.library-layout,
.contact,
.site-footer {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: start;
}

.intro h2 {
  color: var(--paper-ink);
  font-size: 3.6rem;
}

.intro-copy {
  display: grid;
  gap: 18px;
  font-size: 1.03rem;
}

.intro-copy p {
  margin: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading h2,
.method h2,
.contact h2 {
  font-size: 3.3rem;
}

.section-heading p,
.method-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted-strong);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.service-card {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: rgba(17, 17, 14, 0.92);
}

.card-index,
.method-steps span {
  color: var(--copper);
  font-weight: 800;
}

.service-card h3,
.method-steps h3,
.library-layout h3 {
  margin: 24px 0 12px;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.service-card p,
.project-card p,
.method-steps p,
.proof-grid p,
.content-card p {
  margin: 0;
  color: var(--muted);
}

.work {
  padding-top: 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.project-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(42, 161, 152, 0.08), rgba(244, 239, 228, 0.035)),
    rgba(17, 17, 14, 0.88);
}

.project-card span {
  color: var(--teal);
  font-weight: 900;
}

.project-card h3 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-size: 1.18rem;
  letter-spacing: 0;
}

.method {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 58px;
  align-items: start;
}

.method-copy {
  position: sticky;
  top: 96px;
}

.method-copy p {
  margin-top: 22px;
}

.method-steps {
  display: grid;
  gap: 14px;
}

.method-steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 239, 228, 0.045);
}

.method-steps h3 {
  margin-top: 0;
}

.method-steps p {
  grid-column: 2;
}

.proof {
  padding-top: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.proof-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(199, 154, 87, 0.08), rgba(244, 239, 228, 0.035)),
    rgba(17, 17, 14, 0.82);
}

.proof-grid strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1;
  font-weight: 500;
}

.proof-grid span {
  display: block;
  margin: 12px 0;
  color: var(--copper);
  font-weight: 800;
}

.library {
  background: #14130f;
  border-block: 1px solid var(--line);
}

.library-tools {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.search-field {
  display: grid;
  gap: 8px;
  width: min(520px, 100%);
}

.search-field span,
.message-form span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.search-field input,
.message-form input,
.message-form select,
.message-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(244, 239, 228, 0.06);
  color: var(--ink);
  outline: none;
}

.message-form select option {
  color: var(--paper-ink);
}

.search-field input:focus,
.message-form input:focus,
.message-form select:focus,
.message-form textarea:focus {
  border-color: rgba(199, 154, 87, 0.8);
  box-shadow: 0 0 0 3px rgba(199, 154, 87, 0.16);
}

.segmented {
  display: flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(244, 239, 228, 0.04);
}

.segmented button {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: transparent;
  color: var(--muted-strong);
  font-weight: 800;
}

.segmented button.is-active {
  background: var(--paper);
  color: var(--paper-ink);
}

.library-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.library-layout.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.library-layout h3 {
  margin: 0 0 14px;
}

.content-grid {
  display: grid;
  gap: 12px;
}

.content-card {
  display: grid;
  gap: 14px;
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 239, 228, 0.045);
}

.content-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.content-card h4 {
  margin: 0;
  font-size: 1.1rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(42, 161, 152, 0.12);
  color: #8fe2db;
  font-size: 0.78rem;
  font-weight: 800;
}

.card-action {
  justify-self: start;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--copper);
  font-weight: 900;
}

.card-action[aria-disabled="true"] {
  color: var(--muted);
  cursor: default;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 96px;
}

.contact-copy p {
  margin-top: 22px;
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--muted-strong);
}

.contact-lines a {
  color: var(--copper);
  font-weight: 900;
}

.message-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 239, 228, 0.045);
}

.message-form label {
  display: grid;
  gap: 8px;
}

.message-form .full {
  grid-column: 1 / -1;
}

.message-form textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(42, 161, 152, 0.32);
  border-radius: var(--radius);
  background: rgba(42, 161, 152, 0.1);
  color: #b8fff9;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-color: rgba(214, 90, 74, 0.42);
  background: rgba(214, 90, 74, 0.1);
  color: #ffd1ca;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0 46px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--copper);
  font-weight: 900;
}

.article-main {
  padding: 124px 0 72px;
}

.article-shell {
  width: min(100% - 48px, 920px);
  margin-inline: auto;
}

.article-hero {
  padding: 36px 0 34px;
  border-bottom: 1px solid var(--line);
}

.article-back {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--copper);
  font-size: 0.92rem;
  font-weight: 900;
}

.article-hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.article-lead {
  max-width: 780px;
  margin: 28px 0 0;
  color: var(--muted-strong);
  font-size: 1.18rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.article-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.answer-panel {
  margin: 34px 0;
  padding: 24px;
  border: 1px solid rgba(42, 161, 152, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(42, 161, 152, 0.13), rgba(199, 154, 87, 0.06)),
    rgba(244, 239, 228, 0.045);
}

.answer-panel h2,
.article-content h2,
.faq-section h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.answer-panel p,
.article-content p,
.faq-section p {
  margin: 0;
  color: var(--muted-strong);
}

.article-content {
  display: grid;
  gap: 26px;
  color: var(--ink);
}

.article-content ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted-strong);
}

.article-content li::marker {
  color: var(--teal);
}

.source-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 239, 228, 0.045);
}

.source-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.source-card strong {
  color: var(--ink);
}

.archive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 34px;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.faq-grid article {
  min-height: 148px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 239, 228, 0.04);
}

.faq-grid h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.post-dialog {
  width: min(760px, calc(100% - 32px));
  max-height: min(760px, calc(100% - 32px));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--paper);
  color: var(--paper-ink);
  box-shadow: var(--shadow);
}

.post-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.post-dialog .section-kicker {
  color: #8a5c20;
}

.post-dialog h2 {
  margin: 0 42px 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 1.05;
}

.post-dialog p {
  color: rgba(23, 20, 15, 0.76);
}

.dialog-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(23, 20, 15, 0.16);
  border-radius: 50%;
  background: transparent;
  color: var(--paper-ink);
  font-size: 1.4rem;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero-inner,
  .intro-grid,
  .section-heading,
  .method,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-panel {
    display: none;
  }

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

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

  .method-copy,
  .contact-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-inner {
    width: min(100% - 32px, var(--max));
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 88px 0 20px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(11, 11, 9, 0.86), rgba(11, 11, 9, 0.68) 45%, rgba(11, 11, 9, 0.94)),
      linear-gradient(90deg, rgba(11, 11, 9, 0.96), rgba(11, 11, 9, 0.36));
  }

  .hero h1 {
    font-size: 2.55rem;
    line-height: 1.02;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 1rem;
  }

  .signature-block {
    width: min(300px, 78vw);
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .hero-panel {
    display: none;
  }

  .signal-strip,
  .proof-grid,
  .library-layout,
  .archive-grid,
  .faq-grid,
  .message-form {
    grid-template-columns: 1fr;
  }

  .signal-strip,
  .intro > .section-kicker,
  .intro-grid,
  .section-heading,
  .service-grid,
  .project-grid,
  .method,
  .proof-grid,
  .library > .section-heading,
  .library-tools,
  .library-layout,
  .contact,
  .site-footer {
    width: min(100% - 32px, var(--max));
  }

  .section {
    padding: 74px 0;
  }

  .article-main {
    padding-top: 96px;
  }

  .article-shell {
    width: min(100% - 32px, 920px);
  }

  .article-hero h1 {
    font-size: 2.52rem;
    line-height: 1.02;
  }

  .article-lead {
    font-size: 1.02rem;
  }

  .source-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro h2,
  .section-heading h2,
  .method h2,
  .contact h2 {
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 220px;
  }

  .method-steps article {
    grid-template-columns: 1fr;
  }

  .method-steps p {
    grid-column: auto;
  }

  .library-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .segmented {
    width: 100%;
  }

  .segmented button {
    flex: 1;
  }

  .message-form .full {
    grid-column: auto;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 2.36rem;
  }

  .hero-text {
    line-height: 1.42;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  #signalCanvas {
    display: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
