@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&family=Roboto+Slab:wght@400;500;600;700&display=swap");

:root {
  --gold: #c9a84c;
  --gold-light: #ddc06e;
  --near-black: #060810;
  --bg-1: #090c10;
  --bg-2: #0e1117;
  --card: #161b22;
  --text: #e8e6df;
  --text-muted: #a7a9ad;
  --border: rgba(201, 168, 76, 0.18);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background: var(--bg-1);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Roboto Slab", serif;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0 0 1em;
  color: var(--text-muted);
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--gold-light);
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.6em;
  display: block;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 1em 0;
}

.center {
  text-align: center;
}
.center .divider {
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 72px 0;
}

.section--tight {
  padding: 48px 0;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--gold);
  color: #17140a;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.95em 1.9em;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  background: var(--gold-light);
  color: #17140a;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(201, 168, 76, 0.25);
}

.btn--outline {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  background: #1d232c;
  color: #fff;
}

/* Top bar */
.topbar {
  background: var(--gold);
  color: #17140a;
  font-size: 0.85rem;
  font-weight: 600;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar a {
  color: #17140a;
}

/* Header / nav */
.site-header {
  background: var(--near-black);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}

.site-logo img {
  height: 46px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: #fff;
  font-size: 1.4rem;
  padding: 4px 10px;
  border-radius: 3px;
  cursor: pointer;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-text-short {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 130px 0 100px;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 16, 0.78) 0%, rgba(6, 8, 16, 0.88) 60%, var(--bg-1) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero p.lead {
  font-size: 1.15rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Stat strip */
.stats {
  background: var(--gold);
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 34px 24px;
  gap: 16px;
}

.stats .stat-num {
  font-family: "Roboto Slab", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #17140a;
}

.stats .stat-label {
  color: #3a3116;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Cards / grid */
.grid {
  display: grid;
  gap: 24px;
}

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

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 34px 28px;
}

.card .icon {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
}

.card h3 {
  margin-bottom: 0.4em;
  font-size: 1.2rem;
}

.card p {
  margin-bottom: 0;
}

/* Split content sections */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split img {
  border-radius: 6px;
}

.split.reverse .split-media {
  order: 2;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em;
  display: grid;
  gap: 10px;
}

.feature-list li {
  color: var(--text);
  padding-left: 1.6em;
  position: relative;
}

.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Testimonials */
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 30px;
}

.testimonial .stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonial p.quote {
  color: var(--text);
  font-style: italic;
}

.testimonial .attribution {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial .attribution span {
  display: block;
  color: var(--text-muted);
  font-weight: 400;
}

/* Contact strip */
.contact-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-block .icon {
  color: var(--gold);
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-block h4 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-block p {
  margin: 0;
}

/* Video */
.video-wrap {
  background: #000;
  padding: 0;
}

.video-wrap video {
  width: 100%;
  display: block;
  max-height: 640px;
  object-fit: cover;
}

/* FAQ accordion */
.accordion {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.accordion-item + .accordion-item {
  border-top: 1px solid var(--border);
}

.accordion-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card);
}

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

.accordion-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
  margin-left: 12px;
  transition: transform 0.2s ease;
}

.accordion-item[open] summary::after {
  transform: rotate(45deg);
}

.accordion-item .accordion-body {
  padding: 4px 24px 22px;
  color: var(--text-muted);
  background: var(--bg-2);
}

/* Forms */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: #fff;
  padding: 12px 14px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-status {
  margin-top: 14px;
  font-size: 0.9rem;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  color: #7fd39c;
}

.form-status.error {
  color: #e08b8b;
}

/* CTA band */
.cta-band {
  background: var(--gold);
  text-align: center;
}

.cta-band h2 {
  color: #17140a;
}

.cta-band p {
  color: #3a3116;
}

.cta-band .btn {
  background: #17140a;
  color: var(--gold);
}

.cta-band .btn:hover {
  background: #262112;
  color: var(--gold-light);
}

/* Payment / small text lists */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  justify-content: center;
}

.pill {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--text);
}

/* Footer */
.site-footer {
  background: var(--bg-2);
  padding-top: 64px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-grid h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-grid ul a,
.footer-grid ul li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-brand .contact-line {
  display: block;
  margin-top: 6px;
}

.footer-bottom {
  background: var(--near-black);
  padding: 20px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: var(--text-muted);
  margin-left: 18px;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* Legal pages */
.legal h2 {
  margin-top: 2em;
  font-size: 1.4rem;
}

.legal ul,
.legal ol {
  color: var(--text-muted);
}

.legal p,
.legal li {
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--near-black);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 14px;
    border-top: 1px solid var(--border);
    display: none;
  }
  .main-nav.is-open {
    display: flex;
  }
  .header-actions .btn span.btn-text-full {
    display: none;
  }
  .header-actions .btn span.btn-text-short {
    display: inline;
  }
  .split,
  .split.reverse .split-media {
    grid-template-columns: 1fr;
    order: initial;
  }
  .split {
    display: flex;
    flex-direction: column;
  }
  .split.reverse {
    flex-direction: column-reverse;
  }
}

@media (max-width: 640px) {
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }
  .stats .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 52px 0;
  }
  .topbar .container {
    justify-content: center;
    text-align: center;
  }
}
