:root {
  --ink: #101614;
  --evergreen: #063f31;
  --green: #0f6b4f;
  --grass: #69a85f;
  --gold: #c7a052;
  --coral: #c6543a;
  --paper: #fbfaf7;
  --stone: #e6e1d8;
  --white: #ffffff;
  --muted: #66706c;
  --shadow: 0 24px 80px rgba(13, 19, 17, 0.18);
  --soft-shadow: 0 14px 42px rgba(13, 19, 17, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 63, 49, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(6, 63, 49, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 82%, transparent);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 46px);
  color: var(--white);
  background: rgba(12, 18, 16, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.92);
  border-bottom-color: rgba(16, 22, 20, 0.1);
  box-shadow: 0 10px 30px rgba(16, 22, 20, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-logo {
  width: 66px;
  height: 52px;
  flex: 0 0 66px;
  object-fit: contain;
  object-position: center;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.78;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: currentColor;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  opacity: 0.82;
}

.main-nav a:hover {
  opacity: 1;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 220px;
}

.language-toggle {
  display: inline-flex;
  padding: 4px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.site-header.is-scrolled .language-toggle {
  background: rgba(16, 22, 20, 0.06);
  border-color: rgba(16, 22, 20, 0.12);
}

.language-toggle button {
  min-width: 38px;
  min-height: 30px;
  color: currentColor;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 999px;
}

.language-toggle button.is-active {
  color: var(--ink);
  background: var(--gold);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--white);
  border-radius: 999px;
}

.site-header.is-scrolled .header-contact {
  color: var(--white);
  background: var(--evergreen);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(790px, 84svh);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 12, 10, 0.92) 0%, rgba(5, 12, 10, 0.78) 36%, rgba(5, 12, 10, 0.28) 66%, rgba(5, 12, 10, 0.04) 86%),
    linear-gradient(0deg, rgba(5, 12, 10, 0.62), rgba(5, 12, 10, 0.04) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  align-self: center;
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: clamp(70px, 12vh, 130px);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: clamp(0.74rem, 1.1vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.image-band h2,
.contact-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.97;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4.2rem, 11vw, 9.5rem);
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 18px 44px rgba(199, 160, 82, 0.28);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.34);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max), calc(100% - 36px));
  margin: -38px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(16, 22, 20, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-facts div {
  padding: clamp(18px, 3vw, 30px);
  border-right: 1px solid rgba(16, 22, 20, 0.08);
}

.quick-facts div:last-child {
  border-right: 0;
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  color: var(--evergreen);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.92;
}

.quick-facts span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 112px;
}

.section h2,
.image-band h2,
.contact-section h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.section-copy p:not(.eyebrow),
.section-heading p,
.about-section p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
}

.profit-grid {
  display: grid;
  gap: 16px;
}

.profit-grid article,
.process-grid article,
.gallery-card,
.video-feature {
  background: var(--white);
  border: 1px solid rgba(16, 22, 20, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.profit-grid article {
  padding: clamp(22px, 3vw, 34px);
}

.profit-grid span,
.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  color: var(--white);
  font-weight: 900;
  background: var(--evergreen);
  border-radius: 50%;
}

.profit-grid article:nth-child(2) span,
.process-grid article:nth-child(2) span {
  background: var(--coral);
}

.profit-grid article:nth-child(3) span,
.process-grid article:nth-child(3) span {
  color: var(--ink);
  background: var(--gold);
}

.profit-grid h3,
.process-grid h3,
.gallery-card h3,
.video-feature h3 {
  margin: 0;
  font-size: clamp(1.18rem, 1.6vw, 1.45rem);
  line-height: 1.12;
}

.profit-grid p,
.process-grid p,
.gallery-card p,
.video-feature p {
  margin: 12px 0 0;
  color: var(--muted);
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(26px, 5vw, 64px);
  padding: clamp(52px, 8vw, 86px) max(18px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 63, 49, 0.96), rgba(16, 22, 20, 0.98)),
    var(--evergreen);
}

.image-band img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.3);
}

.image-band h2 {
  max-width: 680px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 780px;
}

.package-gallery,
.glove-gallery {
  display: grid;
  gap: 18px;
}

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

.glove-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 360px);
  gap: 20px;
  align-items: start;
}

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

.gallery-card {
  overflow: hidden;
}

.gallery-button {
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  cursor: zoom-in;
  background: transparent;
  border: 0;
}

.gallery-card img,
.gallery-card video {
  width: 100%;
  object-fit: cover;
  background: #f4f1ec;
}

.package-gallery .gallery-card img {
  aspect-ratio: 1.15;
}

.glove-gallery .gallery-card img {
  aspect-ratio: 0.72;
  object-position: center top;
}

.gallery-meta {
  padding: 16px;
}

.gallery-meta p {
  font-size: 0.92rem;
}

.gallery-tag {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-feature {
  position: sticky;
  top: 102px;
  overflow: hidden;
}

.video-feature video {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  background: var(--ink);
}

.video-feature .gallery-meta {
  padding: 18px;
}

.process-section {
  padding-top: 0;
}

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

.process-grid article {
  padding: clamp(22px, 3vw, 32px);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 82px);
  align-items: start;
  padding-top: 0;
}

.about-section p {
  margin: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 76px);
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto clamp(64px, 9vw, 96px);
  padding: clamp(34px, 6vw, 64px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 63, 49, 0.98), rgba(12, 18, 16, 0.98)),
    var(--evergreen);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.direct-email {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 900;
  word-break: break-word;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  outline: 0;
}

.contact-form input {
  min-height: 46px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  padding: 12px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 160, 82, 0.2);
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 46px);
  color: var(--muted);
  font-size: 0.86rem;
  border-top: 1px solid rgba(16, 22, 20, 0.1);
}

.site-footer span:first-child {
  color: var(--evergreen);
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 74px clamp(16px, 4vw, 44px) 30px;
  background: rgba(7, 11, 10, 0.9);
}

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

.lightbox img {
  max-width: min(1120px, 100%);
  max-height: 78svh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.45);
}

.lightbox p {
  margin: 14px 0 0;
  color: var(--white);
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  min-height: 40px;
  padding: 0 16px;
  color: var(--white);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand,
  .header-actions {
    min-width: auto;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 12, 10, 0.86) 0%, rgba(5, 12, 10, 0.58) 68%, rgba(5, 12, 10, 0.18)),
      linear-gradient(0deg, rgba(5, 12, 10, 0.64), rgba(5, 12, 10, 0.08));
  }

  .quick-facts,
  .split-section,
  .image-band,
  .section-heading,
  .glove-layout,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-copy,
  .video-feature {
    position: static;
  }

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

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

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

@media (max-width: 660px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .brand small,
  .header-contact {
    display: none;
  }

  .main-nav {
    gap: 16px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.3rem);
  }

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

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .quick-facts {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .quick-facts div {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 22, 20, 0.08);
  }

  .quick-facts div:last-child {
    border-bottom: 0;
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 58px 0;
  }

  .section h2,
  .image-band h2,
  .contact-section h2 {
    font-size: clamp(2.18rem, 12vw, 3.1rem);
  }

  .image-band {
    padding-inline: 14px;
  }

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

  .glove-gallery .gallery-card img,
  .video-feature video {
    aspect-ratio: 0.86;
  }

  .contact-section {
    width: min(100% - 28px, var(--max));
    padding: 26px 18px;
  }

  .site-footer {
    display: grid;
  }
}
