/* ============================================
   Tokens
   ============================================ */
:root {
  --bg: #FAFBFD;
  --bg-elev: #FFFFFF;
  --surface: #F4F6FB;
  --border: #E6EAF2;
  --border-strong: #D5DBE8;

  --ink: #0F1B2D;
  --ink-2: #2A3650;
  --mute: #5B6478;
  --mute-2: #8E97AD;

  --yellow: #FFD60A;
  --yellow-deep: #F2C200;
  --orange: #FF4D00;
  --orange-soft: #FFEDE3;

  --ring: rgba(15,27,45,0.12);
  --shadow-sm: 0 1px 2px rgba(15,27,45,0.06), 0 1px 1px rgba(15,27,45,0.04);
  --shadow-md: 0 8px 24px -8px rgba(15,27,45,0.18), 0 4px 12px -4px rgba(15,27,45,0.08);
  --shadow-lg: 0 24px 56px -16px rgba(15,27,45,0.28), 0 12px 24px -8px rgba(15,27,45,0.12);

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1240px;
}

/* ============================================
   Reset + base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink);
}
h2 { font-size: clamp(28px, 4.2vw, 48px); }
h3 { font-size: clamp(22px, 2.6vw, 28px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }

p { color: var(--ink-2); }

::selection { background: var(--yellow); color: var(--ink); }

/* Focus visible */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 10px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: transform 150ms var(--ease-out), background 150ms ease-out, box-shadow 200ms var(--ease-out), color 150ms ease-out;
  white-space: nowrap;
  min-height: 44px;
}
.btn-sm { padding: 10px 16px; font-size: 13px; min-height: 40px; }
.btn-lg { padding: 18px 28px; font-size: 16px; min-height: 56px; }

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(255, 214, 10, 0.45), inset 0 -2px 0 rgba(15,27,45,0.06);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255, 214, 10, 0.55), inset 0 -2px 0 rgba(15,27,45,0.06); background: var(--yellow-deep); }
.btn-primary:active { transform: translateY(0); }

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { transform: translateY(-1px); background: #182640; box-shadow: var(--shadow-md); }

.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--border-strong);
}
.btn-light:hover { transform: translateY(-1px); background: var(--surface); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-elev); box-shadow: inset 0 0 0 1.5px var(--ink); }

/* ============================================
   Header
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 32px;
  background: rgba(250, 251, 253, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease-out, background 200ms ease-out;
}
.nav.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.92);
}

.nav-brand {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.04em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text b { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 14px; }
.brand-text span { font-size: 11px; color: var(--mute); }

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-2); transition: color 150ms; }
.nav-links a:hover { color: var(--ink); }

.nav-cta { display: flex; gap: 8px; align-items: center; }

@media (max-width: 1080px) {
  .nav-links { display: none; }
}
@media (max-width: 720px) {
  .nav { padding: 12px 14px; gap: 12px; }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn-primary {
    padding: 0;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    border-radius: 50%;
  }
  .nav-cta .btn-primary span { display: none; }
  .nav-cta .btn-primary::before {
    content: '';
    width: 18px; height: 18px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 0C5.37 0 0 5.37 0 12s5.37 12 12 12 12-5.37 12-12S18.63 0 12 0zm5.56 8.17l-1.86 8.79c-.14.62-.51.78-1.03.49l-2.85-2.1-1.37 1.32c-.15.15-.28.28-.57.28l.2-2.91 5.31-4.8c.23-.21-.05-.32-.36-.12l-6.57 4.14-2.83-.88c-.62-.19-.63-.62.13-.92l11.06-4.27c.51-.18.96.12.79.98z'/%3E%3C/svg%3E") center / contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 0C5.37 0 0 5.37 0 12s5.37 12 12 12 12-5.37 12-12S18.63 0 12 0zm5.56 8.17l-1.86 8.79c-.14.62-.51.78-1.03.49l-2.85-2.1-1.37 1.32c-.15.15-.28.28-.57.28l.2-2.91 5.31-4.8c.23-.21-.05-.32-.36-.12l-6.57 4.14-2.83-.88c-.62-.19-.63-.62.13-.92l11.06-4.27c.51-.18.96.12.79.98z'/%3E%3C/svg%3E") center / contain no-repeat;
  }
  .brand-text span { display: none; }
  .brand-mark { width: 36px; height: 36px; font-size: 16px; }
  .brand-text b { font-size: 13px; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 56px 0 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -50% -10% auto -10%;
  height: 600px;
  background: radial-gradient(60% 60% at 50% 0%, rgba(255, 214, 10, 0.22), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}
.kicker .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 77, 0, 0.18);
}

.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(38px, 5.6vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 22px 0 22px;
  color: var(--ink);
}
.hero h1 .hl-wrap {
  display: inline-block;
  position: relative;
}
.hero h1 .hl {
  position: relative;
  z-index: 1;
  padding: 0 6px;
  white-space: nowrap;
}
.hero h1 .hl::before {
  content: '';
  position: absolute;
  inset: 6% -4px 12% -4px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 6px;
  transform: rotate(-1.5deg);
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 52ch;
}

.hero-actions {
  margin-top: 30px;
  display: flex; gap: 12px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex; gap: 36px; flex-wrap: wrap;
}
.hero-meta > div { display: flex; flex-direction: column; gap: 4px; }
.hm-label { font-size: 11px; font-weight: 600; color: var(--mute); letter-spacing: 0.06em; text-transform: uppercase; }
.hm-value { font-size: 14px; font-weight: 600; color: var(--ink); }

/* Hero photo */
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-callout {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-md);
  animation: floatY 4s var(--ease-in-out) infinite;
}
.hero-callout .cl-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255, 77, 0, 0.18); }
.cl-1 { top: 24px; left: 24px; }
.cl-2 { top: 78px; left: 38px; animation-delay: 0.6s; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hero-badge {
  position: absolute;
  right: 20px; bottom: 20px;
  background: var(--yellow);
  color: var(--ink);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(255, 214, 10, 0.5), 0 2px 4px rgba(15,27,45,0.1);
  display: flex; align-items: center; gap: 16px;
  transform: rotate(-3deg);
}
.badge-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.badge-num small { font-size: 14px; font-weight: 700; margin-left: 2px; opacity: 0.7; }
.badge-cap { font-size: 11px; font-weight: 700; line-height: 1.2; }

/* KPI strip */
.kpi-strip {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 64px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.kpi-item {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.kpi-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.kpi-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.kpi-num small {
  font-size: 0.4em;
  font-weight: 700;
  color: var(--mute);
  margin-left: 4px;
}
.kpi-label {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mute);
}
.kpi-highlight {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}
.kpi-highlight .kpi-num,
.kpi-highlight .kpi-num small,
.kpi-highlight .kpi-label { color: var(--ink); }
.kpi-highlight .kpi-num small { opacity: 0.6; }

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { aspect-ratio: 16 / 11; max-height: 70vh; }
}
@media (max-width: 720px) {
  .hero { padding-top: 28px; }
  .kpi-strip { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 36px; }
  .kpi-item { padding: 18px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; padding: 16px 22px; }
  .hero-callout { font-size: 11px; padding: 7px 12px; max-width: calc(100% - 110px); }
  .cl-1 { top: 14px; left: 14px; }
  .cl-2 { top: 56px; left: 14px; animation-delay: 0.6s; }
  .hero-badge { padding: 12px 14px; right: 12px; bottom: 12px; gap: 10px; }
  .badge-num { font-size: 26px; }
  .badge-cap { font-size: 10px; }
  .hero-meta { gap: 20px; }
  .hero-photo { border-radius: 20px; }
}
@media (max-width: 400px) {
  .nav { padding: 10px 12px; gap: 10px; }
  .brand-text b { font-size: 12px; }
  .hero-photo { aspect-ratio: 4 / 3; }
  .cl-2 { top: 52px; }
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 96px 0;
}
.section-soft { background: var(--surface); }
.section-dark {
  background: var(--ink);
  color: #fff;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.72); }

.sect-head { max-width: 720px; margin-bottom: 48px; }
.sect-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.sect-kicker.dark { color: var(--yellow); }
.sect-sub { margin-top: 16px; font-size: clamp(15px, 1.3vw, 18px); color: var(--mute); }
.sect-sub.dark { color: rgba(255,255,255,0.72); }

.hl-orange { color: var(--yellow); white-space: nowrap; }

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .sect-head { margin-bottom: 32px; }
}

/* ============================================
   Asymmetric gallery (About)
   ============================================ */
.gallery-asym {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 560px;
}
.g-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  transition: transform 350ms var(--ease-out), box-shadow 350ms var(--ease-out);
  display: block;
}
.g-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}
.g-tile:hover img { transform: scale(1.04); }
.g-tile:hover { box-shadow: var(--shadow-lg); }
.g-big {
  grid-row: 1 / 3;
}
.g-cap {
  position: absolute;
  left: 16px; bottom: 16px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.tag {
  background: rgba(15, 27, 45, 0.86);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.tag-yellow { background: var(--yellow); color: var(--ink); }

@media (max-width: 900px) {
  .gallery-asym {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 200px 200px;
    min-height: 0;
  }
  .g-big { grid-row: 1 / 2; grid-column: 1 / 3; }
}
@media (max-width: 520px) {
  .gallery-asym {
    grid-template-columns: 1fr;
    grid-template-rows: 260px repeat(4, 200px);
  }
  .gallery-asym .g-tile,
  .gallery-asym .g-big { grid-column: 1 / 2; grid-row: auto; }
}

/* ============================================
   Bento (Equipment)
   ============================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.b-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #18233A;
  display: block;
  transition: transform 350ms var(--ease-out), box-shadow 350ms var(--ease-out);
}
.b-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 800ms var(--ease-out);
}
.b-tile:hover img { transform: scale(1.04); }
.b-1 { grid-column: span 3; grid-row: span 2; }
.b-2 { grid-column: span 3; }
.b-3 { grid-column: span 3; }
.b-4 { grid-column: span 2; }
.b-5 { grid-column: span 4; }

@media (max-width: 900px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
  }
  .b-1 { grid-column: span 4; grid-row: span 2; }
  .b-2 { grid-column: span 4; }
  .b-3 { grid-column: span 4; }
  .b-4, .b-5 { grid-column: span 2; }
}
@media (max-width: 520px) {
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .b-1 { grid-column: span 2; grid-row: span 2; }
  .b-2, .b-3 { grid-column: span 2; }
  .b-4, .b-5 { grid-column: span 1; }
}

/* ============================================
   "Что входит в бокс" — standalone yellow block
   ============================================ */
.includes {
  margin-top: 32px;
  background: var(--yellow);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(255, 214, 10, 0.6);
}
.includes::after {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(closest-side, rgba(15,27,45,0.06), transparent 70%);
  pointer-events: none;
}

.includes-left { display: flex; flex-direction: column; gap: 18px; }
.includes-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--yellow);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  align-self: flex-start;
}
.includes h3 {
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.includes-left p {
  color: rgba(15, 27, 45, 0.78);
  font-size: 15px;
  line-height: 1.55;
  max-width: 38ch;
}

.includes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  align-content: center;
}
.includes-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.il-num {
  flex-shrink: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: rgba(15, 27, 45, 0.55);
  letter-spacing: 0.04em;
  width: 26px;
  padding-top: 2px;
  border-top: 2px solid rgba(15, 27, 45, 0.5);
}
.includes-list li > div { display: flex; flex-direction: column; gap: 3px; }
.includes-list b {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.includes-list span {
  font-size: 13.5px;
  color: rgba(15, 27, 45, 0.72);
  line-height: 1.4;
}

@media (max-width: 1080px) {
  .includes { grid-template-columns: 1fr; gap: 36px; padding: 44px 40px; }
  .includes-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .includes { padding: 32px 24px; margin-top: 24px; }
  .includes-list { grid-template-columns: 1fr; gap: 18px; }
  .il-num { width: 22px; font-size: 12px; }
}

/* ============================================
   Use cases
   ============================================ */
.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.use-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out), border-color 250ms ease-out;
}
.use-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.use-ico {
  width: 56px; height: 56px;
  background: var(--ink);
  border-radius: 14px;
  display: grid; place-items: center;
  color: var(--yellow);
}
.use-card h4 { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 18px; }
.use-card p { font-size: 14px; color: var(--mute); line-height: 1.5; }

@media (max-width: 1080px) { .use-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .use-grid { grid-template-columns: 1fr; } }

/* ============================================
   Location
   ============================================ */
.loc-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
}
.loc-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  aspect-ratio: 16 / 11;
  background: var(--ink);
  transition: box-shadow 250ms var(--ease-out);
}
.loc-map:hover { box-shadow: var(--shadow-md); }
.loc-map img { width: 100%; height: 100%; object-fit: cover; }

.loc-side { display: grid; gap: 16px; }
.loc-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 16 / 10;
  display: block;
  transition: box-shadow 250ms var(--ease-out);
}
.loc-photo:hover { box-shadow: var(--shadow-md); }
.loc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.loc-photo:hover img { transform: scale(1.03); }

.loc-meta {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lm-item {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex; gap: 14px;
  align-items: flex-start;
}
.lm-item svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.lm-item div { display: flex; flex-direction: column; gap: 2px; }
.lm-item b { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 13px; color: var(--ink); letter-spacing: 0.02em; }
.lm-item span { font-size: 14px; color: var(--mute); line-height: 1.4; }

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

/* ============================================
   Final CTA
   ============================================ */
.cta-block {
  position: relative;
  padding: 120px 0;
  color: #fff;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
  filter: contrast(0.95);
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15, 27, 45, 0.86) 0%, rgba(15, 27, 45, 0.72) 60%, rgba(15, 27, 45, 0.92) 100%);
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.cta-kicker {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.cta-block h2 {
  color: #fff;
  font-size: clamp(32px, 4.4vw, 56px);
  margin-bottom: 18px;
}
.cta-block p { color: rgba(255,255,255,0.82); font-size: clamp(15px, 1.3vw, 18px); max-width: 56ch; }

.cta-card {
  margin-top: 40px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-lg);
  flex-wrap: wrap;
}
.cta-person { display: flex; align-items: center; gap: 16px; }
.cta-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  display: grid; place-items: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 26px;
}
.cta-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
}
.cta-role { font-size: 13px; color: var(--mute); margin-top: 4px; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .cta-block { padding: 80px 0; }
  .cta-card { flex-direction: column; align-items: stretch; padding: 24px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}

/* ============================================
   Footer
   ============================================ */
.foot {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 36px 0 92px;
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.foot-brand .brand-mark { background: var(--yellow); color: var(--ink); }
.foot-brand div { display: flex; flex-direction: column; line-height: 1.2; }
.foot-brand b { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 14px; color: #fff; }
.foot-brand span { font-size: 11px; color: rgba(255,255,255,0.55); }
.foot-meta { display: flex; flex-direction: column; gap: 4px; font-size: 12px; text-align: right; }
.foot-meta a { color: var(--yellow); }
@media (max-width: 720px) {
  .foot-meta { text-align: left; }
  .foot { padding-bottom: 110px; }
}

/* ============================================
   Mobile sticky bar
   ============================================ */
.mobile-bar {
  display: none;
}
@media (max-width: 720px) {
  .mobile-bar {
    display: flex;
    position: fixed;
    left: 12px; right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 60;
    gap: 8px;
    padding: 8px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(15,27,45,0.18), 0 4px 12px rgba(15,27,45,0.08);
  }
  .mb-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    min-height: 48px;
  }
  .mb-call { background: var(--yellow); color: var(--ink); }
  .mb-tg { background: var(--ink); color: #fff; }
}

/* ============================================
   Scroll reveal
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
  }
  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================
   Lightbox
   ============================================ */
[data-zoom] { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 27, 45, 0.86);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms var(--ease-out), visibility 0s linear 220ms;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 220ms var(--ease-out), visibility 0s linear 0s;
}
.lightbox-img {
  max-width: min(96vw, 1600px);
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 8px 24px rgba(0, 0, 0, 0.35);
  transform: scale(0.96);
  transition: transform 280ms var(--ease-out);
  cursor: zoom-out;
}
.lightbox.is-open .lightbox-img { transform: scale(1); }

.lightbox-close {
  position: fixed;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: background 150ms ease-out, transform 200ms var(--ease-out);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: scale(1.05);
}
.lightbox-close:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}
.lightbox-hint {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  pointer-events: none;
  user-select: none;
}
body.lightbox-open { overflow: hidden; }

@media (max-width: 720px) {
  .lightbox { padding: 12px; }
  .lightbox-close { width: 42px; height: 42px; top: 14px; right: 14px; }
  .lightbox-hint { bottom: 16px; font-size: 11px; }
}
