:root {
  --bg: #0a0c0a;
  --panel: #101410;
  --line: rgba(238, 240, 234, 0.13);
  --line-soft: rgba(238, 240, 234, 0.07);
  --text: #eef0ea;
  --muted: rgba(238, 240, 234, 0.58);
  --muted-2: rgba(238, 240, 234, 0.38);
  --green: #4cc35a;
  --green-bright: #66e075;
  --green-ink: #08130a;
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  --header-h: 68px;
  --shell-max: 1180px;
  --shell-wide: 1400px;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 114%;
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.5rem);
}

h3 {
  margin: 0;
  font-weight: 600;
  overflow-wrap: break-word;
}

p {
  margin: 0;
}

ul,
ol,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--green);
  color: var(--green-ink);
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.9em;
  letter-spacing: 0.04em;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  z-index: 600;
  padding: 0.6rem 1rem;
  background: var(--green);
  color: var(--green-ink);
  border-radius: 0 0 2px 2px;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.shell {
  width: 100%;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.shell--wide {
  max-width: var(--shell-wide);
}

.section {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.section-head {
  max-width: 700px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-head h2 {
  margin-top: 1.1rem;
}

.section-lead {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  color: var(--muted);
  max-width: 54ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow-index,
.eyebrow-dot {
  flex: none;
  width: 7px;
  height: 7px;
  background: var(--green);
  color: transparent;
  overflow: hidden;
}

.eyebrow-index {
  width: auto;
  height: auto;
  background: none;
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn--primary {
  background: var(--green);
  color: var(--green-ink);
}

.btn--primary::after {
  content: "→";
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0;
}

.btn--primary:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: var(--line);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--bg);
  color: var(--text);
  padding-inline: 1.8rem;
}

.btn--dark:hover {
  background: #12160f;
  transform: translateY(-2px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(10, 12, 10, 0.94);
  border-bottom: 1px solid var(--line);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex: none;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.1rem);
}

.site-nav ul a {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav ul a:hover {
  color: var(--text);
  border-bottom-color: var(--green);
}

.nav-extra {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand,
.header-actions {
  position: relative;
  z-index: 86;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--text);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.header-phone::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

.header-phone svg {
  display: none;
}

.header-phone:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--green-ink);
}

.header-phone:hover::before {
  background: var(--green-ink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body.nav-open .nav-toggle span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 2rem);
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
  padding-block: clamp(1.5rem, 4vw, 3rem);
}

.hero h1 {
  font-size: clamp(2.9rem, 9vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 1.3rem 0 1.5rem;
}

.hero-line {
  display: block;
}

.hero-line--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(238, 240, 234, 0.85);
}

.hero-line--serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-stretch: normal;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 1.08em;
  line-height: 1;
}

@supports not (-webkit-text-stroke: 1px #000) {
  .hero-line--outline {
    color: var(--text);
  }
}

.accent {
  color: var(--green);
}

.hero-lead {
  max-width: 50ch;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2.1rem;
}

.hero-media {
  position: relative;
  margin: 0;
  height: clamp(320px, 56vh, 640px);
  border: 1px solid var(--line);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.hero-media figcaption {
  position: absolute;
  left: -1px;
  bottom: -1px;
  padding: 0.55rem 0.85rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 2px solid var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-facts-wrap {
  padding-bottom: 0;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-facts > div {
  padding: 1.3rem 1.5rem 1.4rem 0;
}

.hero-facts > div + div {
  border-left: 1px solid var(--line);
  padding-left: 1.5rem;
}

.hero-facts dt {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.55rem;
}

.hero-facts dd {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.hero-facts a:hover {
  color: var(--green);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 0.85rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 44s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  padding-right: 2.6rem;
}

.marquee-group span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  white-space: nowrap;
}

.marquee-icon {
  width: 13px;
  height: 13px;
  flex: none;
  color: var(--muted-2);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1.05fr) minmax(0, 1.1fr) 2rem;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  padding: 1.7rem 1rem;
  margin-inline: -1rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}

.service-main {
  display: contents;
}

.service-row p {
  padding-top: 0.45rem;
}

.service-row:hover {
  background: var(--panel);
}

.service-index {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--green);
}

.service-main h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(1.18rem, 1.9vw, 1.6rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  transition: color 0.25s ease;
}

.service-row:hover .service-main h3 {
  color: var(--green);
}

.service-row p {
  font-size: 0.94rem;
  color: var(--muted);
}

.service-arrow {
  justify-self: end;
  font-family: var(--font-mono);
  color: var(--muted-2);
  transition: transform 0.3s ease, color 0.25s ease;
}

.service-row:hover .service-arrow {
  color: var(--green);
  transform: translateX(6px);
}

.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat {
  padding: 2.6rem 1.6rem 2.6rem 0;
  border-left: 1px solid var(--line);
  padding-left: 1.6rem;
}

.stat:first-child {
  border-left: 0;
  padding-left: 0;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 114%;
  font-size: clamp(2.8rem, 5.6vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.stat p {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 24ch;
  line-height: 1.7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.step {
  border-top: 2px solid var(--green);
  padding-top: 1.4rem;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--green);
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 1rem 0 0.6rem;
}

.step p {
  font-size: 0.94rem;
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.about-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  margin: 1.1rem 0 1.3rem;
}

.about-copy > p {
  color: var(--muted);
  max-width: 58ch;
}

.about-copy > p + p {
  margin-top: 1rem;
}

.facts {
  border-top: 1px solid var(--line);
}

.facts > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.75fr) 1.4fr;
  gap: 1rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line);
}

.facts dt {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding-top: 0.2rem;
}

.facts dd {
  font-size: 0.92rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(150px, 15vw, 215px);
  gap: 10px;
}

.gallery-item {
  position: relative;
  display: block;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--panel);
}

.gallery-item--tall {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-item:not(.gallery-item--tall) {
  grid-column: span 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.04);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.03);
}

.gallery-caption {
  position: absolute;
  left: -1px;
  bottom: -1px;
  padding: 0.45rem 0.7rem;
  background: rgba(10, 12, 10, 0.88);
  border: 1px solid var(--line);
  border-left: 2px solid var(--green);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: stretch;
}

.contact-info h2 {
  margin: 1.1rem 0 0;
}

.contact-phone {
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 2rem 0 2.4rem;
}

.contact-phone-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.contact-phone-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(1.7rem, 3.1vw, 2.6rem);
  letter-spacing: -0.015em;
  line-height: 1;
  transition: color 0.25s ease;
}

.contact-phone:hover .contact-phone-number {
  color: var(--green);
}

.contact-grid {
  border-top: 1px solid var(--line);
}

.contact-block {
  display: grid;
  grid-template-columns: minmax(140px, 0.7fr) minmax(0, 1.3fr);
  gap: 1.5rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-block h3 {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding-top: 0.2rem;
}

.contact-block p {
  font-size: 0.94rem;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.contact-block p + p {
  margin-top: 0.45rem;
}

.textlink {
  color: var(--text);
  border-bottom: 1px solid rgba(76, 195, 90, 0.55);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.textlink:hover {
  color: var(--green);
  border-color: var(--green);
}

.hours {
  width: 100%;
  border-collapse: collapse;
}

.hours th,
.hours td {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.88rem;
  text-align: left;
  vertical-align: top;
}

.hours tr:last-child th,
.hours tr:last-child td {
  border-bottom: 0;
}

.hours th {
  font-weight: 500;
  color: var(--text);
}

.hours td {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: right;
}

.contact-map {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: grayscale(0.4) invert(0.92) hue-rotate(180deg) contrast(0.92) brightness(0.95);
}

.map-note {
  position: absolute;
  left: -1px;
  bottom: -1px;
  padding: 0.5rem 0.8rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 2px solid var(--green);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.cta-band {
  background: var(--green);
  color: var(--green-ink);
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.cta-band-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  line-height: 0.98;
}

.cta-band-side {
  max-width: 380px;
}

.cta-band-side p {
  margin-bottom: 1.4rem;
  color: rgba(8, 19, 10, 0.78);
  font-weight: 500;
}

.btn--dark {
  border-color: transparent;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #070907;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.2fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
}

.footer-brand .brand-name {
  color: var(--text);
}

.footer-brand p {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  max-width: 34ch;
  line-height: 1.6;
  color: var(--muted);
}

.footer-col h3 {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.footer-col a {
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 2rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.legal {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.legal .shell {
  max-width: 780px;
}

.legal h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.3rem);
  margin: 1.1rem 0 1.6rem;
}

.legal h2 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 2.4rem 0 0.6rem;
}

.legal p {
  color: var(--muted);
  font-size: 0.96rem;
}

.legal p + p {
  margin-top: 1rem;
}

.footer-legal--top {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.footer-legal--top a:hover {
  color: var(--green);
}

@media (min-width: 921px) {
  .footer-legal {
    padding-right: 5rem;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 520;
  display: none;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(5, 7, 5, 0.95);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  width: auto;
  border: 1px solid var(--line);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.lightbox-close:hover {
  border-color: var(--green);
  color: var(--green);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

main section[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.mobile-bar {
  display: none;
}

.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.6rem);
  bottom: clamp(1rem, 3vw, 1.6rem);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 18px 40px -20px rgba(37, 211, 102, 0.95);
  transition: transform 0.25s ease, background 0.25s ease;
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.whatsapp-float:hover {
  background: #2ee274;
  transform: translateY(-3px);
}

.whatsapp-float:active {
  transform: scale(0.96);
}

.region-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.region-copy h2 {
  margin: 1.1rem 0 1.3rem;
}

.region-copy .section-lead {
  margin-top: 0;
}

.region-note {
  margin-top: 1.1rem;
  font-size: 0.92rem;
  color: var(--muted-2);
  max-width: 58ch;
}

.region-area {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.region-area h3 {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1.2rem;
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.region-list li {
  padding: 0.42rem 0.72rem;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.region-list li.is-home {
  border-color: var(--green);
  color: var(--green);
}

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::marker {
  content: "";
}

.faq summary::after {
  content: "+";
  flex: none;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--green);
}

.faq details[open] summary::after {
  content: "–";
}

.faq summary:hover {
  color: var(--green);
}

.faq-answer {
  padding: 0 0 1.4rem;
  max-width: 72ch;
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 920px) {
  .region-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 921px) and (max-width: 1120px) {
  .site-nav ul {
    gap: 1rem;
  }

  .site-nav ul a {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 1080px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-col:last-child {
    grid-column: 2 / 3;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 85;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: calc(var(--header-h) + 2rem) clamp(1.4rem, 6vw, 2.5rem) 2.5rem;
    background: #090b09;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    overflow-y: auto;
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .site-nav ul a {
    display: block;
    padding: 0.9rem 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-stretch: 112%;
    font-size: clamp(1.6rem, 7.6vw, 2.4rem);
    letter-spacing: -0.015em;
    text-transform: uppercase;
    color: var(--text);
    border-bottom: 1px solid var(--line);
  }

  .site-nav ul a:hover {
    color: var(--green);
    border-bottom-color: var(--line);
  }

  .nav-extra {
    display: grid;
    gap: 0.4rem;
    margin-top: auto;
    font-size: 0.9rem;
    color: var(--muted);
    overflow-wrap: anywhere;
  }

  .nav-extra-phone {
    font-family: var(--font-display);
    font-weight: 800;
    font-stretch: 110%;
    font-size: 1.3rem;
    color: var(--green);
  }

  .nav-extra-mail {
    color: var(--text);
  }

  .nav-extra-wa {
    color: #25d366;
    font-weight: 600;
  }

  .hero {
    padding-top: calc(var(--header-h) + 1.5rem);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
    height: 42svh;
    min-height: 260px;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-facts > div {
    padding: 1.1rem 1.2rem 1.2rem 0;
  }

  .hero-facts > div + div {
    padding-left: 1.2rem;
  }

  .hero-facts > div:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 380px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-col:last-child {
    grid-column: auto;
  }

  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 88;
    display: flex;
    gap: 0.5rem;
    padding: 0.55rem clamp(0.9rem, 4vw, 1.4rem);
    padding-bottom: calc(0.55rem + env(safe-area-inset-bottom));
    background: rgba(9, 11, 9, 0.97);
    border-top: 1px solid var(--line);
  }

  .mobile-bar-call {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 50px;
    border-radius: 2px;
    background: var(--green);
    color: var(--green-ink);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-bar-call svg {
    width: 17px;
    height: 17px;
  }

  .mobile-bar-alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 50px;
    padding-inline: 1.1rem;
    border: 1px solid var(--line);
    border-radius: 2px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-bar-alt svg {
    width: 17px;
    height: 17px;
    fill: #25d366;
  }

  .mobile-bar-call:active {
    background: var(--green-bright);
  }

  body.nav-open .mobile-bar {
    display: none;
  }

  .mobile-bar-alt:active {
    border-color: var(--green);
  }

  .whatsapp-float {
    display: none;
  }

  .site-footer {
    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom));
  }

  .lightbox {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 760px) {
  .service-row {
    grid-template-columns: 2.6rem minmax(0, 1fr);
    grid-template-areas:
      "i t"
      ". p";
    row-gap: 0.5rem;
    padding: 1.4rem 0;
    margin-inline: 0;
  }

  .service-index {
    grid-area: i;
  }

  .service-main h3 {
    grid-area: t;
  }

  .service-main p {
    grid-area: p;
    max-width: 60ch;
  }

  .service-arrow {
    display: none;
  }

  .gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-auto-rows: auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
    margin-inline: calc(-1 * clamp(1.25rem, 4vw, 2.5rem));
    scroll-padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  }

  .gallery::-webkit-scrollbar {
    display: none;
  }

  .gallery-item,
  .gallery-item--tall {
    flex: 0 0 82%;
    height: 280px;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 62px;
  }

  .header-phone {
    padding: 0.7rem;
  }

  .header-phone span {
    display: none;
  }

  .header-phone::before {
    display: none;
  }

  .header-phone svg {
    display: block;
    width: 18px;
    height: 18px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .section {
    padding-block: 3.6rem;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .hero h1 {
    margin: 1.1rem 0 1.2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.7rem;
  }

  .hero-cta .btn {
    justify-content: center;
    min-height: 52px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts > div,
  .hero-facts > div + div,
  .hero-facts > div:nth-child(3) {
    border-left: 0;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-facts > div:last-child {
    border-bottom: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0;
  }

  .stat {
    border-bottom: 1px solid var(--line);
    padding: 1.8rem 1.2rem 1.8rem 0;
  }

  .stat:nth-child(2n) {
    padding-left: 1.2rem;
  }

  .stat:nth-child(2n + 1) {
    border-left: 0;
    padding-left: 0;
  }

  .stat p {
    margin-top: 0.7rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step {
    padding: 1.4rem 0 1.6rem;
    border-top-width: 1px;
  }

  .step:first-child {
    border-top-width: 2px;
  }

  .facts > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .contact-block {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .contact-phone {
    margin: 1.6rem 0 2rem;
  }

  .cta-band-inner {
    align-items: stretch;
  }

  .cta-band-side {
    max-width: none;
  }

  .cta-band .btn--dark {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .legal {
    padding-top: calc(var(--header-h) + 2rem);
  }
}

@media (max-width: 430px) {
  .site-header .brand-name {
    display: none;
  }
}

@media (hover: none) {
  .service-row:hover {
    background: transparent;
  }

  .service-row:hover .service-main h3 {
    color: var(--text);
  }

  .service-row:hover .service-arrow {
    color: var(--muted-2);
    transform: none;
  }

  .gallery-item:hover img {
    filter: grayscale(0.55) contrast(1.04);
    transform: none;
  }

  .btn:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
