:root {
  --ink: #1a1410;
  --ink-soft: #3d342c;
  --muted: #6b5e52;
  --paper: #f7f0e8;
  --paper-deep: #efe4d6;
  --coral: #e24b3b;
  --coral-deep: #c53628;
  --teal: #1f6f6a;
  --glow: rgba(226, 75, 59, 0.35);
  --radius: 999px;
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  background: var(--paper);
  position: relative;
  overflow-x: hidden;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 85% 8%, rgba(226, 75, 59, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 45% at 10% 90%, rgba(31, 111, 106, 0.16), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 40%, rgba(239, 228, 214, 0.9), transparent 70%),
    linear-gradient(165deg, #faf5ef 0%, #f3e8dc 45%, #ebe0d2 100%);
  animation: atmosphere-shift 18s ease-in-out infinite alternate;
}

@keyframes atmosphere-shift {
  from { filter: hue-rotate(0deg) saturate(1); }
  to { filter: hue-rotate(8deg) saturate(1.08); }
}

a {
  color: var(--teal);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--coral-deep);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  max-width: 1120px;
  margin: 0 auto;
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
}

.brand span {
  color: var(--coral);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
}

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

.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: var(--coral) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem) 4rem;
}

.hero {
  min-height: calc(100svh - 5.5rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: 1rem 0 3rem;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 0.75rem;
}

.hero h1,
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1.1rem;
  color: var(--ink);
  animation: rise 0.7s ease both;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 0 0 1.75rem;
  animation: rise 0.7s ease 0.08s both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.7s ease 0.16s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 30px var(--glow);
}

.btn-primary:hover {
  background: var(--coral-deep);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26, 20, 16, 0.18);
}

.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(-2px);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(52vh, 420px);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 2rem 2rem 2rem 0.5rem;
  background: #0a0a0a;
  box-shadow: 0 24px 60px rgba(26, 20, 16, 0.18);
  animation: rise 0.9s ease 0.12s both;
}

.hero-logo {
  display: block;
  width: min(100%, 320px);
  height: auto;
  object-fit: contain;
}

.page-hero {
  padding: 2.5rem 0 1.5rem;
  max-width: 42rem;
}

.page-hero .btn-primary {
  margin-top: 0.5rem;
}

.section {
  padding: 3rem 0 1rem;
  max-width: 42rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
}

.section-lede {
  color: var(--ink-soft);
  margin: 0 0 1.75rem;
}

.section-band {
  max-width: none;
  margin: 2.5rem 0 0;
  padding: 2.5rem clamp(1.25rem, 3vw, 2.5rem);
  background: linear-gradient(120deg, rgba(31, 111, 106, 0.12), rgba(226, 75, 59, 0.12));
  border-radius: 1.5rem;
}

.section-band .btn-primary {
  margin-top: 0.5rem;
}

.feature-list,
.reason-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.feature-list li,
.reason-list li {
  padding: 0;
  border: none;
  background: none;
}

.feature-list strong,
.reason-list h2 {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.reason-list {
  counter-reset: reason;
}

.reason-list li {
  counter-increment: reason;
  padding-left: 3rem;
  position: relative;
}

.reason-list li::before {
  content: counter(reason);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--coral);
  line-height: 1.2;
}

.reason-list h2 {
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
}

.reason-list p {
  margin: 0;
  color: var(--ink-soft);
}

.prose p {
  color: var(--ink-soft);
}

.site-footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 4vw, 3rem) 2.5rem;
  border-top: 1px solid rgba(26, 20, 16, 0.1);
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin: 1.25rem 0;
}

.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--coral);
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
}

@media (max-width: 840px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1.5rem;
  }

  .hero-visual {
    min-height: 240px;
    order: -1;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
