:root {
  --fairway: #1B4332;
  --pine: #0D2818;
  --cream: #F5F0E6;
  --wood: #C9A876;
  --gold: #B8860B;
  --white: #FFFFFF;
  --text: #2A2A24;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: var(--pine);
  line-height: 1.2;
  margin-top: 0;
}

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

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

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

/* Header */
header.site-header {
  background: var(--fairway);
  border-bottom: 3px solid var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 6px;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--fairway), var(--pine));
  color: var(--cream);
  padding: 72px 24px 64px;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 14px;
}

.hero p.lead {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 1.15rem;
  color: var(--wood);
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 6px;
  border: 2px solid var(--gold);
  transition: background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  background: transparent;
  color: var(--gold);
}

.btn.outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn.outline:hover {
  background: var(--cream);
  color: var(--pine);
}

/* Sections */
section {
  padding: 60px 0;
}

section.alt {
  background: var(--white);
  border-top: 1px solid #e6ddc8;
  border-bottom: 1px solid #e6ddc8;
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
  color: #55574f;
}

/* Feature / format grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid #e6ddc8;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 24px;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.card p {
  margin: 0;
  color: #4c4e46;
  font-size: 0.96rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 8px;
}

.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--fairway);
  color: var(--white);
  font-weight: 700;
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

/* Screenshot gallery */
.shot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.shot {
  background: var(--white);
  border: 1px solid #e6ddc8;
  border-radius: 10px;
  overflow: hidden;
}

.shot img {
  width: 100%;
  border-bottom: 1px solid #e6ddc8;
}

.shot .caption {
  padding: 14px 16px;
}

.shot .caption h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.shot .caption p {
  margin: 0;
  font-size: 0.9rem;
  color: #55574f;
}

/* Coming soon badge */
.badge-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--pine);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 8px;
  border: 1px solid var(--wood);
  font-weight: 600;
}

.badge-box .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

/* FAQ */
.faq-item {
  background: var(--white);
  border: 1px solid #e6ddc8;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 20px 24px;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--fairway);
}

.faq-item p {
  margin: 0 0 6px;
  color: #4c4e46;
}

.faq-item p:last-child { margin-bottom: 0; }

/* About / contact */
.contact-card {
  background: var(--white);
  border: 1px solid #e6ddc8;
  border-radius: 10px;
  padding: 32px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.contact-card a.email {
  display: inline-block;
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Footer */
footer {
  background: var(--pine);
  color: var(--wood);
  padding: 32px 24px;
  text-align: center;
  font-size: 0.9rem;
}

footer a { color: var(--cream); }

@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  .nav { flex-direction: column; align-items: flex-start; }
}
