:root {
  --black: #020303;
  --black-2: #050607;
  --graphite: #0a0d0e;
  --card: #0d1011;
  --card-2: #111516;
  --white: #f7f8f6;
  --soft: #c7cfca;
  --muted: #8e9793;
  --line: rgba(255,255,255,.12);
  --line-soft: rgba(255,255,255,.075);
  --lime: #c7ff00;
  --lime-2: #aaff00;
  --lime-3: #dfff36;
  --lime-line: rgba(199,255,0,.78);
  --lime-soft: rgba(199,255,0,.16);
  --lime-glow: rgba(199,255,0,.36);
  --font-head: "Barlow Condensed", "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1320px;
  --header: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 0%, rgba(199,255,0,.105), transparent 28rem),
    linear-gradient(180deg, #010101 0%, #050606 45%, #020303 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.58;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 70%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin: 0; color: var(--soft); }
h1, h2, h3 { margin: 0; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .005em; line-height: .88; font-weight: 800; }
h2 { font-size: clamp(2.55rem, 4.5vw, 4.6rem); }
h3 { font-size: 1.55rem; }

.page-grid {
  width: min(var(--max), calc(100% - 70px));
  margin-inline: auto;
}
.full { grid-column: 1 / -1; }
.section-label {
  margin-bottom: 1rem;
  color: var(--lime);
  text-shadow: 0 0 14px rgba(199,255,0,.18);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}
.eyebrow {
  color: var(--lime);
  text-shadow: 0 0 14px rgba(199,255,0,.2);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.lead {
  color: var(--white);
  font-weight: 650;
  font-size: 1.06rem;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto 0;
  height: var(--header);
  padding: 0 clamp(1.5rem, 4.8vw, 5rem);
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(180deg, rgba(0,0,0,.84), rgba(0,0,0,.32) 70%, transparent);
  transition: background .2s ease, border-color .2s ease, height .2s ease;
}
.site-header.is-scrolled {
  height: 66px;
  background: rgba(2,3,3,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}
.brand { width: 146px; display: inline-flex; align-items: center; }
.brand img { width: 100%; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.15rem, 2.3vw, 2.25rem);
}
.main-nav a {
  position: relative;
  font-family: var(--font-head);
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.45rem;
  width: 100%;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.header-cta {
  min-width: 180px;
  min-height: 44px;
  padding: .68rem 1.25rem .62rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--lime-line);
  color: var(--lime);
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.header-cta:hover { background: var(--lime); color: #050606; transform: translateY(-1px); box-shadow: 0 0 24px var(--lime-glow); }
.menu-toggle { display: none; }

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  padding: .78rem 1.45rem .72rem;
  border: 1px solid transparent;
  font-family: var(--font-head);
  font-size: 1.04rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn span, .link-arrow span, .mini-arrow { transition: transform .18s ease; }
.btn:hover span, .link-arrow:hover span, .direction-card:hover .mini-arrow { transform: translateX(5px); }
.btn-lime { color: #050607; background: linear-gradient(180deg, var(--lime-3), var(--lime)); border-color: var(--lime); box-shadow: 0 0 28px rgba(199,255,0,.24); }
.btn-ghost { color: var(--white); background: rgba(0,0,0,.22); border-color: var(--lime-line); }
.btn-ghost:hover { color: #050607; background: var(--lime); border-color: var(--lime); box-shadow: 0 0 24px var(--lime-glow); }
.link-arrow {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--lime);
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.button-row { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 2rem; }

.hero {
  min-height: 632px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #020303;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-workshop-temp.jpg");
  background-size: cover;
  background-position: 63% center;
  opacity: .84;
  transform: scale(1.01);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.80) 30%, rgba(0,0,0,.34) 58%, rgba(0,0,0,.82) 100%),
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.08) 45%, rgba(0,0,0,.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(610px, calc(100% - 130px));
  margin-left: clamp(4.2rem, 8vw, 8.2rem);
  padding-top: 56px;
}
.hero-wordmark {
  margin-bottom: 1.45rem;
  font-family: var(--font-head);
  font-size: clamp(5.5rem, 10vw, 9.4rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .76;
  text-transform: none;
  text-shadow: 0 16px 45px rgba(0,0,0,.5);
}
.hero-wordmark span { color: var(--white); }
.hero-wordmark em {
  margin-left: .06em;
  color: var(--lime);
  font-style: italic;
  text-shadow: 0 0 18px rgba(199,255,0,.22);
  font-weight: 500;
  letter-spacing: -.07em;
}
.hero h1 {
  max-width: 430px;
  margin-bottom: 1.35rem;
  font-size: clamp(2.65rem, 4.4vw, 4.55rem);
  letter-spacing: .015em;
}
.hero-text {
  width: min(435px, 100%);
  color: #d7ded9;
  font-size: .99rem;
  line-height: 1.64;
}
.hero-rail {
  position: absolute;
  z-index: 3;
  left: clamp(1.65rem, 3.2vw, 3.5rem);
  top: 112px;
  bottom: 50px;
  width: 1px;
  background: linear-gradient(180deg, var(--lime), transparent 25%, transparent 72%, var(--lime));
}
.hero-rail span {
  position: absolute;
  top: 50%;
  left: -6px;
  transform: translate(-50%, -50%) rotate(-90deg);
  color: var(--lime);
  white-space: nowrap;
  font-family: var(--font-head);
  font-size: .93rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-band {
  background: #040505;
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1fr 1.45fr;
  min-height: 260px;
}
.about-title,
.about-copy {
  padding: 2.35rem 2.5rem 2.35rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-title h2 { font-size: clamp(2.4rem, 3.5vw, 3.8rem); }
.about-copy {
  padding-right: 3rem;
  border-right: 1px solid var(--line-soft);
}
.about-copy p + p { margin-top: 1rem; }
.about-image { margin: 0; min-height: 260px; border-left: 1px solid var(--line-soft); }
.image-panel { position: relative; overflow: hidden; background: #0a0d0e; }
.image-panel::after,
.mosaic-image::after,
.map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.55), transparent 55%),
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,.5));
}
.image-panel img,
.mosaic-image img,
.map-panel img { width: 100%; height: 100%; object-fit: cover; }

.directions {
  padding: 2rem 0 1.1rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #050606, #030404);
}
.direction-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .85rem;
}
.direction-card {
  min-height: 218px;
  padding: 1.45rem 1.25rem 1.15rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
    #070909;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.direction-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(183,255,0,.13), transparent 62%);
  transition: opacity .18s ease;
}
.direction-card:hover { transform: translateY(-4px); border-color: var(--lime-line); box-shadow: 0 0 0 1px rgba(199,255,0,.10), 0 0 32px rgba(199,255,0,.10); }
.direction-card:hover::before { opacity: 1; }
.direction-icon {
  width: 47px;
  height: 47px;
  color: var(--lime);
  margin-bottom: 1.15rem;
}
.direction-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.direction-card h3 {
  margin-bottom: .7rem;
  font-size: 1.55rem;
  position: relative;
  z-index: 1;
}
.direction-card p {
  color: #b9c1bc;
  font-size: .86rem;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.mini-arrow {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--lime);
  font-size: 1.55rem;
  line-height: 1;
}

.mosaic {
  background: #030404;
  border-bottom: 1px solid var(--line);
}
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
}
.mosaic-card {
  min-height: 232px;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  border-bottom: 1px solid var(--line-soft);
  background: #050606;
}
.mosaic-card:nth-child(odd) { border-right: 1px solid var(--line-soft); }
.mosaic-copy {
  padding: 2.1rem clamp(1.35rem, 2.3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mosaic-copy h2 { font-size: clamp(2rem, 2.65vw, 3rem); }
.mosaic-copy p:not(.section-label) {
  max-width: 380px;
  margin-top: 1rem;
  font-size: .91rem;
  line-height: 1.56;
}
.mosaic-image {
  min-height: 232px;
  position: relative;
  overflow: hidden;
  background: #090b0c;
}
.mosaic-image img { transition: transform .4s ease, filter .4s ease; filter: saturate(.96) contrast(1.02); }
.mosaic-card:hover .mosaic-image img { transform: scale(1.04); }

.contacts-home {
  background: #030404;
  border-bottom: 1px solid var(--line);
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  min-height: 278px;
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
}
.contacts-copy {
  padding: 2.1rem 2.1rem;
  border-right: 1px solid var(--line-soft);
}
.contacts-copy h2 { margin-bottom: 1.1rem; font-size: clamp(1.8rem, 2.35vw, 2.65rem); }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .42rem; color: var(--soft); font-size: .9rem; }
.contact-list li { display: flex; gap: .7rem; align-items: baseline; }
.contact-list span { color: var(--lime); min-width: 18px; }
.contact-list a { color: var(--soft); }
.contact-list a:hover { color: var(--lime); }
.map-panel {
  position: relative;
  display: block;
  min-height: 278px;
  border-right: 1px solid var(--line-soft);
  overflow: hidden;
  background: #080a0b;
}
.map-panel .btn {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  white-space: nowrap;
}
.map-panel:hover .btn { transform: translate(-50%, -2px); }
.contact-photo { margin: 0; min-height: 278px; }

.site-footer {
  background: #030404;
  padding: 1.1rem 0;
  color: #6d7671;
  font-size: .78rem;
}
.footer-grid { display: flex; justify-content: space-between; gap: 1rem; }
.heart { color: var(--lime); }

/* Inner pages */
.page-hero {
  min-height: 420px;
  padding: 150px 0 80px;
  position: relative;
  border-bottom: 1px solid var(--line);
  background: #020303;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.5), rgba(0,0,0,.85)),
    var(--page-image, url("assets/detail-temp.jpg"));
  background-size: cover;
  background-position: center;
  opacity: .92;
}
.page-hero .page-grid { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(4rem, 10vw, 8rem); }
.page-hero p:not(.section-label) { max-width: 650px; margin-top: 1.3rem; font-size: 1.05rem; line-height: 1.65; }
.content-section { padding: 4rem 0; border-bottom: 1px solid var(--line); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.info-card {
  min-height: 220px;
  padding: 2rem;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
}
.info-card h2 { font-size: 2.35rem; margin-bottom: 1rem; }
.info-card p { line-height: 1.65; }
.cta-band { padding: 3rem 0; background: #050606; border-bottom: 1px solid var(--line); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.cta-inner h2 { font-size: clamp(2.3rem, 4vw, 4rem); }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 160px 1fr auto; padding-inline: 2rem; }
  .main-nav { gap: 1rem; }
  .main-nav a { font-size: .95rem; }
  .direction-row { grid-template-columns: repeat(3, 1fr); }
  .mosaic-grid { grid-template-columns: 1fr; }
  .mosaic-card:nth-child(odd) { border-right: 0; }
  .contacts-grid { grid-template-columns: 1fr; }
  .contacts-copy, .map-panel { border-right: 0; border-bottom: 1px solid var(--line-soft); }
}

@media (max-width: 920px) {
  :root { --header: 70px; }
  .page-grid { width: min(100% - 40px, var(--max)); }
  .site-header { grid-template-columns: 145px auto; }
  .main-nav,
  .header-cta {
    display: none;
  }
  .site-header.menu-open .main-nav,
  .site-header.menu-open .header-cta {
    display: flex;
  }
  .site-header.menu-open {
    height: auto;
    min-height: 100svh;
    align-items: start;
    grid-template-columns: 1fr auto;
    grid-template-rows: var(--header) auto auto;
    background: rgba(2,3,3,.97);
  }
  .site-header.menu-open .brand { align-self: center; }
  .site-header.menu-open .menu-toggle { align-self: center; }
  .site-header.menu-open .main-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem 0;
    gap: 1.2rem;
  }
  .site-header.menu-open .main-nav a { font-size: 2rem; }
  .site-header.menu-open .header-cta { grid-column: 1 / -1; width: max-content; margin-bottom: 2rem; }
  .menu-toggle {
    display: inline-grid;
    gap: 7px;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--lime-line);
    background: rgba(0,0,0,.3);
  }
  .menu-toggle span { width: 18px; height: 2px; background: var(--lime); display: block; }
  .hero { min-height: 720px; align-items: end; padding-bottom: 3.5rem; }
  .hero-content { width: min(100% - 68px, 560px); margin-left: 34px; padding-top: 90px; }
  .hero-rail { display: none; }
  .hero-wordmark { font-size: clamp(4.8rem, 18vw, 7.2rem); }
  .about-grid { grid-template-columns: 1fr; }
  .about-title, .about-copy { padding: 2rem 0; border-right: 0; }
  .about-image { border-left: 0; min-height: 260px; }
  .mosaic-card { grid-template-columns: 1fr; }
  .mosaic-image { min-height: 240px; order: -1; }
  .content-grid { grid-template-columns: 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  .page-grid { width: min(100% - 28px, var(--max)); }
  .site-header { padding-inline: 1rem; }
  .brand { width: 124px; }
  .hero { min-height: 660px; }
  .hero-content { width: calc(100% - 28px); margin-left: 14px; }
  .hero-photo { background-position: 68% center; }
  .hero-wordmark { margin-bottom: 1.1rem; font-size: clamp(4.2rem, 21vw, 6rem); }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 3.4rem); }
  .button-row { gap: .8rem; }
  .btn { width: 100%; }
  .direction-row { grid-template-columns: 1fr; }
  .direction-card { min-height: 182px; }
  .mosaic-copy { padding: 1.65rem 1.35rem; }
  .contacts-copy { padding: 1.6rem 1.2rem; }
  .footer-grid { flex-direction: column; }
}
