:root {
  --bg: #fdfaf4;
  --ink: #1a1a1f;
  --muted: #6b6b76;
  --accent: #ff5b3a;
  --accent-2: #6a4cff;
  --card: #ffffff;
  --border: rgba(26,26,31,0.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(253, 250, 244, 0.78);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.logo img {
  height: 36px;
  width: auto;
  display: block;
}
.logo:hover { transform: scale(1.04); }
.lang-toggle {
  display: inline-flex;
  gap: 2px;
  background: rgba(26,26,31,0.06);
  padding: 4px;
  border-radius: 999px;
}
.lang-toggle button {
  background: none;
  border: none;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.lang-toggle button:hover { color: var(--ink); }
.lang-toggle button.active {
  background: var(--ink);
  color: white;
}
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 32px 120px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 16px;
}
h1 + p:not(.subtitle) { margin-top: 40px; }
.subtitle {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 56px;
}
h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 44px 0 12px;
}
p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 16px;
}
.lang-content[hidden] { display: none; }
.lang-content p strong { color: var(--ink); font-weight: 600; }

main ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
main ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
main ul li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
main ul li strong { color: var(--ink); font-weight: 600; }
main ul li:last-child { margin-bottom: 0; }
a.email,
a.inline {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
a.email:hover,
a.inline:hover { text-decoration: underline; }
.coming-soon-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  margin-top: 40px;
}
.coming-soon-card .icon {
  font-size: 42px;
  margin-bottom: 16px;
}
.coming-soon-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.coming-soon-card p { font-size: 16px; max-width: 420px; margin: 0 auto 24px; }
.coming-soon-card a.back {
  display: inline-block;
  padding: 12px 22px;
  background: var(--ink);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
footer {
  border-top: 1px solid var(--border);
  padding: 32px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--ink); }

@media (max-width: 640px) {
  .nav-inner { padding: 14px 20px; }
  main { padding: 56px 20px 80px; }
  h1 { font-size: 36px; }
}
