:root {
  --ink: #1c1917;
  --cream: #f3efe7;
  --amber: #e8b86d;
  --amber-hot: #f5b400;
  --wine: #7b1e2e;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fafaf9;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 650;
  background: linear-gradient(145deg, var(--amber-hot), #c9933a);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(232, 184, 109, 0.35);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.header-cta {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fafaf9;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 250, 249, 0.28);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.header-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 184, 109, 0.55);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fafaf9;
  background:
    radial-gradient(ellipse 80% 60% at 10% -10%, rgba(201, 147, 58, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 100%, rgba(123, 30, 46, 0.45), transparent 50%),
    linear-gradient(165deg, #292524 0%, #1c1917 42%, #0c0a09 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  animation: drift 14s ease-in-out infinite alternate;
}

.hero-glow-a {
  width: 22rem;
  height: 22rem;
  top: -4rem;
  left: -3rem;
  background: rgba(245, 180, 0, 0.22);
}

.hero-glow-b {
  width: 18rem;
  height: 18rem;
  right: -2rem;
  bottom: 10%;
  background: rgba(123, 30, 46, 0.35);
  animation-delay: -4s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(1.5rem, -1rem) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  padding: 7rem clamp(1.25rem, 4vw, 3rem) 4rem;
  animation: rise 0.9s ease-out both;
}

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

.hero-tagline {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.01em;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-lead {
  margin: 1.35rem 0 0;
  max-width: 36rem;
  font-size: 1.05rem;
  color: rgba(250, 250, 249, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.35rem;
  border-radius: 0.85rem;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--amber-hot);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(245, 180, 0, 0.28);
}

.btn-primary:hover {
  background: #ffc933;
}

.btn-ghost {
  color: #fafaf9;
  border: 1px solid rgba(250, 250, 249, 0.28);
  background: transparent;
}

.btn-ghost:hover {
  border-color: rgba(232, 184, 109, 0.65);
  background: rgba(255, 255, 255, 0.05);
}

.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 3rem);
  max-width: 68rem;
  margin: 0 auto;
  animation: rise 1s ease-out 0.15s both;
}

.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0.85rem 0 0;
  max-width: 36rem;
  color: #57534e;
  font-size: 1.05rem;
}

.features {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.features h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  font-weight: 650;
}

.features p {
  margin: 0;
  color: #57534e;
  font-size: 0.95rem;
}

.section-dark {
  max-width: none;
  margin: 0;
  text-align: center;
  color: #fafaf9;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201, 147, 58, 0.18), transparent 55%),
    #1c1917;
}

.section-dark .section-lead {
  margin-left: auto;
  margin-right: auto;
  color: rgba(250, 250, 249, 0.72);
}

.section-dark .btn {
  margin-top: 1.75rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
  font-size: 0.85rem;
  color: #78716c;
  border-top: 1px solid rgba(28, 25, 23, 0.08);
}

.site-footer a {
  color: var(--wine);
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .hero-inner {
    padding-top: 6.5rem;
  }
}
