:root {
  --ink: #0a0a0a;
  --night: #10100f;
  --night-2: #171310;
  --paper: #fff8ef;
  --paper-2: #f7efe3;
  --white: #ffffff;
  --muted: #6f675d;
  --muted-dark: #c8beb1;
  --orange: #f59a2e;
  --orange-2: #ffd37a;
  --teal: #00b39b;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(17, 17, 17, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--night);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 1rem;
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 0.75rem 1rem;
  color: var(--white);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 900;
}

.brand__mark {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid rgba(255, 211, 122, 0.55);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #090909;
  box-shadow: 0 0 32px rgba(245, 154, 46, 0.46);
}

.brand__text {
  font-size: 1.05rem;
}

.nav {
  display: none;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--orange-2);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-cta svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 88svh;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-h) + 3.5rem) 0 7.4rem;
  background-image:
    linear-gradient(180deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.73) 44%, rgba(5, 5, 5, 0.97)),
    url("../images/flyer.jpg");
  background-position: center top;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: auto -20% -18% -20%;
  z-index: -1;
  height: 44%;
  content: "";
  background:
    repeating-linear-gradient(100deg, transparent 0 44px, rgba(245, 154, 46, 0.3) 45px 47px, transparent 49px 88px),
    linear-gradient(90deg, transparent, rgba(245, 154, 46, 0.42), transparent);
  filter: blur(1px);
  opacity: 0.7;
  transform: rotate(-5deg);
  animation: trailMove 8s linear infinite;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255, 211, 122, 0.15), transparent 36%),
    linear-gradient(90deg, rgba(0, 179, 155, 0.13), transparent 28%);
}

.hero__road {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, transparent 0 55%, rgba(255, 211, 122, 0.16) 56%, transparent 58%),
    linear-gradient(120deg, transparent 0 64%, rgba(245, 154, 46, 0.24) 65%, transparent 68%);
  opacity: 0.9;
  transform: translate3d(var(--road-x, 0), var(--road-y, 0), 0);
  transition: transform 250ms ease-out;
}

.hero__content {
  width: min(760px, calc(100% - 32px));
  margin-inline: auto;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.64);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--orange-2);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 11ch;
  font-size: 3rem;
  font-weight: 950;
}

h2 {
  color: inherit;
  font-size: 2.25rem;
  font-weight: 900;
}

h3 {
  font-size: 1.18rem;
  font-weight: 900;
}

.hero__lead {
  max-width: 38rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 248, 239, 0.9);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.82rem 1.05rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(255, 211, 122, 0.16), 0 18px 44px rgba(245, 154, 46, 0.34);
}

.btn--secondary {
  border-color: rgba(10, 10, 10, 0.18);
  background: var(--white);
  color: var(--ink);
}

.section--dark .btn--secondary,
.hero .btn--secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.hero__facts {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.35rem;
  color: rgba(255, 248, 239, 0.86);
  font-weight: 800;
}

.hero__facts span {
  border-left: 3px solid var(--orange);
  padding-left: 0.75rem;
}

.scroll-cue {
  position: absolute;
  right: 1.2rem;
  bottom: 1.4rem;
  display: grid;
  width: 2.25rem;
  height: 3.4rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.scroll-cue span {
  display: block;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--orange-2);
  animation: scrollDot 1.55s ease-in-out infinite;
}

.section {
  padding: 4.5rem 0;
}

.section--light {
  background: var(--paper);
  color: var(--ink);
}

.section--light .eyebrow {
  color: #a85b00;
}

.section--dark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(245, 154, 46, 0.12), transparent 38%),
    linear-gradient(180deg, var(--night), var(--night-2));
  color: var(--paper);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 2rem;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.about {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about__copy p:not(.eyebrow) {
  max-width: 44rem;
  color: #504941;
  font-size: 1.04rem;
}

.about__visual {
  margin: 0;
}

.about__visual img {
  width: min(100%, 420px);
  margin-inline: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-row {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.stat-row div {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem;
  box-shadow: 0 12px 32px rgba(25, 18, 8, 0.08);
}

.stat-row strong,
.stat-row span {
  display: block;
}

.stat-row strong {
  color: #a85b00;
  font-size: 1.25rem;
  line-height: 1.1;
}

.stat-row span {
  color: var(--muted);
  font-weight: 700;
}

.service-grid,
.trust-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.trust-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  padding: 1.25rem;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover,
.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 211, 122, 0.55);
  background: rgba(255, 255, 255, 0.105);
}

.service-card p,
.trust-card p {
  margin: 0.75rem 0 0;
  color: var(--muted-dark);
}

.card-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: rgba(245, 154, 46, 0.14);
  color: var(--orange-2);
  box-shadow: inset 0 0 0 1px rgba(255, 211, 122, 0.22);
}

.card-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: currentColor;
}

.feature-gallery {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-gallery img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: var(--radius);
  background: #211b15;
  padding: 0;
  box-shadow: 0 14px 34px rgba(25, 18, 8, 0.12);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.32));
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

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

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-cta {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-top: 1.4rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(245, 154, 46, 0.14), rgba(0, 179, 155, 0.08)),
    var(--white);
  padding: 1rem;
  box-shadow: 0 14px 34px rgba(25, 18, 8, 0.1);
}

.gallery-cta p {
  margin: 0;
  color: #3c372f;
  font-weight: 800;
}

.trust-card {
  min-height: 170px;
}

.trust-card h3::before {
  display: block;
  width: 2.4rem;
  height: 0.22rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  content: "";
}

.contact-section {
  padding-bottom: 3.5rem;
}

.contact-layout {
  display: grid;
  gap: 1rem;
}

.contact-info,
.contact-form {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.2rem;
  box-shadow: 0 18px 48px rgba(25, 18, 8, 0.09);
}

.contact-info {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.contact-info address {
  display: grid;
  gap: 0.15rem;
  color: #3c372f;
  font-style: normal;
  font-weight: 800;
}

.contact-info a {
  color: #8a4b00;
  font-weight: 900;
}

.contact-info p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.contact-form {
  display: grid;
  gap: 0.65rem;
}

.contact-form label {
  color: #3c372f;
  font-size: 0.92rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 8px;
  background: #fffdf9;
  color: var(--ink);
  padding: 0.82rem 0.9rem;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.map-wrap {
  overflow: hidden;
  height: 360px;
  margin-top: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.section--offer {
  background:
    linear-gradient(120deg, rgba(245, 154, 46, 0.2), transparent 36%),
    linear-gradient(180deg, #10100f, #0a0a0a);
  color: var(--paper);
}

.offer {
  border: 1px solid rgba(255, 211, 122, 0.34);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  padding: 1.4rem;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.offer p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted-dark);
}

.site-footer {
  padding: 2rem 0 6.2rem;
  background: #070707;
  color: rgba(255, 248, 239, 0.78);
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-inner div {
  display: grid;
  gap: 0.2rem;
}

.footer-inner strong {
  color: var(--white);
}

.footer-inner a {
  color: var(--orange-2);
  font-weight: 800;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 248, 239, 0.56);
}

.footer-credit {
  text-align: center;
}

.mobile-cta {
  position: fixed;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.88);
  padding: 0.45rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  display: grid;
  min-height: 52px;
  place-items: center;
  gap: 0.15rem;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.mobile-cta a:first-child {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: var(--ink);
}

.mobile-cta svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.86);
  padding: 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(92vw, 780px);
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes trailMove {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 180px 0, 260px 0;
  }
}

@keyframes scrollDot {
  0% {
    transform: translateY(-0.75rem);
    opacity: 0;
  }
  40%,
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(0.75rem);
    opacity: 0;
  }
}

@media (min-width: 600px) {
  .hero__facts,
  .stat-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .feature-gallery {
    grid-template-columns: 1.4fr 0.8fr;
  }
}

@media (min-width: 760px) {
  :root {
    --header-h: 82px;
  }

  .container {
    width: min(1120px, calc(100% - 56px));
  }

  .site-header {
    padding-inline: 1.6rem;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
  }

  .hero {
    min-height: 88svh;
    padding: calc(var(--header-h) + 3.25rem) 0 3.5rem;
    background-image:
      linear-gradient(90deg, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.48) 52%, rgba(5, 5, 5, 0.9)),
      url("../images/hero-cover.png");
    background-position: center center;
  }

  .hero__content {
    width: min(1120px, calc(100% - 56px));
  }

  h1 {
    font-size: 4.9rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .hero__lead {
    font-size: 1.22rem;
  }

  .section {
    padding: 6rem 0;
  }

  .about {
    grid-template-columns: 1.15fr 0.85fr;
  }

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

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

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

  .gallery-cta {
    grid-template-columns: 1fr auto;
    padding: 1.2rem 1.3rem;
  }

  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .contact-info,
  .contact-form,
  .offer {
    padding: 1.6rem;
  }

  .site-footer {
    padding-bottom: 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-credit {
    grid-column: 1 / -1;
  }

  .mobile-cta {
    display: none;
  }
}

@media (min-width: 1040px) {
  .hero__content {
    margin-left: calc((100% - 1120px) / 2);
    margin-right: auto;
  }

  h1 {
    font-size: 5.65rem;
  }
}

@media (max-width: 759px) {
  body {
    padding-bottom: 84px;
  }

  .hero {
    min-height: 86svh;
    padding: calc(var(--header-h) + 1.75rem) 0 6.2rem;
  }

  .hero__facts span:nth-child(3) {
    display: none;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
  }

  .nav-cta {
    padding-inline: 0.7rem;
  }

  .brand__text {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
