/* === Design tokens === */
:root {
  --bg: #f5efe6;
  --bg-soft: #faf6f0;
  --bg-deep: #ece2d2;
  --ink: #2e261d;
  --ink-soft: #5a4d3e;
  --muted: #8a7b66;
  --line: #e1d5c0;
  --accent: #c9a87c;
  --accent-deep: #a8865a;
  --rose: #d8b4a0;

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 36px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.12;
  text-wrap: balance;
}
h1 { font-size: clamp(48px, 6vw, 84px); font-weight: 400; }
h2 { font-size: clamp(34px, 4vw, 54px); font-weight: 400; }
h3 { font-size: clamp(22px, 2vw, 28px); }
.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent-deep);
}
p { color: var(--ink-soft); text-wrap: pretty; }
.lede { font-size: 19px; line-height: 1.65; }

/* === Layout === */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: 120px 0; }
section + section { padding-top: 60px; }
#leistungen { padding-top: 100px; }

/* === Navigation === */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand small {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg-soft);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-deep); }

.nav-meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg-soft);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: transparent;
}
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--accent); }
.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* === Hero === */
.hero {
  padding: 60px 0 100px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.hero h1 { margin: 22px 0 24px; }
.hero .lede { max-width: 480px; margin-bottom: 40px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta > div { flex: 1; }
.hero-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.hero-meta span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* === Photo placeholder === */
.photo {
  position: relative;
  background: var(--bg-deep);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-image:
    repeating-linear-gradient(135deg,
      transparent 0,
      transparent 18px,
      color-mix(in oklab, var(--accent) 18%, transparent) 18px,
      color-mix(in oklab, var(--accent) 18%, transparent) 19px);
}
.photo-label {
  position: absolute;
  inset: auto 18px 18px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  color: var(--ink-soft);
  background: color-mix(in oklab, var(--bg-soft) 90%, transparent);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}
.photo.tall { aspect-ratio: 3 / 4.2; }
.photo.wide { aspect-ratio: 5 / 3; }
.photo.square { aspect-ratio: 1; }
.photo.has-image {
  background-image: none;
  background: var(--bg-deep);
}
.photo.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.photo.tall.has-image img { object-position: center 30%; }

.hero-photo {
  position: relative;
}
.hero-photo .photo { transform: rotate(0.5deg); }
.hero-photo .stamp {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
  padding: 12px;
  transform: rotate(-8deg);
  box-shadow: 0 12px 30px -10px color-mix(in oklab, var(--accent-deep) 50%, transparent);
}
.hero-photo .stamp em { font-style: normal; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; display: block; color: var(--ink-soft); margin-bottom: 4px; }

/* === Sections shared === */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-bottom: 96px;
  align-items: end;
}
.section-head h2 { max-width: 16ch; }
.section-head p { max-width: 50ch; }

/* === About === */
.about {
  background: var(--bg-soft);
  border-radius: var(--r-xl);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 { margin: 18px 0 28px; }
.about-text p { margin-bottom: 18px; }
.signature {
  margin-top: 32px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 32px;
  color: var(--accent-deep);
  font-weight: 400;
}
.signature small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 6px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 48px;
}
.facts > div {
  background: var(--bg-soft);
  padding: 22px 24px;
}
.facts dt {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.facts dd {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
}

/* === Services === */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.service {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 48px;
  align-items: baseline;
  padding: 36px 8px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s, background 0.3s;
}
.service:hover { padding-left: 24px; padding-right: 24px; background: var(--bg-soft); }
.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--accent-deep);
  font-weight: 500;
}
.service-body { max-width: 64ch; }
.service h3 { font-size: 28px; line-height: 1.15; margin-bottom: 10px; }
.service p { font-size: 15px; line-height: 1.6; }
.service-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* === FAQ === */
.faq {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 28px 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  gap: 24px;
}
.faq-q .plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s;
}
.faq-q .plus { position: relative; }
.faq-q .plus::after { transform: rotate(90deg); }
.faq-item.open .faq-q .plus { background: var(--ink); border-color: var(--ink); }
.faq-item.open .faq-q .plus::before,
.faq-item.open .faq-q .plus::after { background: var(--bg-soft); }
.faq-item.open .faq-q .plus::after { transform: rotate(0deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 28px;
}
.faq-a p { max-width: 60ch; font-size: 16px; }

.faq-aside {
  background: var(--ink);
  color: var(--bg-soft);
  padding: 48px;
  border-radius: var(--r-lg);
  position: sticky;
  top: 100px;
}
.faq-aside h3 {
  color: var(--bg-soft);
  font-size: 28px;
  margin-bottom: 18px;
}
.faq-aside p { color: color-mix(in oklab, var(--bg-soft) 75%, transparent); margin-bottom: 28px; font-size: 15px; }
.faq-aside .btn-light {
  background: var(--bg-soft);
  color: var(--ink);
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  gap: 10px;
  transition: background 0.2s;
}
.faq-aside .btn-light:hover { background: var(--accent); }

/* === Kontakt === */
.contact {
  background: var(--bg-soft);
  border-radius: var(--r-xl);
  padding: 100px 80px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}
.contact-info h2 { margin: 18px 0 24px; }
.contact-info p { max-width: 40ch; margin-bottom: 36px; }
.contact-channels { display: flex; flex-direction: column; gap: 18px; }
.channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.channel:last-child { border-bottom: 1px solid var(--line); }
.channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.channel-icon svg { width: 18px; height: 18px; stroke: var(--ink); }
.channel-text { display: flex; flex-direction: column; }
.channel-text small { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.channel-text span { font-size: 16px; color: var(--ink); font-weight: 500; }

/* === Form === */
.form {
  background: var(--bg);
  padding: 40px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.form h3 { font-family: var(--serif); margin-bottom: 28px; font-size: 24px; }
.form-row { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg-soft);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.form-row textarea { min-height: 110px; resize: vertical; font-family: var(--sans); }
.form-row.split { flex-direction: row; gap: 16px; }
.form-row.split > div { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.form .btn-primary { width: 100%; justify-content: center; margin-top: 8px; }
.privacy-note { font-size: 12px; color: var(--muted); margin-top: 14px; line-height: 1.5; }

/* === Note card (replaces form) === */
.note-card {
  background: var(--ink);
  color: var(--bg-soft);
  padding: 48px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}
.note-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.note-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.note-card h3 {
  color: var(--bg-soft);
  font-size: 30px;
  margin-bottom: 4px;
}
.note-card p {
  color: color-mix(in oklab, var(--bg-soft) 78%, transparent);
  font-size: 15px;
  line-height: 1.65;
}
.note-links {
  list-style: none;
  padding: 0;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: color-mix(in oklab, var(--bg-soft) 14%, transparent);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.note-links li {
  background: color-mix(in oklab, var(--bg-soft) 6%, transparent);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--bg-soft);
  display: flex;
  align-items: center;
}
.note-links a {
  color: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.note-links a:hover { color: var(--accent); }
.note-links .ext { font-size: 12px; opacity: 0.6; }
.note-foot {
  margin-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px !important;
  color: color-mix(in oklab, var(--bg-soft) 90%, transparent) !important;
}

/* === Kassenleistungen card === */
.kasse {
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.kasse-head { display: flex; flex-direction: column; gap: 20px; }
.kasse-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent);
}
.kasse-head p {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  max-width: 24ch;
}
.kasse-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
}
.kasse-list li {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
}
.kasse-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  position: relative;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path d='M5 9.2l2.6 2.6L13 6.2' fill='none' stroke='%232e261d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: contain;
}

/* Wahlleistungen intro */
.services-intro {
  display: flex;
  align-items: baseline;
  gap: 60px;
  margin-bottom: 16px;
  padding-bottom: 24px;
}
.services-intro p {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* === Slim service variant (just number + title) === */
.service-slim {
  grid-template-columns: 80px 1fr;
  gap: 48px;
  align-items: baseline;
}
.service-slim h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
}

/* === Wahlleistungen === */
.wahl {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--line);
}
.wahl-head h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.2;
  margin: 18px 0 20px;
  color: var(--ink);
  max-width: 14ch;
}
.wahl-head p {
  font-size: 15px;
  max-width: 42ch;
}
.wahl-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-content: start;
}
.wahl-list li {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1.25;
}
.wahl-list li:first-child,
.wahl-list li:nth-child(2) { border-top: 1px solid var(--line); }
.wahl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-deep);
  flex-shrink: 0;
}

/* === Footer === */
footer.wrap {
  padding: 100px 32px 40px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.foot-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 18px;
}
.foot-col a, .foot-col p { display: block; font-size: 14px; color: var(--ink-soft); margin-bottom: 8px; }
.foot-col a:hover { color: var(--accent-deep); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.foot-bottom .links { display: flex; gap: 24px; }

/* === Cookie === */
.cookie {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 540px;
  margin-left: auto;
  background: var(--ink);
  color: var(--bg-soft);
  padding: 22px 26px;
  border-radius: var(--r-md);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.3);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookieIn 0.4s 0.6s both;
}
@keyframes cookieIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie h4 { font-family: var(--serif); font-size: 18px; color: var(--bg-soft); }
.cookie p { font-size: 13px; line-height: 1.5; color: color-mix(in oklab, var(--bg-soft) 70%, transparent); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions button {
  flex: 1;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}
.cookie .accept { background: var(--accent); color: var(--ink); }
.cookie .accept:hover { background: var(--bg-soft); }
.cookie .decline { background: transparent; color: var(--bg-soft); border: 1px solid color-mix(in oklab, var(--bg-soft) 30%, transparent); }
.cookie .decline:hover { border-color: var(--bg-soft); }

/* === Responsive === */
@media (max-width: 900px) {
  section { padding: 70px 0; }
  .nav-links, .nav-meta { display: none; }
  .hero-grid, .about-grid, .faq, .contact-grid, .section-head { grid-template-columns: 1fr; gap: 40px; }
  .about, .contact { padding: 60px 28px; border-radius: var(--r-md); }
  .service { grid-template-columns: 40px 1fr; gap: 20px; }
  .service-tag { grid-column: 2; padding-top: 6px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-meta { gap: 20px; }
  .faq-aside { position: static; padding: 32px; }
  .note-card { padding: 32px; }
  .wahl { grid-template-columns: 1fr; gap: 40px; margin-top: 60px; padding-top: 50px; }
  .wahl-list { grid-template-columns: 1fr; }
  .wahl-list li:nth-child(2) { border-top: none; }
  .kasse { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
  .kasse-list { grid-template-columns: 1fr; }
  .services-intro { flex-direction: column; gap: 14px; }
}
