:root {
  --bg: #1a1a1a;
  --fg: #ffffff;
  --muted: #a1a1aa; /* zinc-400-ish */
  --muted2: #71717a;
  --card: #18181b; /* zinc-900-ish */
  --card2: #27272a; /* zinc-800-ish */
  --border: #3f3f46; /* zinc-700-ish */
  --accent: #ca9e67;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    "Hind",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background: var(--bg);
  color: var(--fg);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}
.site-header .brand {
  margin: 0 auto;
  width: 15rem;
}
.site-header .brand img {
  display: flex;
}

/* Hero */
.hero {
  position: relative;
  padding: 8.25rem 1rem 5rem; /* top accounts for fixed header */
  min-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.hero .bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.6),
    rgba(26, 26, 26, 0.4),
    rgba(26, 26, 26, 1)
  );
}

.hero .content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero h2 {
  margin: 0 0 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.05;
  font-size: clamp(2.1rem, 5.3vw, 3.75rem);
}
.hero h2 span {
  display: inline-block;
}
.accent {
  color: var(--accent);
}
.hero p.lead {
  margin: 0 auto 2.75rem;
  max-width: 42rem;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--muted);
}

/* Brochure mock */
.brochure {
  position: relative;
  display: block;
  margin: 0 auto 2.75rem;
  width: min(920px, 100%);
  transform: translateZ(0);
}
.brochure .glow {
  position: absolute;
  inset: -10px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.18);
  filter: blur(28px);
  transition: background 0.35s ease;
}
.brochure .frame {
  position: relative;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid #27272a;
  padding: 0.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.5s ease;
}
.brochure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  filter: brightness(0.9);
  transition: filter 0.5s ease;
}
.brochure .cta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.brochure .cta-pill {
  display: inline-flex;
  align-items: center;
  padding: 1.05rem 2rem 0.8rem 2.2rem;
  border-radius: 9rem;
  background: var(--accent);
  color: #000;
  font-weight: 500;
}

.brochure:hover .frame {
  transform: scale(1.02);
}
.brochure:hover img {
  filter: brightness(1);
}
.brochure:hover .cta-overlay {
  opacity: 1;
}
.brochure:hover .glow {
  background: rgba(212, 175, 55, 0.28);
}

/* Download button */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.05rem 2rem 0.8rem 2.2rem;
  border-radius: 9rem;
  font-weight: 500;
  font-size: 1.4rem;
  background: #fff;
  color: #000;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.15s ease,
    background 0.25s ease;
  width: fit-content;
  margin: 0 auto;
}
.btn i {
  font-size: 1.35rem;
}
.btn:hover {
  background: var(--accent);
}
.btn:active {
  transform: scale(0.98);
}

.meta {
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 600;
}

/* Feature grid */
.features {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 2rem));
  margin: 6rem auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature .icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--card2);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}
.feature .icon i {
  color: var(--accent);
  font-size: 2.6rem;
}
.feature h3 {
  margin: 0.1rem 0 0.1rem;
  font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.75rem);
}
.feature p {
  margin: 0;
  color: var(--muted2);
  font-size: clamp(0.8rem, 1.15vw, 1.25rem);
  text-wrap: balance;
  line-height: 1.1em;
}

/* Footer */
.site-footer {
  padding: 3.25rem 1rem;
  border-top: 1px solid #18181b;
  background: rgba(0, 0, 0, 0.2);
}
.site-footer .quote {
  margin: 0 auto 1.75rem;
  color: var(--muted);
  text-align: center;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}
.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.footer-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.footer-link .kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #616168;
  font-weight: 600;
  transition: color 0.2s ease;
}
.footer-link .url {
  font-size: clamp(1.25rem, 2.7vw, 1.6rem);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.1rem;
  transition: border-color 0.2s ease;
}
.footer-link:hover .kicker {
  color: var(--accent);
}
.footer-link:hover .url {
  border-color: var(--accent);
}

.footer-divider {
  display: none;
  width: 1px;
  height: 48px;
  background: #27272a;
}
.footer-address {
  font-size: 1.1rem;
  color: #71717a;
}
.footer-address a:hover {
  color: var(--accent);
}

.copyright {
  color: #777777;
  margin-top: 3rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}
.copyright a {
  color: #fff;
}
.copyright a:hover {
  color: var(--accent);
}

@media (min-width: 0px) and (max-width: 767px) {
  .footer-address {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .hero {
    padding-top: 9.25rem;
  }
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-address {
    text-align: left;
  }
  .footer-grid {
    flex-direction: row;
    gap: 3rem;
  }
  .footer-divider {
    display: block;
  }
}
/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }
  .brochure .frame,
  .brochure img,
  .brochure .cta-overlay,
  .brochure .glow,
  .btn {
    transition: none !important;
  }
}
