:root {
  --bg: #0b0e0b;
  --bg-2: #10140f;
  --card: #141a13;
  --card-2: #182018;
  --line: rgba(242, 244, 239, 0.1);
  --line-strong: rgba(242, 244, 239, 0.2);
  --text: #f2f4ef;
  --muted: rgba(242, 244, 239, 0.64);
  --muted-2: rgba(242, 244, 239, 0.42);
  --green: #4cc35a;
  --green-bright: #66e075;
  --green-ink: #071208;
  --font-display: "Archivo Black", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --radius-lg: 28px;
  --radius-md: 18px;
  --header-space: 98px;
  --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.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: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}

p {
  margin: 0;
}

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

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
}

::selection {
  background: rgba(76, 195, 90, 0.35);
  color: var(--text);
}

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

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

.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--green);
  color: var(--green-ink);
  border-radius: 0 0 10px 10px;
  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, 8rem);
}

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

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(76, 195, 90, 0.9);
  flex: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

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

.btn--primary {
  background: var(--green);
  color: var(--green-ink);
  box-shadow: 0 18px 44px -22px rgba(76, 195, 90, 0.9);
}

.btn--primary:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 22px 52px -20px rgba(76, 195, 90, 0.95);
}

.btn--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn--dark {
  background: #0a0f0a;
  color: var(--text);
  padding-inline: 2rem;
}

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

.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 90;
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1240px;
  margin-inline: auto;
  padding: 0.55rem 0.6rem 0.55rem 1.3rem;
}

.header-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 16, 12, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled .header-inner::before {
  background: rgba(9, 12, 9, 0.92);
  border-color: var(--line-strong);
  box-shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.95);
}

.brand,
.site-nav,
.header-actions {
  position: relative;
  z-index: 3;
}

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

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

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.2vw, 1.9rem);
}

.site-nav ul a {
  position: relative;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.site-nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transition: right 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.site-nav ul a:hover::after {
  right: 0;
}

.nav-extra {
  display: none;
}

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

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.68rem 1.1rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--green-ink);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.25s ease;
}

.header-phone svg {
  width: 16px;
  height: 16px;
}

.header-phone:hover {
  background: var(--green-bright);
  transform: translateY(-1px);
}

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

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

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

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

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

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  padding-top: var(--header-space);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 12, 9, 0.97) 0%, rgba(9, 12, 9, 0.88) 34%, rgba(9, 12, 9, 0.42) 70%, rgba(9, 12, 9, 0.62) 100%),
    linear-gradient(0deg, rgba(9, 12, 9, 0.96) 0%, rgba(9, 12, 9, 0.12) 45%, rgba(9, 12, 9, 0.4) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}

.hero h1 {
  font-size: clamp(3.3rem, 11vw, 8.4rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 1.2rem 0 1.6rem;
}

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

.hero-lead {
  max-width: 52ch;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.hero-facts-wrap {
  position: relative;
  z-index: 1;
}

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

.hero-facts > div {
  padding: 1.4rem 1.6rem 1.8rem 0;
}

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

.hero-facts dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.5rem;
}

.hero-facts dd {
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.5;
}

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

.marquee {
  overflow: hidden;
  background: var(--green);
  color: var(--green-ink);
  padding-block: 1rem;
}

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

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

.marquee-group span {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.marquee-icon {
  width: 20px;
  height: 20px;
  flex: none;
}

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

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.4vw, 2rem);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.4s ease, background 0.4s ease;
}

.service:hover {
  transform: translateY(-4px);
  border-color: rgba(76, 195, 90, 0.45);
  background: var(--card-2);
}

.service--feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 540px;
  padding: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.service--feature > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service--feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 10, 7, 0.95) 0%, rgba(7, 10, 7, 0.4) 52%, rgba(7, 10, 7, 0.1) 100%);
}

.service--feature:hover > img {
  transform: scale(1.045);
}

.service-body {
  position: relative;
  z-index: 1;
  padding: clamp(1.6rem, 2.6vw, 2.4rem);
}

.service-body h3 {
  margin: 0.4rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.service-body p {
  max-width: 48ch;
  color: rgba(242, 244, 239, 0.78);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--green);
}

.service-icon {
  width: 32px;
  height: 32px;
  color: var(--muted-2);
  transition: color 0.3s ease, transform 0.4s ease;
}

.service:hover .service-icon {
  color: var(--green);
  transform: translateY(-2px);
}

.service h3 {
  margin: 1.4rem 0 0.6rem;
}

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

.stats {
  padding-block: clamp(3rem, 6vw, 4.5rem);
  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: 0.5rem clamp(1rem, 2vw, 2rem);
  border-left: 1px solid var(--line);
}

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

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.stat p {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 22ch;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.4vw, 2rem);
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(76, 195, 90, 0.7);
  margin-bottom: 2.6rem;
}

.step p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.about-copy h2 {
  margin: 0.9rem 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: 0.85fr 1.4fr;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.facts dt {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding-top: 0.12rem;
}

.facts dd {
  font-size: 0.93rem;
  font-weight: 500;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--card);
  height: clamp(250px, 28vw, 380px);
}

.gallery-item--hero {
  grid-column: 1 / -1;
  height: clamp(320px, 44vw, 540px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.4s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
  opacity: 0.92;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.6rem 1.3rem 1.1rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  background: linear-gradient(180deg, rgba(6, 9, 6, 0) 0%, rgba(6, 9, 6, 0.85) 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
  opacity: 1;
  transform: none;
}

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

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

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

.contact-phone-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.contact-phone-number {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color 0.25s ease;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem 2rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.contact-block h3 {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.6rem;
}

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

.textlink {
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid rgba(76, 195, 90, 0.5);
  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.42rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  text-align: left;
  vertical-align: top;
}

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

.hours td {
  color: var(--muted);
  text-align: right;
}

.contact-map {
  position: relative;
  min-height: 500px;
}

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

.map-note {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.6rem 1rem;
  background: rgba(9, 13, 9, 0.92);
  border-left: 3px solid var(--green);
  border-radius: 0 12px 12px 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cta-band {
  background: var(--green);
  color: var(--green-ink);
  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(1.9rem, 4.2vw, 3.4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

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

.cta-band-side p {
  margin-bottom: 1.4rem;
  color: rgba(7, 18, 8, 0.75);
  font-weight: 500;
}

.site-footer {
  background: #070907;
  padding-block: clamp(3.5rem, 6vw, 5rem) 2rem;
  color: var(--muted);
}

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

.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-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
  font-size: 0.9rem;
}

.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-size: 0.78rem;
  color: var(--muted-2);
}

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

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

.legal h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-transform: uppercase;
  margin: 1rem 0 1.6rem;
}

.legal h2 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  margin: 2.4rem 0 0.6rem;
}

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

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

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

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

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

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  width: auto;
  border-radius: 14px;
  box-shadow: 0 40px 120px -40px rgba(0, 0, 0, 0.95);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

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

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

main section[id] {
  scroll-margin-top: 112px;
}

@media (min-width: 921px) and (max-height: 880px) {
  .hero h1 {
    font-size: clamp(2.9rem, 8.6vw, 6.6rem);
  }

  .hero-lead {
    max-width: 48ch;
    font-size: 1rem;
  }
}

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

  .service--feature {
    min-height: 460px;
  }

  .service:last-child {
    grid-column: span 2;
  }

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

  .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: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: calc(var(--header-space) + 2rem) clamp(1.4rem, 6vw, 2.5rem) 3rem;
    background: rgba(8, 10, 8, 0.97);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    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;
  }

  .site-nav ul a {
    display: block;
    padding: 0.85rem 0;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 8vw, 2.6rem);
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--text);
    border-bottom: 1px solid var(--line);
  }

  .site-nav ul a::after {
    display: none;
  }

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

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

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

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

  .hero-facts > div {
    padding: 1.1rem 1.2rem 1.3rem 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;
  }

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

  .gallery-item--hero {
    grid-column: 1 / -1;
  }

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

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

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

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

  .stat:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

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

  .gallery-item {
    height: 240px;
  }

  .gallery-item--hero {
    height: 300px;
  }
}

@media (max-width: 560px) {
  :root {
    --header-space: 88px;
  }

  .header-inner {
    padding-left: 1rem;
  }

  .header-phone {
    padding: 0.7rem;
  }

  .header-phone span {
    display: none;
  }

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

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

  .service--feature,
  .service:last-child {
    grid-column: auto;
    min-height: 380px;
  }

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

  .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);
  }

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

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

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

@media (hover: none) {
  .gallery-caption {
    opacity: 1;
    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;
  }
}

.mobile-bar {
  display: none;
}

@media (max-width: 920px) {
  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 85;
    display: flex;
    gap: 0.6rem;
    padding: 0.6rem clamp(1rem, 4vw, 1.5rem);
    padding-bottom: calc(0.6rem + env(safe-area-inset-bottom));
    background: rgba(9, 12, 9, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    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: 999px;
    background: var(--green);
    color: var(--green-ink);
    font-weight: 700;
    box-shadow: 0 16px 40px -20px rgba(76, 195, 90, 0.9);
  }

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

  .mobile-bar-alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding-inline: 1.3rem;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-weight: 600;
  }

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

  .mobile-bar-alt:active {
    background: rgba(255, 255, 255, 0.08);
  }

  .site-header {
    top: calc(12px + env(safe-area-inset-top));
  }

  .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: 700px) {
  .gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    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--hero {
    flex: 0 0 84%;
    height: 300px;
    scroll-snap-align: start;
    grid-column: auto;
  }

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

@media (max-width: 560px) {
  .section {
    padding-block: 3.6rem;
  }

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

  .hero-inner {
    padding-block: 1.6rem 1rem;
  }

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

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

  .stats {
    padding-block: 2.6rem;
  }

  .marquee-group {
    gap: 1.6rem;
    padding-right: 1.6rem;
  }

  .facts > div {
    padding: 0.8rem 0;
  }

  .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;
  }

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

@media (hover: none) {
  .service:hover {
    transform: none;
    border-color: var(--line);
    background: var(--card);
  }

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

  .service--feature:hover > img {
    transform: none;
  }

  .gallery-item:hover img {
    transform: none;
    opacity: 1;
  }

  .btn:hover,
  .header-phone:hover {
    transform: none;
  }

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

  .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line-strong);
  }

  .btn--dark:hover {
    background: #0a0f0a;
  }

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

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

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

.whatsapp-float:hover {
  background: #2ee274;
  transform: translateY(-3px);
  box-shadow: 0 26px 52px -18px rgba(37, 211, 102, 1);
}

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

.mobile-bar-alt {
  gap: 0.5rem;
}

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

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

@media (max-width: 920px) {
  .whatsapp-float {
    display: none;
  }
}
