/* ===== Variablen ===== */
:root {
  --color-bg: #f0ede4;
  --color-bg-card: #fffdf8;
  --color-bg-alt: #e6e1d2;
  --color-text: #14231f;
  --color-text-muted: #55645f;
  --color-border: #d9d2bf;
  --color-accent: #004741;
  --color-accent-dark: #00302b;
  --color-accent-light: #0d675f;
  --color-cream: #f0ede4;
  --font-main: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

h2 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2.huge { font-size: clamp(3.2rem, 9vw, 6.5rem); }
h3 { font-size: 1.6rem; margin-bottom: 12px; letter-spacing: 0.02em; }
h2.light, h3.light { color: var(--color-cream); }

p { margin: 0 0 16px; color: var(--color-text-muted); font-family: var(--font-main); }

a { color: inherit; text-decoration: none; }

ul { padding: 0; margin: 0; list-style: none; }

/* ===== Grain overlay ===== */
.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(240, 237, 228, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--color-cream);
  transition: color 0.3s ease;
}

.site-header.is-scrolled .logo { color: var(--color-text); }

.logo-icon {
  width: 26px;
  height: 26px;
  display: block;
}

.logo-icon-dark { display: none; }

.site-header.is-scrolled .logo-icon-light { display: none; }
.site-header.is-scrolled .logo-icon-dark { display: block; }

.main-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 24px;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(240, 237, 228, 0.85);
  transition: color 0.2s;
}

.site-header.is-scrolled .main-nav a { color: var(--color-text); }

.main-nav a span {
  color: var(--color-accent-light);
  font-weight: 700;
  margin-right: 4px;
}

.site-header.is-scrolled .main-nav a span { color: var(--color-accent); }

.main-nav a:hover { color: var(--color-accent-light); }

.header-inner .btn-small {
  background: var(--color-cream);
  color: var(--color-accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-cream);
  border-radius: 2px;
}

.site-header.is-scrolled .nav-toggle span { background: var(--color-text); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--color-accent);
  color: var(--color-cream);
}

.btn-primary:hover { background: var(--color-accent-dark); }

.btn-cream {
  background: var(--color-cream);
  color: var(--color-accent);
}

.btn-cream:hover { background: #ffffff; }

.btn-outline-light {
  background: transparent;
  border-color: rgba(240, 237, 228, 0.4);
  color: var(--color-cream);
}

.btn-outline-light:hover { border-color: var(--color-cream); }

.btn-small { padding: 10px 22px; font-size: 0.88rem; }

.btn-full { width: 100%; text-align: center; border: none; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-accent);
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  width: clamp(420px, 46vw, 900px);
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

.hero-blob {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 237, 228, 0.16), transparent 70%);
  top: 20%;
  left: 60%;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: 76px;
}

.eyebrow {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow-light { color: rgba(240, 237, 228, 0.75); }

.hero-title {
  font-size: clamp(3rem, 9vw, 6.4rem);
  color: var(--color-cream);
}

.hero-title .line { display: block; }
.hero-title-accent { color: rgba(240, 237, 228, 0.55); }

.hero-sub {
  font-size: 1.15rem;
  max-width: 520px;
  color: rgba(240, 237, 228, 0.8);
  margin-top: 24px;
  font-family: var(--font-main);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(240, 237, 228, 0.7);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(240, 237, 228, 0.5);
  animation: scroll-cue-move 1.8s ease-in-out infinite;
}

@keyframes scroll-cue-move {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); transform-origin: top; }
}

/* ===== Marquee ===== */
.marquee {
  background: var(--color-cream);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--color-accent);
  text-transform: uppercase;
  animation: marquee-scroll 26s linear infinite;
}

.marquee-track span { white-space: nowrap; }
.marquee-track .dot { color: var(--color-border); }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Sections ===== */
.section { padding: 120px 0; }

.section-dark {
  background: var(--color-accent);
}

.section-head { max-width: 640px; margin-bottom: 56px; }

.section-eyebrow {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--font-main);
}

.section-eyebrow-light { color: rgba(240, 237, 228, 0.7); }

.section-intro {
  max-width: 520px;
  font-size: 1.05rem;
}

/* ===== Leistungen Bento ===== */
.bento {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.bento-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.bento-large {
  flex: 1.3;
}

.bento-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bento-item:hover {
  background: var(--color-accent);
  transform: translateY(-4px);
}

.bento-item:hover h3,
.bento-item:hover p { color: var(--color-cream); }

.bento-item:hover .bento-number { color: rgba(240, 237, 228, 0.3); }
.bento-item:hover .bento-icon { color: var(--color-cream); }
.bento-item:hover .bento-tags li {
  border-color: rgba(240, 237, 228, 0.35);
  color: rgba(240, 237, 228, 0.85);
}

.bento-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.bento-icon {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
  transition: color 0.3s ease;
}

.bento-icon-lg { width: 52px; height: 52px; }

.bento-icon svg { width: 100%; height: 100%; display: block; }

.bento-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--color-border);
  transition: color 0.3s ease;
  line-height: 1;
}

.bento-item h3, .bento-item p { position: relative; z-index: 1; transition: color 0.3s ease; }
.bento-item p { margin-bottom: 0; }


.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.bento-tags li {
  font-size: 0.75rem;
  font-family: var(--font-main);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: border-color 0.3s ease, color 0.3s ease;
}

/* ===== Über mich ===== */
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.about-photo-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(240, 237, 228, 0.14), rgba(240, 237, 228, 0.03));
  border: 1px solid rgba(240, 237, 228, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo-placeholder span {
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(240, 237, 228, 0.35);
}

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--color-cream);
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
  border-left: 3px solid rgba(240, 237, 228, 0.4);
  padding-left: 20px;
  margin: 20px 0 28px;
}

.light-body { color: rgba(240, 237, 228, 0.75); }

.stat-row {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat { min-width: 140px; }

.stat-number, .stat-number-text {
  display: flex;
  align-items: flex-end;
  min-height: 3rem;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-cream);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number-text { font-size: 2rem; }

.stat-label {
  font-size: 0.85rem;
  color: rgba(240, 237, 228, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ===== Referenzen ===== */
.portfolio-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
}

.portfolio-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 24px;
  border-top: 1px solid var(--color-border);
  max-width: var(--max-width);
  margin: 0 auto;
}

.portfolio-row:last-child { border-bottom: 1px solid var(--color-border); }

.portfolio-row-reverse { direction: rtl; }
.portfolio-row-reverse > * { direction: ltr; }

.portfolio-media {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  background: repeating-linear-gradient(
    135deg,
    var(--color-bg-alt),
    var(--color-bg-alt) 12px,
    var(--color-bg-card) 12px,
    var(--color-bg-card) 24px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.portfolio-row:hover .portfolio-media { transform: scale(1.02); }

.portfolio-tag {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.portfolio-copy h3 { margin-bottom: 10px; }
.portfolio-copy p { margin-bottom: 0; }

/* ===== Kontakt ===== */
.section-kontakt .kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.kontakt-details {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kontakt-details li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--color-cream);
}

.kontakt-details span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(240, 237, 228, 0.55);
}

.kontakt-details a { font-weight: 600; color: var(--color-cream); font-size: 1.1rem; }
.kontakt-details a:hover { color: rgba(240, 237, 228, 0.7); }

.kontakt-form {
  background: rgba(240, 237, 228, 0.06);
  border: 1px solid rgba(240, 237, 228, 0.2);
  border-radius: 20px;
  padding: 32px;
}

.form-row { margin-bottom: 18px; }

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: rgba(240, 237, 228, 0.8);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(240, 237, 228, 0.25);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(240, 237, 228, 0.06);
  color: var(--color-cream);
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(240, 237, 228, 0.4); }

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-cream);
}

.form-note {
  margin: 12px 0 0;
  font-size: 0.88rem;
  color: var(--color-cream);
  min-height: 20px;
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-inner a:hover { color: var(--color-accent); }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-icon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .bento { flex-direction: column; }
  .bento-stack { flex-direction: row; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 260px; }
  .section-kontakt .kontakt-inner { grid-template-columns: 1fr; gap: 40px; }
  .portfolio-row,
  .portfolio-row-reverse { grid-template-columns: 1fr; direction: ltr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .header-inner .btn-small { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.is-open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--color-bg-card);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
  }

  .main-nav.is-open a { color: var(--color-text); }
  .main-nav.is-open a span { color: var(--color-accent); }

  .bento-stack { flex-direction: column; }

  .hero { padding: 88px 0 64px; min-height: auto; }
  .section { padding: 72px 0; }
  .portfolio-row { padding: 40px 24px; }
}

/* ===== v2: Alternierende Sektion ===== */
.section-alt { background: var(--color-bg-alt); }

/* ===== v2: Problem-Sektion ===== */
.section-problem { padding-bottom: 96px; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 71, 65, 0.08);
}

.problem-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.problem-card h3 { font-size: 1.35rem; }
.problem-card p { margin-bottom: 0; font-size: 0.97rem; }

.problem-cta {
  margin-top: 40px;
  font-size: 1.1rem;
  color: var(--color-text);
  max-width: 640px;
}

.problem-cta a {
  color: var(--color-accent);
  font-weight: 700;
  border-bottom: 2px solid var(--color-accent);
  transition: opacity 0.2s;
}

.problem-cta a:hover { opacity: 0.7; }

/* ===== v2: Ablauf / Prozess ===== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 28px 24px 32px;
  border-top: 2px solid var(--color-accent);
  background: linear-gradient(180deg, rgba(0, 71, 65, 0.04), transparent 60%);
  border-radius: 0 0 16px 16px;
  transition: background 0.3s ease;
}

.process-step:hover {
  background: linear-gradient(180deg, rgba(0, 71, 65, 0.09), transparent 80%);
}

.process-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 16px;
}

.process-body h3 { font-size: 1.35rem; }
.process-body p { margin-bottom: 0; font-size: 0.95rem; }

/* ===== v2: Warum ich ===== */
.why-me { margin-top: 48px; }

.why-me-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(240, 237, 228, 0.75);
  font-size: 0.97rem;
}

.why-list li strong { color: var(--color-cream); }

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 9px;
  border-left: 2.5px solid var(--color-cream);
  border-bottom: 2.5px solid var(--color-cream);
  transform: rotate(-45deg);
  opacity: 0.85;
}

/* ===== v2: FAQ ===== */
.faq-inner { max-width: 820px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item[open] { border-color: var(--color-accent); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--color-text);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--color-accent);
  transition: transform 0.25s ease;
}

.faq-icon::before {
  left: 0;
  top: 6px;
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  left: 6px;
  top: 0;
  width: 2px;
  height: 14px;
}

.faq-item[open] .faq-icon::after { transform: scaleY(0); }

.faq-answer { padding: 0 24px 20px; }
.faq-answer p { margin-bottom: 0; font-size: 0.97rem; }

/* ===== v2: Kontakt-Ergänzung ===== */
.kontakt-note-small {
  margin-top: 28px;
  font-size: 0.88rem;
  color: rgba(240, 237, 228, 0.55);
}

/* ===== v2: Responsive ===== */
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .process { grid-template-columns: 1fr; }
  .section-problem { padding-bottom: 64px; }
}

/* ===== v2: Footer Rechtliches ===== */
.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-weight: 600;
}

/* ===== v2: Rechtsseiten (Impressum, Datenschutz) ===== */
.legal-body .site-header {
  position: static;
}

.legal-main {
  padding: 64px 0 96px;
}

.legal-container {
  max-width: 760px;
}

.legal-container h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  margin-bottom: 32px;
}

.legal-h2 {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 36px 0 10px;
  color: var(--color-text);
}

.legal-container p {
  font-size: 0.98rem;
}

.legal-container a {
  color: var(--color-accent);
  font-weight: 600;
}

.legal-container a:hover {
  text-decoration: underline;
}

.legal-container em {
  color: var(--color-accent);
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
}
