
:root {
  --navy: #0a0e16;
  --navy2: #111827;
  --gold: #c9a227;
  --gold-light: #f0c84a;
  --gold-dark: #7a5e0e;
  --orange: #e8782a;
  --orange2: #ff6b35;
  --white: #ffffff;
  --gray: #8b95a5;
  --card-bg: rgba(255,255,255,0.04);
  --border: rgba(201,162,39,0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── GOLDLINIE ── */
.gold-line {
  width: 100%; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-dark) 10%, var(--gold-light) 50%, var(--gold-dark) 90%, transparent);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,14,22,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.15);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
}
.nav-logo img {
  width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 2px; color: var(--white);
}
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.7);
  font-size: 14px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--orange); color: #fff !important;
  padding: 8px 22px; border-radius: 25px;
  font-size: 13px !important;
  box-shadow: 0 4px 16px rgba(232,120,42,0.4);
}
.nav-cta:hover { background: #ff7a3d !important; color: #fff !important; }

.nav-burger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-burger span {
  display: block; width: 26px; height: 2px;
  background: var(--gold); border-radius: 2px; transition: .3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 80px 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(232,120,42,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 70%, rgba(201,162,39,0.08) 0%, transparent 50%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1300px; margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,120,42,0.15);
  border: 1px solid rgba(232,120,42,0.4);
  border-radius: 30px; padding: 6px 18px;
  font-size: 13px; font-weight: 800; color: var(--orange);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 7vw, 108px);
  line-height: .88; letter-spacing: 3px;
  color: var(--white); margin-bottom: 10px;
}
.hero-h1 em { color: var(--gold); font-style: normal; display: block; }
.hero-sub {
  font-size: 20px; font-weight: 700;
  color: rgba(255,255,255,0.65); line-height: 1.6;
  margin-bottom: 36px; max-width: 520px;
}
.hero-sub strong { color: var(--orange); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), #d4621a);
  color: #fff; text-decoration: none;
  font-size: 16px; font-weight: 800;
  padding: 14px 32px; border-radius: 50px;
  box-shadow: 0 8px 28px rgba(232,120,42,0.45);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(232,120,42,0.55); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,0.1);
  border: 2px solid var(--gold);
  color: var(--gold); text-decoration: none;
  font-size: 16px; font-weight: 800;
  padding: 14px 32px; border-radius: 50px;
  transition: background .2s;
}
.btn-secondary:hover { background: rgba(201,162,39,0.2); }

.hero-stats {
  display: flex; gap: 36px; margin-top: 48px;
}
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px; color: var(--gold); line-height: 1;
}
.hero-stat-lbl {
  font-size: 12px; font-weight: 700; color: var(--gray);
  letter-spacing: 1px; text-transform: uppercase;
}

/* Hero foto rechts */
.hero-visual { position: relative; }
.hero-img-main {
  width: 100%; aspect-ratio: 3/4; max-height: 680px;
  object-fit: cover; object-position: center top;
  border-radius: 24px;
  border: 3px solid rgba(201,162,39,0.4);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.hero-badge-float {
  position: absolute; top: 28px; right: -20px;
  width: 110px; height: 110px; border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 0 30px rgba(201,162,39,0.6);
  overflow: hidden;
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 20px rgba(201,162,39,0.5); }
  50% { box-shadow: 0 0 40px rgba(201,162,39,0.9); }
}
.hero-badge-float img { width: 100%; height: 100%; object-fit: cover; }
.hero-weight-badge {
  position: absolute; bottom: 32px; left: -24px;
  background: var(--orange); color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 2px;
  padding: 10px 20px; border-radius: 12px;
  box-shadow: 0 8px 24px rgba(232,120,42,0.5);
  transform: rotate(-4deg);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.scroll-arrow { width: 2px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }

/* ── SECTIONS ALLGEMEIN ── */
section { padding: 100px 80px; }
.section-inner { max-width: 1300px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: 3px;
  color: var(--orange); text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 80px);
  line-height: .9; letter-spacing: 2px; color: var(--white);
  margin-bottom: 8px;
}
.section-title em { color: var(--gold); font-style: normal; }
.section-sub {
  font-size: 18px; font-weight: 600;
  color: rgba(255,255,255,0.6); line-height: 1.65;
  max-width: 680px; margin-bottom: 56px;
}
.section-sub strong { color: var(--white); }

/* ── ÜBER MICH ── */
#ueber { background: var(--navy2); }
.ueber-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.ueber-imgs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ueber-imgs img {
  width: 100%; aspect-ratio: 1;
  object-fit: cover; object-position: center top;
  border-radius: 16px;
  border: 2px solid rgba(201,162,39,0.25);
  transition: transform .3s, border-color .3s;
}
.ueber-imgs img:hover { transform: scale(1.02); border-color: var(--gold); }
.ueber-imgs img:first-child {
  grid-column: span 2; aspect-ratio: 16/9;
  object-position: center 25%;
}

.facts-list { display: flex; flex-direction: column; gap: 18px; margin: 32px 0; }
.fact-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 22px;
}
.fact-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.fact-text-title { font-size: 16px; font-weight: 900; color: var(--gold); margin-bottom: 4px; }
.fact-text-sub { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ── XXL SEKTION ── */
#xxl {
  background: linear-gradient(180deg, var(--navy) 0%, #0d1520 100%);
  position: relative; overflow: hidden;
}
#xxl::before {
  content: '176';
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 500px; line-height: 1;
  color: rgba(201,162,39,0.04); pointer-events: none;
  user-select: none;
}
.xxl-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.xxl-cards { display: flex; flex-direction: column; gap: 20px; }
.xxl-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 18px; padding: 28px 32px;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.xxl-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
}
.xxl-card:hover { border-color: var(--gold); transform: translateX(6px); }
.xxl-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 1px; color: var(--white);
  margin-bottom: 10px;
}
.xxl-card-title em { color: var(--orange); font-style: normal; }
.xxl-card-text { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.65); line-height: 1.6; }

.xxl-visual { position: relative; }
.xxl-img {
  width: 100%; border-radius: 24px;
  border: 3px solid rgba(232,120,42,0.3);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.xxl-quote {
  position: absolute; bottom: -24px; left: 24px; right: 24px;
  background: linear-gradient(135deg, rgba(13,17,23,0.95), rgba(17,24,39,0.95));
  border: 1.5px solid rgba(232,120,42,0.4);
  border-radius: 16px; padding: 20px 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 1.5px; color: var(--orange);
  line-height: 1.3;
}
.xxl-quote span { color: rgba(255,255,255,0.6); font-family: 'Nunito',sans-serif; font-size:13px; font-weight:700; display:block; margin-top:6px; letter-spacing:1px; }

/* ── APP SEKTION ── */
#app { background: var(--navy2); }
.app-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.app-features { display: flex; flex-direction: column; gap: 16px; }
.app-feature {
  display: flex; align-items: center; gap: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 24px;
  transition: background .2s, border-color .2s;
}
.app-feature:hover { background: rgba(201,162,39,0.06); border-color: var(--gold); }
.app-feature-icon { font-size: 32px; flex-shrink: 0; }
.app-feature-title { font-size: 17px; font-weight: 900; color: var(--white); margin-bottom: 3px; }
.app-feature-title em { color: var(--gold); font-style: normal; }
.app-feature-sub { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.55); }
.app-cta-box {
  background: linear-gradient(135deg, rgba(201,162,39,0.1), rgba(232,120,42,0.08));
  border: 2px solid rgba(201,162,39,0.4);
  border-radius: 20px; padding: 32px;
  text-align: center; margin-top: 24px;
}
.app-cta-box p { font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.app-phone-mock {
  background: #111;
  border: 3px solid rgba(201,162,39,0.4);
  border-radius: 40px; padding: 12px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  max-width: 320px; margin: 0 auto;
}
.app-phone-screen {
  background: var(--navy);
  border-radius: 32px; overflow: hidden;
  padding: 24px 20px;
}
.app-phone-header {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 2px; color: var(--gold);
  text-align: center; margin-bottom: 16px;
}
.app-phone-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 12px; padding: 12px 16px;
  margin-bottom: 10px; display: flex;
  align-items: center; justify-content: space-between;
}
.app-phone-stat-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.55); }
.app-phone-stat-val { font-family: 'Bebas Neue',sans-serif; font-size: 24px; color: var(--white); }

/* ── TRAFO / VAN SEKTION ── */
#trafo { background: var(--navy); }
.trafo-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.trafo-gallery img {
  width: 100%; object-fit: cover; border-radius: 16px;
  border: 2px solid rgba(201,162,39,0.2);
  transition: transform .3s, border-color .3s;
}
.trafo-gallery img:hover { transform: scale(1.01); border-color: var(--gold); }
.trafo-gallery img:first-child {
  grid-row: span 2;
  height: 100%; min-height: 400px;
}
.trafo-gallery img:not(:first-child) { height: 200px; }

.trafo-text { margin-bottom: 40px; }
.trafo-specs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 48px;
}
.spec-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 14px; padding: 24px 20px; text-align: center;
  position: relative; overflow: hidden;
}
.spec-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}
.spec-val { font-family: 'Bebas Neue',sans-serif; font-size: 32px; color: var(--gold); }
.spec-lbl { font-size: 12px; font-weight: 700; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* ── LINKS / SOCIAL ── */
#social { background: var(--navy2); }
.social-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 48px;
}
.social-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; text-decoration: none;
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 20px; padding: 40px 24px;
  transition: all .3s; text-align: center;
}
.social-card:hover { transform: translateY(-6px); border-color: var(--gold); background: rgba(201,162,39,0.06); }
.social-icon { font-size: 48px; }
.social-platform { font-family: 'Bebas Neue',sans-serif; font-size: 22px; letter-spacing: 2px; color: var(--white); }
.social-handle { font-size: 14px; font-weight: 700; color: var(--gold); }
.social-card.ig:hover { border-color: #e1306c; }
.social-card.yt:hover { border-color: #ff0000; }
.social-card.tt:hover { border-color: #69c9d0; }

/* Linktree + Coffee Embed */
.embed-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; margin-top: 0;
}
.embed-card {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
}
.embed-header {
  padding: 20px 28px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.embed-header-icon { font-size: 24px; }
.embed-header-title { font-family: 'Bebas Neue',sans-serif; font-size: 20px; letter-spacing: 2px; color: var(--white); }
.embed-header-sub { font-size: 12px; font-weight: 600; color: var(--gray); margin-top: 2px; }
.embed-frame { flex: 1; min-height: 400px; border: none; width: 100%; }

/* ── FOOTER ── */
footer {
  background: #050810;
  padding: 60px 80px 40px;
  border-top: 1px solid rgba(201,162,39,0.1);
}
.footer-inner { max-width: 1300px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-logo-text { font-family: 'Bebas Neue',sans-serif; font-size: 28px; color: var(--white); letter-spacing: 2px; margin-bottom: 12px; }
.footer-logo-text span { color: var(--gold); }
.footer-desc { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 320px; }
.footer-col-title { font-family: 'Bebas Neue',sans-serif; font-size: 16px; letter-spacing: 2px; color: var(--gold); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.5); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px; display: flex;
  align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.3); }
.footer-slogan { font-family: 'Bebas Neue',sans-serif; font-size: 16px; letter-spacing: 3px; color: rgba(255,255,255,0.25); }
.footer-slogan em { color: var(--gold-dark); font-style: normal; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(10,14,22,0.98); padding: 24px;
    gap: 20px; border-bottom: 1px solid rgba(201,162,39,0.2);
  }
  section { padding: 60px 24px; }
  .hero { padding: 90px 24px 60px; }
  .hero-grid, .ueber-grid, .xxl-grid, .app-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .trafo-gallery { grid-template-columns: 1fr 1fr; }
  .trafo-gallery img:first-child { grid-column: span 2; grid-row: span 1; height: 260px; }
  .trafo-specs { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .embed-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 40px 24px 30px; }
  #xxl::before { font-size: 200px; }
}

/* Live Stats */
.social-live-count {
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.5); margin-top: 6px;
  transition: color .3s;
}
.social-card:hover .social-live-count { color: var(--gold); }

/* Live Badge */
.live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  color: #2ecc71; text-transform: uppercase;
}
.live-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: #2ecc71;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.4); }
}

/* ── LINK CARDS (statt iframes) ── */
.link-card-body {
  padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.link-card-item {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: 12px; padding: 14px 18px;
  text-decoration: none; color: var(--white);
  transition: background .2s, border-color .2s, transform .2s;
}
.link-card-item:hover {
  background: rgba(201,162,39,0.08);
  border-color: var(--gold);
  transform: translateX(4px);
}
.link-card-icon { font-size: 24px; flex-shrink: 0; }
.link-card-text { flex: 1; }
.link-card-title { font-size: 15px; font-weight: 800; color: var(--white); }
.link-card-sub { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.45); margin-top: 2px; }
.link-card-arrow { font-size: 18px; color: var(--gold); opacity: .6; transition: opacity .2s; }
.link-card-item:hover .link-card-arrow { opacity: 1; }

/* ── COFFEE CARD ── */
.coffee-card {
  padding: 24px;
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; text-align: center;
}
.coffee-logo {
  width: 80px; height: 80px; border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 20px rgba(201,162,39,.4);
}
.coffee-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 1px; color: var(--white);
}
.coffee-desc {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.65); line-height: 1.65; max-width: 360px;
}
.coffee-amounts { display: flex; gap: 10px; }
.coffee-btn {
  flex: 1; padding: 10px 8px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(201,162,39,.3);
  border-radius: 10px; text-decoration: none;
  font-size: 15px; font-weight: 800; color: var(--white);
  text-align: center; transition: all .2s;
}
.coffee-btn:hover { background: rgba(201,162,39,.15); border-color: var(--gold); }
.coffee-btn-gold { background: rgba(201,162,39,.15); border-color: var(--gold); }
.coffee-note {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.3); margin-top: -6px;
}

/* ── DATENSCHUTZ ── */
.ds-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.ds-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 24px;
}
.ds-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 1px;
  color: var(--gold); margin-bottom: 14px;
}
.ds-card-text {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.65); line-height: 1.7;
}
.ds-card-text a { color: var(--gold); text-decoration: none; }
.ds-card-text a:hover { text-decoration: underline; }

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