:root {
  --bg: #060606;
  --bg-soft: #101010;
  --surface: rgba(18, 18, 18, 0.68);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --stroke: rgba(255, 255, 255, 0.12);
  --stroke-strong: rgba(212, 168, 76, 0.28);
  --text: #f7f0de;
  --muted: rgba(247, 240, 222, 0.72);
  --accent: #d4a84c;
  --accent-strong: #f0c874;
  --accent-soft: rgba(212, 168, 76, 0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --shell: min(1180px, calc(100vw - 2rem));
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(191, 129, 21, 0.14), transparent 32%),
    radial-gradient(circle at 90% 18%, rgba(126, 34, 19, 0.2), transparent 26%),
    linear-gradient(180deg, #060606 0%, #0d0b09 50%, #090909 100%);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.site-noise,
.ambient {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
}

.site-noise {
  opacity: 0.18;
  background-image:
    linear-gradient(transparent 0, rgba(255, 255, 255, 0.04) 50%, transparent 100%),
    radial-gradient(rgba(255, 255, 255, 0.12) 0.7px, transparent 0.7px);
  background-size: 100% 100%, 8px 8px;
  mix-blend-mode: soft-light;
}

.ambient {
  filter: blur(100px);
  opacity: 0.3;
}

.ambient-one {
  inset: 5% auto auto -10%;
  width: 20rem;
  height: 20rem;
  background: rgba(185, 120, 28, 0.3);
}

.ambient-two {
  inset: auto -5% 8% auto;
  width: 24rem;
  height: 24rem;
  background: rgba(102, 45, 18, 0.36);
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.glass-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0.85rem 0;
  transition: padding 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 9rem;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.nav-toggle span {
  width: 1.1rem;
  height: 1px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: calc(var(--header-height) + 1rem) 1rem auto 1rem;
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  border: 1px solid var(--stroke);
  border-radius: 1.5rem;
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(22px);
  transform: translateY(-1rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.site-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.site-nav a {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 7rem 0 2rem;
  overflow: clip;
}

.hero-backdrop,
.hero-gradient {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background:
    radial-gradient(circle at 18% 22%, rgba(240, 200, 116, 0.2), transparent 24%),
    radial-gradient(circle at 78% 30%, rgba(138, 63, 28, 0.22), transparent 28%),
    radial-gradient(circle at 52% 78%, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(135deg, #060606 0%, #120d08 32%, #1f1207 58%, #090909 100%);
  transform: translate3d(0, 0, 0) scale(1.04);
  will-change: transform;
}

.hero-gradient {
  background:
    radial-gradient(circle at 22% 20%, rgba(208, 139, 18, 0.25), transparent 26%),
    linear-gradient(180deg, transparent 0%, rgba(6, 6, 6, 0.25) 45%, #060606 100%);
}

.hero-shell {
  position: relative;
  display: grid;
  gap: 1.5rem;
}

.hero-copy {
  max-width: 42rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-title,
.section-heading h2,
.section-intro h2,
.product-modal-panel h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-title {
  font-size: clamp(3.65rem, 18vw, 7.6rem);
  max-width: 12ch;
}

.hero-title span {
  display: block;
  color: rgba(247, 240, 222, 0.8);
}

.hero-text {
  margin: 1.35rem 0 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.inline-link:hover,
.inline-link:focus-visible,
.filter-chip:hover,
.filter-chip:focus-visible,
.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #f0c874 0%, #b57e22 100%);
  color: #1a1306;
  font-weight: 800;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.hero-rail {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.hero-rail-copy p,
.contact-group p,
.footer-column p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.rail-label {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-rail-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: center;
}

.hero-rail-logos img {
  width: 100%;
  max-height: 3.6rem;
  padding: 0.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  object-fit: contain;
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section-grid,
.section-intro,
.certification-layout {
  display: grid;
  gap: 1.5rem;
}

.section-heading h2,
.section-intro h2,
.contact-copy h2 {
  font-size: clamp(2.5rem, 10vw, 4.6rem);
}

.section-intro h2 {
  max-width: 16ch;
}

.about-layout,
.contact-layout {
  display: grid;
  gap: 1.5rem;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.52) 100%);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.about-copy p + p {
  margin-top: 1rem;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
  padding: 0.85rem;
  border-radius: 999px;
}

.filter-chip {
  padding: 0.8rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.filter-chip.is-active {
  border-color: var(--stroke-strong);
  background: var(--accent-soft);
  color: var(--text);
}

.product-grid,
.commitment-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.product-grid {
  margin-top: 1.5rem;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(11, 11, 11, 0.9);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, opacity 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--stroke-strong);
}

.product-card[hidden] {
  display: none;
}

.product-image {
  position: relative;
  overflow: hidden;
  min-height: 16rem;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 6, 6, 0.85) 100%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.product-body {
  display: grid;
  gap: 0.85rem;
  padding: 1.2rem;
}

.product-tag {
  margin: 0;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.product-body h3,
.commitment-card h3,
.contact-group h3,
.footer-column h3 {
  margin: 0;
  font-size: 1.1rem;
}

.product-body p,
.commitment-card p,
.certification-copy,
.product-modal-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.inline-link {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.inline-link::after {
  content: " ↗";
  color: var(--accent-strong);
}

.commitment-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem;
  border-radius: var(--radius-md);
}

.commitment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  font-size: 1.25rem;
}

.certification-copy {
  max-width: 42rem;
}

.certification-marquee {
  overflow: hidden;
  margin-top: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
}

.certification-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(10rem, 1fr);
  gap: 1rem;
}

.certification-item {
  display: grid;
  gap: 0.75rem;
  align-items: center;
  margin: 0;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  min-height: 10rem;
}

.certification-item img {
  width: 100%;
  max-height: 4.5rem;
  object-fit: contain;
  filter: grayscale(1) brightness(0.96);
  transition: filter 220ms ease, transform 220ms ease;
}

.certification-item:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.03);
}

.certification-item figcaption {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-layout {
  gap: 2rem;
}

.contact-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
}

.contact-group + .contact-group {
  margin-top: 1.4rem;
}

.contact-group a {
  color: var(--text);
}

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

.field {
  display: grid;
  gap: 0.55rem;
}

.field label {
  color: var(--text);
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(240, 200, 116, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-color: rgba(255, 108, 108, 0.52);
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--accent-strong);
}

.site-footer {
  padding: 1rem 0 2rem;
}

.footer-grid {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-column {
  display: grid;
  gap: 0.75rem;
}

.footer-column a,
.footer-column p {
  color: var(--muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--stroke);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.footer-bottom {
  padding-top: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(247, 240, 222, 0.58);
  font-size: 0.95rem;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.product-modal[hidden] {
  display: none;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(12px);
}

.product-modal-panel {
  position: relative;
  width: min(34rem, 100%);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
}

.product-modal-panel .eyebrow {
  margin-bottom: 0.85rem;
}

.product-modal-panel h2 {
  font-size: clamp(2.3rem, 8vw, 3.5rem);
}

.product-modal-text {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.3rem;
  cursor: pointer;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (min-width: 700px) {
  .hero {
    padding-bottom: 3rem;
  }

  .hero-shell,
  .section-grid,
  .section-intro,
  .certification-layout {
    gap: 2rem;
  }

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

  .contact-card {
    padding: 1.5rem;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    padding-inline: 1rem;
  }

  .hero {
    align-items: center;
    padding: 8rem 0 2.5rem;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1.3fr);
  }

  .hero-rail {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    margin-top: 1rem;
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 2rem;
  }

  .about-media {
    order: 2;
  }

  .about-copy {
    order: 1;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.1fr 1fr 1fr 1.2fr;
  }

  .certification-track {
    grid-auto-columns: minmax(13rem, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
