:root {
  --cream: #f7fbf2;
  --cream-soft: #e3f1dc;
  --coal: #06140d;
  --coal-2: #020806;
  --coal-3: #0e2417;
  --red: #0b8f38;
  --red-light: #31dc63;
  --green: #12b94a;
  --blue: #075faa;
  --line: rgba(247, 251, 242, 0.14);
  --line-dark: rgba(6, 20, 13, 0.14);
  --shadow-red: 0 16px 34px rgba(11, 143, 56, 0.38);
  --shadow-dark: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(ellipse at 15% 0%, rgba(11, 143, 56, 0.28), transparent 34rem),
    radial-gradient(ellipse at 88% 12%, rgba(7, 95, 170, 0.2), transparent 28rem),
    var(--coal);
  font-family: "PT Sans", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body.lightbox-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(2, 8, 6, 0.08), rgba(2, 8, 6, 0.7)),
    repeating-linear-gradient(110deg, rgba(49, 220, 99, 0.08) 0 1px, transparent 1px 72px),
    linear-gradient(135deg, #020806 0%, #06140d 52%, #0e2417 100%);
  transition:
    opacity 0.48s ease-out,
    visibility 0.48s ease-out;
  isolation: isolate;
}

.page-loader.is-hiding {
  visibility: hidden;
  opacity: 0;
}

.loader-card {
  position: relative;
  width: min(320px, calc(100vw - 40px));
  overflow: hidden;
  padding: 38px 30px 32px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(247, 251, 242, 0.08), rgba(247, 251, 242, 0.03)),
    rgba(2, 8, 6, 0.78);
  border: 1px solid rgba(49, 220, 99, 0.3);
  border-radius: var(--radius);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.46),
    0 0 44px rgba(49, 220, 99, 0.16);
}

.loader-card::before,
.loader-card::after {
  position: absolute;
  left: 50%;
  width: 130%;
  height: 86px;
  border: 1px solid rgba(49, 220, 99, 0.2);
  border-color: rgba(49, 220, 99, 0.16) transparent transparent;
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.loader-card::before {
  bottom: -48px;
}

.loader-card::after {
  bottom: -66px;
  width: 108%;
  border-color: rgba(247, 251, 242, 0.09) transparent transparent;
}

.loader-mark {
  position: relative;
  display: grid;
  width: 148px;
  height: 148px;
  margin: 0 auto 22px;
  place-items: center;
  background: rgba(49, 220, 99, 0.1);
  border: 1px solid rgba(49, 220, 99, 0.34);
  border-radius: 50%;
  box-shadow: inset 0 0 24px rgba(49, 220, 99, 0.18);
  animation: loaderLogoIn 0.7s ease-out both;
}

.loader-mark::before {
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(247, 251, 242, 0.24);
  border-radius: inherit;
  content: "";
  animation: loaderRing 8s linear infinite;
}

.loader-mark::after {
  position: absolute;
  right: 26px;
  bottom: 20px;
  left: 26px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(49, 220, 99, 0.78), transparent);
  border-radius: 999px;
  content: "";
  transform: scaleX(0);
  animation: loaderGroundIn 0.65s ease-out 0.08s both;
}

.loader-mark img {
  position: relative;
  z-index: 1;
  width: 106px;
  height: 106px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.42));
  clip-path: inset(100% 0 0 0);
  transform-origin: 50% 100%;
  animation: loaderTreeGrow 1.15s cubic-bezier(0.2, 0.85, 0.24, 1) 0.12s both;
}

.loader-kicker {
  margin: 0;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red-light);
  font-size: 1.22rem;
  letter-spacing: 0.08em;
  animation: loaderTextIn 0.62s ease-out 0.46s both;
}

.loader-progress {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 4px;
  margin-top: 22px;
  background: rgba(247, 251, 242, 0.11);
  border-radius: 999px;
}

.loader-progress span {
  display: block;
  width: 44%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--red-light), var(--red));
  border-radius: inherit;
  animation: loaderProgress 1.25s ease-in-out infinite;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3,
.brand,
.button,
.site-nav,
.section-kicker,
.service-number,
.review-card span,
.update-card p,
.quick-facts span,
.hero-tags span {
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
}

p {
  line-height: 1.7;
}

button,
input,
textarea {
  font: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  color: var(--cream);
  background: var(--red);
  clip: auto;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.72s ease-out,
    transform 0.72s ease-out;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.section-pad {
  position: relative;
  padding: 104px 0;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--red-light);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading h2,
.intro h2,
.intro-video h2,
.gallery h2,
.before-after h2,
.why h2,
.about h2,
.reviews h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.45rem, 4.6vw, 4.9rem);
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 34px;
  color: var(--cream);
  background: rgba(20, 18, 4, 0.18);
  border-bottom: 1px solid rgba(250, 249, 249, 0.12);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(20, 18, 4, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-size: 1.16rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.5));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.03rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cream);
  background: rgba(11, 143, 56, 0.72);
  transform: translateY(-1px);
}

.site-nav a:last-child {
  color: var(--cream);
  background: linear-gradient(135deg, rgba(7, 95, 170, 0.78), var(--red));
  box-shadow: 0 8px 20px rgba(11, 143, 56, 0.28);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  color: var(--cream);
  background: rgba(250, 249, 249, 0.06);
  border: 1px solid rgba(250, 249, 249, 0.28);
  border-radius: var(--radius);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
  padding: 160px 34px 78px;
  color: var(--cream);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border-radius: 999px;
}

.hero::before {
  top: 21%;
  left: -10%;
  width: 58vw;
  height: 20vw;
  background: linear-gradient(90deg, rgba(11, 143, 56, 0.78), rgba(49, 220, 99, 0.24), transparent);
  filter: blur(44px);
  opacity: 0.7;
  transform: rotate(13deg);
}

.hero::after {
  right: 8%;
  bottom: 12%;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(7, 95, 170, 0.34), transparent 68%);
  filter: blur(18px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.94), rgba(20, 18, 4, 0.7) 42%, rgba(20, 18, 4, 0.28)),
    linear-gradient(0deg, rgba(9, 8, 6, 0.94), rgba(9, 8, 6, 0.14) 50%),
    url("assets/gallery/photos/img-1870.jpg") center / cover;
  transform: scale(1.03);
  animation: heroZoom 24s ease-out forwards;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 880px);
}

.hero .eyebrow,
.hero h1,
.hero-lead,
.hero-copy,
.hero-tags {
  animation: heroTextIn 0.72s ease-out both;
}

.hero h1 {
  animation-delay: 90ms;
}

.hero-lead {
  animation-delay: 180ms;
}

.hero-copy {
  animation-delay: 260ms;
}

.hero-tags {
  animation-delay: 420ms;
}

.hero-actions {
  animation: heroButtonIn 0.72s ease-out 340ms both;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--red-light);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.65);
}

.hero h1 {
  max-width: 920px;
  margin-bottom: 12px;
  font-size: clamp(4.2rem, 10.2vw, 8.2rem);
  font-weight: 700;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
  white-space: nowrap;
}

.hero-lead {
  margin-bottom: 14px;
  color: var(--red-light);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.55rem, 4vw, 3.15rem);
  font-weight: 700;
  line-height: 1.04;
  text-shadow: 0 9px 24px rgba(0, 0, 0, 0.6);
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(250, 249, 249, 0.82);
  font-size: 1.13rem;
}

.hero-actions,
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  color: var(--cream);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  transition:
    transform 0.42s ease-out,
    box-shadow 0.42s ease-out,
    background 0.42s ease-out,
    border-color 0.42s ease-out;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px) scale(1.01);
}

.button:disabled {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

.button.primary {
  background: linear-gradient(135deg, rgba(7, 95, 170, 0.55), var(--red));
  box-shadow: var(--shadow-red);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 20px 42px rgba(11, 143, 56, 0.52);
}

.button.secondary,
.button.light {
  color: var(--cream);
  background: rgba(250, 249, 249, 0.07);
  border-color: rgba(250, 249, 249, 0.32);
}

.button.full {
  width: 100%;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-tags span,
.quick-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--cream);
  background: rgba(11, 143, 56, 0.24);
  border: 1px solid rgba(49, 220, 99, 0.38);
  border-radius: var(--radius);
  font-size: 0.96rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 560px;
  padding: 17px 20px;
  color: var(--cream);
  background: rgba(20, 18, 4, 0.76);
  border: 1px solid rgba(49, 220, 99, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(16px);
}

.hero-panel a {
  color: var(--red-light);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.intro,
.services,
.updates,
.seo-faq,
.contact {
  color: var(--cream);
  background: var(--coal);
}

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

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.intro-text p,
.about-copy p:not(.section-kicker),
.reviews p,
.seo-faq p,
.contact-copy > p:not(.section-kicker) {
  color: rgba(250, 249, 249, 0.76);
  font-size: 1.05rem;
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intro-video {
  color: var(--cream);
  background:
    radial-gradient(ellipse at 12% 18%, rgba(7, 95, 170, 0.22), transparent 28rem),
    radial-gradient(ellipse at 86% 82%, rgba(11, 143, 56, 0.22), transparent 32rem),
    var(--coal-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.video-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 54px;
  align-items: center;
}

.video-copy p:not(.section-kicker) {
  max-width: 560px;
  color: rgba(250, 249, 249, 0.76);
  font-size: 1.05rem;
}

.video-frame {
  position: relative;
  overflow: hidden;
  padding: 10px;
  background: linear-gradient(135deg, rgba(49, 220, 99, 0.16), rgba(7, 95, 170, 0.18));
  border: 1px solid rgba(49, 220, 99, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(11, 143, 56, 0.22), var(--shadow-dark);
}

.video-frame::before {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  padding: 8px 12px;
  color: var(--cream);
  background: rgba(6, 20, 13, 0.74);
  border: 1px solid rgba(49, 220, 99, 0.36);
  border-radius: var(--radius);
  content: "Freshyard.cz";
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  pointer-events: none;
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #020806;
  border-radius: calc(var(--radius) - 2px);
}

.services {
  background:
    radial-gradient(ellipse at 78% 6%, rgba(11, 143, 56, 0.22), transparent 34rem),
    var(--coal-2);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.update-card,
.review-card,
.contact-form {
  overflow: hidden;
  background: rgba(250, 249, 249, 0.055);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
}

.service-card {
  display: flex;
  flex-direction: column;
  transition:
    transform 0.5s ease-out,
    box-shadow 0.5s ease-out,
    border-color 0.5s ease-out;
  will-change: transform;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(49, 220, 99, 0.42);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.46), 0 18px 44px rgba(11, 143, 56, 0.24);
  transform: translateY(-8px) scale(1.015);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
  transition: filter 0.55s ease-out, transform 0.55s ease-out;
}

.service-card:hover img,
.service-card:focus-within img {
  filter: saturate(0.96) contrast(1.12);
  transform: scale(1.055);
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.service-number {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red-light);
  font-size: 1.1rem;
  font-weight: 700;
}

.service-card h3 {
  min-height: 66px;
  margin-bottom: 18px;
  color: var(--cream);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: rgba(250, 249, 249, 0.78);
  line-height: 1.55;
}

.service-card li::marker {
  color: var(--red-light);
}

.service-link {
  position: relative;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--red-light);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-out;
}

.service-card:hover .service-link::after,
.service-link:focus-visible::after {
  transform: scaleX(1);
}

.before-after {
  color: var(--cream);
  background:
    radial-gradient(ellipse at 18% 12%, rgba(49, 220, 99, 0.18), transparent 28rem),
    linear-gradient(135deg, rgba(2, 8, 6, 0.98), rgba(14, 36, 23, 0.96));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.before-after-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: center;
}

.before-after-copy p:not(.section-kicker) {
  max-width: 560px;
  color: rgba(250, 249, 249, 0.76);
  font-size: 1.05rem;
}

.comparison-slider {
  --position: 50%;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  aspect-ratio: 16 / 11;
  background: var(--coal-2);
  border: 1px solid rgba(49, 220, 99, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(11, 143, 56, 0.18), var(--shadow-dark);
  isolation: isolate;
}

.comparison-image,
.comparison-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
}

.comparison-image-after {
  clip-path: inset(0 0 0 var(--position));
}

.comparison-labels {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  left: 16px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.comparison-labels span {
  padding: 8px 12px;
  color: var(--cream);
  background: rgba(2, 8, 6, 0.78);
  border: 1px solid rgba(49, 220, 99, 0.34);
  border-radius: var(--radius);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.comparison-range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.comparison-handle {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 3px;
  background: var(--cream);
  box-shadow: 0 0 0 1px rgba(2, 8, 6, 0.45), 0 0 28px rgba(49, 220, 99, 0.45);
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison-handle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--cream);
  background: linear-gradient(135deg, rgba(7, 95, 170, 0.82), var(--red));
  border: 2px solid rgba(247, 251, 242, 0.86);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.36);
  content: "\2039  \203A";
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.why {
  color: var(--coal);
  background: var(--red);
}

.why .section-kicker {
  color: var(--cream);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 58px;
  align-items: start;
}

.why-layout > div:first-child p:last-child {
  color: rgba(250, 249, 249, 0.86);
}

.why h2 {
  color: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.why-item {
  min-height: 192px;
  padding: 26px;
  color: var(--coal);
  background: var(--cream);
  border: 1px solid rgba(250, 249, 249, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
}

.why-item:nth-child(even) {
  color: var(--cream);
  background: var(--coal);
}

.why-item span {
  color: var(--red);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.why-item h3 {
  margin: 18px 0 10px;
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.why-item p {
  margin-bottom: 0;
  color: inherit;
  opacity: 0.78;
}

.updates {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(11, 143, 56, 0.18), transparent 30rem),
    var(--coal);
}

.gallery {
  color: var(--cream);
  background:
    radial-gradient(ellipse at 88% 8%, rgba(7, 95, 170, 0.2), transparent 32rem),
    radial-gradient(ellipse at 10% 80%, rgba(11, 143, 56, 0.2), transparent 34rem),
    var(--coal-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: minmax(230px, 28vw);
  gap: 16px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 230px;
  padding: 0;
  color: var(--cream);
  background: rgba(250, 249, 249, 0.055);
  border: 1px solid rgba(49, 220, 99, 0.26);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
  cursor: pointer;
  text-align: left;
}

.gallery-item:not(.is-hidden) {
  animation: galleryItemIn 0.64s ease-out both;
  animation-delay: calc(var(--item-index, 0) * 55ms);
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img,
.gallery-item video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
  transition: filter 180ms ease, transform 220ms ease;
}

.gallery-item video {
  background: var(--coal-2);
}

.gallery-item::after {
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(0deg, rgba(2, 8, 6, 0.9), transparent);
  content: "";
  pointer-events: none;
}

.gallery-item[data-gallery-type="video"]::before {
  position: absolute;
  z-index: 1;
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  color: var(--cream);
  background: rgba(11, 143, 56, 0.78);
  border: 1px solid rgba(49, 220, 99, 0.52);
  border-radius: var(--radius);
  content: "Video";
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  pointer-events: none;
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: var(--cream);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-item:hover img,
.gallery-item:hover video,
.gallery-item:focus-visible img,
.gallery-item:focus-visible video {
  filter: saturate(0.95) contrast(1.12);
  transform: scale(1.045);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--red-light);
  outline-offset: 4px;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  gap: 18px;
  align-items: center;
  padding: 28px;
  color: var(--cream);
  background: rgba(2, 8, 6, 0.92);
  backdrop-filter: blur(18px);
  animation: lightboxFadeIn 0.28s ease-out both;
}

.lightbox-figure {
  display: grid;
  grid-column: 2;
  gap: 14px;
  justify-items: center;
  margin: 0;
  animation: lightboxContentIn 0.42s ease-out both;
}

.lightbox-figure img,
.lightbox-figure video {
  max-width: min(100%, 1120px);
  max-height: 78vh;
  object-fit: contain;
  background: var(--coal-2);
  border: 1px solid rgba(49, 220, 99, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
}

.lightbox-figure video {
  width: min(100%, 1120px);
  background: #020806;
}

.lightbox-figure figcaption {
  color: var(--red-light);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-control {
  display: inline-grid;
  place-items: center;
  color: var(--cream);
  background: rgba(247, 251, 242, 0.09);
  border: 1px solid rgba(247, 251, 242, 0.26);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-control:hover,
.lightbox-control:focus-visible {
  background: rgba(11, 143, 56, 0.64);
  border-color: rgba(49, 220, 99, 0.74);
  transform: translateY(-1px);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-control {
  width: 58px;
  height: 58px;
  font-size: 3rem;
  line-height: 1;
}

.lightbox-control.prev {
  grid-column: 1;
  justify-self: end;
}

.lightbox-control.next {
  grid-column: 3;
  justify-self: start;
}

.split-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  color: var(--red-light);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0.42);
  transform-origin: left;
  transition: transform 0.5s ease-out;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.update-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
}

.update-card div {
  padding: 20px;
}

.update-card p {
  margin-bottom: 8px;
  color: var(--red-light);
  font-size: 0.94rem;
  font-weight: 700;
  text-transform: uppercase;
}

.update-card h3 {
  min-height: 58px;
  margin-bottom: 0;
  color: var(--cream);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.06;
  text-transform: uppercase;
}

.instagram-grid {
  align-items: start;
}

.instagram-card {
  display: flex;
  min-height: 540px;
  padding: 14px;
  flex-direction: column;
}

.instagram-card-label {
  margin: 0 0 12px;
}

.instagram-card .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  background: var(--cream) !important;
  border: 0 !important;
  border-radius: var(--radius) !important;
}

.instagram-card .instagram-media a {
  display: flex;
  min-height: 430px;
  padding: 24px;
  align-items: center;
  justify-content: center;
  color: var(--coal);
  font-weight: 700;
  text-align: center;
}

.instagram-card iframe {
  max-width: 100% !important;
}

.about {
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(20, 18, 4, 0.95), rgba(20, 18, 4, 0.9)),
    var(--coal-3);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 60px;
  align-items: center;
}

.about-media img {
  width: 100%;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
  border: 1px solid rgba(49, 220, 99, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(11, 143, 56, 0.24), var(--shadow-dark);
  filter: saturate(0.74) contrast(1.1);
}

.reviews {
  color: var(--cream);
  background: var(--coal-2);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.google-review-panel {
  overflow: hidden;
  background: rgba(250, 249, 249, 0.055);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
}

.google-review-head {
  display: flex;
  padding: 18px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.google-review-head span {
  color: var(--red-light);
  font-size: 0.96rem;
  font-weight: 700;
  text-transform: uppercase;
}

.google-review-head strong {
  color: var(--cream);
  font-size: 1.08rem;
}

.google-review-summary {
  display: grid;
  padding: 20px;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.google-review-summary p {
  margin: 0;
  color: rgba(250, 249, 249, 0.78);
  font-size: 1rem;
}

.google-review-summary a {
  width: fit-content;
  color: var(--red-light);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.google-review-list {
  display: grid;
  padding: 18px;
  gap: 14px;
}

.google-review-card {
  padding: 20px;
  background: rgba(6, 20, 13, 0.72);
  border: 1px solid rgba(49, 220, 99, 0.18);
  border-radius: var(--radius);
}

.google-review-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--red-light);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.google-review-stars {
  display: block;
  margin-bottom: 10px;
  color: var(--red-light);
  font-size: 1rem;
  letter-spacing: 0;
}

.google-review-card p {
  margin-bottom: 14px;
  color: var(--cream);
  font-size: 1.04rem;
}

.google-review-card strong {
  color: rgba(250, 249, 249, 0.66);
  font-size: 0.95rem;
}

.seo-faq {
  background:
    radial-gradient(ellipse at 16% 4%, rgba(49, 220, 99, 0.16), transparent 28rem),
    var(--coal);
  border-top: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 50px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  overflow: hidden;
  background: rgba(250, 249, 249, 0.055);
  border: 1px solid rgba(49, 220, 99, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
}

.faq-list summary {
  padding: 20px 22px;
  color: var(--cream);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  cursor: pointer;
}

.faq-list summary::marker {
  color: var(--red-light);
}

.faq-list details[open] {
  border-color: rgba(49, 220, 99, 0.36);
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact {
  background:
    radial-gradient(ellipse at 90% 14%, rgba(11, 143, 56, 0.22), transparent 30rem),
    var(--coal);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: var(--cream);
  font-weight: 700;
}

.contact-list a {
  color: var(--red-light);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-cta {
  margin-top: 26px;
}

.cta-pulse {
  animation: ctaPulse 4.8s ease-out infinite;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--cream);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--red);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--coal);
  background: #fff;
  border: 1px solid rgba(20, 18, 4, 0.2);
  border-radius: var(--radius);
  outline: none;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(11, 143, 56, 0.13);
}

.form-row-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--red);
  font-size: 0.95rem;
  font-weight: 700;
}

.map-wrap {
  margin-top: 34px;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  filter: saturate(0.7) contrast(1.05) invert(0.08);
}

.site-footer {
  padding: 30px 0;
  color: var(--cream);
  background: #070605;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--red-light);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  color: rgba(250, 249, 249, 0.62);
  font-size: 0.95rem;
}

.footer-credit a {
  color: var(--red-light);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.creator-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.creator-link img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 7px 13px rgba(0, 0, 0, 0.32));
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 5px;
}

@keyframes loaderLogoIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.86);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderTextIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loaderRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderGroundIn {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes loaderTreeGrow {
  0% {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
    transform: translateY(14px) scaleX(0.82) scaleY(0.28);
  }

  62% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0) scaleX(1.03) scaleY(1.06);
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderProgress {
  0% {
    transform: translateX(-112%);
  }

  100% {
    transform: translateX(228%);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroButtonIn {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.03);
  }

  to {
    transform: scale(1.1);
  }
}

@keyframes galleryItemIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes lightboxContentIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ctaPulse {
  0%,
  72%,
  100% {
    box-shadow: var(--shadow-red);
    transform: translateY(0) scale(1);
  }

  82% {
    box-shadow: 0 0 0 12px rgba(49, 220, 99, 0), 0 20px 42px rgba(11, 143, 56, 0.46);
    transform: translateY(-1px) scale(1.012);
  }
}

@media (max-width: 980px) {
  .section-pad {
    padding: 82px 0;
  }

  .intro-grid,
  .video-layout,
  .before-after-layout,
  .why-layout,
  .about-grid,
  .reviews-grid,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .updates-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(220px, 42vw);
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .service-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .comparison-slider {
    min-height: 360px;
  }

  .service-card h3,
  .update-card h3 {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand span {
    font-size: 1rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    color: var(--cream);
    background: rgba(20, 18, 4, 0.98);
    border: 1px solid rgba(49, 220, 99, 0.34);
    border-radius: var(--radius);
    box-shadow: var(--shadow-dark);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 14px;
    border-radius: var(--radius);
  }

  .hero {
    min-height: 92vh;
    padding: 128px 18px 136px;
    align-items: end;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 3.6rem);
    line-height: 0.9;
  }

  .hero-lead {
    font-size: 1.38rem;
    line-height: 1.1;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-panel {
    right: 18px;
    bottom: 18px;
    left: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .split-heading {
    display: block;
  }

  .split-heading .text-link {
    display: inline-flex;
    margin-top: 18px;
  }

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

  .comparison-slider {
    min-height: 300px;
    aspect-ratio: 4 / 5;
  }

  .gallery-item,
  .gallery-item.large {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .gallery-item span {
    font-size: 1.08rem;
  }

  .lightbox {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 72px 14px 24px;
  }

  .lightbox-figure {
    grid-column: 1;
  }

  .lightbox-figure img {
    max-height: 74vh;
  }

  .lightbox-control {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    font-size: 2.4rem;
    transform: translateY(-50%);
  }

  .lightbox-control:hover,
  .lightbox-control:focus-visible {
    transform: translateY(calc(-50% - 1px));
  }

  .lightbox-control.prev {
    left: 14px;
    grid-column: auto;
  }

  .lightbox-control.next {
    right: 14px;
    grid-column: auto;
  }

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

  .service-card {
    display: block;
  }

  .service-card-body {
    padding: 20px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .section-heading h2,
  .intro h2,
  .intro-video h2,
  .gallery h2,
  .before-after h2,
  .why h2,
  .about h2,
  .reviews h2,
  .seo-faq h2,
  .contact h2 {
    font-size: 2.2rem;
  }

  .hero-actions,
  .review-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-tags span,
  .quick-facts span {
    width: 100%;
  }

  .contact-form {
    padding: 18px;
  }

  .map-wrap iframe {
    height: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
