/* ==========================================================================
   Vet Hugs — theme layer on top of Bootstrap 5.3
   Palette drawn from the logo: teal + leaf green hands hugging a navy pet.
   Signature: the "hug arch" photo frame (fully rounded top, like cupped hands).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --vh-font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --vh-font-body: "Figtree", "Segoe UI", sans-serif;

  --vh-radius: 1.25rem;
  --vh-radius-sm: 0.85rem;
  --vh-shadow: 0 10px 30px -12px rgba(31, 42, 82, 0.18);
  --vh-shadow-lg: 0 24px 60px -24px rgba(31, 42, 82, 0.28);

  /* paw print, used as decorative marker (currentColor via mask) */
  --vh-paw: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='30' cy='28' rx='11' ry='15' transform='rotate(-18 30 28)'/%3E%3Cellipse cx='70' cy='28' rx='11' ry='15' transform='rotate(18 70 28)'/%3E%3Cellipse cx='12' cy='52' rx='9' ry='12' transform='rotate(-38 12 52)'/%3E%3Cellipse cx='88' cy='52' rx='9' ry='12' transform='rotate(38 88 52)'/%3E%3Cpath d='M50 44c14 0 26 11 28 25 1.5 10-5 19-15 19-5 0-8-2-13-2s-8 2-13 2c-10 0-16.5-9-15-19 2-14 14-25 28-25z'/%3E%3C/svg%3E");
}

[data-bs-theme="light"] {
  --vh-ink: #22315e;
  --vh-ink-soft: #4a5678;
  --vh-teal: #1c9fae;
  --vh-teal-deep: #127683;
  --vh-teal-soft: #d9f0f2;
  --vh-green: #2ba458;
  --vh-green-soft: #ddf2e4;
  --vh-bg: #f5faf9;
  --vh-surface: #ffffff;
  --vh-mist: #e8f4f3;
  --vh-line: #dbe7e6;

  --bs-body-bg: var(--vh-bg);
  --bs-body-color: var(--vh-ink);
  --bs-heading-color: var(--vh-ink);
  --bs-link-color: var(--vh-teal-deep);
  --bs-link-hover-color: var(--vh-teal);
  --bs-border-color: var(--vh-line);
}

[data-bs-theme="dark"] {
  --vh-ink: #e8eef8;
  --vh-ink-soft: #a8b4cf;
  --vh-teal: #3bc0cf;
  --vh-teal-deep: #7fd7e1;
  --vh-teal-soft: #10333d;
  --vh-green: #45c675;
  --vh-green-soft: #11351f;
  --vh-bg: #0c1226;
  --vh-surface: #141d3a;
  --vh-mist: #101838;
  --vh-line: #263156;

  --bs-body-bg: var(--vh-bg);
  --bs-body-color: var(--vh-ink);
  --bs-heading-color: var(--vh-ink);
  --bs-link-color: var(--vh-teal-deep);
  --bs-link-hover-color: var(--vh-teal);
  --bs-border-color: var(--vh-line);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
body {
  font-family: var(--vh-font-body);
  font-size: 1.02rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display-font {
  font-family: var(--vh-font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

::selection {
  background: var(--vh-teal);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--vh-teal);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 2000;
  padding: 0.6rem 1rem;
  background: var(--vh-ink);
  color: #fff;
  border-radius: 0 0 0.5rem 0;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.section-mist {
  background: var(--vh-mist);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vh-teal-deep);
}
.eyebrow::before {
  content: "";
  width: 0.95em;
  height: 0.95em;
  background: currentColor;
  -webkit-mask: var(--vh-paw) center / contain no-repeat;
  mask: var(--vh-paw) center / contain no-repeat;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin-bottom: 0.5rem;
}
.section-head p {
  color: var(--vh-ink-soft);
  max-width: 46rem;
}

.text-soft {
  color: var(--vh-ink-soft);
}

/* --------------------------------------------------------------------------
   3. Header
   -------------------------------------------------------------------------- */
.site-header {
  border-bottom: 1px solid var(--vh-line);
}
/* The frosted-glass tint + blur live on a pseudo-element instead of on
   .site-header itself. If backdrop-filter were on the header, that header would
   become the containing block for its position:fixed descendants — trapping the
   mobile offcanvas menu (#siteNav) inside the short header box so it never opens
   properly. Keeping the filter off the header lets the offcanvas fill the viewport. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: color-mix(in srgb, var(--vh-bg) 82%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--vh-font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--vh-ink);
}
.navbar-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(31, 42, 82, 0.12);
}

.main-nav .nav-link {
  font-weight: 600;
  color: var(--vh-ink-soft);
  border-radius: 999px;
  padding-inline: 0.95rem;
}
.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
  color: var(--vh-teal-deep);
  background: var(--vh-teal-soft);
}
.main-nav .nav-link.active {
  color: var(--vh-teal-deep);
  background: var(--vh-teal-soft);
}

.theme-toggle {
  border: 1px solid var(--vh-line);
  background: var(--vh-surface);
  color: var(--vh-ink);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: transform 0.2s ease, background 0.2s ease;
}
.theme-toggle:hover {
  transform: rotate(15deg);
  background: var(--vh-teal-soft);
}
[data-bs-theme="light"] .theme-toggle .bi-sun-fill,
[data-bs-theme="dark"] .theme-toggle .bi-moon-stars-fill {
  display: none;
}

.offcanvas,
.offcanvas-lg {
  --bs-offcanvas-bg: var(--vh-surface);
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
}

.btn-vh {
  background: linear-gradient(120deg, var(--vh-teal), #23b3a1 60%, var(--vh-green));
  border: none;
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(28, 159, 174, 0.55);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn-vh:hover,
.btn-vh:focus {
  color: #fff;
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -10px rgba(28, 159, 174, 0.6);
}

.btn-vh-ghost {
  border: 2px solid var(--vh-line);
  color: var(--vh-ink);
  background: var(--vh-surface);
  transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn-vh-ghost:hover,
.btn-vh-ghost:focus {
  border-color: var(--vh-teal);
  color: var(--vh-teal-deep);
  transform: translateY(-2px);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   5. Hero + the signature "hug arch" frame
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 9vw, 7rem) clamp(3rem, 7vw, 5.5rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(38rem 24rem at 82% 0%, color-mix(in srgb, var(--vh-teal) 16%, transparent), transparent 65%),
    radial-gradient(30rem 22rem at 4% 100%, color-mix(in srgb, var(--vh-green) 13%, transparent), transparent 62%);
  pointer-events: none;
}
.hero > * {
  position: relative;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 3.9rem);
  font-weight: 800;
  margin-block: 0.8rem 1rem;
}
.hero h1 .accent {
  color: var(--vh-teal);
}
.hero .lead {
  color: var(--vh-ink-soft);
  font-size: 1.12rem;
  max-width: 34rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--vh-ink-soft);
  background: var(--vh-surface);
  border: 1px solid var(--vh-line);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}
.chip .bi {
  color: var(--vh-green);
}

/* the hug arch: fully-rounded top like the logo's cupped hands */
.arch-frame {
  position: relative;
  display: block;
  margin-inline: auto;
  max-width: 34rem;
}
.arch-frame img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border-radius: 999rem 999rem var(--vh-radius) var(--vh-radius);
  box-shadow: var(--vh-shadow-lg);
}
.arch-frame::after {
  content: "";
  position: absolute;
  inset: -0.9rem;
  border: 2px dashed color-mix(in srgb, var(--vh-teal) 45%, transparent);
  border-radius: 999rem 999rem calc(var(--vh-radius) + 0.9rem) calc(var(--vh-radius) + 0.9rem);
  pointer-events: none;
}
.arch-frame.arch-green::after {
  border-color: color-mix(in srgb, var(--vh-green) 45%, transparent);
}

.float-badge {
  position: absolute;
  left: -1.2rem;
  bottom: 1.8rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--vh-surface);
  border: 1px solid var(--vh-line);
  border-radius: var(--vh-radius-sm);
  box-shadow: var(--vh-shadow);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.float-badge .bi {
  font-size: 1.4rem;
  color: var(--vh-teal);
}
.float-badge small {
  display: block;
  font-weight: 500;
  color: var(--vh-ink-soft);
}

/* small page hero for inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.8rem, 6vw, 4.5rem);
  background:
    radial-gradient(30rem 16rem at 90% 0%, color-mix(in srgb, var(--vh-teal) 14%, transparent), transparent 65%),
    radial-gradient(24rem 14rem at 0% 100%, color-mix(in srgb, var(--vh-green) 10%, transparent), transparent 60%);
}
.page-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 800;
  margin-block: 0.6rem 0.6rem;
}
.page-hero .lead {
  color: var(--vh-ink-soft);
  max-width: 44rem;
  font-size: 1.08rem;
}

/* --------------------------------------------------------------------------
   6. Tiles (bento) + cards
   -------------------------------------------------------------------------- */
.tile {
  height: 100%;
  background: var(--vh-surface);
  border: 1px solid var(--vh-line);
  border-radius: var(--vh-radius);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--vh-shadow);
  border-color: color-mix(in srgb, var(--vh-teal) 40%, var(--vh-line));
}
.tile .tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999rem 999rem 0.6rem 0.6rem; /* mini hug arch */
  background: var(--vh-teal-soft);
  color: var(--vh-teal-deep);
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}
.tile:nth-child(even) .tile-icon,
.tile.tile-green .tile-icon {
  background: var(--vh-green-soft);
  color: var(--vh-green);
}
.tile h3 {
  font-size: 1.12rem;
  margin-bottom: 0.35rem;
}
.tile p {
  color: var(--vh-ink-soft);
  font-size: 0.95rem;
  margin: 0;
}

/* photo cards (home services preview) */
.photo-card {
  position: relative;
  display: block;
  height: 100%;
  min-height: 15rem;
  border-radius: var(--vh-radius);
  overflow: hidden;
  border: 1px solid var(--vh-line);
  background: var(--vh-surface);
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vh-shadow-lg);
}
.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.photo-card:hover img {
  transform: scale(1.05);
}
.photo-card .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.6rem 1.2rem 1.1rem;
  background: linear-gradient(to top, rgba(15, 22, 48, 0.85), transparent);
  color: #fff;
  font-family: var(--vh-font-display);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.photo-card.photo-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--vh-teal), var(--vh-green));
  color: #fff;
  font-family: var(--vh-font-display);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1.5rem;
}
.photo-card.photo-card-cta:hover {
  color: #fff;
}

/* service directory cards (servicii.html) */
.svc-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
  background: var(--vh-surface);
  border: 1px solid var(--vh-line);
  border-radius: var(--vh-radius);
  padding: 1.1rem 1.25rem;
  color: var(--vh-ink);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.svc-card:hover {
  color: var(--vh-teal-deep);
  transform: translateY(-3px);
  box-shadow: var(--vh-shadow);
  border-color: color-mix(in srgb, var(--vh-teal) 40%, var(--vh-line));
}
.svc-card .svc-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999rem 999rem 0.55rem 0.55rem;
  background: var(--vh-teal-soft);
  color: var(--vh-teal-deep);
  font-size: 1.25rem;
}
.svc-card:nth-child(3n) .svc-icon {
  background: var(--vh-green-soft);
  color: var(--vh-green);
}
.svc-card .bi-arrow-right {
  margin-left: auto;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.svc-card:hover .bi-arrow-right {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   7. Price lists
   -------------------------------------------------------------------------- */
.price-card {
  height: 100%;
  background: var(--vh-surface);
  border: 1px solid var(--vh-line);
  border-radius: var(--vh-radius);
  padding: 1.6rem;
}
.price-card h2 {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.price-card h2 .bi {
  color: var(--vh-teal);
}
.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.price-list li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding-block: 0.48rem;
  font-size: 0.97rem;
}
.price-list li + li {
  border-top: 1px dashed var(--vh-line);
}
.price-list .dots {
  flex: 1;
  border-bottom: 2px dotted color-mix(in srgb, var(--vh-ink-soft) 35%, transparent);
  transform: translateY(-0.25em);
  min-width: 1.5rem;
}
.price-list .price {
  font-weight: 700;
  color: var(--vh-teal-deep);
  white-space: nowrap;
}

.anchor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.anchor-pills a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--vh-ink-soft);
  background: var(--vh-surface);
  border: 1px solid var(--vh-line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.anchor-pills a:hover {
  color: var(--vh-teal-deep);
  background: var(--vh-teal-soft);
  border-color: color-mix(in srgb, var(--vh-teal) 40%, var(--vh-line));
}

/* --------------------------------------------------------------------------
   8. Team
   -------------------------------------------------------------------------- */
.team-card {
  height: 100%;
  text-align: center;
  background: var(--vh-surface);
  border: 1px solid var(--vh-line);
  border-radius: var(--vh-radius);
  padding: 2rem 1.5rem 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vh-shadow);
}
.team-card img {
  width: min(100%, 15rem);
  aspect-ratio: 6 / 7;
  object-fit: cover;
  border-radius: 999rem 999rem var(--vh-radius-sm) var(--vh-radius-sm);
  margin-bottom: 1.2rem;
}
.team-card .role {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vh-green);
  margin-bottom: 0.2rem;
}
.team-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid var(--vh-line);
  color: var(--vh-ink-soft);
  font-size: 1.05rem;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.social-icons a:hover {
  color: var(--vh-teal-deep);
  background: var(--vh-teal-soft);
  border-color: color-mix(in srgb, var(--vh-teal) 40%, var(--vh-line));
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   9. Contact + info lists + map
   -------------------------------------------------------------------------- */
.info-card {
  height: 100%;
  background: var(--vh-surface);
  border: 1px solid var(--vh-line);
  border-radius: var(--vh-radius);
  padding: 1.7rem;
}
.info-card h2,
.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.info-list {
  margin: 0;
}
.info-list > div {
  display: flex;
  gap: 0.9rem;
  padding-block: 0.55rem;
}
.info-list > div + div {
  border-top: 1px dashed var(--vh-line);
}
.info-list dt {
  flex: 0 0 7.5rem;
  font-weight: 600;
  color: var(--vh-ink-soft);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.info-list dt .bi {
  color: var(--vh-teal);
}
.info-list dd {
  margin: 0;
  font-weight: 600;
}

.map-card {
  overflow: hidden;
  border-radius: var(--vh-radius);
  border: 1px solid var(--vh-line);
  box-shadow: var(--vh-shadow);
}
.map-card iframe {
  display: block;
  width: 100%;
  height: clamp(20rem, 45vw, 28rem);
  border: 0;
  filter: saturate(0.9);
}
[data-bs-theme="dark"] .map-card iframe {
  filter: saturate(0.85) brightness(0.9);
}

/* --------------------------------------------------------------------------
   10. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--vh-radius);
  background: linear-gradient(120deg, #12808c, #1c9fae 55%, #2ba458);
  color: #fff;
  padding: clamp(2.2rem, 5vw, 3.5rem);
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.14);
  -webkit-mask: var(--vh-paw) center / contain no-repeat;
  mask: var(--vh-paw) center / contain no-repeat;
  pointer-events: none;
}
.cta-band::before {
  width: 9rem;
  height: 9rem;
  right: 6%;
  top: -1.5rem;
  transform: rotate(18deg);
}
.cta-band::after {
  width: 5.5rem;
  height: 5.5rem;
  right: 17%;
  bottom: -0.8rem;
  transform: rotate(-14deg);
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 38rem;
}
.cta-band .btn-light {
  border-radius: 999px;
  font-weight: 700;
  color: #12808c;
}

/* --------------------------------------------------------------------------
   11. Service article pages
   -------------------------------------------------------------------------- */
.article-body {
  font-size: 1.05rem;
  max-width: 46rem;
}
.article-body p {
  color: var(--vh-ink-soft);
}
.article-body ol {
  list-style: none;
  counter-reset: pas;
  margin: 1.4rem 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}
.article-body ol li {
  counter-increment: pas;
  position: relative;
  background: var(--vh-surface);
  border: 1px solid var(--vh-line);
  border-radius: var(--vh-radius-sm);
  padding: 1rem 1.2rem 1rem 3.4rem;
  color: var(--vh-ink-soft);
}
.article-body ol li::before {
  content: counter(pas);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.7rem;
  height: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999rem 999rem 0.4rem 0.4rem;
  background: var(--vh-teal-soft);
  color: var(--vh-teal-deep);
  font-family: var(--vh-font-display);
  font-weight: 700;
  font-size: 0.9rem;
}
.article-body ol li strong {
  color: var(--vh-ink);
}

.aside-card {
  position: sticky;
  top: 6rem;
}
.aside-card .icon-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999rem 999rem 0.7rem 0.7rem;
  background: var(--vh-teal-soft);
  color: var(--vh-teal-deep);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.aside-card .list-unstyled li {
  padding-block: 0.4rem;
}
.aside-card .list-unstyled .bi {
  color: var(--vh-green);
  margin-right: 0.5rem;
}

.related-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.related-chips a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vh-ink-soft);
  background: var(--vh-surface);
  border: 1px solid var(--vh-line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.related-chips a:hover {
  color: var(--vh-teal-deep);
  background: var(--vh-teal-soft);
  border-color: color-mix(in srgb, var(--vh-teal) 40%, var(--vh-line));
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   12. About split
   -------------------------------------------------------------------------- */
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 999rem 999rem var(--vh-radius) var(--vh-radius);
  box-shadow: var(--vh-shadow-lg);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.55rem;
}
.check-list li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  color: var(--vh-ink-soft);
  font-weight: 500;
}
.check-list .bi {
  color: var(--vh-green);
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: #131c3d;
  color: #b9c3dd;
  padding-block: 3.5rem 1.5rem;
  margin-top: auto;
}
[data-bs-theme="dark"] .footer {
  background: #080d1f;
}
.footer h3 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer a {
  color: #b9c3dd;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer a:hover {
  color: #4fd0dd;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.footer .brand-blurb {
  max-width: 20rem;
  font-size: 0.95rem;
}
.footer .navbar-brand {
  color: #fff;
}
.footer .social-icons a {
  border-color: #2b3a67;
  color: #b9c3dd;
}
.footer .social-icons a:hover {
  color: #fff;
  background: rgba(79, 208, 221, 0.15);
  border-color: #4fd0dd;
}
.footer .bottom-bar {
  border-top: 1px solid #2b3a67;
  margin-top: 2.5rem;
  padding-top: 1.3rem;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
  color: #8b97ba;
}

/* --------------------------------------------------------------------------
   14. Motion & misc
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 575.98px) {
  .float-badge {
    left: 0.6rem;
    bottom: 0.9rem;
  }
  .info-list > div {
    flex-direction: column;
    gap: 0.1rem;
  }
  .info-list dt {
    flex-basis: auto;
  }
}
