/* ============ TOKENS ============ */
:root {
  --bg: #050607;
  --bg-2: #0b0d10;
  --bg-3: #12161b;
  --line: rgba(255, 255, 255, 0.08);
  --text: #eef3f7;
  --muted: #8b96a1;
  --sky: #6ec6ff;
  --sky-deep: #2e9bea;
  --sky-glow: rgba(110, 198, 255, 0.35);

  --f-display: 'Unbounded', system-ui, sans-serif;
  --f-body: 'Manrope', system-ui, sans-serif;

  --pad: clamp(16px, 5vw, 80px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--sky); color: var(--bg); }

em { font-style: normal; color: var(--sky); }

/* ============ COMMON ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sky); box-shadow: 0 0 12px var(--sky);
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 100px;
  font-weight: 600; font-size: 14px; letter-spacing: .02em;
  transition: transform .3s var(--ease), background .3s, box-shadow .3s, color .3s;
}
.btn--primary {
  background: var(--sky); color: #031018;
  box-shadow: 0 0 0 0 var(--sky-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px -6px var(--sky-glow); }
.btn--ghost { border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--sky); color: var(--sky); }
.btn--lg { padding: 18px 34px; font-size: 16px; }

.section { padding: clamp(80px, 12vw, 160px) var(--pad); }
.section__head { margin-bottom: clamp(40px, 6vw, 72px); }
.section__head--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.section__title {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(32px, 5.4vw, 72px); line-height: 1.05;
  letter-spacing: -.02em; margin-top: 18px;
}
.section__note { color: var(--muted); max-width: 300px; font-size: 14px; }
.lead { color: #e3e9ee; font-size: clamp(16px, 1.3vw, 18px); max-width: 520px; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============ NAV ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad);
  transition: background .4s, padding .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5, 6, 7, .78); backdrop-filter: blur(14px);
  padding-top: 14px; padding-bottom: 14px; border-color: var(--line);
}
.logo {
  height: 1em; width: auto; flex: none; overflow: visible;
  fill: none; stroke: currentColor; stroke-width: 34; stroke-linecap: round; stroke-linejoin: round;
}
.logo__bar { stroke: var(--sky); transition: stroke-dashoffset .6s var(--ease); stroke-dasharray: 470; stroke-dashoffset: 0; }
.nav__logo {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-display); font-weight: 700; font-size: 15px; letter-spacing: .14em;
}
.nav__logo .logo { height: 26px; }
.nav__logo:hover .logo__bar { animation: draw .7s var(--ease); }
@keyframes draw { from { stroke-dashoffset: 470; } to { stroke-dashoffset: 0; } }
.nav__links { display: flex; align-items: center; gap: 34px; font-size: 14px; }
.nav__links a { position: relative; color: #c9d2da; transition: color .3s; }
.nav__links a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 100%; height: 1px;
  background: var(--sky); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { padding: 9px 20px; border: 1px solid var(--sky); border-radius: 100px; color: var(--sky) !important; }
.nav__cta:hover { background: var(--sky); color: var(--bg) !important; }
.nav__toggle { display: none; width: 40px; height: 40px; position: relative; z-index: 2; }
.nav__toggle span { position: absolute; left: 8px; right: 8px; height: 2px; background: var(--text); transition: transform .35s var(--ease); }
.nav__toggle span:first-child { top: 15px; }
.nav__toggle span:last-child { top: 23px; }
.nav.is-open .nav__toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.nav.is-open .nav__toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative; height: 100vh; height: 100svh; min-height: 560px;
  display: flex; align-items: flex-end; overflow: hidden;
  padding: 0 var(--pad) clamp(90px, 12vh, 140px);
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.6s ease, transform 7s linear;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,6,7,.55) 0%, rgba(5,6,7,0) 30%, rgba(5,6,7,.25) 55%, var(--bg) 100%),
    linear-gradient(90deg, rgba(5,6,7,.7) 0%, rgba(5,6,7,0) 60%);
}
.hero__content { position: relative; z-index: 2; max-width: 100%; }
.hero__eyebrow { color: #e6edf3; text-shadow: 0 1px 12px rgba(0,0,0,.7); }
.hero__eyebrow-extra { margin-left: -6px; }
.hero__title {
  font-family: var(--f-display); font-weight: 700;
  /* името винаги на един ред — размерът следва ширината на екрана */
  font-size: min(calc((100vw - 2 * var(--pad)) / 11.6), 150px);
  line-height: 1; letter-spacing: -.035em; white-space: nowrap;
  margin: 22px 0 26px;
}
.hero__by {
  color: transparent; -webkit-text-stroke: 1.5px var(--sky);
  text-shadow: 0 0 40px rgba(110,198,255,.25);
}
.hero__lead { font-size: clamp(17px, 1.6vw, 22px); color: #d3dbe2; margin-bottom: 34px; font-weight: 300; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__meta {
  position: absolute; z-index: 2; right: var(--pad); bottom: clamp(90px, 12vh, 140px);
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
  font-family: var(--f-display); font-size: 12px; letter-spacing: .15em; color: var(--muted);
}
.hero__bar { width: 140px; height: 2px; background: rgba(255,255,255,.15); overflow: hidden; }
.hero__bar i { display: block; height: 100%; width: 0; background: var(--sky); }
.hero__bar i.run { animation: bar 6s linear forwards; }
@keyframes bar { to { width: 100%; } }

.hero__scroll {
  position: absolute; z-index: 2; left: 50%; bottom: 28px; transform: translateX(-50%);
  width: 24px; height: 40px; border: 1.5px solid rgba(255,255,255,.35); border-radius: 20px;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px;
  background: var(--sky); border-radius: 2px; animation: scroll 1.8s infinite;
}
@keyframes scroll { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ============ MARQUEE ============ */
.marquee {
  border-block: 1px solid var(--line); overflow: hidden; padding: 22px 0; background: var(--bg-2);
}
.marquee__track {
  display: flex; align-items: center; gap: 40px; width: max-content;
  animation: marquee 40s linear infinite;
  font-family: var(--f-display); font-size: clamp(18px, 2.4vw, 30px); font-weight: 300;
  text-transform: uppercase; letter-spacing: .04em; white-space: nowrap;
}
.marquee__track i { color: var(--sky); font-style: normal; font-size: .6em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ PORTFOLIO ============ */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter {
  padding: 10px 20px; border-radius: 100px; font-size: 13px; font-weight: 500;
  border: 1px solid var(--line); color: #b9c3cc; background: var(--bg-2);
  transition: all .3s var(--ease);
}
.filter sup { color: var(--muted); margin-left: 4px; font-size: 10px; }
.filter:hover { border-color: rgba(110,198,255,.5); color: var(--text); }
.filter.is-active { background: var(--sky); border-color: var(--sky); color: #031018; }
.filter.is-active sup { color: #0a3a5c; }

.gallery { columns: 3 320px; column-gap: 14px; }
.tile {
  position: relative; break-inside: avoid; margin-bottom: 14px; overflow: hidden;
  border-radius: 6px; cursor: zoom-in; background: var(--bg-3);
}
.tile img { width: 100%; height: auto; transition: transform .9s var(--ease), filter .6s; }
.tile::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(110,198,255,0); transition: box-shadow .4s;
  pointer-events: none;
}
.tile__cap {
  position: absolute; left: 16px; bottom: 14px; z-index: 1;
  font-family: var(--f-display); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px); transition: all .4s var(--ease);
}
.tile__cap::before { content: ''; display: inline-block; width: 18px; height: 1px; background: var(--sky); vertical-align: middle; margin-right: 10px; }
.tile:hover img { transform: scale(1.05); filter: brightness(.7); }
.tile:hover::after { box-shadow: inset 0 0 0 1px rgba(110,198,255,.6); }
.tile:hover .tile__cap { opacity: 1; transform: none; }
.tile.is-hidden { display: none; }
.tile.pop { animation: pop .6s var(--ease) both; }
@keyframes pop { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* ============ SURPRISE ============ */
.surprise {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px);
  align-items: center;
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background:
    radial-gradient(60% 50% at 80% 30%, rgba(46,155,234,.12), transparent 70%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}
.surprise__img { position: relative; }
.surprise__img > img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 6px; }
.polaroid {
  position: absolute; right: -6%; bottom: -8%; width: 46%;
  background: #f4f4f1; padding: 10px 10px 0; border-radius: 3px;
  transform: rotate(6deg); box-shadow: 0 30px 60px -10px rgba(0,0,0,.8);
  transition: transform .6s var(--ease);
}
.polaroid:hover { transform: rotate(1deg) scale(1.04); }
.polaroid img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.polaroid span {
  display: block; text-align: center; padding: 10px 0 12px;
  color: #1a1a1a; font-family: var(--f-display); font-size: 12px; letter-spacing: .1em;
}
.surprise__body .lead { margin: 26px 0 36px; }

.steps { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 40px; border-top: 1px solid var(--line); }
.steps li { display: flex; gap: 16px; padding: 22px 16px 22px 0; border-bottom: 1px solid var(--line); }
.steps li:nth-child(odd) { border-right: 1px solid var(--line); }
.steps li:nth-child(even) { padding-left: 20px; }
.steps__n { font-family: var(--f-display); color: var(--sky); font-size: 13px; padding-top: 3px; }
.steps h3 { font-family: var(--f-display); font-weight: 500; font-size: 16px; margin-bottom: 4px; }
.steps p { color: #c3ccd4; font-size: 14px; line-height: 1.5; }

/* ---- истории от улицата ---- */
.stories { grid-column: 1 / -1; margin-top: clamp(30px, 5vw, 60px); padding-top: clamp(30px, 4vw, 48px); border-top: 1px solid var(--line); }
.stories__title { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 24px; }
.stories__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.story__photos { display: grid; grid-template-columns: 2fr 1fr; gap: 8px; aspect-ratio: 3 / 2; }
.story__ph { position: relative; overflow: hidden; border-radius: 6px; cursor: zoom-in; background: var(--bg-3); }
.story__ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .5s; }
.story__ph:hover img { transform: scale(1.05); filter: brightness(.85); }
.story__ph::after { content: ''; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(110,198,255,0); transition: box-shadow .4s; pointer-events: none; }
.story__ph:hover::after { box-shadow: inset 0 0 0 1px rgba(110,198,255,.6); }
.story__meta { margin-top: 12px; display: flex; align-items: center; gap: 12px; font-family: var(--f-display); font-size: 14px; }
.story__meta span { color: var(--sky); font-size: 12px; }

/* ============ ABOUT ============ */
.about {
  display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 7vw, 110px); align-items: center;
}
.about__photo { position: relative; }
.about__photo::before { /* небесносиня рамка, изместена зад снимката */
  content: ''; position: absolute; inset: 0; transform: translate(18px, 18px);
  border: 1px solid var(--sky); border-radius: 8px; opacity: .6;
}
.about__photo img {
  position: relative; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 60% 40%;
  border-radius: 8px; filter: saturate(.9);
}
.about__name {
  margin: 22px 0 28px; font-family: var(--f-display); font-size: 13px; letter-spacing: .12em; color: var(--muted);
}
.about__name b { color: var(--sky); font-weight: 500; }
.about__text p { color: #e3e9ee; font-size: clamp(16px, 1.2vw, 17px); max-width: 600px; margin-bottom: 16px; }
.about__text em { font-weight: 600; }

.about__stats {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr);
  margin: 36px 0; border-block: 1px solid var(--line);
}
.about__stats li { padding: 22px 16px 22px 0; display: flex; flex-direction: column; gap: 4px; }
.about__stats li + li { padding-left: 20px; border-left: 1px solid var(--line); }
.about__stats b { font-family: var(--f-display); font-weight: 500; font-size: clamp(26px, 2.6vw, 36px); color: var(--sky); line-height: 1.1; }
.about__stats span { color: var(--muted); font-size: 13px; }

.about__gear { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.about__gear h3 { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 14px; }
.about__gear ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.about__gear li {
  padding: 8px 16px; border-radius: 100px; font-size: 13px; color: #d3dbe2;
  border: 1px solid var(--line); background: var(--bg-2);
}

/* ============ VIDEOS ============ */
.reels { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
@media (max-width: 1100px) { .reels { grid-template-columns: repeat(3, 1fr); } }
.reel {
  position: relative; aspect-ratio: 9/16; border-radius: 8px; overflow: hidden;
  background: var(--bg-3); cursor: pointer; border: 1px solid var(--line);
}
.reel video { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.reel:hover video { transform: scale(1.04); }
.reel::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.75));
}
.reel__play {
  position: absolute; z-index: 2; left: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600;
}
.reel__play b {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(110,198,255,.18); border: 1px solid var(--sky); backdrop-filter: blur(6px);
  transition: background .3s;
}
.reel__play b::before { content: ''; border-left: 10px solid var(--sky); border-block: 6px solid transparent; margin-left: 3px; transition: border-color .3s; }
.reel:hover .reel__play b { background: var(--sky); }
.reel:hover .reel__play b::before { border-left-color: var(--bg); }

/* ============ WALLPAPERS ============ */
.wallpapers {
  background: radial-gradient(50% 40% at 15% 20%, rgba(46,155,234,.10), transparent 70%), var(--bg);
  border-top: 1px solid var(--line);
}
.wp-switch { display: inline-flex; padding: 4px; border: 1px solid var(--line); border-radius: 100px; background: var(--bg-2); }
.wp-switch__btn { padding: 10px 22px; border-radius: 100px; font-size: 13px; font-weight: 600; color: #b9c3cc; transition: all .3s var(--ease); }
.wp-switch__btn.is-active { background: var(--sky); color: #031018; }

.wp-grid { display: none; gap: 22px; }
.wp-grid.is-active { display: grid; animation: pop .6s var(--ease) both; }
.wp-grid--phone { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.wp-grid--desktop { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }

.wp { position: relative; }
.wp__frame { position: relative; overflow: hidden; background: var(--bg-3); cursor: zoom-in; transition: transform .5s var(--ease), box-shadow .5s; }
.wp__frame img { width: 100%; height: 100%; object-fit: cover; }
.wp:hover .wp__frame { transform: translateY(-6px); box-shadow: 0 24px 50px -18px var(--sky-glow); }

/* телефон */
.wp--phone .wp__frame {
  aspect-ratio: 9 / 19.5; border-radius: 30px;
  border: 5px solid #1b2027; outline: 1px solid rgba(255,255,255,.08);
}
.wp--phone .wp__frame::before { /* notch */
  content: ''; position: absolute; z-index: 2; top: 10px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 20px; border-radius: 20px; background: #000;
}
.wp__lock {
  position: absolute; z-index: 1; top: 13%; left: 0; right: 0; text-align: center;
  text-shadow: 0 2px 16px rgba(0,0,0,.5); pointer-events: none;
}
.wp__lock small { display: block; font-size: 11px; opacity: .85; }
.wp__lock b { font-family: var(--f-display); font-weight: 500; font-size: clamp(34px, 3.6vw, 46px); line-height: 1.1; }

/* десктоп */
.wp--desktop .wp__frame {
  aspect-ratio: 16 / 10; border-radius: 10px 10px 0 0;
  border: 8px solid #1b2027; border-bottom-width: 14px;
}
.wp--desktop::after { /* стойка */
  content: ''; display: block; width: 26%; height: 16px; margin: 0 auto;
  background: linear-gradient(#1b2027, #0e1115); clip-path: polygon(12% 0, 88% 0, 100% 100%, 0 100%);
}

.wp__meta { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; font-size: 13px; }
.wp__meta span { color: var(--muted); }
.badge {
  display: inline-block; padding: 4px 10px; border-radius: 100px; font-size: 11px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid rgba(110,198,255,.5); color: var(--sky); background: rgba(110,198,255,.08);
}

.wp-banner {
  margin-top: 56px; padding: 36px 40px; border-radius: 12px;
  display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap;
  border: 1px solid rgba(110,198,255,.3);
  background: linear-gradient(120deg, rgba(110,198,255,.10), rgba(110,198,255,0) 60%), var(--bg-2);
}
.wp-banner h3 { font-family: var(--f-display); font-weight: 500; font-size: clamp(20px, 2vw, 26px); margin: 14px 0 8px; }
.wp-banner p { color: #dde4ea; max-width: 560px; font-size: 15px; }

/* ============ SERVICES ============ */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service {
  position: relative; padding: 40px 32px 36px; border-radius: 10px;
  background: var(--bg-2); border: 1px solid var(--line);
  transition: transform .5s var(--ease), border-color .4s;
  overflow: hidden;
}
.service::before {
  content: ''; position: absolute; inset: -1px; border-radius: inherit; z-index: -1;
  background: radial-gradient(80% 60% at 50% 0%, rgba(110,198,255,.18), transparent 70%);
  opacity: 0; transition: opacity .5s;
}
.service:hover { transform: translateY(-6px); border-color: rgba(110,198,255,.45); }
.service:hover::before { opacity: 1; }
.service { isolation: isolate; }
.service--featured { border-color: rgba(110,198,255,.35); }
.service__n { font-family: var(--f-display); color: var(--sky); font-size: 13px; }
.service h3 { font-family: var(--f-display); font-weight: 500; font-size: 26px; margin: 50px 0 14px; }
.service p { color: #dde4ea; font-size: 15px; margin-bottom: 26px; }
.service ul { list-style: none; border-top: 1px solid var(--line); padding-top: 18px; display: grid; gap: 8px; font-size: 14px; color: #e3e9ee; }
.service li::before { content: '→'; color: var(--sky); margin-right: 10px; }

/* ============ CONTACT ============ */
.contact { position: relative; overflow: hidden; padding: clamp(120px, 18vw, 240px) var(--pad); text-align: center; }
.contact__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: .35; filter: grayscale(.3);
}
.contact::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(70% 70% at 50% 50%, rgba(5,6,7,.35), var(--bg) 85%);
}
.contact__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.contact__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.contact__loc { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; }
.contact__title { font-family: var(--f-display); font-weight: 700; font-size: clamp(38px, 7vw, 104px); line-height: 1; letter-spacing: -.03em; }

.footer {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 30px var(--pad); border-top: 1px solid var(--line); color: var(--muted); font-size: 13px;
}
.footer__logo { display: inline-flex; align-items: center; gap: 12px; font-family: var(--f-display); font-weight: 700; letter-spacing: .14em; color: var(--text); }
.footer__logo .logo { height: 20px; }
.footer a:hover { color: var(--sky); }
.footer__credit { flex-basis: 100%; font-size: 11px; color: rgba(139, 150, 161, .55); letter-spacing: .02em; }
.footer__credit a { text-decoration: underline; text-decoration-color: rgba(139, 150, 161, .3); text-underline-offset: 2px; }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center;
  background: rgba(3,4,5,.95); backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none; transition: opacity .35s;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox figure { max-width: 90vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lightbox img { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: 4px; }
.lightbox figcaption { font-family: var(--f-display); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.lightbox figcaption b { color: var(--sky); font-weight: 500; }
.lightbox__close, .lightbox__nav {
  position: absolute; width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2); font-size: 22px; line-height: 1;
  display: grid; place-items: center; transition: all .3s;
}
.lightbox__close:hover, .lightbox__nav:hover { border-color: var(--sky); color: var(--sky); }
.lightbox__close { top: 20px; right: 20px; font-size: 16px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 30px; padding-bottom: 4px; }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .surprise { grid-template-columns: 1fr; }
  .surprise__img { max-width: 520px; }
  .about { grid-template-columns: 1fr; }
  .stories__grid { grid-template-columns: 1fr; gap: 28px; }
  .about__photo { max-width: 460px; }
  .services { grid-template-columns: 1fr; }
  .service h3 { margin-top: 28px; }
}
@media (max-width: 760px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 28px;
    background: rgba(5,6,7,.97); font-family: var(--f-display); font-size: 22px;
    opacity: 0; pointer-events: none; transition: opacity .35s;
  }
  .nav.is-open .nav__links { opacity: 1; pointer-events: auto; }
  .hero__meta { display: none; }
  .hero__eyebrow-extra { display: none; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
  .gallery { columns: 2; column-gap: 8px; }
  .tile { margin-bottom: 8px; border-radius: 4px; }
  .steps { grid-template-columns: 1fr; }
  .steps li:nth-child(odd) { border-right: 0; }
  .steps li:nth-child(even) { padding-left: 0; }
  .reels { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .reel__play span { display: none; }
  .wp-grid { gap: 12px; }
  .wp__meta { font-size: 12px; }
  .about__photo::before { transform: translate(10px, 10px); }
  .about__photo { margin-right: 10px; }
  .about__stats li { padding-right: 8px; }
  .about__stats li + li { padding-left: 12px; }
  .about__name { font-size: 11px; letter-spacing: .06em; }
  .wp__meta span { display: none; }
  .wp-grid--phone { grid-template-columns: repeat(2, 1fr); }
  .wp-grid--desktop { grid-template-columns: 1fr; }
  .wp--phone .wp__frame { border-radius: 22px; border-width: 4px; }
  .wp-banner { padding: 26px 22px; }
  .polaroid { right: -2%; }
  .lightbox__nav { top: auto; bottom: 20px; transform: none; }
  .lightbox__nav--prev { left: calc(50% - 64px); }
  .lightbox__nav--next { right: calc(50% - 64px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
