:root {
  --bg: #050505;
  --surface: #0c0c0c;
  --surface-strong: #101010;
  --text: #f5f7f2;
  --muted: #a8b09f;
  --brand: #84dc00;
  --brand-deep: #4a8f00;
  --line: rgba(132, 220, 0, 0.2);
  --line-strong: rgba(132, 220, 0, 0.4);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --container: min(1180px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(132, 220, 0, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(132, 220, 0, 0.08), transparent 30%),
    linear-gradient(180deg, #070707 0%, #050505 42%, #020202 100%);
  font-family: "Barlow Condensed", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 55%, transparent 100%);
  opacity: 0.22;
  content: "";
}

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

button {
  font: inherit;
}

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

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

.site-shell {
  position: relative;
  overflow: clip;
}

.page-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}

.page-glow--one {
  top: 6rem;
  right: -8rem;
  width: 22rem;
  height: 22rem;
  background: rgba(132, 220, 0, 0.16);
}

.page-glow--two {
  top: 48rem;
  left: -9rem;
  width: 18rem;
  height: 18rem;
  background: rgba(132, 220, 0, 0.12);
}

.topbar,
.section,
.footer {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  backdrop-filter: blur(14px);
}

.topbar::before {
  position: absolute;
  inset: 0 -1rem;
  z-index: -1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.62));
  content: "";
}

.topbar__brand {
  width: min(18rem, 52vw);
}

.topbar__nav {
  display: flex;
  gap: 1.2rem;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar__nav a {
  position: relative;
  color: var(--muted);
}

.topbar__nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.2rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--brand), transparent);
  transition: transform 220ms ease;
  content: "";
}

.topbar__nav a:hover,
.topbar__nav a:focus-visible {
  color: var(--text);
}

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

.section {
  position: relative;
  scroll-margin-top: 6rem;
  padding: 5rem 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 2rem;
  min-height: calc(100vh - 5rem);
  padding-top: 3rem;
}

.hero__grid {
  position: absolute;
  inset: 9rem 0 7rem auto;
  width: min(42%, 26rem);
  border: 1px solid rgba(132, 220, 0, 0.08);
  background:
    linear-gradient(135deg, rgba(132, 220, 0, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 80%);
  clip-path: polygon(18% 0, 100% 0, 100% 82%, 82% 100%, 0 100%, 0 20%);
  opacity: 0.9;
}

.hero__content,
.hero__panel,
.contact__panel {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.3rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(132, 220, 0, 0.09);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill::before {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(132, 220, 0, 0.8);
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  font-size: clamp(4.3rem, 10vw, 8rem);
  line-height: 0.92;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.95;
}

h3 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 0.95;
}

.hero__lede,
.section-heading p,
.value__panel p,
.contact__panel p,
.hero-card__label,
.hero-card__list span,
.hero-card__list strong,
.service-card p,
.footer p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.45;
}

.hero__lede {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__actions {
  margin: 2rem 0 2.3rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.65rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

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

.button--primary {
  color: #041300;
  background: linear-gradient(90deg, #6bc300, var(--brand));
  box-shadow: 0 18px 35px rgba(132, 220, 0, 0.22);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--line-strong);
  background: rgba(132, 220, 0, 0.08);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__stats li {
  padding: 1rem 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(12, 12, 12, 0.9);
}

.hero__stats strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--brand);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.08em;
}

.hero__stats span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.25;
}

.hero-card,
.value__panel,
.compatibility,
.contact__panel {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(12, 12, 12, 0.84);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  clip-path: polygon(0 0, 88% 0, 100% 16%, 100% 100%, 6% 100%, 0 86%);
}

.hero-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(132, 220, 0, 0.12), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(132, 220, 0, 0.18), transparent 30%);
  content: "";
}

.hero-card__media {
  position: relative;
  min-height: 24rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-card__photo {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  object-position: center;
}

.hero-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(5, 5, 5, 0.88)),
    linear-gradient(135deg, rgba(132, 220, 0, 0.18), transparent 45%);
}

.hero-card__mark {
  position: absolute;
  right: 1.4rem;
  bottom: 1.25rem;
  z-index: 1;
  width: min(15rem, 54%);
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(132, 220, 0, 0.3);
  border-radius: 1rem;
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.hero-card__body {
  position: relative;
  padding: 1.6rem 1.7rem 1.9rem 2.15rem;
}

.hero-card__label {
  margin: 0 0 1.2rem;
  color: var(--text);
}

.hero-card__list {
  display: grid;
  gap: 1rem;
}

.hero-card__list div {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-card__list span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card__list strong {
  display: block;
  font-weight: 600;
}

.hero__band,
.contact__band {
  position: absolute;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(45, 92, 0, 0.8), rgba(132, 220, 0, 0.95));
}

.hero__band::after,
.contact__band::after {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: sweep 5.5s linear infinite;
  content: "";
}

.hero__band--top {
  top: 1rem;
  right: -6rem;
  width: min(58vw, 42rem);
  height: 3.1rem;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.hero__band--bottom {
  bottom: 3rem;
  left: -5rem;
  width: min(48vw, 34rem);
  height: 2.6rem;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 14% 100%);
  opacity: 0.9;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.2rem;
}

.section-heading h2,
.value__panel h2,
.contact__panel h2 {
  margin-bottom: 0.9rem;
}

.section-heading p:last-child,
.value__panel p:last-child,
.contact__panel p:last-of-type {
  color: var(--muted);
}

.work {
  padding-top: 3rem;
}

.work__gallery {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.work__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
}

.work__header--secondary {
  margin-bottom: 1.8rem;
}

.work__header .section-heading {
  margin-bottom: 0;
}

.work__controls {
  display: flex;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.work__control {
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(8, 8, 8, 0.92);
  cursor: pointer;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.work__control::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
}

.work__control--prev::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.work__control--next::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

.work__control:hover,
.work__control:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(132, 220, 0, 0.1);
}

.work-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.2rem 0 1.1rem;
  scroll-padding-inline: 0.2rem;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--brand) rgba(255, 255, 255, 0.08);
}

.work-carousel:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 0.35rem;
}

.work-slide {
  position: relative;
  flex: 0 0 clamp(17rem, 34vw, 27rem);
  overflow: hidden;
  height: clamp(21rem, 42vw, 30rem);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.25rem;
  background: rgba(12, 12, 12, 0.86);
  scroll-snap-align: start;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.work-slide::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 58%, rgba(3, 3, 3, 0.92)),
    linear-gradient(135deg, rgba(132, 220, 0, 0.16), transparent 42%);
  content: "";
}

.work-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-slide figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-slide--gallery {
  flex-basis: clamp(15rem, 28vw, 22rem);
  height: clamp(19rem, 34vw, 26rem);
}

.work-slide--gallery::before {
  background:
    linear-gradient(180deg, transparent 62%, rgba(3, 3, 3, 0.55)),
    linear-gradient(135deg, rgba(132, 220, 0, 0.14), transparent 42%);
}

.story {
  padding-top: 3rem;
}

.story__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1.5rem;
  align-items: stretch;
}

.story__content {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(132, 220, 0, 0.1), transparent 48%),
    rgba(12, 12, 12, 0.84);
  box-shadow: var(--shadow);
}

.story__content::before {
  position: absolute;
  inset: auto -3rem -4rem auto;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(132, 220, 0, 0.14);
  border-radius: 50%;
  content: "";
}

.story__content h2 {
  margin-bottom: 0.9rem;
}

.story__copy {
  display: grid;
  gap: 1rem;
}

.story__copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.5;
}

.story__copy p:first-child {
  color: var(--text);
}

.story__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.story__highlights span {
  position: relative;
  display: block;
  padding: 0.85rem 1rem 0.85rem 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.025);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story__highlights span::before {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--brand);
  box-shadow: 0 0 16px rgba(132, 220, 0, 0.65);
  content: "";
}

.story__photos {
  display: block;
}

.story__photo {
  position: relative;
  overflow: hidden;
  min-height: 19rem;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.25rem;
  background: rgba(12, 12, 12, 0.86);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.story__photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(132, 220, 0, 0.16), transparent 42%),
    linear-gradient(180deg, transparent 58%, rgba(3, 3, 3, 0.78));
  content: "";
}

.story__photo--feature {
  min-height: 40rem;
  clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 7% 100%, 0 90%);
}

.story__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.story__photo--feature img {
  object-position: 45% center;
}

.story__photo:hover img,
.story__photo:focus-within img {
  transform: scale(1.04);
}

.story__photo figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story__photo--feature figcaption {
  left: auto;
  max-width: calc(100% - 2rem);
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(132, 220, 0, 0.22);
  border-radius: 0.9rem;
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  text-align: right;
}

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

.service-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  min-height: 16rem;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    linear-gradient(135deg, rgba(132, 220, 0, 0.08), transparent 46%),
    rgba(10, 10, 10, 0.94);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6),
.service-card:nth-child(7) {
  grid-column: span 3;
}

.service-card::before {
  position: absolute;
  inset: auto -1.5rem -2rem auto;
  width: 7rem;
  height: 7rem;
  border: 1px solid rgba(132, 220, 0, 0.12);
  border-radius: 50%;
  content: "";
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(132, 220, 0, 0.28);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.service-card__index {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--brand);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.14em;
}

.service-card p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.value__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
}

.proof-gallery {
  display: grid;
  grid-auto-rows: 12rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.proof-gallery__item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.25rem;
  background: rgba(12, 12, 12, 0.86);
}

.proof-gallery__item::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(132, 220, 0, 0.12), transparent 42%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
  content: "";
}

.proof-gallery__item--wide {
  grid-column: span 2;
}

.proof-gallery__item--tall {
  grid-row: span 2;
}

.proof-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.proof-gallery__item:hover img,
.proof-gallery__item:focus-within img {
  transform: scale(1.04);
}

.value__panel,
.compatibility,
.contact__panel {
  padding: 2rem;
  border-radius: 1.5rem;
}

.compatibility {
  position: relative;
  overflow: hidden;
}

.compatibility::before {
  position: absolute;
  inset: auto auto -1.5rem -1.5rem;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  border: 1px solid rgba(132, 220, 0, 0.14);
  content: "";
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.brand-chips span {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(132, 220, 0, 0.08);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact {
  padding-bottom: 6rem;
}

.contact__band {
  top: 1.7rem;
  right: 0;
  width: min(32rem, 55vw);
  height: 3rem;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.contact__panel {
  position: relative;
  overflow: hidden;
}

.contact__panel::before {
  position: absolute;
  top: -3rem;
  right: -2rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(132, 220, 0, 0.1);
  filter: blur(20px);
  content: "";
}

.contact__actions {
  margin-top: 2rem;
}

.contact-link {
  flex: 1 1 18rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(132, 220, 0, 0.32);
  background: rgba(132, 220, 0, 0.08);
}

.contact-link--instagram {
  border-color: var(--line);
  background:
    linear-gradient(135deg, rgba(132, 220, 0, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.025);
}

.contact-link__label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-link strong {
  display: block;
  max-width: 24rem;
  font-size: 1.35rem;
  line-height: 1.2;
}

.contact__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer {
  padding: 3rem 0 2.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__main {
  display: grid;
  grid-template-columns: minmax(16rem, 1.3fr) minmax(12rem, 1fr) minmax(9rem, 0.7fr) minmax(12rem, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.footer__brand img {
  width: min(17rem, 64vw);
}

.footer__brand p {
  max-width: 24rem;
}

.footer__brand p,
.footer__group a,
.footer__bottom {
  margin: 0;
  color: var(--muted);
}

.footer__brand p {
  margin-top: 1rem;
}

.footer__group {
  display: grid;
  gap: 0.7rem;
}

.footer__group h2 {
  margin: 0 0 0.15rem;
  color: var(--brand);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer__group a {
  max-width: 18rem;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.25;
  transition: color 220ms ease;
}

.footer__group a:hover,
.footer__group a:focus-visible {
  color: var(--text);
}

.footer__instagram {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(132, 220, 0, 0.08);
  overflow-wrap: anywhere;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.reveal--hero {
  opacity: 1;
  animation: heroIn 820ms ease-out both;
}

@keyframes sweep {
  from {
    transform: translateX(-100%);
  }

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

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@media (max-width: 1080px) {
  .hero,
  .story__layout,
  .value__layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero__grid {
    width: min(70%, 24rem);
    inset: 12rem 0 auto auto;
  }

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

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

  .proof-gallery__item--wide {
    grid-column: span 2;
  }

  .story__photo--feature {
    min-height: 36rem;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(6),
  .service-card:nth-child(7) {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .topbar {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1.25rem;
  }

  .topbar__nav {
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
    font-size: 0.98rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    gap: 1.4rem;
    padding-top: 1.3rem;
  }

  .hero__content {
    padding-right: 0.65rem;
  }

  .eyebrow {
    margin-bottom: 0.65rem;
    font-size: 0.88rem;
    letter-spacing: 0.14em;
  }

  .status-pill {
    max-width: calc(100% - 0.65rem);
    margin-bottom: 1rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    line-height: 1.15;
    white-space: normal;
  }

  .status-pill::before {
    flex: 0 0 auto;
  }

  h1 {
    max-width: min(8.5ch, calc(100% - 0.65rem));
    font-size: clamp(3.1rem, 15vw, 4rem);
    line-height: 0.9;
  }

  .hero__lede {
    max-width: calc(100% - 0.65rem);
    margin-top: 0.8rem;
  }

  .hero__actions {
    margin: 1.45rem 0 1.6rem;
  }

  .hero__stats,
  .services__grid {
    grid-template-columns: 1fr;
  }

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

  .work__controls {
    align-self: flex-end;
  }

  .work-slide {
    flex-basis: min(82vw, 23rem);
    height: 26rem;
  }

  .work__gallery {
    margin-top: 2.8rem;
    padding-top: 2.3rem;
  }

  .work-slide--gallery {
    flex-basis: min(76vw, 20rem);
    height: 22rem;
  }

  .story {
    padding-top: 2rem;
  }

  .story__content {
    padding: 1.4rem;
  }

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

  .story__photo,
  .story__photo--feature {
    min-height: auto;
    aspect-ratio: 3 / 4;
  }

  .story__photo--feature {
    clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 7% 100%, 0 92%);
  }

  .hero__band--top {
    top: 0.8rem;
    right: -3.4rem;
    width: min(86vw, 20rem);
    height: 2.55rem;
  }

  .hero__band--bottom,
  .contact__band {
    width: 16rem;
  }

  .hero-card__media {
    min-height: 18rem;
  }

  .hero-card__photo {
    height: 18rem;
  }

  .hero-card__mark {
    right: 1rem;
    bottom: 1rem;
    width: min(13rem, 68%);
  }

  .hero-card__body {
    padding: 1.4rem;
  }

  .value__panel,
  .compatibility,
  .contact__panel {
    padding: 1.4rem;
  }

  .contact-link strong {
    font-size: 1.15rem;
  }

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

  .proof-gallery__item,
  .proof-gallery__item--wide,
  .proof-gallery__item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

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

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