:root {
  --bg-deep: #1a1a1b;
  --bg-navy: #242b33;
  --bg-navy-top: #1a242f;
  --bg-charcoal: #121212;
  --concrete: #5e6266;
  --text: #e0e6ed;
  --text-muted: rgba(224, 230, 237, 0.72);
  --line: rgba(224, 230, 237, 0.12);
  --amber: #ffb400;
  --amber-deep: #d99100;
  --orange-edge: #e67e22;
  --amber-glow: rgba(255, 180, 0, 0.45);
  --shadow-deep: rgba(0, 0, 0, 0.55);
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Bebas Neue", "Inter", sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 128px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.45s var(--ease-out);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-navy-top) 0%, var(--bg-charcoal) 48%, #0b0c0f 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body.intro-active {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--amber);
  color: #111;
  padding: 0.75rem 1rem;
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

.small {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Intro animation */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 180, 0, 0.14), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(230, 126, 34, 0.1), transparent 45%),
    linear-gradient(135deg, #0d1117 0%, #131820 52%, #0b0c0f 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s var(--ease-out);
}

.intro.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.intro__inner {
  text-align: center;
  padding: 1rem;
}

.intro__logo {
  width: clamp(120px, 20vw, 180px);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.55));
  animation: intro-pop 1.2s var(--ease-out) both;
}

.intro__title {
  margin: 0.6rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  animation: intro-fade-up 1s var(--ease-out) 0.2s both;
}

.intro__line {
  width: min(260px, 65vw);
  height: 4px;
  margin-inline: auto;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 180, 0, 0.2), var(--amber), var(--orange-edge), rgba(255, 180, 0, 0.2));
  background-size: 220% 100%;
  animation: intro-line-sweep 1.6s ease-in-out infinite;
}

@keyframes intro-pop {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  70% {
    opacity: 1;
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes intro-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intro-line-sweep {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(26, 36, 47, 0.92) 0%, rgba(18, 18, 18, 0.88) 100%);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px var(--shadow-deep);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-right: auto;
  margin-left: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo__img {
  width: 156px;
  height: 156px;
  margin-top: 10px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 30%, #ffc107 0%, var(--orange-edge) 70%, #8a4a12 100%);
  box-shadow: 0 0 24px var(--amber-glow);
}

.logo__text strong {
  color: var(--amber);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(18, 18, 18, 0.6);
  cursor: pointer;
  padding: 0;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-top: 0;
}

.site-nav__list {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav__list a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding-block: 0.25rem;
  transition: color 0.25s;
}

.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--orange-edge));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
  color: var(--text);
}

.site-nav__list a:hover::after,
.site-nav__list a:focus-visible::after {
  transform: scaleX(1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.35s, filter 0.25s;
  text-align: center;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  color: #111;
  background: radial-gradient(circle at 30% 30%, #ffc107 0%, var(--amber) 38%, var(--orange-edge) 100%);
  box-shadow: 0 0 0 1px rgba(255, 193, 7, 0.35), 0 18px 40px rgba(230, 126, 34, 0.35);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  filter: brightness(1.08);
  box-shadow: 0 0 0 1px rgba(255, 193, 7, 0.55), 0 0 32px var(--amber-glow), 0 22px 50px rgba(230, 126, 34, 0.45);
}

.btn--ghost {
  color: var(--text);
  background: rgba(224, 230, 237, 0.06);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: rgba(255, 180, 0, 0.45);
  box-shadow: 0 0 24px rgba(255, 180, 0, 0.12);
}

.btn--nav {
  padding-inline: 1.1rem;
  font-size: 0.875rem;
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-block: calc(var(--header-h) + 3rem) 4rem;
  overflow: clip;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.05);
  will-change: transform;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18, 18, 18, 0.92) 0%, rgba(26, 36, 47, 0.55) 45%, rgba(18, 18, 18, 0.88) 100%),
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(255, 180, 0, 0.12), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 180, 0, 0.35);
  border-radius: 999px;
  background: rgba(255, 180, 0, 0.08);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 8vw, 6.25rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  background: linear-gradient(90deg, var(--text) 0%, var(--amber) 45%, var(--orange-edge) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__scroll {
  margin-top: 3rem;
  width: 26px;
  height: 42px;
  border: 2px solid var(--line);
  border-radius: 20px;
  position: relative;
  opacity: 0.85;
}

.hero__scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--amber);
  border-radius: 4px;
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%,
  100% {
    opacity: 0.2;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(12px);
  }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stats */
.strip {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(36, 43, 51, 0.75) 0%, rgba(18, 18, 18, 0.9) 50%, rgba(36, 43, 51, 0.75) 100%);
  backdrop-filter: blur(10px);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-block: 2.25rem;
}

.stat {
  text-align: center;
  padding-inline: 0.5rem;
}

.stat__value,
.stat__suffix {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--text);
  letter-spacing: 0.04em;
}

.stat__suffix {
  margin-left: 0.1em;
  color: var(--amber);
}

.stat__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding-block: 5rem;
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 12px);
}

#hero {
  scroll-margin-top: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.section-head {
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.section-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: start;
}

.about__media {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px var(--shadow-deep);
}

.about__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.92) 0%, rgba(36, 43, 51, 0.85) 100%);
  border: 1px solid var(--line);
  display: grid;
  gap: 0.25rem;
}

.about__badge-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
}

.about__badge-title {
  font-weight: 600;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.65rem;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text-muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--amber), var(--orange-edge));
  box-shadow: 0 0 12px var(--amber-glow);
}

.about__mini-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about__mini-gallery img {
  border-radius: var(--radius);
  height: 160px;
  object-fit: cover;
  border: 1px solid var(--line);
}

/* Services */
.services {
  background: linear-gradient(180deg, transparent 0%, rgba(26, 36, 47, 0.35) 50%, transparent 100%);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 240px;
  border: 1px solid var(--line);
  isolation: isolate;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--card-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease-out);
  z-index: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(18, 18, 18, 0.2) 0%, rgba(18, 18, 18, 0.92) 65%, rgba(11, 12, 15, 0.98) 100%);
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px var(--shadow-deep), 0 0 40px rgba(255, 180, 0, 0.08);
}

.service-card:hover::before {
  transform: scale(1.08);
}

.service-card__inner {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
}

.service-card__inner h3 {
  margin: 0;
  font-size: 1.35rem;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.service-card__inner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Gallery */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery__item {
  position: relative;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: #0b0c0f;
  aspect-ratio: 4/3;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.gallery__item:hover img,
.gallery__item:focus-visible img {
  transform: scale(1.06);
}

.gallery__item:hover,
.gallery__item:focus-visible {
  box-shadow: 0 0 0 1px rgba(255, 180, 0, 0.35), 0 18px 40px var(--shadow-deep);
}

.gallery__zoom {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.45));
  opacity: 0;
  transition: opacity 0.35s;
}

.gallery__item:hover .gallery__zoom,
.gallery__item:focus-visible .gallery__zoom {
  opacity: 1;
}

.gallery__zoom::after {
  content: "+";
  position: absolute;
  right: 12px;
  bottom: 8px;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--amber);
  text-shadow: 0 0 20px var(--amber-glow);
}

/* Why */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.why__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.why__item {
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(36, 43, 51, 0.4) 0%, rgba(18, 18, 18, 0.85) 100%);
  transition: border-color 0.35s, transform 0.35s var(--ease-out);
}

.why__item:hover {
  border-color: rgba(255, 180, 0, 0.35);
  transform: translateX(6px);
}

.why__index {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--amber);
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.why__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
}

.why__item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* SEO content */
.seo-content__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.seo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(36, 43, 51, 0.45) 0%, rgba(18, 18, 18, 0.92) 100%);
  padding: 1.5rem;
}

.seo-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
}

.seo-card p {
  margin: 0;
  color: var(--text-muted);
}

.faq__list {
  display: grid;
  gap: 0.85rem;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(224, 230, 237, 0.03);
  padding: 1rem 1rem;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
}

.faq__item p {
  color: var(--text-muted);
  margin: 0.75rem 0 0;
}

/* CTA band */
.cta-band {
  position: relative;
  padding-block: 4rem;
  overflow: hidden;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(26, 36, 47, 0.95) 0%, rgba(18, 18, 18, 0.98) 40%, rgba(230, 126, 34, 0.15) 100%);
}

.cta-band__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 48px,
    rgba(224, 230, 237, 0.04) 48px,
    rgba(224, 230, 237, 0.04) 49px
  );
  opacity: 0.6;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.25rem 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(36, 43, 51, 0.55) 0%, rgba(18, 18, 18, 0.75) 100%);
  box-shadow: 0 30px 80px var(--shadow-deep);
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.cta-band__text {
  margin: 0;
  color: var(--text-muted);
  max-width: 420px;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact__lead {
  color: var(--text-muted);
  margin-top: 0;
}

.contact__cards {
  display: grid;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.contact-card {
  display: block;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(224, 230, 237, 0.04);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
}

.contact-card:hover {
  border-color: rgba(255, 180, 0, 0.4);
  box-shadow: 0 0 28px rgba(255, 180, 0, 0.12);
  transform: translateY(-2px);
}

.contact-card--accent {
  border-color: rgba(37, 211, 102, 0.45);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(18, 18, 18, 0.9) 100%);
}

.contact-card__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-card__value {
  font-size: 1.25rem;
  font-weight: 600;
}

.contact__note {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.contact__form {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(36, 43, 51, 0.45) 0%, rgba(18, 18, 18, 0.95) 100%);
}

.form-row {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.form-row label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(11, 12, 15, 0.85);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(255, 180, 0, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 180, 0, 0.12);
}

.form-hint {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 2.5rem;
  background: #0b0c0f;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo__text--footer strong {
  color: var(--amber);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-footer__nav a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: color 0.25s;
}

.site-footer__nav a:hover {
  color: var(--amber);
}

/* FAB WhatsApp */
.fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 120;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, #5fe077 0%, #25d366 45%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.fab:hover {
  transform: scale(1.06);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 6, 8, 0.92);
  display: grid;
  place-items: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__img {
  max-width: min(1100px, 100%);
  max-height: min(88vh, 100%);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 40px 100px var(--shadow-deep);
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(18, 18, 18, 0.85);
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}

.lightbox__close:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* Responsive */
@media (max-width: 960px) {
  .about__grid,
  .why__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__media img {
    aspect-ratio: 16/10;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .stat {
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 0.75rem;
    align-items: baseline;
  }

  .stat__label {
    grid-column: 1 / -1;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .seo-content__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .logo {
    margin-left: 0;
  }

  .logo__img {
    width: 114px;
    height: 114px;
    margin-top: 8px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 1rem;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.98) 0%, rgba(26, 36, 47, 0.98) 100%);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s var(--ease-out), opacity 0.35s;
  }

  .header__inner {
    min-height: auto;
    align-items: center;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn--nav {
    width: 100%;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .cta-band__inner {
    padding: 1.75rem;
  }
}
