@import url("/assets/css/font-loader.css");
@import url("/assets/css/theme-settings.css");

:root {
  color-scheme: dark;
  --bg: #0a0d12;
  --bg-soft: #111722;
  --bg-panel: rgba(18, 24, 36, 0.86);
  --line: rgba(138, 169, 255, 0.18);
  --line-strong: rgba(168, 191, 255, 0.34);
  --text: #eef2ff;
  --muted: #b9c2de;
  --accent: #9dd9ff;
  --accent-strong: #6fc0ff;
  --accent-alt: #c9b3ff;
  --ok: #7be7b8;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow-soft: 0 18px 48px rgba(3, 7, 15, 0.38);
  --shadow-hard: 0 34px 78px rgba(0, 0, 0, 0.52);
  --container: min(1180px, 92vw);
  --focus: 0 0 0 2px rgba(157, 217, 255, 0.7);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f7f9ff;
  --bg-soft: #f0f3fc;
  --bg-panel: rgba(255, 255, 255, 0.86);
  --line: rgba(66, 91, 147, 0.12);
  --line-strong: rgba(66, 91, 147, 0.3);
  --text: #111827;
  --muted: #4b556b;
  --accent: #0e7ac8;
  --accent-strong: #065f9d;
  --accent-alt: #6f42c1;
  --ok: #098b5e;
  --shadow-soft: 0 16px 38px rgba(17, 24, 39, 0.12);
  --shadow-hard: 0 24px 60px rgba(17, 24, 39, 0.2);
  --focus: 0 0 0 2px rgba(14, 122, 200, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 620px at 8% 0%, rgba(111, 192, 255, 0.22), transparent 65%),
    radial-gradient(980px 560px at 94% 8%, rgba(201, 179, 255, 0.2), transparent 60%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 24%, var(--bg) 100%);
  color: var(--text);
  font-family: var(--font-body, "Sora", "Segoe UI", sans-serif);
  line-height: 1.65;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.24;
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--accent);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.header-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-panel) 92%, transparent);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--line-strong) 55%, transparent);
  border-radius: 999px;
  padding: 0.42rem 0.84rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--text) 76%, var(--muted));
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg-panel) 96%, transparent), color-mix(in srgb, var(--bg-panel) 84%, transparent));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 6px 18px rgba(5, 10, 20, 0.12);
  transition: 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line-strong));
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg-panel) 99%, transparent), color-mix(in srgb, var(--accent) 12%, var(--bg-panel)));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 10px 22px rgba(5, 10, 20, 0.18);
  text-decoration: none;
}

.theme-toggle {
  border: 1px solid color-mix(in srgb, var(--line-strong) 65%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg-panel) 97%, transparent), color-mix(in srgb, var(--bg-panel) 85%, transparent));
  color: var(--text);
  border-radius: 999px;
  width: 2.45rem;
  min-width: 2.45rem;
  padding: 0.45rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 8px 18px rgba(5, 10, 20, 0.16);
  transition: 180ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px) scale(1.01);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line-strong));
}

.menu-toggle {
  display: none;
  border: 1px solid color-mix(in srgb, var(--line-strong) 65%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg-panel) 97%, transparent), color-mix(in srgb, var(--bg-panel) 85%, transparent));
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 8px 18px rgba(5, 10, 20, 0.16);
  transition: 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px) scale(1.01);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line-strong));
}

.hero {
  padding: 6.1rem 0 3.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.1rem;
  align-items: stretch;
}

.hero-main,
.hero-side {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  box-shadow: var(--shadow-soft);
}

.hero-main {
  padding: clamp(1.4rem, 2.6vw, 2.5rem);
}

.hero-side {
  padding: 1.1rem;
  display: grid;
  gap: 0.9rem;
}

.hero-image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 260px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
}

h1,
h2,
h3 {
  font-family: var(--font-heading, "Cormorant Garamond", "Times New Roman", serif);
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin: 0;
}

h1 {
  margin-top: 0.85rem;
  font-size: clamp(2.25rem, 5.7vw, 4.6rem);
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}

.lead {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  margin-top: 1rem;
  max-width: 60ch;
}

.cta-row {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--line-strong) 65%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 22px rgba(5, 10, 20, 0.15);
  transition: 170ms ease;
}

.btn-primary {
  color: #f8fbff;
  border-color: color-mix(in srgb, var(--accent-strong) 70%, #ffffff 14%);
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 87%, #ffffff 13%), color-mix(in srgb, var(--accent-strong) 88%, #06396f 12%));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 14px 28px rgba(15, 110, 180, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  filter: brightness(1.03) saturate(1.03);
  text-decoration: none;
}

.btn-secondary {
  border-color: color-mix(in srgb, var(--line-strong) 68%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg-panel) 97%, transparent), color-mix(in srgb, var(--bg-panel) 84%, transparent));
  color: var(--text);
}

.btn-secondary:hover {
  transform: translateY(-1px) scale(1.01);
  border-color: color-mix(in srgb, var(--accent) 58%, var(--line-strong));
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg-panel) 99%, transparent), color-mix(in srgb, var(--accent) 10%, var(--bg-panel)));
  text-decoration: none;
}

.metric-grid {
  display: grid;
  gap: 0.6rem;
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.8rem;
  background: color-mix(in srgb, var(--bg-panel) 86%, transparent);
}

.metric-card b {
  display: block;
  color: var(--ok);
  font-size: 1.55rem;
  line-height: 1;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.84rem;
}

section {
  padding: 3.2rem 0;
}

.section-head {
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 2.3vw, 1.8rem);
}

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

.info-card {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-panel) 86%, transparent);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.benefit-media {
  width: 100%;
  height: clamp(132px, 15vw, 190px);
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-media {
  width: 100%;
  height: clamp(150px, 17vw, 220px);
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}

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

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.chip {
  border: 1px solid color-mix(in srgb, var(--line-strong) 62%, transparent);
  color: color-mix(in srgb, var(--text) 78%, var(--muted));
  border-radius: 999px;
  padding: 0.34rem 0.74rem;
  font-size: 0.8rem;
  font-weight: 600;
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg-panel) 98%, transparent), color-mix(in srgb, var(--bg-panel) 86%, transparent));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 8px 18px rgba(5, 10, 20, 0.12);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.copy {
  color: var(--muted);
}

.copy p {
  margin: 0.75rem 0;
}

.list-clean {
  margin: 0.75rem 0 0;
  padding-left: 1.05rem;
  color: var(--muted);
}

.list-clean li + li {
  margin-top: 0.4rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.86rem;
}

.breadcrumb li::after {
  content: "/";
  margin-left: 0.34rem;
  color: color-mix(in srgb, var(--muted) 70%, transparent);
}

.breadcrumb li:last-child::after {
  display: none;
}

.portfolio-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.portfolio-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: color-mix(in srgb, var(--bg-panel) 90%, transparent);
  display: grid;
  min-height: 100%;
}

.portfolio-card-media {
  display: block;
  line-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.portfolio-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.portfolio-card:hover .portfolio-card-media img {
  transform: scale(1.03);
}

.portfolio-card-body {
  padding: 0.85rem 0.9rem 0.95rem;
  display: grid;
  gap: 0.58rem;
}

.portfolio-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.portfolio-card h3 {
  margin: 0;
  font-size: clamp(1.14rem, 2.1vw, 1.42rem);
}

.portfolio-card p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
  background: color-mix(in srgb, var(--bg-panel) 94%, transparent);
}

.gallery-item a {
  display: block;
  line-height: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

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

.gallery-item a::after {
  content: "Vezi mare";
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  border-radius: 999px;
  padding: 0.16rem 0.48rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #06111b;
  background: rgba(157, 217, 255, 0.92);
  opacity: 0;
  transform: translateY(4px);
  transition: 180ms ease;
}

.gallery-item a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item figcaption {
  padding: 0.42rem 0.56rem;
  color: var(--muted);
  font-size: 0.8rem;
  border-top: 1px solid var(--line);
}

.gallery-masonry {
  column-count: 3;
  column-gap: 0.82rem;
}

.masonry-item {
  margin: 0 0 0.82rem;
  break-inside: avoid;
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
  background: color-mix(in srgb, var(--bg-panel) 92%, transparent);
}

.masonry-item .gallery-link {
  display: block;
  line-height: 0;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 240ms ease;
}

.masonry-item:hover img {
  transform: scale(1.02);
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.share-btn {
  border: 1px solid color-mix(in srgb, var(--line-strong) 65%, transparent);
  border-radius: 999px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg-panel) 97%, transparent), color-mix(in srgb, var(--bg-panel) 84%, transparent));
  color: var(--text);
  padding: 0.43rem 0.82rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 8px 18px rgba(5, 10, 20, 0.12);
  transition: 180ms ease;
}

.share-btn:hover {
  transform: translateY(-1px) scale(1.01);
  border-color: color-mix(in srgb, var(--accent) 58%, var(--line-strong));
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg-panel) 99%, transparent), color-mix(in srgb, var(--accent) 10%, var(--bg-panel)));
  text-decoration: none;
}

.share-note {
  width: 100%;
  margin-top: 0.2rem;
  font-size: 0.76rem;
  color: var(--muted);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

.city-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--bg-panel) 90%, transparent);
  padding: 0.9rem;
}

.city-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: clamp(0.8rem, 2vw, 1.6rem);
  background: rgba(2, 6, 14, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-dialog {
  position: relative;
  width: min(1200px, 96vw);
  max-height: 92vh;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: color-mix(in srgb, var(--bg) 86%, #000);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}

.lightbox-stage {
  min-height: 320px;
  max-height: 78vh;
  display: grid;
  place-items: center;
  background: rgba(1, 4, 10, 0.92);
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.lightbox-caption {
  margin: 0;
  padding: 0.7rem 3.2rem 0.82rem;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
  border-top: 1px solid var(--line);
}

.lightbox-nav,
.lightbox-close {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  width: 2.2rem;
  height: 2.2rem;
  background: color-mix(in srgb, var(--bg-panel) 96%, #000);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
}

.lightbox-close {
  top: 0.55rem;
  right: 0.55rem;
}

.lightbox-nav.prev {
  left: 0.55rem;
  top: calc(50% - 1.1rem);
}

.lightbox-nav.next {
  right: 0.55rem;
  top: calc(50% - 1.1rem);
}

.lightbox-nav:hover,
.lightbox-close:hover {
  border-color: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.8rem;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.contact-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.74rem;
  background: color-mix(in srgb, var(--bg-panel) 86%, transparent);
}

.faq {
  display: grid;
  gap: 0.66rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.76rem 0.9rem;
  background: color-mix(in srgb, var(--bg-panel) 89%, transparent);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq details p {
  color: var(--muted);
  margin: 0.66rem 0 0;
}

.cta-band {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(111, 192, 255, 0.24), rgba(201, 179, 255, 0.2));
  padding: clamp(1rem, 2.4vw, 2rem);
}

.cta-band p {
  margin: 0.6rem 0 0;
  color: var(--text);
  max-width: 66ch;
}

footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding: 2.2rem 0;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.8rem;
}

.footer-grid h3 {
  font-size: 1.36rem;
  margin-bottom: 0.45rem;
}

.small {
  color: var(--muted);
  font-size: 0.86rem;
}

hr.sep {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1.1rem 0;
}

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

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-card-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-masonry {
    column-count: 2;
  }

  .city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav.nav-collapsible {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0.72rem 0;
  }

  .nav.nav-collapsible .brand {
    margin-right: auto;
    min-width: 0;
  }

  .nav.nav-collapsible .brand span {
    font-size: 0.92rem;
  }

  .nav.nav-collapsible .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav.nav-collapsible .theme-toggle {
    width: 2.2rem;
    min-width: 2.2rem;
    padding: 0.36rem;
    font-size: 0.92rem;
  }

  .nav.nav-collapsible .nav-links {
    display: none;
    order: 4;
    width: 100%;
    margin-top: 0.2rem;
    padding: 0.45rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: color-mix(in srgb, var(--bg-panel) 92%, transparent);
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.32rem;
    max-height: min(62vh, 420px);
    overflow-y: auto;
  }

  .nav.nav-collapsible.nav-open .nav-links {
    display: flex;
  }

  .nav.nav-collapsible .nav-links li,
  .nav.nav-collapsible .nav-links a {
    width: 100%;
  }

  .nav.nav-collapsible .nav-links a {
    border-radius: 11px;
    padding: 0.56rem 0.72rem;
    justify-content: flex-start;
    font-size: 0.88rem;
  }
}

@media (max-width: 760px) {
  .split-grid,
  .footer-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-masonry {
    column-count: 1;
  }

  .city-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .lightbox-caption {
    padding-inline: 0.85rem;
  }
}
