:root {
  --cream: #FFF8EC;
  --cream-warm: #FFEFD5;
  --caramel-pale: #FFE0B2;
  --caramel-soft: #F4B860;
  --caramel: #D97B1E;
  --caramel-dark: #C96A15;
  --leaf: #4A7C3A;
  --ink: #3D2817;
  --ink-soft: #6E5842;
  --border: rgba(61, 40, 23, 0.1);
  --shadow-soft: 0 8px 24px rgba(201, 106, 21, 0.08);
  --shadow-lift: 0 24px 60px rgba(201, 106, 21, 0.18);
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: "Fraunces", "Iowan Old Style", "Georgia", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); font-weight: 400; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

a { color: var(--caramel-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 236, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
  font-size: 18px;
}
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}
.nav-links a:hover { color: var(--caramel-dark); text-decoration: none; }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background:
    radial-gradient(1200px 500px at 80% -100px, rgba(244, 184, 96, 0.4), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(217, 123, 30, 0.18), transparent 60%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caramel-dark);
  font-weight: 600;
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid rgba(217, 123, 30, 0.3);
  border-radius: 999px;
  background: rgba(255, 224, 178, 0.5);
}
.hero h1 em {
  font-style: italic;
  font-family: "Fraunces", serif;
  color: var(--caramel-dark);
}
.hero p.lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 520px;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-primary {
  background: var(--caramel);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--caramel-dark); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--cream-warm); text-decoration: none; }

/* Hero phone */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone {
  position: relative;
  width: 280px;
  border-radius: 44px;
  background: #1a1a1a;
  padding: 10px;
  box-shadow: var(--shadow-lift), 0 2px 0 rgba(255,255,255,0.04) inset;
  transition: transform 0.4s ease;
}
.phone img {
  width: 100%;
  display: block;
  border-radius: 36px;
}
.phone-stack { position: relative; width: 100%; max-width: 380px; height: 580px; }
.phone-stack .phone { position: absolute; }
.phone-stack .phone:nth-child(1) { left: 0; top: 40px; transform: rotate(-5deg); z-index: 1; }
.phone-stack .phone:nth-child(2) { left: 50%; top: 0; transform: translateX(-50%); z-index: 3; }
.phone-stack .phone:nth-child(3) { right: 0; top: 40px; transform: rotate(5deg); z-index: 1; }

/* ---------- Sections ---------- */
section.feature {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
section.feature:nth-of-type(even) { background: var(--cream-warm); border-top-color: transparent; }

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature.reverse .feature-inner { grid-template-columns: 1fr 1fr; }
.feature.reverse .feature-copy { order: 2; }
.feature.reverse .feature-visual { order: 1; }

.feature-copy .tag {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--caramel-dark);
  margin-bottom: 10px;
}
.feature-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 480px;
}
.feature-copy ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.feature-copy li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--ink);
}
.feature-copy li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--caramel);
  box-shadow: 0 0 0 4px rgba(217, 123, 30, 0.15);
}

.feature-visual { display: flex; justify-content: center; }
.feature-visual .phone { width: 260px; }

/* ---------- Why German ---------- */
.pitch {
  padding: 80px 0 100px;
  text-align: center;
  background:
    radial-gradient(700px 300px at 50% 0, rgba(244, 184, 96, 0.3), transparent 60%);
}
.pitch blockquote {
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.3;
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink);
  font-style: italic;
}
.pitch blockquote::before { content: "\201C"; color: var(--caramel); margin-right: 4px; }
.pitch blockquote::after { content: "\201D"; color: var(--caramel); margin-left: 4px; }

/* ---------- Footer ---------- */
footer {
  padding: 40px 0 60px;
  color: var(--ink-soft);
  font-size: 14px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
footer a { color: var(--ink-soft); margin-right: 18px; }
footer a:hover { color: var(--caramel-dark); }

/* ---------- Doc pages (privacy, support) ---------- */
.doc {
  padding: 60px 0 100px;
  max-width: 760px;
  margin: 0 auto;
}
.doc h1 { margin-bottom: 0.2em; }
.doc .meta { color: var(--ink-soft); font-size: 14px; margin-bottom: 40px; }
.doc h2 { margin-top: 2.2em; font-size: 1.6rem; }
.doc h3 { margin-top: 1.8em; font-size: 1.15rem; }
.doc p, .doc li { font-size: 1rem; color: var(--ink); }
.doc ul { padding-left: 22px; }
.doc li { margin-bottom: 8px; }
.doc .callout {
  background: var(--cream-warm);
  border-left: 3px solid var(--caramel);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin: 24px 0;
}
.doc a { border-bottom: 1px solid rgba(201, 106, 21, 0.3); }
.doc a:hover { text-decoration: none; border-bottom-color: var(--caramel-dark); }

/* ---------- Contact form ---------- */
.contact-form {
  margin-top: 28px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.contact-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.field > span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.field > span em {
  font-style: normal;
  font-weight: 400;
  color: var(--ink-soft);
  margin-left: 4px;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--caramel);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(217, 123, 30, 0.15);
}
.field textarea { resize: vertical; min-height: 140px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23C96A15' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-actions button { border: 0; cursor: pointer; font: inherit; }
.form-hint { color: var(--ink-soft); font-size: 14px; }

.thanks { text-align: center; padding-top: 120px; }
.thanks h1 em { color: var(--caramel-dark); }
.thanks .btn { margin-top: 24px; }

@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero { padding: 60px 0 40px; }
  .hero-inner,
  .feature-inner,
  .feature.reverse .feature-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .feature.reverse .feature-copy { order: 1; }
  .feature.reverse .feature-visual { order: 2; }
  .phone { width: 240px; }
  .phone-stack { height: 500px; max-width: 340px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px; left: 16px; right: 16px;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; }
  .nav-toggle { display: block; }
}
