@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600&display=swap');

:root {
  color-scheme: light dark;
  --bg: #faf7f2;
  --fg: #241f18;
  --muted: #6b6357;
  --card: #ffffff;
  --border: rgba(36, 31, 24, 0.1);
  --accent: #1f5f5b;
  --accent-dark: #163f3c;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14181a;
    --fg: #f1ece2;
    --muted: #a9b0ac;
    --card: #1c2224;
    --border: rgba(241, 236, 226, 0.12);
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #14181a;
  --fg: #f1ece2;
  --muted: #a9b0ac;
  --card: #1c2224;
  --border: rgba(241, 236, 226, 0.12);
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #faf7f2;
  --fg: #241f18;
  --muted: #6b6357;
  --card: #ffffff;
  --border: rgba(36, 31, 24, 0.1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; line-height: 1.15; margin: 0; }
a { color: inherit; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-name { font-size: 1.15rem; font-weight: 600; text-decoration: none; }
nav.links { display: flex; gap: 1.5rem; align-items: center; }
nav.links a { text-decoration: none; font-size: 0.9rem; color: var(--muted); }
nav.links a.cta {
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--fg);
  cursor: pointer;
  padding: 0;
}
.theme-toggle svg { width: 1.1rem; height: 1.1rem; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
@media (prefers-color-scheme: dark) {
  .theme-toggle .icon-sun { display: block; }
  .theme-toggle .icon-moon { display: none; }
}
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: block; }

@media (max-width: 760px) {
  nav.links a:not(.cta):not(.theme-toggle) { display: none; }
}

.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}
.hero h1 {
  font-size: 2.6rem;
  margin: 0.75rem auto 1rem;
  max-width: 640px;
}
.hero .subhead {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-ghost { border: 1px solid var(--border); color: var(--fg); }

.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}
.section-head h2 { font-size: 1.8rem; margin-top: 0.4rem; }

section { padding: 4rem 0; }
section.alt { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.example-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  display: block;
}
.example-card .cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  font-weight: 600;
}
.example-card h3 { font-size: 1.1rem; margin: 0.4rem 0 0.5rem; }
.example-card p { color: var(--muted); font-size: 0.88rem; margin: 0; }
.example-card .visit { display: inline-block; margin-top: 0.75rem; font-size: 0.85rem; font-weight: 600; color: var(--accent); }
.examples-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 2rem; }

.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}
.price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3rem;
  margin: 0.5rem 0;
}
.price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  text-align: left;
  display: grid;
  gap: 0.65rem;
}
.pricing-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; }
.pricing-list svg { flex-shrink: 0; width: 1.1rem; height: 1.1rem; color: var(--accent); margin-top: 0.15rem; }

.cta-banner {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 3.5rem 0;
}
.cta-banner h2 { font-size: 1.7rem; margin-bottom: 0.5rem; }
.cta-banner p { opacity: 0.9; margin-bottom: 1.5rem; }
.cta-banner .btn-primary { background: #fff; color: var(--accent); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}
.contact-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
}
.contact-item .label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 0.4rem; }
.contact-item .value { font-weight: 600; font-size: 1.05rem; }

footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 760px) {
  .hero h1 { font-size: 2rem; }
  .steps-grid, .examples-grid, .contact-grid { grid-template-columns: 1fr; }
}
