:root {
  --ink: #151916;
  --muted: #657067;
  --paper: #fbfcf7;
  --soft: #eef2ea;
  --line: #d8e0d8;
  --white: #ffffff;
  --green: #132f22;
  --green-2: #246447;
  --gold: #c9a24d;
  --danger: #7c1f1f;
  --shadow: 0 18px 50px rgba(19, 47, 34, 0.15);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 30;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--green);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 252, 247, 0.96);
  box-shadow: 0 10px 30px rgba(21, 25, 22, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: var(--white);
}

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

.brand small {
  opacity: 0.75;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
}

.nav-cta,
.button,
.filter {
  border-radius: 6px;
  font-weight: 800;
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid currentColor;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-slider,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 4s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    radial-gradient(circle at 75% 35%, rgba(201, 162, 77, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(8, 20, 14, 0.95) 0%, rgba(8, 20, 14, 0.78) 45%, rgba(8, 20, 14, 0.24) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 96px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.55rem, 7vw, 5.6rem);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.hero-text {
  max-width: 730px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #1e190d;
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin: 42px 0 0;
}

.hero-proof div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.hero-proof dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.slider-dots {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 32px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.band {
  background: var(--soft);
}

.beret-focus {
  background:
    linear-gradient(135deg, rgba(19, 47, 34, 0.96), rgba(16, 23, 20, 0.98)),
    var(--green);
  color: var(--white);
}

.beret-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.78fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.beret-copy .lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.beret-copy p:not(.eyebrow):not(.lead) {
  color: rgba(255, 255, 255, 0.72);
}

.beret-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.beret-points span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.beret-showcase {
  position: relative;
}

.beret-showcase img {
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.floating-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(320px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(16, 23, 20, 0.82);
  backdrop-filter: blur(14px);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
}

.beret-collections {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1240px;
  margin: 42px auto 0;
}

.beret-mini {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.beret-mini img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.beret-mini h3,
.beret-mini p {
  margin-left: 18px;
  margin-right: 18px;
}

.beret-mini h3 {
  margin-top: 18px;
}

.beret-mini p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  max-width: 1220px;
  margin: 0 auto 42px;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.section-heading.compact {
  display: block;
  max-width: 840px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1220px;
  margin: 0 auto;
}

.service-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--green-2);
  font-weight: 900;
}

.service-card p,
.product-card p,
.order p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.compliance {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(300px, 0.85fr);
  gap: clamp(24px, 6vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid rgba(124, 31, 31, 0.2);
  border-bottom: 1px solid rgba(124, 31, 31, 0.2);
}

.compliance p:last-child {
  margin: 0;
  color: var(--danger);
  font-weight: 700;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -8px auto 30px;
}

.filter {
  border: 1px solid var(--line);
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.filter.is-active {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, opacity 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card.featured-product {
  border-color: rgba(201, 162, 77, 0.7);
  box-shadow: 0 22px 70px rgba(201, 162, 77, 0.18);
}

.product-card.is-hidden {
  display: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.product-card div {
  padding: 18px;
}

.product-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-section {
  background: #101714;
  color: var(--white);
}

.gallery-section .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  max-width: 1280px;
  margin: 38px auto 0;
}

.gallery button {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery button:hover img {
  transform: scale(1.06);
}

.news-strip {
  overflow: hidden;
  background: var(--green);
  color: var(--white);
}

.news-strip h2 {
  max-width: 820px;
}

.marquee {
  display: flex;
  gap: 30px;
  margin-top: 34px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 900;
}

.marquee span {
  animation: marquee 24s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.order {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 7vw, 92px);
  max-width: 1180px;
  margin: 0 auto;
}

.contact-details {
  margin-top: 24px;
  color: var(--muted);
  font-style: normal;
}

.contact-details strong {
  color: var(--ink);
}

.contact-details a,
.social-links a {
  color: var(--green);
  font-weight: 800;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cbd7ce;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--paper);
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(201, 162, 77, 0.34);
  border-color: var(--gold);
}

.contact-form .button {
  width: fit-content;
}

.faq {
  background: var(--soft);
}

.faq-list {
  max-width: 900px;
  margin: 38px auto 0;
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 850;
  list-style-position: outside;
}

details p {
  margin: 0 0 22px;
}

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

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  border-radius: 8px;
  object-fit: contain;
  background: var(--white);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #101a15;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

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

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

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .menu-button {
    display: inline-flex;
    border: 1px solid currentColor;
    border-radius: 6px;
    padding: 10px 12px;
    color: inherit;
    background: transparent;
    font: inherit;
    font-weight: 800;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(8, 20, 14, 0.92), rgba(8, 20, 14, 0.68));
  }

  .section-heading,
  .service-grid,
  .beret-layout,
  .compliance,
  .order {
    grid-template-columns: 1fr;
  }

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

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

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

  .brand small {
    display: none;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
  }

  .hero-proof,
  .product-grid,
  .beret-collections,
  .gallery {
    grid-template-columns: 1fr;
  }

  .slider-dots {
    left: 16px;
    right: auto;
  }

  .service-card {
    min-height: auto;
  }

  .service-card span {
    margin-bottom: 26px;
  }

  .site-footer {
    flex-direction: column;
  }
}

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