:root {
  --bg: #1a1917;
  --bg-alt: #14130f;
  --card: #242320;
  --card2: #2c2a26;
  --border: #3a3833;
  --cream: #f5f1e8;
  --muted: #a79e8e;
  --gold: #c9a227;
  --gold-light: #e4c862;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: -apple-system, "Calibri", "Segoe UI", Arial, sans-serif;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-family: Cambria, "Times New Roman", serif;
  font-weight: 700;
  margin: 0;
}

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

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(26, 25, 23, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-name {
  font-family: Cambria, serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  color: var(--cream);
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold-light); }

.btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-gold {
  background: var(--gold);
  color: #1a1917;
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(201,162,39,0.3); }
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold-light);
}
.btn-outline:hover { background: rgba(201,162,39,0.08); }

/* Hero */
.hero {
  position: relative;
  padding: 6rem 0 5rem;
  text-align: center;
  background-image:
    linear-gradient(180deg, rgba(15,14,12,0.78) 0%, rgba(18,17,15,0.90) 55%, rgba(26,25,23,1) 100%),
    url("https://images.unsplash.com/photo-1756027180885-bb0ef78565fc?w=2200&q=70&auto=format&fit=crop&sat=-20");
  background-size: cover;
  background-position: center 35%;
  background-attachment: scroll;
}
.hero .wrap { position: relative; z-index: 1; }
.hero .kicker {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 1rem auto 1.2rem;
  max-width: 720px;
}
.hero p.sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.2rem;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Badge (Flow State mark) */
.logo-mark {
  height: 40px;
  width: auto;
  display: block;
}
.badge {
  height: 150px;
  width: auto;
  margin: 0 auto 1.6rem;
  display: block;
}

/* Sections */
section { padding: 4rem 0; }
.section-alt { background: var(--bg-alt); }

.section-photo {
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(20,19,17,0.90) 0%, rgba(20,19,17,0.94) 100%),
    url("https://images.unsplash.com/photo-1571902943202-507ec2618e8f?w=2200&q=65&auto=format&fit=crop&sat=-60");
  background-size: cover;
  background-position: center;
}

.photo-strip {
  height: 260px;
  background-image:
    linear-gradient(90deg, rgba(20,19,17,0.60) 0%, rgba(20,19,17,0.20) 45%, rgba(20,19,17,0.60) 100%),
    url("https://images.unsplash.com/photo-1627627256672-027a4613d028?w=2200&q=70&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-photo {
  background-image:
    linear-gradient(180deg, rgba(36,35,32,0.94) 0%, rgba(36,35,32,0.97) 100%),
    url("https://images.unsplash.com/photo-1674062313456-33d7148ac026?w=2200&q=65&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}
.section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: 1.9rem;
  margin-bottom: 2.2rem;
  max-width: 640px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card);
  border-radius: 10px;
  padding: 1.8rem;
}
.card h3 { font-size: 1.15rem; margin-bottom: 0.7rem; color: var(--cream); }
.card p { color: var(--muted); line-height: 1.55; font-size: 0.96rem; margin: 0; }

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2e2b24;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Stat row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.stat {
  background: var(--card);
  border-radius: 10px;
  padding: 1.6rem;
}
.stat .num {
  font-family: Cambria, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}
.stat .label { color: var(--muted); font-size: 0.92rem; margin-top: 0.3rem; }

/* Feature list */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex;
  gap: 0.8rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--cream);
  font-size: 0.98rem;
  line-height: 1.5;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .dot {
  min-width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.5rem;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 4rem 1.5rem;
  border-radius: 14px;
  margin: 0 1.5rem;
}
.cta-band h2 { font-size: 1.8rem; margin-bottom: 0.8rem; }
.cta-band p { color: var(--muted); margin-bottom: 1.8rem; }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 2.2rem 0;
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Form */
.form-card {
  background: var(--card);
  border-radius: 12px;
  padding: 2.2rem;
  max-width: 620px;
  margin: 0 auto;
}
.form-row { margin-bottom: 1.2rem; }
label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
input, textarea, select {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
  color: var(--cream);
  font-size: 0.96rem;
  font-family: inherit;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
}
textarea { resize: vertical; min-height: 110px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

@media (max-width: 760px) {
  .grid-2, .grid-3, .stat-row, .form-grid-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .nav-links { display: none; }
}
