/* Тъмен + златист „law firm bold“ — Oswald + Lato */

:root {
  --cream: #f4f1ea;
  --cream-dark: #e8e4da;
  --ink: #1a1a1a;
  --ink-soft: #2d2d2d;
  --text-on-dark: #e8e6e1;
  --muted-on-dark: #9c9a94;
  --muted-on-light: #5c5a55;
  --gold: #b8954f;
  --gold-bright: #c9a45c;
  --gold-shadow: #8f7138;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(26, 26, 26, 0.12);
  --font-display: "Oswald", system-ui, sans-serif;
  --font-body: "Lato", system-ui, sans-serif;
  --header-h: 76px;
  --max: 1200px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --gutter: clamp(1rem, 4.5vw, 1.35rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-header {
    transition:
      background 0.35s ease,
      border-color 0.35s ease,
      box-shadow 0.35s ease;
  }

  .site-header.is-past-hero {
    transform: translateY(-100%);
  }

  .motion-no-pref,
  .hero-copy > *,
  .hero-accent-line,
  .hero-media {
    animation: none !important;
  }

  .hero-copy > *,
  .hero-accent-line {
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .btn {
    transition:
      background 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease;
  }

  .btn::after,
  .header-cta::after {
    display: none !important;
  }

  .btn:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .header-cta:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .svc-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .about-media img,
  .contact-map-wrap:hover .contact-map {
    transform: none !important;
  }

  .hero-ticker {
    animation: none !important;
  }

  .map-link:hover {
    transform: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  }

  .practice-list li:hover {
    transform: none !important;
  }

  .logo--footer:hover {
    transform: none !important;
  }

  .ft__to-top:hover,
  .ft__to-top:hover .icon {
    transform: none !important;
    box-shadow: none !important;
  }

  .ft__ambient {
    animation: none !important;
  }

  .nav-toggle,
  .nav-toggle span {
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main [id],
.site-footer {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

a {
  color: var(--gold-shadow);
  text-decoration: none;
}

a:hover {
  color: var(--gold);
}

.container-wide {
  width: min(100% - var(--gutter) * 2, var(--max));
  margin-inline: auto;
}

/* SVG икони — единен stroke стил */
.icon {
  display: block;
  flex-shrink: 0;
}

.icon-stroke,
.icon-stroke * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transform: translateY(0);
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

.site-header.is-scrolled {
  background: rgba(21, 21, 21, 0.97);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.site-header.is-past-hero {
  transform: translateY(-100%);
  pointer-events: none;
  box-shadow: none;
}

.site-header.is-past-hero .site-nav.is-open {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.header-inner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-inline: clamp(0.65rem, 2.2vw, 1.35rem);
}

@media (min-width: 900px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
  }

  .logo {
    justify-self: start;
  }

  .site-nav {
    justify-self: center;
    margin-left: 0;
  }

  .header-cta {
    justify-self: end;
  }
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: #fff;
  line-height: 1;
  transition:
    color 0.35s var(--ease-out),
    transform 0.45s var(--ease-out);
}

.logo:hover {
  color: var(--gold-bright);
  transform: translateY(-1px);
}

.logo-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
}

.site-header.is-scrolled .logo {
  color: #fff;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.65rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  transition:
    color 0.35s var(--ease-out),
    letter-spacing 0.45s var(--ease-out);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out);
  opacity: 0.85;
  pointer-events: none;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a .icon {
  width: 15px;
  height: 15px;
  opacity: 0.75;
}

.site-nav a:hover .icon {
  opacity: 1;
}

.site-nav a:hover {
  color: var(--gold-bright);
  letter-spacing: 0.14em;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  background: var(--gold);
  color: #141414;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  position: relative;
  transition:
    background 0.35s var(--ease-out),
    border-color 0.35s,
    color 0.35s,
    transform 0.4s var(--ease-out),
    box-shadow 0.4s ease;
}

.header-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.35) 49%,
    transparent 58%
  );
  transform: translateX(-130%);
  transition: transform 0.65s var(--ease-out);
  pointer-events: none;
}

.header-cta:hover::after {
  transform: translateX(130%);
}

.header-cta .icon {
  width: 15px;
  height: 15px;
}

.header-cta:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: #141414;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(184, 149, 79, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  position: relative;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 10px;
  background: rgba(6, 6, 6, 0.16);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 6px 28px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  flex-shrink: 0;
  touch-action: manipulation;
  overflow: visible;
  transition:
    border-color 0.35s var(--ease-out),
    background 0.35s var(--ease-out),
    box-shadow 0.35s ease;
}

.nav-toggle:hover {
  border-color: rgba(214, 184, 118, 0.62);
  background: rgba(12, 10, 8, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 0 0 1px rgba(184, 149, 79, 0.22),
    0 8px 32px rgba(0, 0, 0, 0.35);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.nav-toggle span {
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: #f5f3ef;
  transform-origin: center;
  transition:
    transform 0.35s var(--ease-out),
    opacity 0.28s ease,
    background 0.3s ease;
}

.nav-toggle[aria-expanded="true"] {
  border-color: rgba(214, 184, 118, 0.72);
  background: rgba(14, 12, 10, 0.32);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 0 0 1px rgba(184, 149, 79, 0.28),
    0 10px 36px rgba(0, 0, 0, 0.35);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(calc(2.5px / 2 + 6px + 2.5px / 2)) rotate(45deg);
  background: #f3e6c8;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(calc(-1 * (2.5px / 2 + 6px + 2.5px / 2))) rotate(-45deg);
  background: #f3e6c8;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none !important;
  }

  .header-cta {
    display: inline-flex;
  }
}

@media (max-width: 899px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    margin-top: 2px;
    padding: 0.35rem 0;
    background: rgba(14, 14, 14, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 1px solid rgba(184, 149, 79, 0.28);
    border-radius: 0 0 12px 12px;
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.45),
      0 1px 0 rgba(201, 164, 92, 0.12) inset;
  }

  .site-nav a {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    justify-content: center;
  }

  .site-nav.is-open {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  padding-top: var(--header-h);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.92) 0%, rgba(15, 15, 15, 0.55) 45%, rgba(15, 15, 15, 0.35) 100%),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=2000&q=80") 70% center / cover no-repeat;
  transform-origin: 62% 42%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(197, 160, 89, 0.08), transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: 3rem 2rem;
}

.hero-copy {
  max-width: 42rem;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-media {
    animation: motion-hero-bg 26s var(--ease-soft) infinite alternate;
  }

  .hero-copy > * {
    opacity: 0;
    animation: motion-fade-up 0.92s var(--ease-out) forwards;
  }

  .hero-kicker {
    animation-delay: 0.07s;
  }

  .hero-title {
    animation-delay: 0.17s;
  }

  .hero-accent-line {
    animation-name: motion-line-grow;
    animation-delay: 0.28s;
    transform-origin: left center;
  }

  .hero-lead {
    animation-delay: 0.4s;
  }

  .hero-actions {
    animation-delay: 0.52s;
  }
}

@keyframes motion-hero-bg {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.045);
  }
}

@keyframes motion-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes motion-line-grow {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.hero-kicker .icon {
  width: 22px;
  height: 22px;
  opacity: 0.95;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7.2vw, 4.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.hero-name {
  display: block;
  color: var(--gold-bright);
  margin-bottom: 0.1em;
}

.hero-title-line {
  font-size: 0.58em;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
}

.hero-accent-line {
  width: 72px;
  height: 3px;
  margin: 1.5rem 0 1.25rem;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}

.hero-lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid transparent;
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition:
    background 0.35s var(--ease-out),
    color 0.35s,
    border-color 0.35s,
    transform 0.42s var(--ease-out),
    box-shadow 0.42s ease;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    105deg,
    transparent 32%,
    rgba(255, 255, 255, 0.28) 48%,
    transparent 64%
  );
  transform: translateX(-115%) skewX(-10deg);
  transition: transform 0.75s var(--ease-out);
  pointer-events: none;
  z-index: 0;
}

.btn:hover::after {
  transform: translateX(115%) skewX(-10deg);
}

.btn .icon {
  width: 17px;
  height: 17px;
}

.btn-ghost .icon {
  opacity: 0.88;
}

.btn-gold .icon {
  color: #141414;
}

.btn-dark .icon {
  width: 18px;
  height: 18px;
}

.btn-gold {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(184, 149, 79, 0.42);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn-dark {
  background: #141414;
  color: #f4f1ea;
  border-color: #141414;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.btn-dark:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(20, 20, 20, 0.35);
}

.hero-ticker {
  position: relative;
  background: linear-gradient(90deg, #5c4018 0%, var(--gold-shadow) 50%, #5c4018 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-ticker-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.6rem;
  padding: 0.95rem 0;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 245, 230, 0.92);
}

.ticker-dot {
  opacity: 0.45;
  user-select: none;
}

/* Bands */
.band {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.band-light {
  background: var(--cream);
  color: var(--ink);
}

.band-dark {
  background: linear-gradient(180deg, #121212 0%, #181818 100%);
  color: var(--text-on-dark);
  border-top: 1px solid #0a0a0a;
  border-bottom: 1px solid #0a0a0a;
}

.band-gold {
  background: linear-gradient(90deg, var(--gold-shadow) 0%, var(--gold) 40%, var(--gold-bright) 100%);
  color: #141414;
  padding: clamp(2.5rem, 5vw, 3.25rem) 0;
}

.band-label {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.band-label-dark {
  color: var(--gold-shadow);
}

.band-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
}

.band-title-dark {
  color: var(--ink);
}

.band-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.band-head-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 44rem;
}

.band-sub {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted-on-dark);
  line-height: 1.65;
}

.band-sub-dark {
  color: var(--muted-on-light);
}

.band-about {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .band-about {
    grid-template-columns: 1fr 0.95fr;
    gap: 3.5rem;
  }
}

.about-copy .about-lead {
  font-size: 1.15rem;
  color: var(--muted-on-light);
  margin: 0 0 1rem;
}

.about-text {
  margin: 0 0 1.5rem;
  color: var(--muted-on-light);
}

.about-highlights {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.about-highlights .about-li-icon {
  margin-top: 0.15em;
  color: var(--gold-shadow);
  flex-shrink: 0;
}

.about-highlights .about-li-icon .icon {
  width: 22px;
  height: 22px;
}

.about-media {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.85s var(--ease-out);
}

.about-media:hover img {
  transform: scale(1.04);
}

.media-frame {
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 2px solid var(--gold);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 899px) {
  .media-frame {
    display: none;
  }
}

/* Services */
.services-mosaic {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.svc-card {
  background: #1e1e1e;
  padding: 1.75rem 1.75rem 1.75rem 1.5rem;
  border-left: 3px solid var(--gold);
  transition:
    background 0.35s var(--ease-out),
    transform 0.45s var(--ease-out),
    box-shadow 0.45s ease,
    border-left-color 0.35s ease;
}

.svc-card:hover {
  background: #252525;
  transform: translateY(-6px);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(201, 164, 92, 0.12);
  border-left-color: var(--gold-bright);
}

.svc-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.4rem;
}

.svc-card__icon {
  color: rgba(184, 149, 79, 0.5);
  transition: color 0.2s;
}

.svc-card:hover .svc-card__icon {
  color: var(--gold-bright);
}

.svc-card__icon .icon {
  width: 36px;
  height: 36px;
}

.svc-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: rgba(184, 149, 79, 0.35);
  line-height: 1;
}

.svc-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.svc-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted-on-dark);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .services-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .services-mosaic {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Accordion */
.band-practice .accordion {
  border: 1px solid var(--line-dark);
  background: #fff;
  box-shadow: 0 20px 50px rgba(26, 26, 26, 0.06);
}

.accordion-item + .accordion-item {
  border-top: 1px solid var(--line-dark);
}

.accordion-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  color: var(--ink);
  background: #fff;
  border: none;
  cursor: pointer;
  transition:
    background 0.4s var(--ease-out),
    box-shadow 0.35s ease;
}

.accordion-head:hover {
  background: var(--cream);
  box-shadow: inset 4px 0 0 var(--gold-bright);
}

.accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-shadow);
  transition:
    color 0.35s var(--ease-out),
    transform 0.5s var(--ease-out);
}

.accordion-icon .icon {
  width: 20px;
  height: 20px;
}

.accordion-item.is-open .accordion-icon {
  transform: rotate(180deg);
  color: var(--gold-bright);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 1.4rem;
  transition: grid-template-rows 0.55s var(--ease-soft);
}

.accordion-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
  padding-bottom: 1.35rem;
}

.accordion-item:not(.is-open) .accordion-panel {
  padding-bottom: 0;
}

.practice-list {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 1;
  column-gap: 2rem;
}

@media (min-width: 720px) {
  .practice-list {
    columns: 2;
  }
}

.practice-list li {
  break-inside: avoid;
  padding: 0.3rem 0 0.3rem 1rem;
  position: relative;
  color: var(--muted-on-light);
  font-size: 0.96rem;
  transition:
    color 0.3s ease,
    transform 0.35s var(--ease-out);
}

.practice-list li:hover {
  color: var(--ink-soft);
  transform: translateX(4px);
}

.practice-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  opacity: 0.85;
}

/* CTA */
.cta-row {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  align-items: flex-start;
}

@media (min-width: 800px) {
  .cta-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #141414;
}

.cta-text {
  margin: 0;
  max-width: 36rem;
  font-size: 1rem;
  color: rgba(20, 20, 20, 0.78);
}

/* Contact */
.band-contact {
  padding: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 420px;
}

@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: minmax(340px, 42%) 1fr;
  }
}

.contact-info {
  background: #141414;
  color: var(--text-on-dark);
  padding: clamp(2rem, 5vw, 3.5rem);
}

.contact-info .band-label {
  color: var(--gold-bright);
}

.contact-info .band-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-bottom: 0.35rem;
}

.contact-firm {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail + .contact-detail {
  margin-top: 1.15rem;
}

.contact-detail--phone {
  margin-bottom: 1.75rem;
  align-items: center;
}

.contact-detail__icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--gold-bright);
  opacity: 0.9;
}

.contact-detail__icon .icon {
  width: 26px;
  height: 26px;
}

.contact-detail .address {
  margin-bottom: 0;
}

.address {
  font-style: normal;
  color: rgba(232, 230, 225, 0.85);
  line-height: 1.75;
}

.contact-phone {
  margin: 0;
  font-size: 1.45rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.contact-phone a {
  color: #fff;
  transition: color 0.35s var(--ease-out);
}

.contact-phone a:hover {
  color: var(--gold-bright);
}

.hours-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hours-title .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.95;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.hours-table th,
.hours-table td {
  padding: 0.55rem 0;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-table th {
  width: 48%;
  text-align: left;
  font-weight: 700;
  color: #fff;
}

.hours-table td {
  color: var(--muted-on-dark);
}

.hours-note {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: var(--muted-on-dark);
  line-height: 1.5;
}

.contact-map-wrap {
  position: relative;
  min-height: 280px;
  background: var(--cream-dark);
  overflow: hidden;
  transition: box-shadow 0.45s ease;
}

.contact-map-wrap:hover {
  box-shadow: inset 0 0 0 1px rgba(184, 149, 79, 0.25);
}

.contact-map {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  transform: scale(1);
  transition: transform 1s var(--ease-out);
}

.contact-map-wrap:hover .contact-map {
  transform: scale(1.02);
}

@media (min-width: 880px) {
  .contact-map-wrap {
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }

  .contact-map {
    flex: 1;
    min-height: 440px;
  }
}

.map-link {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  background: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s ease,
    color 0.3s ease;
}

.map-link:hover {
  color: var(--gold-shadow);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.map-link .icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Footer — компактен ред с линкове и кредит */
.site-footer.ft {
  margin: 0;
  padding: 0;
  position: relative;
  background: #070707;
  color: rgba(232, 230, 225, 0.78);
  border-top: 2px solid rgba(184, 149, 79, 0.35);
  overflow: hidden;
}

.ft__ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 100% -20%, rgba(184, 149, 79, 0.12), transparent 50%),
    radial-gradient(ellipse 80% 60% at -10% 80%, rgba(184, 149, 79, 0.06), transparent 45%);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .ft__ambient {
    animation: motion-footer-glow 14s ease-in-out infinite alternate;
  }
}

@keyframes motion-footer-glow {
  from {
    opacity: 1;
    filter: saturate(1);
  }

  to {
    opacity: 0.88;
    filter: saturate(1.15);
  }
}

.ft__meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  padding: clamp(1.75rem, 4vw, 2.5rem) 0 clamp(2rem, 4vw, 2.75rem);
}

.ft__meta-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  width: 100%;
  margin-top: 0.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy--prominent {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.1vw, 1.12rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(250, 249, 247, 0.92);
}

.ft__meta-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
  margin-left: auto;
}

.ft__brand-row {
  width: 100%;
  display: flex;
  justify-content: center;
}

.logo--footer {
  align-items: center;
  text-align: center;
  color: rgba(250, 249, 247, 0.95);
  transition:
    color 0.4s var(--ease-out),
    transform 0.45s var(--ease-out);
}

.logo--footer .logo-title {
  font-size: clamp(1.2rem, 3vw, 1.45rem);
}

.logo--footer .logo-sub {
  opacity: 0.8;
}

.logo--footer:hover {
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.ft__meta-legal a {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ft__meta-legal a:hover {
  color: var(--gold-bright);
  opacity: 1;
}

.ft__meta-copy {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.footer-demo {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(232, 230, 225, 0.38);
}

.footer-demo strong {
  color: rgba(232, 230, 225, 0.55);
  font-weight: 700;
}

.footer-demo a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-demo a:hover {
  color: #fff;
  opacity: 1;
}

.footer-credit {
  margin: 0;
  font-size: 0.76rem;
  color: rgba(232, 230, 225, 0.42);
}

.footer-credit__name {
  display: inline-block;
  margin-left: 0.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: rgba(201, 164, 92, 0.95);
}

.footer-copy {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(232, 230, 225, 0.28);
}

@media (max-width: 560px) {
  .ft__meta-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .ft__meta-legal {
    margin-left: 0;
    width: 100%;
    justify-content: flex-end;
  }
}

.ft__to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 164, 92, 0.4);
  border-radius: 50%;
  color: var(--gold-bright);
  line-height: 1;
  transition:
    background 0.35s var(--ease-out),
    color 0.35s,
    border-color 0.35s,
    transform 0.45s var(--ease-out),
    box-shadow 0.45s ease;
}

.ft__to-top .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.45s var(--ease-out);
}

.ft__to-top:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
  opacity: 1;
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(184, 149, 79, 0.35);
}

.ft__to-top:hover .icon {
  transform: translateY(-2px);
}

/* Поява при скрол (IntersectionObserver → .reveal--visible) */
.reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 1s var(--ease-out),
    transform 1s var(--ease-out);
  will-change: opacity, transform;
}

.reveal--slide-right {
  transform: translate3d(52px, 0, 0);
}

.reveal.reveal--visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.services-mosaic .reveal:nth-child(1) {
  transition-delay: 0.02s;
}

.services-mosaic .reveal:nth-child(2) {
  transition-delay: 0.06s;
}

.services-mosaic .reveal:nth-child(3) {
  transition-delay: 0.1s;
}

.services-mosaic .reveal:nth-child(4) {
  transition-delay: 0.14s;
}

.services-mosaic .reveal:nth-child(5) {
  transition-delay: 0.18s;
}

.services-mosaic .reveal:nth-child(6) {
  transition-delay: 0.22s;
}

.services-mosaic .reveal:nth-child(7) {
  transition-delay: 0.26s;
}

.services-mosaic .reveal:nth-child(8) {
  transition-delay: 0.3s;
}

.services-mosaic .reveal:nth-child(9) {
  transition-delay: 0.34s;
}

.services-mosaic .reveal:nth-child(10) {
  transition-delay: 0.38s;
}

.services-mosaic .reveal:nth-child(11) {
  transition-delay: 0.42s;
}

.services-mosaic .reveal:nth-child(12) {
  transition-delay: 0.46s;
}

/* ——— Мобилна / таблет адаптация ——— */
@media (max-width: 899px) {
  :root {
    --header-h: 72px;
  }

  .header-inner {
    gap: 0.65rem;
    padding-inline: var(--gutter);
  }

  .logo {
    max-width: min(52vw, 200px);
    min-width: 0;
  }

  .logo-title {
    font-size: clamp(1.05rem, 5vw, 1.35rem);
    letter-spacing: 0.04em;
    line-height: 1.05;
  }

  .logo-sub {
    font-size: clamp(0.5rem, 2.4vw, 0.58rem);
    letter-spacing: 0.12em;
  }

  .site-nav {
    max-height: min(70vh, 520px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  .site-nav a {
    min-height: 48px;
    padding: 1rem var(--gutter);
    font-size: 0.8rem;
  }

  .nav-toggle {
    flex-shrink: 0;
    touch-action: manipulation;
  }

  /* Hero: центриран, „пълен“ екран */
  .hero {
    min-height: min(100dvh, 100vh, 900px);
  }

  .hero-media {
    background:
      linear-gradient(165deg, rgba(12, 12, 12, 0.94) 0%, rgba(15, 15, 15, 0.78) 42%, rgba(15, 15, 15, 0.45) 100%),
      url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1600&q=80") 58% center / cover no-repeat;
  }

  .hero-inner {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-block: clamp(1.75rem, 6vh, 3rem) clamp(1.25rem, 4vh, 2rem);
    padding-inline: var(--gutter);
  }

  .hero-copy {
    margin-inline: auto;
    max-width: 100%;
    text-align: center;
  }

  .hero-kicker {
    justify-content: center;
    text-align: center;
    letter-spacing: clamp(0.14em, 1.8vw, 0.22em);
    font-size: clamp(0.62rem, 2.8vw, 0.72rem);
  }

  .hero-title {
    font-size: clamp(2.1rem, 10.5vw, 3.4rem);
  }

  .hero-accent-line {
    margin-inline: auto;
    margin-top: 1.25rem;
    margin-bottom: 1.1rem;
  }

  .hero-lead {
    margin-inline: auto;
    font-size: clamp(0.98rem, 3.9vw, 1.12rem);
    padding: 0 0.15rem;
    max-width: 36ch;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 20.5rem;
    margin-inline: auto;
    margin-top: 1.65rem;
    gap: 0.85rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 50px;
    padding: 1rem 1.25rem;
    font-size: clamp(0.68rem, 2.8vw, 0.72rem);
    touch-action: manipulation;
  }

  .hero-ticker-inner {
    padding: 0.85rem var(--gutter);
    font-size: clamp(0.55rem, 2.5vw, 0.68rem);
    letter-spacing: clamp(0.08em, 1.5vw, 0.14em);
    line-height: 1.45;
    text-align: center;
    justify-content: center;
  }

  .band {
    padding: clamp(2.75rem, 10vw, 3.75rem) 0;
  }

  .band-about {
    gap: 2rem;
  }

  .about-copy {
    text-align: center;
    padding-inline: 0.15rem;
  }

  .about-copy .band-label {
    text-align: center;
  }

  .about-highlights li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.45rem;
  }

  .about-highlights .about-li-icon {
    margin-top: 0;
  }

  .about-media {
    max-width: 28rem;
    margin-inline: auto;
    border-radius: 2px;
  }

  .about-media img {
    aspect-ratio: 3 / 4;
  }

  .svc-card {
    text-align: center;
    padding: 1.5rem 1.15rem;
    border-left-width: 4px;
  }

  .svc-card__head {
    flex-direction: column-reverse;
    align-items: center;
    gap: 0.65rem;
  }

  .svc-card h3 {
    font-size: clamp(1rem, 4vw, 1.15rem);
  }

  .svc-card p {
    font-size: clamp(0.88rem, 3.5vw, 0.95rem);
    max-width: 32rem;
    margin-inline: auto;
  }

  .svc-num {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .svc-card__icon .icon {
    width: clamp(32px, 10vw, 36px);
    height: clamp(32px, 10vw, 36px);
  }

  #practice .band-head {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 100%;
    padding-inline: 0.2rem;
  }

  .accordion-head {
    font-size: clamp(0.78rem, 3.6vw, 1rem);
    padding: 1.05rem 1rem;
    letter-spacing: 0.04em;
    gap: 0.65rem;
    min-height: 52px;
    align-items: center;
  }

  .accordion-panel {
    padding-inline: 1rem;
  }

  .accordion-item.is-open .accordion-panel {
    padding-bottom: 1.15rem;
  }

  .practice-list li {
    font-size: clamp(0.88rem, 3.5vw, 0.96rem);
    padding-left: 1.1rem;
    text-align: left;
  }

  .cta-row {
    align-items: center;
    text-align: center;
    padding-inline: 0.25rem;
  }

  .cta-title {
    text-align: center;
    font-size: clamp(1.45rem, 5.5vw, 2rem);
  }

  .cta-text {
    margin-inline: auto;
    text-align: center;
  }

  .cta-row .btn-dark {
    width: 100%;
    max-width: 22rem;
    min-height: 52px;
    justify-content: center;
    touch-action: manipulation;
  }

  .contact-info {
    text-align: center;
    padding: clamp(1.85rem, 7vw, 2.75rem) var(--gutter);
    padding-bottom: max(2rem, calc(1.85rem + env(safe-area-inset-bottom)));
  }

  .contact-info .band-label,
  .contact-info .band-title,
  .contact-firm {
    text-align: center;
  }

  .contact-detail {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-detail__icon {
    margin-top: 0;
  }

  .address {
    text-align: center;
    font-size: clamp(0.92rem, 3.8vw, 1.025rem);
  }

  .contact-phone {
    font-size: clamp(1.2rem, 5vw, 1.45rem);
    width: 100%;
  }

  .contact-phone a {
    display: inline-block;
    min-height: 44px;
    line-height: 44px;
    touch-action: manipulation;
  }

  .hours-title {
    justify-content: center;
    text-align: center;
  }

  .hours-table {
    font-size: clamp(0.85rem, 3.4vw, 0.92rem);
  }

  .hours-table tbody tr {
    display: block;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hours-table tbody tr:last-child {
    border-bottom: none;
  }

  .hours-table th,
  .hours-table td {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.2rem 0;
    border-bottom: none;
  }

  .hours-table th {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.92);
  }

  .hours-note {
    text-align: center;
    max-width: 36ch;
    margin-inline: auto;
  }

  .contact-map-wrap {
    min-height: min(52vh, 420px);
  }

  .contact-map {
    min-height: min(48vh, 380px);
  }

  .map-link {
    left: var(--gutter);
    right: var(--gutter);
    bottom: max(14px, env(safe-area-inset-bottom, 14px));
    transform: none;
    width: auto;
    justify-content: center;
    min-height: 46px;
    padding: 0.55rem 0.85rem;
    font-size: clamp(0.65rem, 3vw, 0.72rem);
    text-align: center;
    touch-action: manipulation;
  }

  .map-link:hover {
    transform: translateY(-2px);
  }

  .ft__meta {
    padding-left: max(var(--gutter), env(safe-area-inset-left));
    padding-right: max(var(--gutter), env(safe-area-inset-right));
    padding-bottom: max(2rem, calc(1.5rem + env(safe-area-inset-bottom)));
  }

  .ft__meta-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.1rem;
  }

  .footer-copy--prominent {
    text-align: center;
    width: 100%;
    font-size: clamp(0.88rem, 3.6vw, 1.05rem);
  }

  .ft__meta-legal {
    justify-content: center;
    margin-left: 0;
    width: 100%;
    gap: 0.65rem 1.1rem;
  }

  .ft__meta-legal a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    touch-action: manipulation;
  }

  .ft__to-top {
    width: 52px;
    height: 52px;
    touch-action: manipulation;
  }

  .footer-demo,
  .footer-credit {
    padding-inline: 0.35rem;
    text-align: center;
    font-size: clamp(0.74rem, 3.2vw, 0.8rem);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.85rem, 11vw, 2.65rem);
  }

  .band-title {
    font-size: clamp(1.45rem, 7vw, 2.35rem);
  }

  .band-sub,
  .band-sub-dark {
    font-size: clamp(0.95rem, 4vw, 1.05rem);
  }

  .hero-kicker span {
    display: inline-block;
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 899px) {
  .map-link:hover {
    transform: none !important;
  }
}
