/* ==========================================================================
   Hilfe mit Herz — Isabella & Team
   Design tokens: warm cream ground, bordeaux + antique gold, Playfair Display
   for display type paired with Source Sans 3 for body copy (built for an
   older readership: generous size, high contrast, uncluttered layout).
   ========================================================================== */

@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/EBGaramond-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/EBGaramond-400Italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/EBGaramond-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/EBGaramond-500Italic.woff2") format("woff2");
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/EBGaramond-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/EBGaramond-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

:root{
  --bordeaux: #7C060D;
  --bordeaux-dark: #560408;
  --gold: #93691F;
  --gold-soft: #B08A3E;
  --cream: #FBF6EC;
  --cream-deep: #F3EBDA;
  --paper: #FFFDF9;
  --ink: #2C2420;
  --ink-soft: #5B5044;
  --line: #E6D9C0;

  --font-display: "EB Garamond", Georgia, serif;
  --font-body: "Poppins", -apple-system, "Segoe UI", sans-serif;

  --content-w: 1120px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

h1, h2, h3, h4{
  font-family: var(--font-display);
  color: var(--bordeaux);
  line-height: 1.18;
  margin: 0 0 0.5em;
  font-weight: 600;
}
h1{ font-size: clamp(2.2rem, 4.2vw, 3.3rem); font-weight: 500; }
h2{ font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3{ font-size: 1.35rem; }
h4{ font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; color: var(--ink); }

p{ margin: 0 0 1.1em; max-width: 66ch; }
p.lede{ font-size: 1.2rem; color: var(--ink-soft); max-width: 58ch; }

a{ color: var(--bordeaux); text-decoration-color: var(--gold); text-underline-offset: 3px; }
a:hover{ color: var(--bordeaux-dark); }

img{ max-width: 100%; display: block; }

.wrap{
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- header ---------- */
.site-header{
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.site-header .wrap{
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img{ height: 104px; width: auto; }
.brand-text{ font-family: var(--font-display); color: var(--bordeaux); line-height: 1.1; }
.brand-text .mark{ font-style: italic; font-size: 1.15rem; display:block; }
.brand-text .sub{ font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--ink-soft); }

nav.primary{ display: flex; align-items: center; gap: 19px; flex-wrap: wrap; }
nav.primary a{
  color: var(--ink);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 1px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
nav.primary a:hover, nav.primary a.active{ border-bottom-color: var(--gold); color: var(--bordeaux); }

.header-phone{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bordeaux);
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  white-space: nowrap;
}
.header-phone:hover{ background: var(--bordeaux-dark); color:#fff !important; }

.menu-toggle{ display:none; }

@media (max-width: 1060px){
  nav.primary{ display: none; width: 100%; order: 3; flex-direction: column; align-items: flex-start; gap: 4px; }
  nav.primary.open{ display: flex; }
  .site-header .wrap{ flex-wrap: wrap; }
  .menu-toggle{
    display: inline-flex;
    margin-left: auto;
    background: none;
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--bordeaux);
  }
}

/* ---------- buttons ---------- */
.btn{
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 3px;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary{ background: var(--bordeaux); color: #fff; }
.btn-primary:hover{ background: var(--bordeaux-dark); color: #fff; }
.btn-ghost{ background: transparent; border-color: var(--bordeaux); color: var(--bordeaux); }
.btn-ghost:hover{ background: var(--bordeaux); color: #fff; }
.btn-gold{ background: var(--gold); color: #fff; }
.btn-gold:hover{ background: #7a5417; color: #fff; }

/* ---------- sections ---------- */
section{ padding: 76px 0; }
section.tight{ padding: 56px 0; }
.section-cream{ background: var(--cream); }
.section-paper{ background: var(--paper); }
.section-deep{ background: var(--cream-deep); }
.section-bordeaux{ background: var(--bordeaux); color: #fff; }
.section-bordeaux h2, .section-bordeaux h3{ color: #fff; }
.section-bordeaux p{ color: #F2E4D8; }

.eyebrow{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  margin: 0 0 6px;
}

hr.rule{
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* heart-hand motif divider, reused from the logo mark */
.motif-divider{
  display: flex;
  justify-content: center;
  margin: 8px 0 36px;
}
.motif-divider svg{ width: 46px; height: 40px; }

/* ---------- hero ---------- */
.hero{
  padding: 64px 0 76px;
  background:
    radial-gradient(ellipse at 18% -10%, #F5E7CC 0%, transparent 55%),
    var(--cream);
}
.hero .wrap{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1{ margin-bottom: 0.3em; }
.hero .lede{ margin-bottom: 1.6em; }
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-actions .phone-line{ font-family: var(--font-display); font-size: 1.15rem; color: var(--bordeaux); font-weight: 600; }
.hero-art{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px;
}
.hero-art img{ width: 100%; height: auto; }

@media (max-width: 860px){
  .hero .wrap{ grid-template-columns: 1fr; }
  .hero-art{ order: -1; max-width: 340px; margin: 0 auto; }
}

/* ---------- comparison ---------- */
.compare{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.compare .card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px 32px;
}
.compare .card.us{ border-top: 4px solid var(--gold); }
.compare .card.others{ border-top: 4px solid var(--line); }
.compare ul{ margin: 0; padding: 0; list-style: none; }
.compare li{ padding: 9px 0 9px 30px; position: relative; border-top: 1px solid var(--line); }
.compare li:first-child{ border-top: none; }
.compare .card.us li::before{ content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.compare .card.others li::before{ content: "–"; position: absolute; left: 4px; color: var(--ink-soft); }
@media (max-width: 720px){ .compare{ grid-template-columns: 1fr; } }

/* ---------- card grid ---------- */
.grid-3{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 860px){ .grid-3{ grid-template-columns: 1fr; } .grid-2{ grid-template-columns: 1fr; } }

.service-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 28px;
}
.service-card .num{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
}

/* ---------- steps (legitimate sequence content) ---------- */
.steps{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.steps.steps-4{ grid-template-columns: repeat(4, 1fr); }
.step{ padding: 0 24px; position: relative; }
.step .letter{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bordeaux);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.steps:not(.steps-4) .step:not(:last-child)::after,
.steps-4 .step:not(:last-child)::after{
  content: "";
  position: absolute;
  top: 23px;
  left: calc(100% - 24px + 23px);
  width: calc(48px);
  border-top: 2px dotted var(--gold-soft);
}
@media (max-width: 860px){
  .steps, .steps.steps-4{ grid-template-columns: 1fr; gap: 32px; }
  .steps .step::after{ display: none; }
}

/* ---------- quote ---------- */
blockquote.pull{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--bordeaux);
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  margin: 0;
  max-width: 62ch;
}
blockquote.pull cite{ display:block; font-style: normal; font-family: var(--font-body); font-size: 0.95rem; color: var(--ink-soft); margin-top: 14px; }

/* ---------- long-quote (team profile) ---------- */
.profile{ display: grid; grid-template-columns: 260px 1fr; gap: 44px; align-items: start; }
.profile .portrait{
  aspect-ratio: 3/4;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.profile .portrait img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile .portrait.placeholder{
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}
.profile + .profile{ margin-top: 56px; }
@media (max-width: 720px){ .profile{ grid-template-columns: 1fr; } .profile .portrait{ max-width: 220px; } }

/* ---------- table ---------- */
table.pricing{
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
}
table.pricing th, table.pricing td{
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
table.pricing th{
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--bordeaux);
  background: var(--cream-deep);
}
table.pricing tr:last-child td{ border-bottom: none; }

/* ---------- scenario cards ---------- */
.scenario{
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--bordeaux);
  border-radius: 4px;
  padding: 26px 28px;
  margin-bottom: 20px;
}
.scenario .fin{
  margin-top: 12px;
  font-size: 0.94rem;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- promise list ---------- */
ul.promises{ list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
ul.promises li{ padding-left: 34px; position: relative; }
ul.promises li::before{
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}
ul.promises li::after{
  content: "";
  position: absolute; left: 6px; top: 11px;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---------- trust strip ---------- */
.trust-strip{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.trust-strip .item h4{ font-family: var(--font-display); font-weight: 600; color: var(--bordeaux); font-size: 1.15rem; }
@media (max-width: 860px){ .trust-strip{ grid-template-columns: 1fr; } }

/* ---------- cta band ---------- */
.cta-band{ text-align: center; }
.cta-band h2{ color: #fff; }
.cta-band p{ margin-left: auto; margin-right: auto; }
.cta-band .btn-gold{ margin-top: 10px; }

/* ---------- contact ---------- */
.contact-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info dl{ margin: 0; }
.contact-info dt{ font-weight: 700; color: var(--bordeaux); margin-top: 18px; }
.contact-info dt:first-child{ margin-top: 0; }
.contact-info dd{ margin: 2px 0 0; color: var(--ink-soft); }
.contact-info a{ color: var(--ink); }

.field{ margin-bottom: 18px; }
.field label{ display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.95rem; }
.field input, .field textarea{
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  color: var(--ink);
}
.field input:focus, .field textarea:focus{
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.form-note{ font-size: 0.9rem; color: var(--ink-soft); margin-top: 14px; }

@media (max-width: 860px){ .contact-grid{ grid-template-columns: 1fr; gap: 40px; } }

/* ---------- footer ---------- */
footer.site-footer{
  background: var(--bordeaux);
  color: #F2E4D8;
  padding: 52px 0 28px;
}
footer.site-footer a{ color: #F6EBDD; }
footer.site-footer .foot-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
footer.site-footer h4{ font-family: var(--font-display); color: #fff; font-weight: 600; font-size: 1.05rem; margin-bottom: 14px;}
footer.site-footer ul{ list-style: none; margin: 0; padding: 0; }
footer.site-footer li{ margin-bottom: 8px; }
footer.site-footer .foot-bottom{
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: #E7D2BC;
}
@media (max-width: 720px){ footer.site-footer .foot-grid{ grid-template-columns: 1fr; gap: 28px; } }

/* ---------- legal pages ---------- */
.legal h2{ margin-top: 1.6em; }
.legal h3{ margin-top: 1.3em; color: var(--ink); font-family: var(--font-body); font-size: 1.1rem; }
.legal p, .legal li{ max-width: 74ch; }

/* ---------- disclaimer box ---------- */
.note-box{
  background: var(--cream-deep);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 22px 26px;
  margin: 8px 0 32px;
}
.note-box p{ margin: 0; }

/* ---------- utility ---------- */
.center{ text-align: center; }
.mt-0{ margin-top: 0; }
.max-prose{ max-width: 66ch; }
.stack-lg > * + *{ margin-top: 56px; }
