:root {
  --bg: #0b0d11;
  --bg-2: #11151b;
  --panel: #141a22;
  --panel-2: #181f29;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.12);
  --text: #f3f4f6;
  --muted: #b8c0cc;
  --gold: #f0bf3a;
  --gold-2: #ffd766;
  --paint: linear-gradient(180deg, #fff7ca, #ffd966 55%, #f0bf3a 100%);
  --blue: #1d62d8;
  --blue-2: #3281ff;
  --shadow: 0 22px 60px rgba(0,0,0,0.28);
  --radius: 26px;
  --radius-sm: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(240,191,58,0.12), transparent 20%),
    linear-gradient(180deg, #0b0d11 0%, #10141a 48%, #0b0d11 100%);
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
ul { list-style: none; }

.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.mt-3 { margin-top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 13, 17, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand { display: flex; align-items: center; gap: 0.9rem; }
.brand-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(240,191,58,0.2);
}
.brand-badge img { width: 32px; height: 32px; object-fit: contain; }
.brand-copy h1 { font-size: 1.05rem; line-height: 1; font-weight: 800; }
.brand-copy p { color: var(--muted); font-size: 0.9rem; }

.menu-toggle { display: none; }
.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  place-items: center;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  position: relative;
}
.menu-btn span::before { position: absolute; top: -7px; }
.menu-btn span::after { position: absolute; top: 7px; }

.nav-links { display: flex; align-items: center; gap: 0.45rem; }
.nav-links a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 650;
  transition: 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255,255,255,0.06);
}

.hero,
.page-hero { padding: 4rem 0 3rem; }
.section { padding: 4.5rem 0; }
.compact-top { padding-top: 1rem; }

.hero-grid,
.page-hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero-copy h2,
.page-hero h2 {
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}

.section-header h3,
.content-panel h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-copy p,
.page-hero p,
.section-header p,
.content-panel p,
.info-card p,
.gallery-copy p,
.contact-card p,
.contact-card li,
.contact-card a,
.muted-text {
  color: var(--muted);
  font-size: 1.04rem;
}

.eyebrow {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(240,191,58,0.12);
  border: 1px solid rgba(240,191,58,0.24);
  color: #ffe39a;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.8rem 0 2rem; }
.btn,
.btn-secondary {
  min-height: 52px;
  padding: 0 1.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #141414;
  box-shadow: 0 18px 38px rgba(240,191,58,0.18);
}
.btn:hover,
.btn-secondary:hover { transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
  color: white;
}

.mini-grid,
.card-grid.three-up,
.tag-row,
.list-check,
.gallery-grid {
  display: grid;
  gap: 1rem;
}
.mini-grid,
.card-grid.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tag-row { grid-template-columns: repeat(2, minmax(0, max-content)); }
.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.list-check { margin-top: 1.2rem; }
.list-check li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text);
}
.list-check li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 0.55rem;
  box-shadow: 0 0 0 5px rgba(240,191,58,0.12);
}

.mini-card,
.info-card,
.contact-card,
.video-panel,
.photo-frame,
.content-panel,
.diagram-card {
  background: linear-gradient(180deg, rgba(24,31,41,0.95), rgba(18,23,30,0.95));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-card,
.info-card,
.content-panel,
.contact-card { padding: 1.4rem; }
.info-card h4,
.contact-card h3,
.info-card h3 { font-size: 1.2rem; margin: 0.55rem 0 0.35rem; }
.icon-chip {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(240,191,58,0.16);
  border: 1px solid rgba(240,191,58,0.24);
  color: #ffe39a;
  font-weight: 800;
}
.mini-card strong { display: block; font-size: 1.1rem; margin-bottom: 0.2rem; }
.mini-card span { color: var(--muted); }

.hero-visual { min-height: 100%; }
.lot-scene,
.layout-diagram {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #20252d 0%, #161b22 100%);
  box-shadow: var(--shadow);
}
.lot-scene {
  height: 540px;
  border-radius: 30px;
}
.layout-diagram {
  height: 360px;
  border-radius: 22px;
}
.layout-diagram-service {
  height: 430px;
}
.lot-surface,
.service-surface {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,0.05), transparent 18%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04), transparent 18%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.012), rgba(255,255,255,0.012) 2px, transparent 2px, transparent 12px),
    linear-gradient(180deg, #2e333a 0%, #21262d 100%);
}
.lane {
  position: absolute;
  left: 8%;
  width: 84%;
  height: 34px;
  border-top: 3px dashed rgba(255,255,255,0.14);
  border-bottom: 3px dashed rgba(255,255,255,0.14);
}
.lane-top { top: 72px; }
.lane-bottom { bottom: 72px; }

.home-lot-core {
  position: absolute;
  inset: 24% 10%;
}
.parking-grid {
  display: grid;
  gap: 0;
  align-items: stretch;
}
.parking-grid-home {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  height: 100%;
}
.parking-space,
.service-space {
  position: relative;
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.012), rgba(255,255,255,0.022) 62%, rgba(255,255,255,0.045));
}
.home-space {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}
.home-space:not(:first-child)::before,
.home-space:not(:first-child)::after,
.service-space:not(:first-child)::before,
.service-space:not(:first-child)::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  bottom: 0;
  width: 8px;
  border-radius: 999px;
}
.home-space:not(:first-child)::before,
.service-space:not(:first-child)::before {
  background: rgba(255,255,255,0.1);
}
.home-space:not(:first-child)::after,
.service-space:not(:first-child)::after {
  background: var(--paint);
  box-shadow: 0 0 16px rgba(255,217,102,0.22);
  transform-origin: bottom center;
  transform: scaleY(0);
  animation: fillVerticalReal 26s cubic-bezier(.4,0,.2,1) infinite;
}
.parking-grid-home .parking-space:nth-child(2)::after { animation-delay: 0.8s; }
.parking-grid-home .parking-space:nth-child(3)::after { animation-delay: 1.7s; }
.parking-grid-home .parking-space:nth-child(4)::after { animation-delay: 2.6s; }
.parking-grid-home .parking-space:nth-child(5)::after { animation-delay: 3.5s; }
.parking-grid-home .parking-space:nth-child(6)::after { animation-delay: 4.4s; }

.ada-space-home,
.ada-space-service {
  background:
    repeating-linear-gradient(135deg, rgba(120,166,255,0.24) 0 10px, rgba(120,166,255,0) 10px 22px),
    linear-gradient(180deg, rgba(11,13,17,0.96), rgba(17,21,27,0.96));
  border: 1px solid rgba(132,184,255,0.28);
}
.ada-space-home + .ada-space-home {
  box-shadow:
    inset 10px 0 0 rgba(132,184,255,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.03);
}
.ada-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 8px rgba(0,0,0,0.24);
  opacity: 0;
  transform: scale(0.9);
}
.parking-grid-home .parking-space:nth-child(3) .ada-mark {
  animation: symbolReveal 26s ease-in-out infinite 5.2s;
}
.parking-grid-home .parking-space:nth-child(4) .ada-mark {
  animation: symbolReveal 26s ease-in-out infinite 5.8s;
}
.paint-sheen {
  position: absolute;
  inset: -10% auto -10% -35%;
  width: 38%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.14), rgba(255,255,255,0));
  transform: skewX(-18deg);
}
.home-sheen { animation: sheenPassReal 26s linear infinite 8.2s; }

.diagram-card { padding: 1rem; }
.service-lot-wrap {
  position: absolute;
  inset: 12% 8%;
  display: grid;
  grid-template-rows: 1fr 0.42fr 1fr 0.42fr;
  gap: 14px;
}
.service-stall-row {
  display: grid;
  align-items: stretch;
}
.service-stall-row-top {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.service-stall-row-bottom {
  grid-template-columns: 1fr 0.72fr repeat(5, minmax(0, 1fr));
}
.service-space {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}
.service-space-top:not(:first-child)::after {
  transform-origin: top center;
}
.service-stall-row-top .service-space:nth-child(2)::after { animation-delay: 0.7s; }
.service-stall-row-top .service-space:nth-child(3)::after { animation-delay: 1.3s; }
.service-stall-row-top .service-space:nth-child(4)::after { animation-delay: 1.9s; }
.service-stall-row-top .service-space:nth-child(5)::after { animation-delay: 2.5s; }
.service-stall-row-top .service-space:nth-child(6)::after { animation-delay: 3.1s; }
.service-stall-row-bottom .service-space:nth-child(3)::after { animation-delay: 5.4s; }
.service-stall-row-bottom .service-space:nth-child(4)::after { animation-delay: 6.0s; }
.service-stall-row-bottom .service-space:nth-child(5)::after { animation-delay: 6.6s; }
.service-stall-row-bottom .service-space:nth-child(6)::after { animation-delay: 7.2s; }
.service-stall-row-bottom .service-space:nth-child(7)::after { animation-delay: 7.8s; }
.service-access-zone {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(11,13,17,0.96), rgba(17,21,27,0.96));
  box-shadow:
    inset 6px 0 0 rgba(132,184,255,0.18),
    inset -6px 0 0 rgba(132,184,255,0.18);
}
.service-access-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(120,166,255,0.38) 0 10px, transparent 10px 22px);
}
.service-access-zone::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,217,102,0.92) 0 8px, rgba(255,217,102,0) 8px 22px);
  transform-origin: left center;
  transform: scaleX(0);
  animation: wipeHorizontalReal 26s cubic-bezier(.4,0,.2,1) infinite 4.7s;
}
.ada-space-service .ada-mark {
  animation: symbolReveal 26s ease-in-out infinite 5.0s;
}
.service-drive-main {
  position: relative;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border-top: 3px dashed rgba(255,255,255,0.14);
  border-bottom: 3px dashed rgba(255,255,255,0.14);
}
.drive-dashes {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 4px;
  margin-top: -2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.22) 0 20px, transparent 20px 40px);
}
.lane-arrow {
  position: absolute;
  top: 50%;
  width: 58px;
  height: 16px;
  margin-top: -8px;
  opacity: 0;
}
.lane-arrow::before,
.lane-arrow::after {
  content: "";
  position: absolute;
}
.lane-arrow::before {
  top: 5px;
  left: 0;
  right: 16px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff3ba 0%, #ffd966 55%, #efb52e 100%);
  transform-origin: left center;
  transform: scaleX(0);
}
.lane-arrow::after {
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 18px solid #ffd966;
  transform: scale(0);
  transform-origin: center;
}
.lane-arrow-service {
  margin-top: -8px;
}
.lane-arrow-s1 {
  left: 24%;
  animation: arrowReveal 26s ease-in-out infinite 8.8s;
}
.lane-arrow-s2 {
  left: 62%;
  animation: arrowReveal 26s ease-in-out infinite 9.4s;
}
.lane-arrow-s1::before,
.lane-arrow-s1::after { animation-delay: 8.8s; }
.lane-arrow-s2::before,
.lane-arrow-s2::after { animation-delay: 9.4s; }
.service-drive-main .lane-arrow::before {
  animation: arrowShaft 26s ease-in-out infinite;
}
.service-drive-main .lane-arrow::after {
  animation: arrowHead 26s ease-in-out infinite;
}
.service-fire-lane {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.service-fire-lane::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ff8f76 0%, #ef593c 48%, #c93820 100%);
  transform-origin: left center;
  transform: scaleX(0);
  animation: wipeHorizontalReal 26s cubic-bezier(.4,0,.2,1) infinite 10.1s;
}
.fire-lane-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.92);
  opacity: 0;
  z-index: 1;
  animation: symbolReveal 26s ease-in-out infinite 10.7s;
}
.service-sheen {
  animation: sheenPassReal 26s linear infinite 11.4s;
}


.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.6rem;
}
.center-header {
  text-align: center;
  margin: 0 auto;
  justify-content: center;
}
.narrow { max-width: 760px; }

.photo-frame { overflow: hidden; }
.photo-frame img,
.gallery-card img,
.video-panel video { width: 100%; height: 100%; object-fit: cover; }
.tall-photo { min-height: 420px; }
.portrait-frame { min-height: 520px; }
.map-frame { min-height: 340px; }
.process-stack {
  display: grid;
  gap: 1rem;
}
.process-card { min-height: 0; }
.video-panel { overflow: hidden; }
.video-panel video { aspect-ratio: 16 / 9; }

.contact-grid { align-items: start; }
.contact-side { display: grid; gap: 1rem; }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
input,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  color: white;
  padding: 0.95rem 1rem;
  font: inherit;
  margin-bottom: 1rem;
}
textarea { min-height: 160px; resize: vertical; }
input::placeholder,
textarea::placeholder { color: #8c96a3; }

.gallery-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(24,31,41,0.95), rgba(18,23,30,0.95));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
}
.gallery-card img { aspect-ratio: 1 / 1; }
.gallery-copy { padding: 1rem 1rem 1.2rem; }
.gallery-copy h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }

.tag {
  display: inline-flex;
  padding: 0.55rem 0.85rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2.2rem;
  margin-top: 2rem;
}
.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}
.small { color: var(--muted); }

@keyframes fillVerticalReal {
  0%, 14% { transform: scaleY(0); opacity: 0; }
  20%, 74% { transform: scaleY(1); opacity: 1; }
  80%, 84% { transform: scaleY(1); opacity: 1; }
  92%, 100% { transform: scaleY(0); opacity: 0; }
}
@keyframes arrowReveal {
  0%, 34% { opacity: 0; }
  40%, 78% { opacity: 1; }
  86%, 100% { opacity: 0; }
}
@keyframes arrowShaft {
  0%, 34% { transform: scaleX(0); opacity: 0; }
  42%, 78% { transform: scaleX(1); opacity: 1; }
  86%, 100% { transform: scaleX(0); opacity: 0; }
}
@keyframes arrowHead {
  0%, 38% { transform: scale(0); opacity: 0; }
  44%, 78% { transform: scale(1); opacity: 1; }
  86%, 100% { transform: scale(0); opacity: 0; }
}
@keyframes wipeHorizontalReal {
  0%, 14% { transform: scaleX(0); opacity: 0; }
  20%, 74% { transform: scaleX(1); opacity: 1; }
  80%, 84% { transform: scaleX(1); opacity: 1; }
  92%, 100% { transform: scaleX(0); opacity: 0; }
}
@keyframes adaReveal {
  0%, 24% { opacity: 0; }
  34%, 78% { opacity: 1; }
  86%, 100% { opacity: 0; }
}
@keyframes symbolReveal {
  0%, 30% { opacity: 0; transform: scale(0.88); }
  38%, 82% { opacity: 1; transform: scale(1); }
  90%, 100% { opacity: 0; transform: scale(0.9); }
}
@keyframes sheenPassReal {
  0%, 48% { transform: translateX(0) skewX(-18deg); opacity: 0; }
  56%, 72% { opacity: 1; }
  88%, 100% { transform: translateX(390%) skewX(-18deg); opacity: 0; }
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .contact-grid,
  .section-header,
  .mini-grid,
  .card-grid.three-up,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h2,
  .page-hero h2 { max-width: 12ch; }

  .lot-scene { height: 420px; }
  .layout-diagram { height: 320px; }
  .portrait-frame { min-height: 420px; }
  .footer-shell { flex-direction: column; }

  .menu-btn { display: grid; }
  .nav-container { position: relative; }
  .nav-links {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    min-width: 220px;
    background: #12171e;
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    padding: 0.5rem;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .menu-toggle:checked ~ .nav-links { display: flex; }
  .nav-links a { display: block; }
}

@media (max-width: 640px) {
  .hero,
  .page-hero,
  .section { padding: 3.2rem 0; }
  .nav-shell { min-height: 74px; }
  .brand-copy p { display: none; }
  .hero-copy h2,
  .page-hero h2 { font-size: 2.4rem; max-width: none; }
  .form-row { grid-template-columns: 1fr; }
  .lot-scene { height: 340px; }
  .layout-diagram { height: 280px; }
  .parking-space:not(:first-child)::before,
  .parking-space:not(:first-child)::after { width: 6px; left: -3px; }
  .ada-mark { font-size: 2rem; }
}

.portrait-frame img { object-position: center top; }
.web3-form button { cursor: pointer; }
