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

:root {
  --brand: #B7F500;
  --brand-hover: #A3DB00;
  --brand-active: #8FBF00;
  --brand-soft: rgba(183, 245, 0, .10);
  --brand-glow: rgba(183, 245, 0, .28);

  --bg-primary: #111313;
  --bg-deep: #070808;
  --bg-card: #191c1c;
  --bg-elevated: #212527;

  --text: #f5f5f5;
  --text-muted: #8d9292;
  --border: rgba(255,255,255,.09);

  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Inter", sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  pointer-events: none;
}

.nav-shell {
  width: min(1440px, calc(100% - 48px));
  margin: 16px auto 0;
  min-height: 76px;
  padding: 10px 14px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(7,8,8,.72);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 50px rgba(0,0,0,.22);
  pointer-events: auto;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.nav-shell.scrolled {
  background: rgba(7,8,8,.94);
  border-color: rgba(183,245,0,.14);
}
.brand { display: inline-flex; align-items: center; }
.nav-logo {
  width: 240px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links > a:not(.btn-cta) {
  color: #9da2a2;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 700;
  transition: color .2s ease;
}
.nav-links > a:not(.btn-cta):hover { color: var(--text); }
.btn-cta, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 9px;
  background: var(--brand);
  color: #0d1000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .09em;
  font-weight: 900;
  border: 1px solid var(--brand);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn-cta:hover, .btn-primary:hover {
  background: var(--brand-hover);
  box-shadow: 0 10px 34px var(--brand-glow);
  transform: translateY(-2px);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
  margin: 4px auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  z-index: -3;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7,8,8,.94) 0%, rgba(7,8,8,.82) 29%, rgba(7,8,8,.44) 54%, rgba(7,8,8,.16) 76%, rgba(7,8,8,.36) 100%),
    linear-gradient(180deg, rgba(7,8,8,.36) 0%, transparent 42%, rgba(7,8,8,.72) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .12;
  background-image:
    linear-gradient(rgba(183,245,0,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183,245,0,.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black 0%, transparent 48%);
}
.hero-content {
  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;
  padding-top: 124px;
}
.hero-tag, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .7rem;
  font-weight: 800;
}
.hero-tag {
  padding: 9px 13px;
  border: 1px solid rgba(183,245,0,.3);
  border-radius: 999px;
  background: rgba(7,8,8,.45);
  margin-bottom: 24px;
}
.hero-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--brand);
  transform: rotate(45deg);
}
.hero h1 {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(5rem, 10.6vw, 10rem);
  line-height: .82;
  letter-spacing: .015em;
  font-weight: 400;
}
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1.7px rgba(245,245,245,.88);
}
.lime, .hero h1 .lime { color: var(--brand); }
.hero-sub {
  width: min(540px, 100%);
  color: #a6aaaa;
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 28px 0 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-secondary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 9px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 800;
  color: #dfe2e2;
  background: rgba(7,8,8,.34);
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}
.hero-note {
  position: absolute;
  right: 40px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .62rem;
  letter-spacing: .18em;
  color: rgba(255,255,255,.48);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-note-line { width: 1px; height: 48px; background: var(--brand); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 34px 26px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: 0; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
  font-weight: 400;
}
.stat strong span { color: var(--brand); font-size: .65em; }
.stat p {
  margin-top: 8px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .68rem;
  font-weight: 700;
}

.section { padding: 110px 0; }
.section-shell { width: min(1240px, calc(100% - 64px)); margin: 0 auto; }
.section-head { margin-bottom: 40px; }
.section-head.centered { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.section-head h2, .gallery-heading h2 {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .9;
  font-weight: 400;
}
.section-head p, .gallery-heading p {
  margin-top: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: .98rem;
}

.section-services { background: var(--bg-primary); }
.services-layout {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 62px;
  align-items: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.service-card {
  min-height: 190px;
  position: relative;
  padding: 28px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183,245,0,.22);
  background: #1b1f1f;
}
.service-card:hover::after { transform: scaleX(1); }
.service-index {
  display: block;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.service-card h3 { font-size: 1rem; margin-bottom: 8px; }
.service-card p { color: var(--text-muted); font-size: .84rem; line-height: 1.6; }
.feature-photo {
  min-height: 640px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.feature-photo img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.feature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7,8,8,.92) 100%);
}
.feature-photo figcaption {
  position: absolute;
  z-index: 2;
  inset: auto 26px 26px;
}
.feature-photo figcaption span {
  color: var(--brand);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 800;
}
.feature-photo figcaption strong {
  display: block;
  margin-top: 6px;
  max-width: 330px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.plans-section {
  background:
    radial-gradient(circle at 50% -10%, rgba(183,245,0,.08), transparent 38%),
    var(--bg-deep);
  border-block: 1px solid var(--border);
}
.plans-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.plan-card {
  position: relative;
  padding: 30px 24px 24px;
  border-radius: 16px;
  background: rgba(25,28,28,.76);
  border: 1px solid var(--border);
  min-height: 430px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
}
.plan-card:hover { transform: translateY(-6px); border-color: rgba(183,245,0,.28); }
.plan-card.featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px rgba(183,245,0,.08), 0 22px 60px rgba(0,0,0,.28);
}
.plan-badge {
  position: absolute;
  top: 0;
  left: 24px;
  transform: translateY(-50%);
  background: var(--brand);
  color: #111;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.plan-top { display: flex; justify-content: space-between; align-items: center; }
.plan-name {
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .72rem;
  color: #a8adad;
  font-weight: 800;
}
.plan-code { color: #4d5353; font-family: var(--font-display); font-size: 1.4rem; }
.plan-price {
  margin-top: 34px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 4.5vw, 4.5rem);
  line-height: 1;
}
.plan-per { color: var(--text-muted); font-size: .78rem; margin-top: 3px; }
.plan-card ul { list-style: none; margin: 34px 0 28px; }
.plan-card li {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  color: #a7acac;
  font-size: .82rem;
}
.plan-card li::before { content: "↗"; color: var(--brand); margin-right: 9px; }
.btn-plan {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.13);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .7rem;
  font-weight: 800;
  transition: .2s ease;
}
.featured .btn-plan { background: var(--brand); color: #0d1000; border-color: var(--brand); }
.btn-plan:hover { border-color: var(--brand); color: var(--brand); }
.featured .btn-plan:hover { color: #0d1000; background: var(--brand-hover); }

.gallery-section { background: var(--bg-primary); }
.gallery-heading {
  display: grid;
  grid-template-columns: 1fr .52fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 46px;
}
.gallery-heading h2 span { color: var(--brand); }
.editorial-gallery {
  display: grid;
  grid-template-columns: 1.5fr .75fr .75fr;
  grid-template-rows: 280px 280px;
  gap: 10px;
}
.gallery-tile, .gallery-strip button {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  cursor: zoom-in;
}
.gallery-tile img, .gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .5s ease;
}
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,8,8,.68));
  pointer-events: none;
}
.gallery-tile span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  color: #fff;
  text-transform: uppercase;
  font-size: .65rem;
  letter-spacing: .15em;
  font-weight: 800;
}
.gallery-tile:hover img, .gallery-strip button:hover img { transform: scale(1.035); filter: brightness(1.08); }
.tile-main { grid-row: 1 / 3; }
.tile-a { grid-column: 2; grid-row: 1; }
.tile-b { grid-column: 3; grid-row: 1; }
.tile-c { grid-column: 2; grid-row: 2; }
.tile-d { grid-column: 3; grid-row: 2; }
.gallery-strip {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-strip button { height: 145px; border: 1px solid var(--border); }

.cta-section {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -3; }
.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7,8,8,.96) 0%, rgba(7,8,8,.82) 42%, rgba(7,8,8,.34) 72%, rgba(7,8,8,.48) 100%),
    linear-gradient(180deg, rgba(7,8,8,.1), rgba(7,8,8,.65));
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 9rem);
  line-height: .78;
  margin: 18px 0 24px;
  font-weight: 400;
}
.cta-content h2 span { color: var(--brand); }
.cta-content p { max-width: 490px; color: #a7acac; line-height: 1.7; margin-bottom: 28px; }

footer {
  padding: 30px max(32px, calc((100% - 1240px)/2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}
.footer-brand { display: flex; align-items: center; gap: 20px; }
.footer-brand img { width: 170px; height: auto; opacity: .86; }
.footer-brand p, .footer-links a { color: #777d7d; font-size: .72rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { text-decoration: none; transition: color .2s ease; }
.footer-links a:hover { color: var(--brand); }

.rv { opacity: 1; transform: none; }
.js .rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1);
}
.js .rv.vis { opacity: 1; transform: translateY(0); }

.lightbox {
  width: min(1180px, 94vw);
  max-width: none;
  padding: 0;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: #080909;
  box-shadow: 0 40px 120px rgba(0,0,0,.7);
}
.lightbox::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: 86vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(7,8,8,.72);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .nav-logo { width: 205px; }
  .nav-links { gap: 22px; }
  .services-layout { grid-template-columns: 1fr; }
  .feature-photo { min-height: 520px; }
  .plans-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-heading { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 760px) {
  .nav-shell {
    width: calc(100% - 24px);
    margin-top: 10px;
    min-height: 66px;
    padding: 8px 10px 8px 14px;
  }
  .nav-logo { width: 180px; max-height: 45px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 4px;
    padding: 12px;
    background: rgba(7,8,8,.97);
    border: 1px solid var(--border);
    border-radius: 14px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links > a:not(.btn-cta) { padding: 14px 10px; }
  .btn-cta { margin-top: 4px; }

  .hero-media { object-position: 57% center; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7,8,8,.94) 0%, rgba(7,8,8,.78) 68%, rgba(7,8,8,.44) 100%),
      linear-gradient(180deg, rgba(7,8,8,.24), rgba(7,8,8,.76));
  }
  .hero-grid { display: none; }
  .hero-content { width: calc(100% - 36px); padding-top: 118px; padding-bottom: 56px; }
  .hero h1 { font-size: clamp(4.4rem, 24vw, 7rem); }
  .hero-sub { font-size: .92rem; max-width: 92%; }
  .hero-note { display: none; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }

  .section { padding: 76px 0; }
  .section-shell { width: calc(100% - 36px); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .feature-photo { min-height: 430px; }

  .plans-row { grid-template-columns: 1fr; }
  .plan-card { min-height: 390px; }

  .editorial-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 190px 190px;
  }
  .tile-main { grid-column: 1 / 3; grid-row: 1; }
  .tile-a { grid-column: 1; grid-row: 2; }
  .tile-b { grid-column: 2; grid-row: 2; }
  .tile-c { grid-column: 1; grid-row: 3; }
  .tile-d { grid-column: 2; grid-row: 3; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip button { height: 130px; }

  .cta-section { min-height: 560px; }
  .cta-media { object-position: 62% center; }
  footer { flex-direction: column; align-items: flex-start; padding: 28px 18px; }
  .footer-brand { flex-direction: column; align-items: flex-start; }
}

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