:root {
  --bg0: #0c1210;
  --bg1: #152019;
  --ink: #f3efe6;
  --muted: #b7c0b4;
  --accent: #e8a87c;
  --accent2: #7ec8a3;
  --line: rgba(243, 239, 230, 0.12);
  --card: rgba(21, 32, 25, 0.72);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100dvh;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 700px at 10% -10%, #2a4638 0%, transparent 55%),
    radial-gradient(900px 600px at 100% 0%, #3a2e22 0%, transparent 50%),
    linear-gradient(165deg, var(--bg0), var(--bg1) 55%, #0a0f0d);
  line-height: 1.45;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

.hero, .catalog, .foot { position: relative; z-index: 1; }

.hero {
  padding: max(28px, env(safe-area-inset-top)) 22px 36px;
  max-width: 720px;
  margin: 0 auto;
  animation: rise 0.7s ease both;
}

.brand {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 10vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.tagline {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5.2vw, 1.85rem);
  font-weight: 500;
  max-width: 18ch;
}

.lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1rem;
  max-width: 36ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:active { transform: scale(0.98); }
.btn.primary {
  background: var(--accent);
  color: #1a120c;
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn.soft {
  background: rgba(126, 200, 163, 0.16);
  color: var(--accent2);
  border: 1px solid rgba(126, 200, 163, 0.35);
}

.catalog {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 8px 16px 48px;
  max-width: 720px;
  margin: 0 auto;
}

.feature {
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  animation: rise 0.6s ease both;
}
.feature:nth-child(1) { animation-delay: 0.05s; }
.feature:nth-child(2) { animation-delay: 0.1s; }
.feature:nth-child(3) { animation-delay: 0.15s; }

.media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 10;
  background: #0a0f0d;
}
.media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(8, 12, 10, 0.75));
  pointer-events: none;
}

.copy h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}
.copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.foot {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  padding: 0 16px max(28px, env(safe-area-inset-bottom));
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (min-width: 640px) {
  .feature {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }
  .feature:nth-child(even) .media { order: 2; }
}
