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

:root {
  --bg: #f6f2e8;
  --surface: #faf8f2;
  --text: #1b2b24;
  --muted: #6b7b73;
  --accent: #a68966;
  --border: #d6d1c7;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

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

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

header.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

header .brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: 0.12em;
}

nav.site-nav {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}

.hero {
  padding: 80px 0 60px;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 44px;
  margin: 0 0 16px;
}

.hero p { color: var(--muted); font-size: 18px; }

.section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin: 0 0 12px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #efe9dc;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  background: var(--text);
  color: #f6f2e8;
  font-weight: 600;
  text-decoration: none;
}

.cta.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  font-size: 14px;
  color: var(--muted);
}

.meta {
  color: var(--muted);
  font-size: 13px;
}

.faq h3 {
  margin: 18px 0 6px;
}

.lang-switch {
  display: flex;
  gap: 12px;
  font-size: 13px;
}

.lang-switch a {
  text-decoration: underline;
}
