/* ===========================================================
   Elke Diehl — Website Styles
   Palette derived from Elke's paintings (magenta / gold / violet)
   =========================================================== */

:root {
  --primary: #A32B6D;
  --primary-deep: #6E2350;
  --accent: #C8912F;
  --accent-deep: #A2731F;
  --violet: #6E4A93;
  --pink-soft: #E7A9C7;
  --pink-wash: #F7E6EF;
  --ink: #2E1A2C;
  --ink-soft: #5B4657;
  --bg: #FBF5EF;
  --bg-alt: #F3E7DE;
  --surface: #FFFFFF;
  --line: #E7D8CD;

  --maxw: 1120px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -24px rgba(46, 26, 44, 0.35);
  --shadow-sm: 0 8px 24px -16px rgba(46, 26, 44, 0.4);

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-deep); }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); font-weight: 600; }
p { margin: 0 0 1.1em; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-deep);
  margin-bottom: 0.8em;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-deep); color: #fff; transform: translateY(-2px); }
.btn-ghost { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-ghost:hover { background: var(--pink-wash); color: var(--primary-deep); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 245, 239, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px;
}
.brand-mark {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-mark span { color: var(--primary); }
.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a { color: var(--ink-soft); font-weight: 500; font-size: 0.98rem; }
.site-nav a:hover { color: var(--primary); }
.site-nav .header-cta {
  background: var(--primary); color: #fff; padding: 0.5em 1.1em; border-radius: 999px;
}
.site-nav .header-cta:hover { background: var(--primary-deep); color: #fff; }
.lang-toggle { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }
.lang-toggle a { color: var(--ink-soft); }
.lang-toggle a.lang-active { color: var(--primary); }
.lang-divider { opacity: 0.4; margin: 0 0.15em; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 1.5rem; color: var(--ink); }

/* ---------- Hero ---------- */
.hero { padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem); }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 { margin-bottom: 0.35em; font-size: clamp(2.4rem, 5.6vw, 4.1rem); }
.hero-lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 34ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.hero-art {
  position: relative;
}
.hero-art img {
  width: 100%; max-width: 600px; margin: 0 auto;
  filter: drop-shadow(0 30px 50px rgba(110, 35, 80, 0.28));
  animation: floaty 8s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .hero-art img { animation: none; } }

/* ---------- Sections ---------- */
section { padding: clamp(2.8rem, 6vw, 5rem) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.6rem; }
.section-head p { color: var(--ink-soft); }

/* ---------- Offering cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .price { font-family: var(--font-head); font-size: 1.6rem; color: var(--primary); font-weight: 600; }
.card .meta { font-size: 0.9rem; color: var(--accent-deep); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.card p { color: var(--ink-soft); }
.card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Feature / story split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split.reverse .split-text { order: 2; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }
.step::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--pink-wash); color: var(--primary); font-family: var(--font-head);
  font-weight: 600; font-size: 1.2rem; margin-bottom: 0.9rem;
}

/* ---------- Quote / band ---------- */
.band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--violet) 100%);
  color: #fff; text-align: center;
}
.band h2, .band p { color: #fff; }
.band .btn-primary { background: #fff; color: var(--primary); }
.band .btn-primary:hover { background: var(--pink-wash); color: var(--primary-deep); }
.quote { font-family: var(--font-head); font-size: clamp(1.4rem, 3vw, 2rem); font-style: italic; line-height: 1.4; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line); padding: 1.1rem 0;
}
.faq summary { font-family: var(--font-head); font-size: 1.15rem; cursor: pointer; color: var(--ink); list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--primary); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 0.8rem; color: var(--ink-soft); }

/* ---------- Contact form ---------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 0.35rem; }
.field input, .field textarea {
  width: 100%; padding: 0.8em 0.9em; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); background: var(--bg); transition: border 0.15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary); }
.form-error { display: none; color: #b3261e; font-size: 0.9rem; margin: 0.4rem 0; }
.form-success { display: none; color: var(--primary-deep); font-weight: 600; margin-top: 0.8rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #E9DCE4; padding: 3rem 0 2rem; margin-top: 2rem; }
.site-footer a { color: var(--pink-soft); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; }
.footer-brand { font-family: var(--font-head); font-size: 1.3rem; color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2rem; padding-top: 1.2rem; font-size: 0.85rem; opacity: 0.75; display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: space-between; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.pill { display: inline-block; background: var(--pink-wash); color: var(--primary-deep); font-weight: 600; font-size: 0.85rem; padding: 0.3em 0.9em; border-radius: 999px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-art { order: -1; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-text { order: 0; }
  .site-nav { gap: 1rem; }
}
@media (max-width: 680px) {
  .site-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; background: var(--bg); padding: 1.2rem 24px; border-bottom: 1px solid var(--line); gap: 1rem; }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
}
