:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #8B6914;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #242424;
  --white: #F5F0E8;
  --white-dim: rgba(245,240,232,0.7);
  --white-faint: rgba(245,240,232,0.12);
  --red: #C0392B;
  --tg: #26A5E4;
  --font-main: 'Georgia', 'Times New Roman', serif;
  --font-ui: 'Arial', 'Helvetica Neue', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-main); font-weight: normal; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.gold { color: var(--gold); }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--dark2); }
.section--darker { background: var(--dark3); }

.badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  margin-bottom: 18px;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto;
}
.divider--left { margin-left: 0; }

/* HEADER */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 14px 0;
}

.header-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: var(--font-main); font-size: 1.5rem; color: var(--gold); letter-spacing: 0.12em; }
.logo-sub { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--white-dim); margin-top: 3px; }

nav { display: flex; gap: 28px; align-items: center; }
nav a { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-dim); }
nav a:hover { color: var(--gold); }

.header-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black) !important;
  padding: 10px 24px;
  font-weight: bold;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  transition: opacity .2s;
  text-transform: uppercase;
}
.header-cta:hover { opacity: 0.88; color: var(--black) !important; }

.lang-switch {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 5px 12px;
  transition: all .2s;
}
.lang-switch:hover { color: var(--gold); border-color: var(--gold); }

.burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.burger span { width: 24px; height: 2px; background: var(--gold); display: block; }

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(201,168,76,0.05) 0%, transparent 55%),
    linear-gradient(180deg,
      rgba(10,10,10,0.82) 0%,
      rgba(10,10,10,0.55) 40%,
      rgba(10,10,10,0.72) 100%),
    url('images/hero-bg.jpg') center 30% / cover no-repeat;
}

.hero-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-content { position: relative; z-index: 2; max-width: 720px; }

.hero-tag { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-tag-line { width: 40px; height: 1px; background: var(--gold); }
.hero-tag-text { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }

.hero-title { margin-bottom: 24px; }
.hero-title em { font-style: normal; color: var(--gold); }

.hero-desc {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: transform .2s, box-shadow .2s;
  border: none;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.3); color: var(--black); }

.btn-tg {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--tg);
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.btn-tg:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(38,165,228,0.3); color: #fff; }
.btn-tg svg { flex-shrink: 0; }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--white-faint);
}

.stat-num { font-family: var(--font-main); font-size: 2.2rem; color: var(--gold); }
.stat-label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white-dim); margin-top: 4px; }

/* BENEFITS BAR */
.benefits-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 24px 0;
}

.benefits-list { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--white-dim);
}

.benefit-dot { width: 6px; height: 6px; background: var(--gold); flex-shrink: 0; }

/* SERVICES */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { color: var(--white-dim); max-width: 560px; margin: 16px auto 0; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2px; }

.service-card {
  background: var(--dark2);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  opacity: 0;
  transition: opacity .3s;
}

.service-card:hover { background: #1E1C17; }
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: var(--font-main);
  font-size: 3.5rem;
  color: var(--white-faint);
  position: absolute;
  top: 16px; right: 24px;
  line-height: 1;
  pointer-events: none;
}

.service-name { font-family: var(--font-main); font-size: 1.25rem; color: var(--white); margin-bottom: 12px; }
.service-desc { font-size: 0.88rem; color: var(--white-dim); line-height: 1.75; margin-bottom: 20px; }
.service-price { color: var(--gold); font-size: 1.05rem; font-weight: bold; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-frame {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 48px;
  position: relative;
}

.about-frame::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 100%; height: 100%;
  border: 1px solid rgba(201,168,76,0.1);
  z-index: -1;
}

.about-quote {
  font-family: var(--font-main);
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--white);
  font-style: italic;
}

.about-quote-mark {
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  vertical-align: -0.4em;
  font-family: serif;
  opacity: 0.5;
}

.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }

.about-feature { display: flex; align-items: flex-start; gap: 16px; }

.about-feature-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
  font-family: var(--font-main);
}

.about-feature-text h4 { font-family: var(--font-main); font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.about-feature-text p { font-size: 0.85rem; color: var(--white-dim); }

/* CAROUSEL */
.carousel-wrap { position: relative; }
.carousel-viewport { overflow: hidden; position: relative; }
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.carousel-track.dragging { cursor: grabbing; transition: none; }

.prog-card {
  flex: 0 0 300px;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.1);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  position: relative;
}
.prog-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }

.prog-card-img {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.prog-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }

.prog-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.7) 100%);
}

.prog-card-body { padding: 24px 28px 28px; }

.prog-card-en {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.prog-card-name {
  font-family: var(--font-main);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.prog-card-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--white-faint);
}

.prog-card-price { font-family: var(--font-main); font-size: 1.4rem; color: var(--gold); }
.prog-card-dur { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-dim); }
.prog-card-price-alt { font-size: 0.82rem; color: var(--white-dim); margin-top: 4px; }

.addon-card {
  flex: 0 0 240px;
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.08);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.addon-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-3px); }

.addon-card-img { width: 100%; height: 160px; overflow: hidden; }
.addon-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.addon-card-body { padding: 18px 20px 20px; }

.addon-card-name {
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.35;
}

.addon-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.addon-card-price { color: var(--gold); font-weight: bold; font-size: 1rem; }
.addon-card-dur { font-size: 0.75rem; color: var(--white-dim); letter-spacing: 0.06em; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.carousel-dots { display: flex; gap: 8px; align-items: center; }

.carousel-dot {
  width: 6px; height: 6px;
  background: rgba(201,168,76,0.25);
  cursor: pointer;
  transition: all .2s;
  border: none;
  padding: 0;
}
.carousel-dot.active { width: 24px; background: var(--gold); }

.carousel-arrows { display: flex; gap: 12px; }

.carousel-arrow {
  width: 48px; height: 48px;
  border: 1px solid rgba(201,168,76,0.35);
  background: transparent;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.carousel-arrow:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.carousel-arrow:disabled { opacity: 0.3; cursor: default; }
.carousel-arrow:disabled:hover { background: transparent; color: var(--gold); border-color: rgba(201,168,76,0.35); }

/* PROMOS */
.promos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.promo-card {
  background: var(--dark2);
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: transform .3s;
  display: flex;
  flex-direction: column;
}
.promo-card:hover { transform: translateY(-4px); }

.promo-card-top { padding: 32px 32px 24px; flex: 1; }

.promo-num {
  font-family: var(--font-main);
  font-size: 4rem;
  color: var(--white-faint);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.promo-title { font-family: var(--font-main); font-size: 1.2rem; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.promo-desc { font-size: 0.86rem; color: var(--white-dim); line-height: 1.75; }

.promo-card-bottom {
  padding: 16px 32px;
  border-top: 1px solid rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
}

.promo-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
}

.promo-tag-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 14px;
}

.promo-card-accent {
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
}

/* GUARANTEE */
.guarantee-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.guarantee-item { background: var(--dark2); padding: 36px 28px; text-align: center; }

.guarantee-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--gold);
  font-family: var(--font-main);
  font-size: 1.3rem;
}

.guarantee-title { font-family: var(--font-main); font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.guarantee-desc { font-size: 0.84rem; color: var(--white-dim); line-height: 1.65; }

/* SEO TEXT */
.seo-content { max-width: 860px; margin: 0 auto; }
.seo-content h2 { margin-bottom: 20px; }
.seo-content h3 { color: var(--gold); margin: 32px 0 12px; font-size: 1.2rem; font-family: var(--font-main); font-weight: normal; }
.seo-content p { color: var(--white-dim); margin-bottom: 16px; line-height: 1.85; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--white-faint); }

.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 1.05rem;
  color: var(--white);
  gap: 20px;
}
.faq-question:hover { color: var(--gold); }

.faq-arrow { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  color: var(--white-dim);
  font-size: 0.92rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform .5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.8) 100%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-name {
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.06em;
}

.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 300;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-height: 90vh; max-width: 90vw; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  font-size: 2rem; cursor: pointer; color: rgba(245,240,232,0.6);
  background: none; border: none; line-height: 1;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 2rem; cursor: pointer; color: rgba(245,240,232,0.5);
  background: none; border: none; padding: 20px;
  transition: color .2s;
}
.lightbox-arrow:hover { color: var(--gold); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* CONTACT */
.contact-box { max-width: 640px; margin: 0 auto; text-align: center; }
.contact-box h2 { margin-bottom: 16px; }
.contact-box p { color: var(--white-dim); margin-bottom: 40px; font-size: 1rem; line-height: 1.8; }

.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.contact-meta {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--white-faint);
}

.contact-meta-item { text-align: center; }
.contact-meta-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.contact-meta-value { font-family: var(--font-main); font-size: 1.05rem; color: var(--white); }

/* FOOTER */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 48px 0 24px;
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand p { color: var(--white-dim); font-size: 0.88rem; margin-top: 16px; max-width: 320px; line-height: 1.75; }

.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--white-dim); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--white-faint);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.8rem; color: var(--white-dim); }
.footer-18 { background: var(--red); color: white; font-size: 0.75rem; font-weight: bold; padding: 4px 10px; letter-spacing: 0.05em; }

/* STICKY CTA */
.sticky-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.sticky-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform .2s;
  text-decoration: none;
}
.sticky-btn:hover { transform: scale(1.1); }
.sticky-btn.tg { background: var(--tg); }
.sticky-btn.phone { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { display: none; }
  .burger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .programs-grid { grid-template-columns: 1fr; gap: 16px; }
  .guarantee-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .benefits-list { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .contact-actions { flex-direction: column; align-items: center; }
  .contact-meta { gap: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .promos-grid { grid-template-columns: 1fr; }
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a { font-family: var(--font-main); font-size: 1.8rem; color: var(--white); }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close { position: absolute; top: 20px; right: 24px; font-size: 2rem; cursor: pointer; color: var(--white-dim); background: none; border: none; }
