:root {
  --ink: #12181f;
  --ink-soft: #2a3440;
  --paper: #f3efe6;
  --paper-dim: #e5dfd2;
  --copper: #c45c26;
  --copper-deep: #9a4318;
  --fog: rgba(243, 239, 230, 0.88);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(196, 92, 38, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(42, 52, 64, 0.08), transparent 50%),
    linear-gradient(180deg, #f7f3eb 0%, var(--paper) 40%, #ebe5d8 100%);
  font-family: var(--font-body);
  line-height: 1.55;
}

a {
  color: inherit;
}

.top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, rgba(18, 24, 31, 0.55), transparent);
  color: var(--paper);
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.top nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.92;
}

.nav-cta {
  border: 1px solid rgba(243, 239, 230, 0.45);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  transform: scale(1.02);
  animation: heroDrift 22s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 24, 31, 0.18) 0%, rgba(18, 24, 31, 0.42) 48%, rgba(18, 24, 31, 0.88) 100%),
    radial-gradient(800px 400px at 18% 82%, rgba(196, 92, 38, 0.22), transparent 60%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  padding: 7rem 1.25rem 3.5rem;
  animation: rise 0.9s ease both;
}

.hero-brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero h1 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.6vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 18ch;
}

.hero-lead {
  margin: 0 0 1.5rem;
  max-width: 34ch;
  font-size: 1.05rem;
  color: rgba(243, 239, 230, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: var(--copper);
  color: #fff8f2;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--copper-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(243, 239, 230, 0.45);
  color: var(--paper);
}

.btn-ghost:hover {
  background: rgba(243, 239, 230, 0.1);
}

.block {
  padding: 4.5rem 1.25rem;
  max-width: 42rem;
  margin: 0 auto;
}

.block-alt {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(18, 24, 31, 0.94), #1a222c 100%);
  color: var(--paper);
  padding-left: max(1.25rem, calc((100% - 42rem) / 2));
  padding-right: max(1.25rem, calc((100% - 42rem) / 2));
}

.eyebrow {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--copper);
}

.block h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.support {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.block-alt .support {
  color: rgba(243, 239, 230, 0.82);
}

.steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

.steps li {
  display: grid;
  gap: 0.35rem;
  padding-left: 3rem;
  position: relative;
  counter-increment: step;
  animation: rise 0.7s ease both;
}

.steps li:nth-child(2) { animation-delay: 0.08s; }
.steps li:nth-child(3) { animation-delay: 0.16s; }

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(196, 92, 38, 0.2);
  color: #f0b08a;
  border: 1px solid rgba(196, 92, 38, 0.45);
}

.steps strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.steps span {
  color: rgba(243, 239, 230, 0.78);
}

.contact .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact .btn-ghost {
  color: var(--ink);
  border-color: rgba(18, 24, 31, 0.25);
}

.contact .btn-ghost:hover {
  background: rgba(18, 24, 31, 0.05);
}

.fine {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: #6d6458;
}

.foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.5rem 1.25rem 2.5rem;
  border-top: 1px solid rgba(18, 24, 31, 0.08);
  color: #6d6458;
  font-size: 0.9rem;
}

.foot-links {
  display: flex;
  gap: 1rem;
}

.foot a {
  text-decoration: none;
}

.foot a:hover {
  color: var(--ink);
}

.legal {
  max-width: 40rem;
  margin: 0 auto;
  padding: 6.5rem 1.25rem 3rem;
}

.legal h1 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.legal a.back {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--copper-deep);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.05) translate3d(-0.8%, -0.6%, 0); }
}

@media (min-width: 800px) {
  .top,
  .hero-copy {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .block {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media,
  .hero-copy,
  .steps li {
    animation: none !important;
  }
}
