@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --bg: #faf8f5;
  --bg-alt: #f3efe9;
  --surface: #fff;
  --accent: #c75b39;
  --accent-soft: #d97b5a;
  --text: #2a2a2a;
  --text-dim: #6e6e6e;
  --border: rgba(0,0,0,0.08);
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

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

.narrow { max-width: 760px; }

.site-header {
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}

nav a {
  color: var(--text-dim);
  text-decoration: none;
  margin-left: 28px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover { color: var(--accent); }

.hero {
  padding: 100px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 32px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(199,91,57,0.25);
}

.section { padding: 72px 0; }
.section.alt { background: var(--bg-alt); }

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  margin-bottom: 40px;
  text-align: center;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text);
}

.card p { color: var(--text-dim); font-size: 0.92rem; }

.channel h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  margin: 14px 0 6px;
}

.channel p { color: var(--text-dim); font-size: 0.9rem; }

.ch-thumb {
  width: 100%;
  height: 180px;
  border-radius: 8px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step { text-align: center; }

.step .num {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step p { color: var(--text-dim); font-size: 0.88rem; }

.cta { text-align: center; }

.contact-block { margin-bottom: 28px; }
.contact-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--accent);
}
.contact-block a { color: var(--accent); text-decoration: none; }
.contact-block a:hover { text-decoration: underline; }

.legal-page h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin: 32px 0 12px;
  text-align: left;
  color: var(--text);
}
.legal-page p, .legal-page li {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.legal-page ul { margin-left: 20px; margin-bottom: 14px; }
.legal-page code {
  background: var(--bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}

.footer-links a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--accent); }

.copyright {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

@media (max-width: 768px) {
  .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.3rem; }
  .nav-bar { flex-wrap: wrap; height: auto; padding: 12px 0; }
  nav a { margin-left: 16px; font-size: 0.85rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
