@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap');

:root {
  --ink: #0c0a0d;
  --panel: rgba(27, 20, 25, 0.78);
  --cream: #f5eadb;
  --muted: #bfae9f;
  --ember: #f06a38;
  --ember-bright: #ff9368;
  --maple: #a9372b;
  --gold: #d5a25c;
  --line: rgba(245, 234, 219, 0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --shell: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 10%, rgba(169, 55, 43, 0.16), transparent 34rem),
    radial-gradient(circle at 88% 65%, rgba(240, 106, 56, 0.08), transparent 30rem),
    var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

::selection {
  color: var(--ink);
  background: var(--ember-bright);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.ambient {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: -1;
  opacity: .16;
}

.ambient-one {
  background: var(--maple);
  left: -14rem;
  top: 8rem;
}

.ambient-two {
  background: var(--ember);
  right: -16rem;
  bottom: -4rem;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .01em;
}

.brand img,
.footer-brand img {
  filter: drop-shadow(0 8px 24px rgba(240, 106, 56, .2));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .92rem;
  transition: color .2s ease;
}

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

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
  padding: 72px 0 100px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 700;
}

.spark {
  color: var(--ember-bright);
  margin-right: 8px;
}

h1, h2 {
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(4rem, 8vw, 7.4rem);
  line-height: .9;
  letter-spacing: -.055em;
  font-weight: 600;
}

h1 em {
  color: var(--ember-bright);
  font-style: italic;
  font-weight: 500;
}

.hero-lede {
  max-width: 610px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.17rem);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--ember-bright), var(--gold));
  box-shadow: 0 14px 34px rgba(240, 106, 56, .18);
}

.button-ghost {
  color: var(--cream);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}

.micro-row {
  margin-top: 46px;
  color: #81746c;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.micro-row i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--maple);
}

.hero-mark-wrap {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.hero-glow {
  position: absolute;
  width: min(410px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(240,106,56,.18) 0%, rgba(169,55,43,.08) 40%, transparent 70%);
  filter: blur(8px);
}

.hero-mark-simple {
  position: relative;
  width: min(330px, 70vw);
  filter:
    drop-shadow(0 0 30px rgba(240,106,56,.18))
    drop-shadow(0 28px 46px rgba(0,0,0,.4));
}

.follow-section {
  padding: 80px 0 130px;
}

.follow-panel {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 0% 100%, rgba(169,55,43,.14), transparent 27rem),
    var(--panel);
  backdrop-filter: blur(14px);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(30px, 6vw, 68px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 8vw, 100px);
  box-shadow: var(--shadow);
}

.follow-copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 500;
}

.follow-copy > p:last-child {
  color: var(--muted);
  line-height: 1.7;
  max-width: 450px;
  margin-top: 22px;
}

.social-links {
  border-top: 1px solid var(--line);
}

.social-links a {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 15px;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding .2s ease, color .2s ease;
}

.social-links a:hover {
  padding-left: 8px;
  color: var(--ember-bright);
}

.social-links span {
  color: #8e8077;
  font-size: .78rem;
}

.social-links strong { font-size: .92rem; }
.social-links b { font-weight: 400; }

.site-footer {
  min-height: 120px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  color: #776a63;
  font-size: .78rem;
}

.site-footer > p:nth-child(2) { text-align: center; }
.copyright { text-align: right; }
.footer-brand { color: var(--cream); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

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

  .hero-mark-wrap {
    min-height: 330px;
  }

  .follow-panel {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 30px 0;
  }

  .site-footer > p:nth-child(2),
  .copyright { text-align: left; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 28px, 1180px); }

  .site-header {
    min-height: 74px;
    align-items: flex-start;
    padding-top: 18px;
  }

  .brand span { font-size: .92rem; }

  .site-nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-nav a { font-size: .78rem; }

  .hero {
    padding: 70px 0 70px;
  }

  h1 { font-size: clamp(3.5rem, 17vw, 5.2rem); }

  .hero-actions {
    flex-direction: column;
  }

  .button { width: 100%; }

  .hero-mark-wrap {
    min-height: 260px;
  }

  .hero-mark-simple {
    width: min(250px, 68vw);
  }

  .follow-section {
    padding: 40px 0 90px;
  }

  .follow-panel {
    padding: 28px 22px;
  }

  .social-links a {
    grid-template-columns: 1fr auto;
    gap: 6px 16px;
    padding: 12px 0;
  }

  .social-links strong { grid-column: 1 / 2; }
  .social-links b { grid-row: 1 / span 2; grid-column: 2; }
}
