/* Ordination Dr. Schipfer - Petrol-Familie, verwandt mit Medlife Aktiv */
:root {
  --primary:   #007399;
  --secondary: #005f73;
  --accent:    #0a9396;
  --light-bg:  #eef8fa;
  --text:      #0b3a4a;
  --line:      #cfe8ee;
  --white:     #ffffff;
  --ok:        #2e7d32;
  --err:       #c62828;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Poppins', -apple-system, 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
.wrap { max-width: 980px; margin: 0 auto; padding: 0 1.2rem; }
a { color: var(--primary); }
h1, h2, h3 { color: var(--secondary); line-height: 1.25; }

/* ---------- Header ---------- */
.site-head { border-bottom: 1px solid var(--line); background: var(--white); }
.site-head .wrap { display: flex; flex-wrap: nowrap; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; max-width: 1180px; }
.main-nav { flex-shrink: 0; white-space: nowrap; }
.brand-name { display: block; font-family: 'Dancing Script', cursive; font-weight: 700; font-size: 1.7rem; line-height: 1.1; color: var(--secondary); }
.brand-sub  { display: block; font-size: .74rem; color: var(--accent); letter-spacing: .02em; }
.main-nav a { margin-left: 1.1rem; text-decoration: none; font-size: .92rem; }
.main-nav a:hover { text-decoration: underline; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, var(--light-bg), var(--white)); padding: 3rem 0 2.6rem; text-align: center; }
.hero h1 { font-size: 2rem; margin: 0 0 .4rem; }
.hero-sub { margin: 0 0 1.8rem; font-size: 1.05rem; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta {
  display: flex; flex-direction: column; gap: .15rem;
  min-width: 260px; max-width: 340px; flex: 1 1 260px;
  padding: 1.2rem 1.4rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  text-decoration: none; text-align: left;
  box-shadow: 0 2px 10px rgba(0, 95, 115, .08);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0, 95, 115, .14); }
.cta.is-paused { opacity: .6; filter: grayscale(.35); }
.cta.is-paused:hover { transform: none; box-shadow: none; }
.cta.is-paused .cta-sub { color: #92510a; opacity: 1; font-weight: 600; }
.cta-icon  { font-size: 1.5rem; color: var(--accent); }
.cta-title { font-weight: 700; color: var(--secondary); font-size: 1.05rem; }
.cta-sub   { font-size: .82rem; color: var(--text); opacity: .8; }

/* ---------- Sections ---------- */
.section { padding: 2.6rem 0; }
.section.alt { background: var(--light-bg); }
.cards { display: flex; gap: 1rem; flex-wrap: wrap; }
.card { flex: 1 1 260px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 1.1rem 1.3rem; }
.card h3 { margin-top: 0; font-size: 1rem; }
.times { border-collapse: collapse; }
.times th, .times td { text-align: left; padding: .45rem 1.2rem .45rem 0; border-bottom: 1px solid var(--line); }
.times th { color: var(--secondary); font-weight: 600; }

/* ---------- Footer ---------- */
.site-foot { border-top: 1px solid var(--line); padding: 1.4rem 0; font-size: .82rem; color: var(--text); }
.site-foot .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }

/* ---------- Formulare ---------- */
.form-page { max-width: 640px; margin: 0 auto; padding: 2rem 1.2rem 3rem; }
.form-page.narrow { max-width: 420px; }
.form-page .back { display: inline-block; margin-bottom: 1rem; font-size: .88rem; text-decoration: none; }
.form-page h1 { font-size: 1.5rem; }
.lead { font-size: .95rem; }
form label { display: block; margin: 0 0 1rem; font-size: .9rem; font-weight: 600; color: var(--secondary); }
input[type=text], input[type=tel], input[type=date], input[type=password], textarea, select {
  display: block; width: 100%; margin-top: .3rem;
  padding: .65rem .8rem; font-size: 1rem; font-family: inherit; font-weight: 400;
  border: 1px solid var(--line); border-radius: 8px; background: var(--white); color: var(--text);
}
input:focus, textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
fieldset { border: 1px solid var(--line); border-radius: 8px; margin: 0 0 1rem; padding: .8rem 1rem; }
legend { font-size: .9rem; font-weight: 600; color: var(--secondary); padding: 0 .4rem; }
.label-sub, .legend-sub { font-weight: 400; font-size: .8rem; color: #5b7a86; }
fieldset label { margin-bottom: .7rem; }
label.radio { font-weight: 400; margin: .3rem 0; }
label.radio input { margin-right: .5rem; }
label.check { display: flex; gap: .6rem; align-items: flex-start; font-weight: 400; font-size: .83rem; color: var(--text); }
label.check input { margin-top: .25rem; }
.hp { position: absolute; left: -9999px; top: -9999px; }  /* Honeypot */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.6rem; line-height: 1.2;
  background: var(--primary); color: var(--white);
  border: 1px solid var(--primary); border-radius: 8px;
  font-size: 1rem; font-family: inherit; font-weight: 600;
  cursor: pointer; text-decoration: none;
}
.btn:hover { background: var(--secondary); border-color: var(--secondary); }
.btn.ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn.ghost:hover { background: var(--light-bg); }
.btn.small { padding: .45rem .95rem; font-size: .85rem; border-radius: 7px; }
.btn.danger { background: transparent; color: var(--err); border-color: var(--err); }
.btn.danger:hover { background: #fdeaea; }
.btn:disabled { opacity: .45; cursor: not-allowed; }
[hidden] { display: none !important; } /* hidden-Attribut gewinnt gegen display-Regeln (z. B. .btn) */

.box { border-radius: 10px; padding: 1rem 1.2rem; margin-bottom: 1.2rem; }
.box.ok  { background: #e5f3e6; border: 1px solid var(--ok); }
.box.err { background: #fdeaea; border: 1px solid var(--err); }
.box.warn { background: #fff7e6; border: 1px solid #d97706; }
.box.warn h2 { color: #92510a; margin-top: 0; }
.box ul { margin: 0; padding-left: 1.2rem; }
.muted { color: #5b7a86; font-size: .85rem; }

/* ---------- FAQ (E10-Akkordeon) ---------- */
.faq-list { display: flex; flex-direction: column; gap: .6rem; max-width: 46rem; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: .15rem 1.1rem; transition: border-color .15s ease; }
.faq-item[open] { border-color: var(--primary); }
.faq-item summary {
  cursor: pointer; list-style: none; position: relative;
  padding: .75rem 2rem .75rem 0; font-weight: 600; color: var(--secondary);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: .1rem; top: 50%; transform: translateY(-50%);
  color: var(--primary); font-size: 1.25rem; font-weight: 600; line-height: 1;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin: 0 0 .95rem; font-size: .95rem; }

/* ---------- Admin ---------- */
body.admin { background: #f4f8fa; }
.admin-head {
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .6rem;
  padding: .7rem 1.4rem;
  background: linear-gradient(120deg, var(--secondary), var(--primary));
  color: var(--white); box-shadow: 0 2px 10px rgba(0, 77, 102, .25);
}
.admin-brand { display: flex; align-items: center; gap: .7rem; }
.admin-brand img { display: block; width: 34px; height: 34px; }
.admin-brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.admin-brand-text strong { font-size: 1rem; letter-spacing: .01em; }
.admin-brand-text small { font-size: .74rem; color: rgba(255,255,255,.75); }
.admin-user { display: flex; align-items: center; gap: .8rem; }
.user-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .25rem .8rem .25rem .3rem; border-radius: 999px;
  background: rgba(255,255,255,.14); font-size: .85rem;
}
.user-dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.6rem; height: 1.6rem; border-radius: 50%;
  background: var(--white); color: var(--secondary); font-weight: 700; font-size: .8rem;
}
.admin-head .btn.ghost { color: var(--white); border-color: rgba(255,255,255,.55); }
.admin-head .btn.ghost:hover { background: rgba(255,255,255,.12); }
.admin-main { max-width: 860px; margin: 0 auto; padding: 1.4rem 1.2rem 3rem; }
.tabs {
  display: flex; gap: .3rem; flex-wrap: wrap; margin-bottom: .9rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: .35rem;
  box-shadow: 0 1px 4px rgba(0, 77, 102, .06);
}
.tabs a {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem 1.1rem; border-radius: 9px; text-decoration: none;
  color: var(--secondary); font-size: .92rem; font-weight: 600;
  transition: background .15s ease;
}
.tabs a:hover { background: var(--light-bg); }
.tabs a.active { background: var(--primary); color: var(--white); }
.tabs.sub { padding: .3rem; gap: .25rem; margin-bottom: .7rem; }
.tabs.sub a { padding: .35rem .9rem; font-size: .82rem; border-radius: 8px; }
.badge {
  display: inline-block; min-width: 1.3em; text-align: center;
  background: var(--err); color: var(--white); border-radius: 999px; font-size: .78em; padding: 0 .35em;
}
.entry {
  background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--line);
  border-radius: 10px; padding: .9rem 1.1rem; margin-bottom: .9rem;
}
.entry.status-neu       { border-left-color: var(--err); }
.entry.status-in_arbeit { border-left-color: #d97706; }
.entry.status-erledigt  { border-left-color: var(--ok); opacity: .75; }
.entry-head { display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap; }
.entry-head .right { margin-left: auto; }
.entry-head .tel { text-decoration: none; font-weight: 600; }
.entry-body { margin: .5rem 0; font-size: .95rem; }
.entry-body p { margin: .3rem 0; }
.mono { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: .9rem; background: var(--light-bg); padding: .5rem .7rem; border-radius: 6px; }
.entry-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.sms-box, .hw-edit { margin: .6rem 0; border: 1px dashed var(--line); border-radius: 8px; padding: .45rem .8rem; }
.sms-box summary, .hw-edit summary { cursor: pointer; font-size: .9rem; font-weight: 600; color: var(--primary); }
.sms-box[open], .hw-edit[open] { background: var(--light-bg); border-style: solid; padding-bottom: .9rem; }
.hw-edit form { margin-top: .7rem; }
.sms-box form.med-form { margin-top: .7rem; }
.sms-box form.sms-form { margin-top: .5rem; padding-top: .6rem; border-top: 1px dashed var(--line); }
.med-rows { display: flex; flex-direction: column; gap: .45rem; }
.med-row { display: flex; gap: .6rem; align-items: center; }
.med-nr { flex: 0 0 6.8rem; font-size: .8rem; font-weight: 600; color: var(--secondary); }
/* width/margin explizit setzen - die globale Formular-Regel (width:100%) gilt sonst auch hier */
.med-row input[type=text] {
  flex: 1 1 10rem; width: auto; min-width: 0; margin-top: 0; padding: .45rem .6rem;
  border: 1px solid var(--line); border-radius: 7px; font-size: .85rem;
}
.med-row select {
  flex: 0 0 12.5rem; width: 12.5rem; margin-top: 0; padding: .45rem .6rem; min-height: 2.25rem;
  border: 1px solid var(--line); border-radius: 7px; font-size: .85rem;
}
.med-save { margin-top: .55rem; }
.sms-row { margin: 0 0 .5rem; }
.sms-box textarea {
  width: 100%; padding: .55rem .75rem; border: 1px solid var(--line); border-radius: 7px;
  font: inherit; font-size: .9rem; background: var(--white); resize: vertical;
}
.sms-foot { display: flex; justify-content: space-between; align-items: center; gap: .8rem; flex-wrap: wrap; margin-top: .45rem; }
.sms-foot .muted { margin: 0; }
.tel-edit { display: inline-block; }
.tel-edit summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  width: 1.55rem; height: 1.55rem; border-radius: 6px; border: 1px solid var(--line);
  color: var(--primary); font-size: .85rem; background: var(--white);
}
.tel-edit summary::-webkit-details-marker { display: none; }
.tel-edit summary:hover { background: var(--light-bg); border-color: var(--primary); }
.tel-edit[open] summary { background: var(--light-bg); border-color: var(--primary); }
.tel-edit-form { display: inline-flex; gap: .4rem; align-items: center; margin-left: .4rem; }
.tel-edit-form input[type=tel] {
  padding: .35rem .55rem; border: 1px solid var(--line); border-radius: 7px;
  font: inherit; font-size: .85rem; width: 11rem; background: var(--white);
}
form.inline { display: inline; }
.pill {
  display: inline-block; padding: .1rem .7rem; border-radius: 999px; font-size: .75rem; font-weight: 600;
}
.pill.neu       { background: #fdeaea; color: var(--err); }
.pill.in_arbeit { background: #fff3cd; color: #7a5800; }
.pill.erledigt  { background: #e5f3e6; color: var(--ok); }

/* Header mobil: siehe Mobile-Block am Ende (Hamburger E09) */

/* ---------- Heute-Anzeige ---------- */
.today-badge {
  display: inline-block; margin: .2rem 0 1.6rem;
  padding: .45rem 1.1rem; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  font-size: .92rem; color: var(--secondary);
}
.times tr.today th, .times tr.today td { background: var(--white); color: var(--secondary); font-weight: 700; }
.today-mark {
  display: inline-block; margin-left: .5rem; padding: .05rem .55rem;
  border-radius: 999px; background: var(--accent); color: var(--white);
  font-size: .68rem; font-weight: 600; letter-spacing: .04em; vertical-align: middle;
}

/* ---------- Hinweis-Banner (Urlaub / geschlossen) ---------- */
.notice-wrap { max-width: 980px; margin: 1rem auto 0; padding: 0 1.2rem; }
.notice {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: .85rem 1.1rem; margin-bottom: .6rem;
  background: #fff7e6; border: 1px solid #e8b34a; border-left: 5px solid #d97706;
  border-radius: 10px; font-size: .95rem; color: #5a4300;
}
.notice.closed { background: #fdeeee; border-color: #d98080; border-left-color: var(--err); color: #6b1f1f; }
.notice-icon { font-size: 1.15rem; line-height: 1.4; }
.notice-text { font-size: .88rem; opacity: .9; }
.today-badge.closed { background: #fdeeee; border-color: var(--err); color: var(--err); font-weight: 600; }

/* ---------- Psychoonkologie ---------- */
.teaser-tag {
  display: inline-block; margin-bottom: .6rem;
  padding: .2rem .9rem; border-radius: 999px;
  background: var(--accent); color: var(--white);
  font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.teaser-onko { background: linear-gradient(135deg, var(--secondary), var(--primary)); }
.onko-teaser-text { max-width: 640px; margin: 0 auto; text-align: center; color: var(--white); }
.onko-teaser-text h2 { color: var(--white); margin: .2rem 0 .6rem; }
.onko-teaser-text p { color: rgba(255,255,255,.92); }
.onko-teaser-text .btn { background: var(--white); color: var(--secondary); margin-top: .6rem; }
.onko-teaser-text .btn:hover { background: var(--light-bg); }
.onko-hero { padding-bottom: 3rem; }
.onko-hero .btn { margin-top: .8rem; }
.narrow-text { max-width: 720px; }
.steps-list { padding-left: 1.2rem; }
.steps-list li { margin-bottom: .7rem; }
.box.info { background: var(--light-bg); border: 1px solid var(--accent); margin-top: 1.6rem; }

/* ---------- Moderne: Smooth Scroll, Hover, Reveal ---------- */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
.site-head { position: sticky; top: 0; z-index: 50; transition: box-shadow .25s ease; }
.site-head.scrolled { box-shadow: 0 3px 14px rgba(0, 95, 115, .12); }
.main-nav a.active { font-weight: 700; color: var(--secondary); border-bottom: 2px solid var(--accent); padding-bottom: 2px; }

.card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 95, 115, .14);
  border-color: var(--accent);
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Portrait ---------- */
.intro-grid { display: flex; gap: 2.2rem; align-items: flex-start; flex-wrap: wrap; }
.intro-text { flex: 1 1 380px; max-width: 720px; }
.intro-text h2 { margin-top: 0; }
.portrait { flex: 0 0 220px; margin: 0; text-align: center; }
.portrait img {
  width: 200px; height: 200px; object-fit: cover; border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 6px 20px rgba(0, 95, 115, .22);
}
.portrait figcaption { margin-top: .7rem; font-size: .9rem; font-weight: 600; color: var(--secondary); }
.portrait figcaption span { font-weight: 400; font-size: .8rem; color: #5b7a86; }
@media (max-width: 640px) {
  .intro-grid { flex-direction: column-reverse; align-items: center; }
  .intro-text { max-width: 100%; }
}

/* ================= E01 Scroll-up-Button ================= */
.to-top {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 60;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  border: none; font-size: 1.25rem; cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 95, 115, .3);
  opacity: 0; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, background .15s ease;
}
.to-top.is-visible { opacity: 1; transform: none; }
.to-top:hover { background: var(--secondary); }
.to-top[hidden] { display: none; }

/* ================= E09 Hamburger ================= */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 1px solid var(--line); border-radius: 8px; cursor: pointer;
}
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--secondary); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .hamburger span:nth-child(2) { opacity: 0; }
.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Nav -> Hamburger schon unter 1080px (Desktop-Menue braucht Platz) ============ */
@media (max-width: 1080px) {
  /* Header: Brand + Hamburger, Nav als aufklappbares Panel */
  .site-head .wrap { flex-wrap: nowrap; align-items: center; padding: .7rem 1rem; }
  .brand-name { font-size: 1rem; }
  .brand-sub { font-size: .66rem; }
  .hamburger { display: flex; flex-shrink: 0; }
  .main-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(0, 95, 115, .12);
  }
  .site-head { position: sticky; }
  .site-head.menu-open .main-nav { display: flex; }
  .main-nav a {
    margin: 0; padding: .95rem 1.2rem;
    border-top: 1px solid var(--line);
    font-size: 1rem;
  }
  .main-nav a.active { border-bottom: none; background: var(--light-bg); }
}

/* ================= Mobile-Optimierung (komplett) ================= */
@media (max-width: 720px) {
  /* Hero & Sektionen */
  .hero { padding: 2rem 0 1.8rem; }
  .hero h1 { font-size: 1.45rem; }
  .hero-sub { font-size: .95rem; }
  .today-badge { font-size: .85rem; }
  .section { padding: 1.8rem 0; }
  .section h2 { font-size: 1.3rem; }
  .cta { min-width: 100%; }

  /* Zeiten-Tabelle volle Breite */
  .times { width: 100%; }
  .times th, .times td { padding: .55rem .4rem; font-size: .92rem; }

  /* Formulare: bequeme Tap-Ziele */
  .form-page { padding: 1.4rem 1rem 2.4rem; }
  .form-page .btn { width: 100%; }
  input[type=text], input[type=tel], input[type=date], input[type=password], textarea { font-size: 16px; } /* iOS-Zoom vermeiden */

  /* Footer stapeln */
  .site-foot .wrap { flex-direction: column; text-align: center; }

  /* Admin: Tap-Ziele + Umbruece */
  .admin-main { padding: 1rem .8rem 2.4rem; }
  .admin-head { padding: .7rem 1rem; font-size: .9rem; }
  .entry { padding: .8rem .9rem; }
  .entry-head { gap: .45rem; font-size: .95rem; }
  .entry-head .right { flex-basis: 100%; margin-left: 0; }
  .entry-actions { gap: .45rem; }
  .entry-actions .btn { flex: 1 1 auto; padding: .65rem .5rem; }
  .tabs a { padding: .55rem 1rem; }
  .admin-brand-text small { display: none; }
  .user-chip { max-width: 40vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .med-row { flex-wrap: wrap; }
  .med-row input { flex-basis: 100%; order: 2; }
  .med-row select { order: 3; flex: 1 1 auto; }
  .med-nr { order: 1; }
  .sms-foot { flex-direction: column; align-items: stretch; }
  .sms-foot .btn { width: 100%; }

  /* Scroll-up etwas kleiner */
  .to-top { width: 44px; height: 44px; right: .8rem; bottom: .8rem; }
}

/* Mobile-Fix: kein horizontaler Overflow */
@media (max-width: 720px) {
  html, body { overflow-x: hidden; }
  .today-badge { white-space: normal; max-width: calc(100% - 1rem); line-height: 1.5; }
  .brand { min-width: 0; flex: 1 1 auto; }
  .notice { flex-wrap: wrap; }
}

/* Anker-Ziele nicht unter dem Sticky-Header verstecken */
#online-services, #services, #zeiten, #kontakt { scroll-margin-top: 96px; }
@media (max-width: 1080px) { #online-services, #services, #zeiten, #kontakt { scroll-margin-top: 76px; } }

/* Brand = Home-Link (Optik unveraendert) */
a.brand { text-decoration: none; display: block; min-width: 0; transition: opacity .2s ease; }
a.brand:hover { opacity: .82; }

/* Footer-Credit */
.foot-credit { opacity: .65; }
.foot-credit a { color: inherit; }
