/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #1a2332;
  --navy-light: #243044;
  --gold: #b8935a;
  --gold-light: #d4b07a;
  --gold-pale: #f5efe6;
  --cream: #faf8f5;
  --white: #ffffff;
  --text: #2d2d2d;
  --text-light: #6b7280;
  --text-lighter: #9ca3af;
  --border: #e5e2dc;
  --shadow: 0 1px 3px rgba(26,35,50,0.06), 0 6px 16px rgba(26,35,50,0.04);
  --shadow-lg: 0 4px 12px rgba(26,35,50,0.08), 0 20px 40px rgba(26,35,50,0.06);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --header-height: 80px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

.label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
}

.nav-main { display: flex; align-items: center; gap: 0.25rem; }

.nav-main a {
  padding: 0.5rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-main a:hover, .nav-main a.active { color: var(--navy); background: var(--cream); }

.nav-cta {
  margin-left: 1rem;
  padding: 0.6rem 1.4rem !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: var(--transition);
}

.nav-cta:hover { background: var(--navy-light) !important; transform: translateY(-1px); }

/* Mobile menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  width: 24px; height: 2px;
  background: var(--navy);
  transition: var(--transition);
  display: block;
}

.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav-main {
    position: fixed;
    top: var(--header-height); left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: var(--transition);
  }
  .nav-main.open { transform: translateX(0); }
  .nav-main a { font-size: 1.1rem; padding: 0.8rem 1rem; width: 100%; }
  .nav-cta { margin-left: 0 !important; margin-top: 1rem; text-align: center; }
}

/* ===== LAYOUT ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

main { margin-top: var(--header-height); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 7rem 0 6rem;
  background: linear-gradient(165deg, var(--cream) 0%, var(--white) 50%, var(--gold-pale) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,147,90,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--gold); }

.hero-text {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
}

.hero-visual-inner {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-visual-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, var(--gold) 40px, var(--gold) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, var(--gold) 40px, var(--gold) 41px);
}

.hero-visual-text {
  text-align: center;
  color: var(--white);
  z-index: 1;
  padding: 2rem;
}

.hero-visual-text .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-visual-text p {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

.hero-stat span { font-size: 0.88rem; color: var(--text-light); }

@media (max-width: 900px) {
  .hero { padding: 4rem 0 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-height: 280px; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }

.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-arrow::after { content: '→'; transition: var(--transition); }
.btn-arrow:hover::after { transform: translateX(3px); }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-2px); }

.card-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--text-light); font-size: 0.95rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-width: 1100px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 3.5rem; max-width: 640px; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-header .label { margin-bottom: 0.75rem; display: block; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* ===== PAIN POINTS / PROBLEMS ===== */
.problems {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.problems::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 1px solid rgba(184,147,90,0.1);
  border-radius: 50%;
}

.problems .label { color: var(--gold-light); }
.problems h2 { color: var(--white); }
.problems p { color: rgba(255,255,255,0.65); }

.problems-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.problem-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
}

.problem-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: rgba(184,147,90,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
}

.problem-item p { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin: 0; }

@media (max-width: 700px) { .problems-list { grid-template-columns: 1fr; } }

/* ===== STEPS / PROCESS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 2rem;
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--text-light); font-size: 0.95rem; }

@media (max-width: 700px) { .steps { grid-template-columns: 1fr; } }

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.testimonial::before {
  content: '„';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: -0.5rem;
}

.testimonial blockquote {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author { font-size: 0.88rem; }
.testimonial-author strong { display: block; color: var(--navy); font-weight: 600; }
.testimonial-author span { color: var(--text-light); }

@media (max-width: 700px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ===== FEATURES LIST ===== */
.features-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features-split.reverse { direction: rtl; }
.features-split.reverse > * { direction: ltr; }

.feature-list { display: flex; flex-direction: column; gap: 1.5rem; }

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

.feature-item h4 { margin-bottom: 0.25rem; }
.feature-item p { color: var(--text-light); font-size: 0.92rem; }

.feature-visual {
  background: var(--cream);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.feature-visual-inner {
  text-align: center;
  padding: 2rem;
}

.feature-visual-inner .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .features-split, .features-split.reverse { grid-template-columns: 1fr; direction: ltr; }
  .feature-visual { max-height: 250px; }
}

/* ===== PRICING TABLE ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  background: var(--white);
  transition: var(--transition);
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
  content: 'Beliebt';
  position: absolute;
  top: -12px; right: 2rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}

.pricing-card h3 { margin-bottom: 0.5rem; }

.pricing-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1rem 0;
}

.pricing-card .price span { font-size: 1rem; color: var(--text-light); font-family: 'Source Sans 3', sans-serif; }

.pricing-list { margin: 1.5rem 0 2rem; }

.pricing-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

.pricing-list li:last-child { border-bottom: none; }

.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 700px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-member {
  text-align: center;
  padding: 2rem 1.5rem;
}

.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
}

.team-member h4 { margin-bottom: 0.25rem; }
.team-member .role { color: var(--gold); font-size: 0.88rem; font-weight: 600; margin-bottom: 0.75rem; }
.team-member p { color: var(--text-light); font-size: 0.9rem; }

@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr; } }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,147,90,0.12);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.contact-info-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
}

.contact-detail strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 0.15rem; }
.contact-detail span { color: var(--text-light); font-size: 0.92rem; }

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

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(184,147,90,0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.cta-band h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-band p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }
.cta-band .btn { position: relative; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand .logo-mark { background: rgba(255,255,255,0.1); }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; max-width: 300px; }

.footer-col h4 {
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; }
}

/* ===== PAGE HERO (Subpages) ===== */
.page-hero {
  padding: 5rem 0 3.5rem;
  background: linear-gradient(165deg, var(--cream) 0%, var(--white) 100%);
}

.page-hero .label { margin-bottom: 0.75rem; display: block; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--text-light); font-size: 1.1rem; max-width: 600px; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--cream);
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
}

.trust-item strong { color: var(--navy); }

/* ===== TABLE ===== */
.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  text-align: left;
  padding: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  border-bottom: 2px solid var(--border);
}

tbody td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

tbody tr:hover { background: var(--cream); }

/* ===== VALUES GRID ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-item { text-align: center; padding: 1.5rem; }

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.value-item h4 { margin-bottom: 0.5rem; }
.value-item p { color: var(--text-light); font-size: 0.92rem; }

@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.bg-cream { background: var(--cream); }
