/* =====================================================
   SKY VIEW — Premium LED Advertising
   Design matched to reference: dark, elegant, editorial
   ===================================================== */

:root {
  --bg: #0a0c0e;
  --bg-alt: #0d1013;
  --panel: #111519;
  --panel-2: #151a1f;

  --border: rgba(234, 224, 200, 0.09);
  --border-2: rgba(234, 224, 200, 0.16);

  --text: #ece7da;          /* pearl-white — headings */
  --text-body: #969ea7;     /* cool gray — paragraphs */
  --text-muted: #69737d;    /* labels */

  --payne: #536878;
  --accent: #93a3b1;        /* steel blue-gray highlight */
  --accent-soft: #7e8f9d;
  --pearl: #eae0c8;

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 0.7, 0.25, 1);
  --t: 0.4s var(--ease);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

/* ---------- Shared type ---------- */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 26px;
}

.title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
  line-height: 1.16;
  letter-spacing: -0.005em;
  color: var(--text);
}
.accent { color: var(--accent); }

.lead {
  font-size: 1rem;
  color: var(--text-body);
  margin-top: 22px;
  max-width: 440px;
}
.lead--center { margin-left: auto; margin-right: auto; text-align: center; max-width: 560px; }

.section { padding: 130px 0; position: relative; }
.section--alt { background: var(--bg-alt); }

.head {
  text-align: center;
  margin-bottom: 70px;
}
.head .eyebrow { margin-bottom: 18px; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all var(--t);
  white-space: nowrap;
}
.btn__arrow { width: 16px; height: 16px; transition: transform var(--t); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--solid {
  background: #1b232b;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn--solid:hover {
  background: #232d37;
  border-color: rgba(234, 224, 200, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn--outline:hover {
  background: rgba(234, 224, 200, 0.05);
  border-color: rgba(234, 224, 200, 0.36);
}

.btn--sm { padding: 12px 22px; font-size: 11px; }
.btn--lg { padding: 17px 34px; }
.btn--block { width: 100%; justify-content: center; }

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  transition: background var(--t), padding var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 12, 14, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 0;
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 0.92;
}
.brand__sky {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text);
}
.brand__view {
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0.46em;
  color: var(--accent);
  margin-right: -0.46em;
}
.brand__divider {
  width: 1px;
  height: 34px;
  background: var(--border-2);
}
.brand__tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.6;
}

.nav__links {
  display: flex;
  gap: 34px;
  margin: 0 auto;
}
.nav__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 0;
  position: relative;
  transition: color var(--t);
}
.nav__links a:hover { color: var(--text); }
.nav__links a.is-active { color: var(--text); }
.nav__links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__burger span {
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: transform var(--t), opacity var(--t);
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 150px 0 0;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__video:not([data-loaded]) { display: none; }
.hero__placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 78% 42%, rgba(83, 104, 120, 0.30) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 12% 80%, rgba(83, 104, 120, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, #0c0f12 0%, #0a0c0e 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 14, 0.96) 0%, rgba(10, 12, 14, 0.6) 45%, rgba(10, 12, 14, 0.35) 100%),
    linear-gradient(180deg, rgba(10, 12, 14, 0.7) 0%, transparent 30%, rgba(10, 12, 14, 0.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .eyebrow {
  animation: fade-up 0.8s var(--ease) both;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  line-height: 1.07;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 30px;
  animation: fade-up 0.8s 0.1s var(--ease) both;
}
.hero__text {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 40px;
  animation: fade-up 0.8s 0.3s var(--ease) both;
}
.hero__inner .btn {
  animation: fade-up 0.8s 0.4s var(--ease) both;
}

/* ---- Hero CSS scene: LED screen on a building ---- */
.hero__scene {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 52%;
  z-index: 1;
  overflow: hidden;
}
.bld {
  position: absolute;
  bottom: 0;
  background: linear-gradient(180deg, #14181d 0%, #0c0e11 100%);
}
.bld--back {
  right: 8%;
  width: 200px;
  height: 62%;
  background: linear-gradient(180deg, #101317 0%, #0a0c0e 100%);
  border-top: 1px solid rgba(234, 224, 200, 0.04);
}
.bld--main {
  right: 26%;
  width: 340px;
  height: 80%;
  border: 1px solid rgba(234, 224, 200, 0.05);
  border-bottom: 0;
}
.bld__windows {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(234, 224, 200, 0.16) 1.4px, transparent 1.6px);
  background-size: 26px 34px;
  background-position: 10px 10px;
  opacity: 0.5;
}
.bld__screen {
  position: absolute;
  top: 14%;
  left: 12%;
  right: 12%;
  height: 36%;
  border-radius: 3px;
  background: linear-gradient(135deg, #1d3a4d 0%, #0f2533 60%, #16303f 100%);
  border: 1px solid rgba(147, 163, 177, 0.45);
  box-shadow:
    0 0 70px 10px rgba(83, 104, 120, 0.5),
    0 0 140px 30px rgba(83, 104, 120, 0.25),
    inset 0 0 50px rgba(147, 163, 177, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bld__screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.10) 1px, transparent 1.4px);
  background-size: 6px 6px;
}
.bld__screen-sky {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.16em;
  color: #fff;
  line-height: 1;
}
.bld__screen-view {
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.42em;
  color: var(--accent);
  margin: 2px 0 6px;
  margin-right: -0.42em;
  line-height: 1;
}
.bld__screen-tag {
  font-size: 0.42rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(236, 231, 218, 0.7);
}

/* ---- Thin moving ticker ---- */
.ticker {
  overflow: hidden;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 24s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker__track span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  margin-right: 30px;
}
.ticker__track i {
  font-style: normal;
  font-size: 9px;
  color: var(--accent);
  margin-right: 30px;
}

.hero__foot {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 34px 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hero__facts {
  display: flex;
  align-items: center;
  gap: 22px;
}
.fact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.fact svg { width: 15px; height: 15px; }
.fact-sep { width: 1px; height: 14px; background: var(--border-2); }

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t);
}
.hero__scroll:hover { color: var(--text); }
.hero__scroll svg { width: 15px; height: 15px; animation: bob 2s infinite; }

/* =====================================================
   ABOUT
   ===================================================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about__left .title { margin-bottom: 0; }
.about__left .lead { margin-bottom: 36px; }

.about__right { display: flex; flex-direction: column; }
.point {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.point__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.point__icon svg { width: 22px; height: 22px; }
.point__body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 9px;
}
.point__body p {
  font-size: 0.95rem;
  color: var(--text-body);
}
.point__line {
  height: 1px;
  background: var(--border);
  margin: 30px 0;
}

/* =====================================================
   SCREENS / LED WALL
   ===================================================== */
.screens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.screens__visual {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 420px;
}
.screens__specs {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
}
.spec-row:first-child { padding-top: 0; }
.spec-row:last-child { border-bottom: 0; }
.spec-row span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.spec-row strong {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text);
  text-align: right;
}

/* Placeholder block */
.ph {
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: linear-gradient(135deg, #101418 0%, #0b0d10 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-muted);
}
.ph svg { width: 40px; height: 40px; opacity: 0.55; }
.ph span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* =====================================================
   PACKAGES
   ===================================================== */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}
.plan {
  position: relative;
  padding: 40px 34px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), transform var(--t);
}
.plan:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
}
.plan--featured {
  background: var(--panel-2);
  border-color: rgba(147, 163, 177, 0.3);
}
.plan__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid rgba(147, 163, 177, 0.35);
  border-radius: 100px;
}
.plan__name {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--text);
  margin-bottom: 8px;
}
.plan__desc {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 28px;
  min-height: 42px;
}
.plan__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 30px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.plan__list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  color: var(--text-body);
}
.plan__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 13px; height: 7px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.plan__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}
.plan__price { display: flex; flex-direction: column; gap: 3px; }
.plan__price span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.plan__price strong {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--text);
}
.plans__cta {
  text-align: center;
  margin-top: 50px;
}

/* =====================================================
   IMPACT / NUMBERS
   ===================================================== */
.impact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.impact__left .title { margin-bottom: 44px; }
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 30px;
}
.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat span {
  font-size: 0.86rem;
  color: var(--text-body);
}

.video-card {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
  transition: border-color var(--t);
}
.video-card:hover { border-color: var(--border-2); }
.video-card .ph { min-height: 360px; }
.video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  background: rgba(10, 12, 14, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: transform var(--t), background var(--t);
}
.video-card:hover .video-card__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(27, 35, 43, 0.85);
}
.video-card__play svg { width: 22px; height: 22px; margin-left: 3px; }
.video-card__label {
  position: absolute;
  bottom: 22px;
  left: 0; right: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}
.gallery__cell {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.gallery__cell--lg {
  grid-column: span 2;
  grid-row: span 2;
}

/* =====================================================
   LOCATION
   ===================================================== */
.location {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.location__map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 440px;
  filter: grayscale(0.4) brightness(0.85) contrast(1.05);
}
.location__map iframe { width: 100%; height: 100%; border: 0; }
.location__info {
  padding: 42px 38px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.location__info h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--text);
  margin-bottom: 14px;
}
.location__info p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 26px;
}
.location__rows { margin-bottom: 30px; }
.location__info .btn { align-self: flex-start; margin-top: auto; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: start;
}
.contact__form {
  padding: 42px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 9px; }
.field > span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 5px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--t);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-soft);
}
.field textarea { resize: vertical; }

.form-ok {
  display: none;
  padding: 14px;
  border: 1px solid rgba(147, 163, 177, 0.3);
  border-radius: 5px;
  background: rgba(147, 163, 177, 0.06);
  color: var(--accent);
  font-size: 0.9rem;
  text-align: center;
}
.form-ok.show { display: block; }

.contact__side {
  padding: 42px 36px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.contact__side h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 30px;
}
.contact__list { display: flex; flex-direction: column; gap: 22px; }
.contact__list li { display: flex; flex-direction: column; gap: 5px; }
.contact__lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact__list a { color: var(--text); transition: color var(--t); }
.contact__list a:hover { color: var(--accent); }
.contact__list span:not(.contact__lbl) { color: var(--text); }

.contact__socials {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.contact__socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--t);
}
.contact__socials a:hover {
  color: var(--text);
  border-color: rgba(234, 224, 200, 0.35);
}
.contact__socials svg { width: 17px; height: 17px; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-top: 72px;
  padding-bottom: 56px;
}
.footer__brand .brand { margin-bottom: 22px; }
.footer__brand p {
  font-size: 0.92rem;
  color: var(--text-body);
  max-width: 320px;
}
.footer__nav,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__nav a,
.footer__contact a,
.footer__contact span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t);
}
.footer__nav a:hover,
.footer__contact a:hover { color: var(--text); }

.footer__bar {
  border-top: 1px solid var(--border);
  padding: 22px 32px;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =====================================================
   ANIMATIONS / REVEAL
   ===================================================== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 22px;
    padding: 28px 32px 34px;
    background: rgba(10, 12, 14, 0.98);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    margin: 0;
  }

  .about, .screens, .impact, .location, .contact {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .plans { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section { padding: 90px 0; }
  .screens__visual { min-height: 300px; }
  .hero__scene { width: 70%; opacity: 0.5; }
}

@media (max-width: 720px) {
  .hero__scene { display: none; }
}

@media (max-width: 620px) {
  .container { padding: 0 22px; }
  .nav__inner { padding: 0 22px; }
  .hero__inner { padding: 0 22px; }
  .hero__foot { padding: 24px 22px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero__facts { flex-wrap: wrap; gap: 14px; }
  .fact-sep { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery__cell--lg { grid-column: span 2; grid-row: span 1; }
  .footer__inner { grid-template-columns: 1fr; gap: 34px; }
  .footer__bar { flex-direction: column; text-align: center; }
  .contact__form { padding: 28px; }
  .brand__tag { display: none; }
  .brand__divider { display: none; }
}
