:root {
  --bg: #FAF7F2;
  --surface: #F2EDE4;
  --surface2: #E8E0D4;
  --text: #2C2416;
  --text2: #6B5E4A;
  --text3: #9E8E78;
  --accent: #7C5C3E;
  --accent-light: #C4A882;
  --accent-bg: #EFE6DA;
  --green: #4A7C5E;
  --red: #C0392B;
  --border: rgba(124,92,62,0.16);
  --shadow: 0 18px 60px rgba(44,36,22,0.09);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.65;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(250,247,242,0.88);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 18px; }
.logo { text-decoration: none; display: inline-flex; flex-direction: column; gap: 1px; }
.logo-main { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; color: var(--accent); font-size: 32px; line-height: 1; }
.logo-sub { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--text3); }
.nav-links { display: flex; align-items: center; gap: 18px; font-size: 14px; color: var(--text2); }
.nav-links a { text-decoration: none; }
.ai-badge { border: 1px solid var(--border); border-radius: 999px; padding: 7px 12px; background: var(--surface); color: var(--accent); font-size: 12px; white-space: nowrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 13px 20px; text-decoration: none; font-weight: 700; font-size: 15px; border: 1px solid var(--accent); transition: transform .15s ease, opacity .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #FAF7F2; }
.btn-secondary { background: transparent; color: var(--accent); }
.hero { padding: 74px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
.kicker { color: var(--accent); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 800; }
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; line-height: 1.08; }
h1 { font-size: clamp(46px, 7vw, 78px); margin: 14px 0 18px; }
h2 { font-size: clamp(34px, 4vw, 50px); margin: 0 0 18px; }
h3 { font-size: 29px; margin: 0 0 10px; }
.lead { font-size: 21px; color: var(--text2); max-width: 660px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.note { color: var(--text3); font-size: 14px; margin-top: 16px; }
.phone-card { background: var(--surface); border: 1px solid var(--border); border-radius: 34px; padding: 20px; box-shadow: var(--shadow); }
.phone-screen { border-radius: 26px; background: #fffaf3; border: 1px solid var(--border); padding: 24px; min-height: 540px; display: flex; flex-direction: column; justify-content: space-between; }
.mock-header { display: flex; justify-content: space-between; align-items: center; color: var(--text3); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.mock-title { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 30px; color: var(--accent); margin: 20px 0; }
.bubble { border-radius: 20px; padding: 14px 16px; margin: 10px 0; font-size: 16px; }
.bubble.ai { background: var(--surface); border: 1px solid var(--border); color: var(--text); }
.bubble.user { background: var(--accent); color: #fffaf3; margin-left: 52px; }
.mock-input { border: 1px solid var(--border); background: white; color: var(--text3); padding: 14px 16px; border-radius: 999px; font-size: 14px; }
.section { padding: 70px 0; }
.section.alt { background: rgba(242,237,228,0.48); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 26px; padding: 26px; }
.card p { color: var(--text2); margin-bottom: 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.list { padding-left: 0; list-style: none; margin: 0; }
.list li { padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text2); }
.legal-strip { background: var(--accent); color: #FAF7F2; padding: 26px; border-radius: 26px; font-size: 15px; }
.footer { padding: 38px 0; border-top: 1px solid var(--border); color: var(--text3); font-size: 14px; }
.footer-grid { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer a { color: var(--text2); margin-right: 12px; }
.page { padding: 56px 0 80px; max-width: 860px; }
.page h1 { font-size: clamp(42px, 5vw, 64px); }
.page h2 { font-size: 34px; margin-top: 42px; }
.page p, .page li { color: var(--text2); }
.placeholder { background: #fff6ea; border: 1px dashed var(--accent-light); border-radius: 18px; padding: 18px; color: var(--text2); }
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; max-width: 720px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 16px; box-shadow: var(--shadow); display: none; z-index: 20; }
.cookie-banner.show { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.cookie-banner p { margin: 0; color: var(--text2); font-size: 14px; }
.cookie-banner button { border: 0; border-radius: 999px; padding: 10px 14px; background: var(--accent); color: #fffaf3; font-weight: 700; cursor: pointer; white-space: nowrap; }
@media (max-width: 850px) {
  .nav-links a:not(.btn) { display: none; }
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .hero { padding-top: 46px; }
  .cards { grid-template-columns: 1fr; }
  .phone-screen { min-height: 420px; }
  .nav-menu-btn { display: flex !important; }
}

/* Mobile menu */
.nav-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  font-size: 18px;
  color: var(--text2);
  flex-shrink: 0;
  margin-left: 4px;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
}

.nav-drawer.open { display: block; }

.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44,36,22,0.4);
}

.nav-drawer-panel {
  position: absolute;
  top: 0; right: 0;
  width: 240px; height: 100%;
  background: var(--bg);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  gap: 4px;
}

.nav-drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text3);
  cursor: pointer;
  padding: 4px;
  margin-bottom: 16px;
}

.nav-drawer-panel a {
  display: block;
  padding: 13px 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.15s;
}

.nav-drawer-panel a:hover { background: var(--surface); }
.nav-drawer-panel a.btn { margin-top: 12px; text-align: center; }
.lang-toggle {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--surface);
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  font-family: 'Nunito', system-ui, sans-serif;
}
.lang-toggle:hover { transform: translateY(-1px); }
@media (max-width: 850px) {
  .lang-toggle { padding: 8px 11px; }
}

/* App disclaimer language button */
.disclaimer-box { position: relative; }
.disc-lang-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 1px solid rgba(139, 101, 67, .28);
  background: rgba(255,255,255,.55);
  color: #8b6543;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
  cursor: pointer;
}

/* EU AI Act disclosure strip */
.ai-disclosure {
  background: var(--surface, #F2EDE4);
  border-top: 1px solid var(--border, rgba(124,92,62,0.15));
  padding: 10px 0;
  text-align: center;
  font-size: 12px;
  color: var(--text3, #9E8E78);
  letter-spacing: 0.02em;
}
.ai-disclosure strong {
  color: var(--text2, #6B5E4A);
  font-weight: 600;
}
.ai-disclosure a {
  color: var(--accent, #7C5C3E);
  text-decoration: underline;
  text-underline-offset: 2px;
}
