:root {
  --wine: #4a0717;
  --wine-2: #6b1027;
  --bordeaux: #74122c;
  --rose: #d85b71;
  --off: #f4f1ee;
  --paper: #ebe3dc;
  --graphite: #1a1a1a;
  --muted: #bda9a7;
  --line: rgba(244, 241, 238, 0.18);
  --shadow: rgba(18, 0, 6, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off);
  color: var(--graphite);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 36px;
  color: var(--off);
  background: rgba(27, 3, 10, 0.34);
  border-bottom: 1px solid rgba(244, 241, 238, 0.12);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(27, 3, 10, 0.86);
  border-color: rgba(244, 241, 238, 0.2);
}

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

.brand-mark,
.panel-mark {
  width: 38px;
  height: 38px;
}

.brand-mark circle,
.panel-mark circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: butt;
  stroke-width: 8;
  stroke-dasharray: 44 12.55;
  transform: rotate(-83deg);
  transform-origin: 36px 36px;
}

.brand strong {
  display: block;
  font-size: 22px;
  line-height: 0.95;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  letter-spacing: 5px;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: rgba(244, 241, 238, 0.82);
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--off);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--off);
  background: var(--wine);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(244, 241, 238, 0.22);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 0, 6, 0.92) 0%, rgba(38, 2, 12, 0.62) 54%, rgba(74, 7, 23, 0.14) 100%),
    url("./assets/origena-hero-bg.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 76%, rgba(216, 91, 113, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.44));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 76px;
  padding-bottom: 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 72px;
  line-height: 1.02;
}

.lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(244, 241, 238, 0.86);
  font-size: 22px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--off);
  color: var(--wine);
}

.button.primary:hover {
  background: #ffffff;
}

.button.secondary {
  color: var(--off);
  border-color: rgba(244, 241, 238, 0.45);
  background: rgba(244, 241, 238, 0.04);
}

.button.secondary:hover {
  border-color: var(--off);
}

.button.full {
  width: 100%;
}

.intro-band {
  padding: 86px 0 76px;
  background: var(--off);
}

.intro-grid,
.trust-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.intro-grid > *,
.split-grid > *,
.trust-layout > *,
.contact-layout > * {
  min-width: 0;
}

.intro-band h2,
.process-section h2,
.split-copy h2,
.trust-section h2,
.contact-section h2 {
  margin-bottom: 0;
  font-size: 46px;
  line-height: 1.08;
  color: var(--wine);
}

.intro-copy p,
.split-copy p,
.contact-section p,
.trust-items p,
.step p {
  color: rgba(26, 26, 26, 0.72);
  font-size: 18px;
}

.process-section {
  padding: 92px 0;
  color: var(--off);
  background:
    radial-gradient(circle at 84% 88%, rgba(216, 91, 113, 0.18), transparent 34%),
    linear-gradient(135deg, #21020b 0%, var(--wine) 56%, #2a0310 100%);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 48px;
}

.process-section h2 {
  color: var(--off);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step {
  min-height: 250px;
  padding: 34px 28px 32px 0;
  border-right: 1px solid var(--line);
}

.step:last-child {
  border-right: 0;
}

.step span {
  display: block;
  margin-bottom: 54px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 700;
}

.step h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.step p {
  color: rgba(244, 241, 238, 0.72);
  font-size: 16px;
}

.split-section {
  padding: 96px 0;
  background: #110e0f;
  color: var(--off);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.visual-panel {
  overflow: hidden;
  border: 1px solid rgba(244, 241, 238, 0.14);
  box-shadow: 0 24px 60px var(--shadow);
}

.visual-panel img {
  width: 100%;
}

.split-copy h2 {
  color: var(--off);
}

.split-copy p {
  color: rgba(244, 241, 238, 0.75);
}

.quiet-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.quiet-list li {
  padding-bottom: 14px;
  color: rgba(244, 241, 238, 0.82);
  border-bottom: 1px solid rgba(244, 241, 238, 0.14);
}

.trust-section {
  padding: 92px 0;
  background: var(--paper);
}

.trust-items {
  display: grid;
  gap: 26px;
}

.trust-items article {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(116, 18, 44, 0.18);
}

.trust-items h3 {
  margin-bottom: 8px;
  color: var(--wine);
  font-size: 21px;
}

.contact-section {
  padding: 96px 0;
  background: var(--off);
}

.contact-layout {
  align-items: center;
}

.contact-panel {
  padding: 42px;
  color: var(--off);
  background:
    radial-gradient(circle at 86% 18%, rgba(216, 91, 113, 0.22), transparent 30%),
    linear-gradient(135deg, var(--wine-2), #2a0310);
}

.contact-panel h3 {
  margin: 26px 0 10px;
  font-size: 26px;
}

.contact-panel p {
  color: rgba(244, 241, 238, 0.74);
}

.panel-mark {
  width: 62px;
  height: 62px;
  color: var(--off);
}

.copy-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: rgba(244, 241, 238, 0.82);
  font-size: 14px;
}

.site-footer {
  padding: 30px 0;
  color: rgba(244, 241, 238, 0.68);
  background: #120006;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 68px;
    padding: 0 20px;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(18, 0, 6, 0.96) 0%, rgba(38, 2, 12, 0.78) 58%, rgba(74, 7, 23, 0.34) 100%),
      url("./assets/origena-hero-bg.png") center / cover no-repeat;
  }

  h1 {
    max-width: 680px;
    font-size: 50px;
    line-height: 1.04;
  }

  .lead {
    font-size: 19px;
    line-height: 1.52;
  }

  .intro-grid,
  .split-grid,
  .trust-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .intro-band h2,
  .process-section h2,
  .split-copy h2,
  .trust-section h2,
  .contact-section h2 {
    font-size: 35px;
    line-height: 1.12;
  }

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

  .step {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step:last-child {
    border-bottom: 0;
  }

  .step span {
    margin-bottom: 18px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: 100%;
    max-width: calc(100% - 28px);
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    letter-spacing: 4px;
  }

  h1 {
    max-width: 360px;
    font-size: 38px;
    line-height: 1.07;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 118px;
    padding-bottom: 52px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 0.14em;
  }

  .lead {
    max-width: 350px;
    font-size: 17px;
    line-height: 1.48;
  }

  .intro-band h2,
  .process-section h2,
  .split-copy h2,
  .trust-section h2,
  .contact-section h2 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.18;
  }

  .intro-copy p,
  .split-copy p,
  .contact-section p,
  .trust-items p,
  .step p {
    font-size: 16px;
  }

  .intro-band h2,
  .intro-copy {
    max-width: 340px;
  }

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

  .intro-band,
  .process-section,
  .split-section,
  .trust-section,
  .contact-section {
    padding: 68px 0;
  }

  .contact-panel {
    padding: 30px;
  }
}
