:root {
  --void: #07060a;
  --ink: #120f15;
  --panel: #1e1920;
  --panel-2: #2a222c;
  --hairline: rgba(243, 235, 221, 0.1);
  --ivory: #f3ebdd;
  --mist: #8a8278;
  --champagne: #e4c79a;
  --gold: #c6a46a;
  --ember: #d4652f;
  --on-accent: #1a120d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 1.25rem;
  --max: 72rem;
  --nav-h: 4.25rem;
  --font-display: "Iowan Old Style", Palatino, "Palatino Linotype", "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 0.75rem);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--void);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--champagne);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ivory);
}

h1,
h2,
h3,
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ivory);
}

h1 {
  font-size: clamp(2.15rem, 6vw, 4.1rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}

p {
  margin: 0 0 1rem;
  color: var(--mist);
}

.lede {
  font-size: 1.15rem;
  max-width: 38rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  border-bottom: 1px solid var(--hairline);
  background: rgba(7, 6, 10, 0.86);
  backdrop-filter: blur(16px);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ivory);
  min-width: 0;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.brand-name {
  font-size: 1.02rem;
  white-space: nowrap;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--mist);
  text-decoration: none;
  font-size: 0.92rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ivory);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
}

.btn-gold,
.nav-cta {
  background: var(--champagne);
  color: var(--on-accent);
}

.btn-gold:hover,
.nav-cta:hover {
  color: var(--on-accent);
  filter: brightness(1.06);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--hairline);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: transparent;
  color: var(--ivory);
  display: grid;
  place-items: center;
  padding: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -5px;
}

.menu-toggle span::after {
  top: 5px;
}

.hero {
  padding: 2.4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 40%;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(212, 101, 47, 0.16), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

.hero-copy {
  max-width: 38rem;
}

.hero-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.75rem;
}

.trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.trust li {
  list-style: none;
  margin: 0;
  padding: 0.85rem 0.95rem;
  background: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  color: var(--ivory);
  font-size: 0.88rem;
  line-height: 1.35;
}

.phone {
  justify-self: center;
  width: min(18.5rem, 78vw);
}

.phone img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.section {
  padding: 4.2rem 0;
  border-top: 1px solid var(--hairline);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.cards {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem 1.2rem;
}

.card p:last-child,
.step p:last-child {
  margin-bottom: 0;
}

.steps {
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  gap: 0.35rem;
  padding: 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, var(--ink), #0e0c12);
}

.step-num {
  color: var(--champagne);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.shots {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.shots figure {
  margin: 0;
  flex: 0 0 min(16.5rem, 72vw);
  scroll-snap-align: start;
}

.shots img {
  width: 100%;
  border-radius: 1.5rem;
  border: 1px solid var(--hairline);
}

.shots figcaption {
  margin-top: 0.65rem;
  color: var(--mist);
  font-size: 0.88rem;
}

.use-grid {
  display: grid;
  gap: 1rem;
}

.use-card h3 a {
  text-decoration: none;
  color: var(--ivory);
}

.use-card h3 a:hover {
  color: var(--champagne);
}

.guide-grid {
  display: grid;
  gap: 1rem;
}

.guide-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
}

.guide-card h3 {
  color: var(--ivory);
}

.guide-card span {
  margin-top: auto;
  padding-top: 0.8rem;
  color: var(--champagne);
  font-size: 0.9rem;
  font-weight: 600;
}

.faq details {
  border-bottom: 1px solid var(--hairline);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ivory);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--champagne);
  font-size: 1.3rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0.75rem 0 0.4rem;
}

.more {
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.cta-band {
  text-align: center;
  padding: 4.5rem 0;
}

.cta-band img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin: 0 auto 1.1rem;
}

.cta-band p {
  margin-inline: auto;
}

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 2.4rem 0 6.5rem;
  color: var(--mist);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ivory);
  text-decoration: none;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.footer-links {
  display: grid;
  gap: 0.4rem;
}

.footer-links a {
  color: var(--mist);
  text-decoration: none;
}

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

.legal {
  margin-top: 1.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.82rem;
}

.sticky-download {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(7, 6, 10, 0.94);
  border-top: 1px solid var(--hairline);
  transform: translateY(110%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 220ms ease, visibility 220ms ease;
}

.sticky-download.is-visible {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.sticky-download .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.sticky-download p {
  margin: 0;
  color: var(--ivory);
  font-size: 0.92rem;
  font-weight: 600;
}

.article {
  padding: 2rem 0 4rem;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: var(--mist);
  margin-bottom: 1.4rem;
}

.crumbs a {
  color: var(--mist);
  text-decoration: none;
}

.crumbs a:hover {
  color: var(--champagne);
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2.2rem;
}

.prose ol,
.prose ul {
  color: var(--mist);
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.45rem;
}

.prose li::marker {
  color: var(--champagne);
}

.prose code {
  font-size: 0.92em;
  color: var(--champagne);
}

.shot-inline {
  width: min(18rem, 100%);
  margin: 1.6rem 0;
  border-radius: 1.5rem;
  border: 1px solid var(--hairline);
}

.related {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.related a {
  text-decoration: none;
  color: var(--ivory);
}

.skip {
  position: absolute;
  left: 0.8rem;
  top: -4rem;
  background: var(--champagne);
  color: var(--on-accent);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  z-index: 50;
}

.skip:focus {
  top: 0.8rem;
}

@media (min-width: 720px) {
  .cards,
  .use-grid,
  .guide-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .trust {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 34rem;
  }

  .phone {
    width: 21rem;
  }

  .cards,
  .guide-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .use-grid,
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .shots {
    overflow: visible;
  }

  .shots figure {
    flex: 1 1 0;
  }

  .sticky-download {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.4rem;
  }
}

@media (max-width: 959px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(7, 6, 10, 0.97);
    border-bottom: 1px solid var(--hairline);
    padding: 0.6rem 1rem 1.1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 0.8rem 0.2rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-cta {
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .sticky-download {
    transition: none;
  }
}
