/* Domendomen — unique palette: graphite base, teal / terracotta / violet accents */
:root {
  --bg-deep: #0d1216;
  --bg-raised: #151c24;
  --bg-card: #1c2630;
  --bg-card-hover: #232f3c;
  --accent-teal: #5ec4c4;
  --accent-teal-dim: #3a9a9a;
  --accent-terra: #d67a5c;
  --accent-violet: #9b7ecf;
  --text: #e8ecf0;
  --text-muted: #9aa8b5;
  --text-dark: #1a222c;
  --stats-bar: #12202e;
  --border: rgba(94, 196, 196, 0.18);
  --glow: 0 0 40px rgba(94, 196, 196, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --header-h: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-teal);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--accent-terra);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-teal);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.35rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.u-container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.u-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-terra);
  margin-bottom: 0.65rem;
}

.u-gradient-text {
  background: linear-gradient(120deg, var(--accent-teal), var(--accent-violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(13, 18, 22, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(13, 18, 22, 0.92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.site-header__inner {
  width: min(1180px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.site-logo img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.site-logo:hover {
  color: var(--accent-teal);
}

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

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

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(94, 196, 196, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(13, 18, 22, 0.97);
    border-bottom: 1px solid var(--border);
    gap: 0.15rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.75rem 1rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.65rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.25s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--accent-teal), #7dd9d4);
  box-shadow: var(--glow);
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: btn-shimmer 4s ease-in-out infinite;
}

@keyframes btn-shimmer {
  0%,
  70% {
    transform: translateX(-100%);
  }
  85% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.btn--primary:hover {
  box-shadow: 0 0 32px rgba(94, 196, 196, 0.35);
}

.btn--ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 8rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.85);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 18, 22, 0.92) 0%,
    rgba(13, 18, 22, 0.55) 48%,
    rgba(13, 18, 22, 0.35) 100%
  );
  z-index: 1;
}

.hero__deco {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(155, 126, 207, 0.15) 0%,
    transparent 70%
  );
  top: 15%;
  right: -8%;
  z-index: 2;
  animation: float-drift 18s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float-drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-24px, 20px);
  }
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 640px;
}

.hero__content h1 {
  margin: 0 0 1.25rem;
  color: var(--text);
}

.hero__content .lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Floating cards under hero */
.hero-cards {
  position: relative;
  z-index: 4;
  margin-top: -5rem;
  margin-bottom: 4rem;
}

.hero-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .hero-cards__grid {
    grid-template-columns: 1fr;
    margin-top: -2rem;
  }
}

.hero-card {
  background: linear-gradient(145deg, #f5f8fa 0%, #e8eef3 100%);
  color: var(--text-dark);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}

.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.hero-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(94, 196, 196, 0.25),
    rgba(155, 126, 207, 0.25)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  color: var(--accent-teal-dim);
}

.hero-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.hero-card p {
  font-size: 0.9rem;
  color: #4a5563;
  line-height: 1.55;
  margin: 0;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section--tight {
  padding: 3rem 0;
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section__head h2 {
  margin: 0 0 0.75rem;
  color: var(--text);
}

.section__head p {
  color: var(--text-muted);
  margin: 0;
}

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

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

  .split--reverse .split__visual {
    order: -1;
  }
}

.split__visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.split__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.split__body h2 {
  margin: 0 0 1rem;
  color: var(--accent-terra);
}

.split__body p {
  color: var(--text-muted);
}

/* Stats bar */
.stats-bar {
  background: var(--stats-bar);
  border-block: 1px solid var(--border);
  padding: 2.75rem 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-item__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--accent-teal);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-item__label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

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

.feature-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
  .feature-grid--2col {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-out);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(94, 196, 196, 0.35);
  transform: translateY(-4px);
}

.feature-card__thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.feature-card__thumb img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  opacity: 0.95;
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
  color: var(--accent-terra);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  color: var(--text);
  font-size: 1.05rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-violet));
  box-shadow: 0 0 10px rgba(94, 196, 196, 0.5);
}

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

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

.testimonial-card {
  position: relative;
  background: linear-gradient(145deg, #f7f9fb 0%, #eef2f6 100%);
  color: var(--text-dark);
  border-radius: var(--radius);
  padding: 1.65rem 1.75rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s var(--ease-out);
}

.testimonial-card:hover {
  transform: scale(1.02);
}

.testimonial-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #3d4a56;
}

.testimonial-card__author {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-teal-dim);
}

.testimonial-card__quote-mark {
  position: absolute;
  right: 1.25rem;
  bottom: 1rem;
  font-size: 3rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--accent-terra);
  opacity: 0.35;
  pointer-events: none;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.15rem 0;
}

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

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

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent-teal);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 0;
  margin-top: 2rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-terra);
  margin: 0 0 1rem;
}

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

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-contact-item {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--accent-terra);
  margin-top: 0.2rem;
}

.site-footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Cookie bar */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.cookie-bar.is-visible {
  transform: translateY(0);
}

.cookie-bar__inner {
  width: min(1180px, 92vw);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-bar p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 62ch;
}

.cookie-bar__actions {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.btn--sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
}

/* Legal / inner pages */
.page-hero {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 2.5rem;
  background: linear-gradient(180deg, var(--bg-raised) 0%, var(--bg-deep) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin: 0 0 0.5rem;
}

.page-hero .lead {
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0;
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.prose h2 {
  margin: 2.25rem 0 0.75rem;
  font-size: 1.35rem;
  color: var(--accent-teal);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--text-muted);
}

.prose ul {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

/* Timeline (advantages) */
.timeline {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--border);
  margin: 2rem 0;
}

.timeline__item {
  position: relative;
  padding-bottom: 1.75rem;
  padding-left: 1.25rem;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: calc(-1.5rem - 5px);
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 0 4px var(--bg-deep);
}

.timeline__item h3 {
  margin: 0 0 0.35rem;
  color: var(--text);
  font-size: 1.05rem;
}

.timeline__item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

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

.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.compare-card h3 {
  margin: 0 0 0.5rem;
  color: var(--accent-terra);
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  padding: 3rem 0 4rem;
  align-items: start;
}

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

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.form-row {
  margin-bottom: 1.1rem;
}

.form-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

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

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__notice {
  margin-top: 1.1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(94, 196, 196, 0.45);
  background: rgba(94, 196, 196, 0.12);
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-form__notice[hidden] {
  display: none !important;
}

.contact-form__notice.is-visible {
  animation: contact-notice-in 0.4s var(--ease-out) forwards;
}

@keyframes contact-notice-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal on scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

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

.reveal-stagger > *:nth-child(1) {
  transition-delay: 0.05s;
}
.reveal-stagger > *:nth-child(2) {
  transition-delay: 0.12s;
}
.reveal-stagger > *:nth-child(3) {
  transition-delay: 0.19s;
}
.reveal-stagger > *:nth-child(4) {
  transition-delay: 0.26s;
}
.reveal-stagger > *:nth-child(5) {
  transition-delay: 0.33s;
}
.reveal-stagger > *:nth-child(6) {
  transition-delay: 0.4s;
}

/* Age badge */
.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(214, 122, 92, 0.15);
  border: 1px solid rgba(214, 122, 92, 0.4);
  color: var(--accent-terra);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
