:root {
  --bg: #0f1311;
  --surface: #171d19;
  --surface-soft: #202721;
  --card: #eff1ea;
  --text: #f6f1e8;
  --text-soft: #d4d2cb;
  --text-dark: #152019;
  --accent: #c89c62;
  --accent-deep: #a77a21;
  --accent-soft: #e2d4c0;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --shell: min(1180px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  background:
    radial-gradient(circle at top, rgba(200, 156, 98, 0.12), transparent 30%),
    linear-gradient(180deg, #121714 0%, #0b0e0d 100%);
  color: var(--text);
}

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

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

p,
ul {
  margin: 0;
}

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

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(20, 24, 21, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.5rem;
  transition: min-height 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(12, 16, 14, 0.94);
  border-bottom-color: rgba(200, 156, 98, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.site-header.is-scrolled .header-shell {
  min-height: 4.65rem;
}

.brand img {
  width: min(240px, 48vw);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(200, 156, 98, 0.45);
  background: transparent;
  color: var(--text);
  padding: 0.75rem 0.9rem;
  font: inherit;
  border-radius: 999px;
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.hero-home {
  min-height: calc(100vh - 5.5rem);
  background: center / cover no-repeat url("/assets/bg-home.jpg");
}

.hero-backdrop,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(8, 10, 9, 0.74)),
    linear-gradient(120deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.18));
  z-index: -1;
}

.page-hero {
  padding: 7rem 0 5rem;
  background: center / cover no-repeat var(--hero-image);
}

.hero-shell,
.page-hero .shell {
  padding: 5rem 0;
}

.hero-shell {
  display: grid;
  align-content: center;
  min-height: calc(100vh - 5.5rem);
  max-width: 760px;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(8, 10, 9, 0.28);
  color: var(--text);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.hero-scroll::before,
.hero-scroll::after {
  content: "";
  position: absolute;
}

.hero-scroll::before {
  width: 1px;
  height: 1rem;
  background: rgba(255, 255, 255, 0.7);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.hero-scroll::after {
  width: 0.65rem;
  height: 0.65rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(0.2rem) rotate(45deg);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--accent);
  font-family: "Oswald", sans-serif;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.75rem);
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.04em;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: 0.05em;
}

.hero-copy,
.page-hero p,
.placeholder-copy,
.prose,
.contact-summary p,
.form-note {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.9;
}

.hero-copy,
.page-hero p {
  max-width: 60ch;
  margin-top: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.8rem 1.3rem;
  border: 0;
  border-radius: 0;
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #111;
}

.button-primary:hover {
  background: #d7ae78;
}

.button-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--text);
}

.categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 4rem 0;
}

.category-card,
.service-card,
.contact-card,
.policy-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--surface);
  box-shadow: var(--shadow);
}

.category-card {
  padding: 2rem;
  text-align: center;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 156, 98, 0.45);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.34);
}

.category-card img {
  aspect-ratio: 1;
  object-fit: contain;
}

.category-card h2 {
  margin-top: 1rem;
  font-size: 1.8rem;
}

.category-card--wide {
  background:
    linear-gradient(160deg, rgba(200, 156, 98, 0.18), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

.featured-strip {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 2rem;
  align-items: center;
  padding: 0 0 5rem;
}

.featured-strip__content {
  max-width: 680px;
}

.split-section,
.services,
.content-band,
.contact-section,
.placeholder-band,
.page-banner {
  padding: 5rem 0;
}

.mission {
  background: linear-gradient(180deg, rgba(226, 212, 192, 0.12), rgba(226, 212, 192, 0.04));
}

.split-shell,
.two-up,
.contact-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
}

.align-right {
  text-align: right;
  justify-items: end;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  padding: 1.75rem;
  min-height: 100%;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.service-card img {
  width: 78px;
  height: 78px;
  margin-bottom: 1.25rem;
  object-fit: contain;
}

.service-card h3 {
  max-width: 12ch;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 156, 98, 0.38);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}

.placeholder-band {
  background: rgba(255, 255, 255, 0.03);
}

.page-banner {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.75)),
    center / cover no-repeat var(--banner-image);
}

.page-banner .shell {
  max-width: 720px;
}

.checklist {
  padding: 2rem;
  border: 1px solid rgba(200, 156, 98, 0.2);
  background: rgba(200, 156, 98, 0.06);
}

.checklist ul,
.policy-card ul {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.85rem;
  line-height: 1.7;
}

.cta-band {
  position: relative;
  overflow: clip;
  margin-top: 1rem;
}

.cta-band__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.48)),
    center / cover no-repeat url("/assets/bg-footer.jpg");
  transform: scale(1.08);
  transition: transform 120ms linear;
}

.cta-band__content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 0;
}

.footer-logo {
  width: min(320px, 100%);
  margin-bottom: 1rem;
}

.contact-summary {
  display: grid;
  gap: 0.8rem;
}

.contact-summary span {
  display: block;
  color: var(--accent);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-section {
  align-items: start;
}

.contact-card,
.policy-card {
  padding: 2rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.contact-form .full-width,
.form-actions {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.95rem 1rem;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

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

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

.site-footer p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.shop-shell {
  padding: 4.5rem 0 5rem;
}

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

.shop-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-chip {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--text-soft);
  padding: 0.8rem 1rem;
  font: inherit;
  cursor: pointer;
}

.filter-chip.is-active,
.filter-chip:hover {
  border-color: rgba(200, 156, 98, 0.5);
  color: var(--accent);
}

.shop-search {
  display: grid;
  gap: 0.5rem;
  min-width: min(340px, 100%);
  color: var(--text-soft);
}

.shop-search input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.95rem 1rem;
  font: inherit;
}

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

.shop-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.shop-card__media {
  aspect-ratio: 1.15;
  overflow: hidden;
}

.shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card__body {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
}

.shop-card__body p {
  color: var(--text-soft);
  line-height: 1.8;
}

.shop-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.shop-card__actions {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.shop-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.shop-badge {
  display: inline-flex;
  padding: 0.35rem 0.55rem;
  background: rgba(200, 156, 98, 0.12);
  color: var(--accent);
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-stack {
  display: grid;
  gap: 0.3rem;
}

.price-stack strong,
.product-price strong {
  color: var(--accent-soft);
  font-size: 1.45rem;
}

.price-stack span,
.product-price span {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: line-through;
}

.muted-shop {
  color: var(--text-soft);
}

.product-shell {
  padding: 4.5rem 0 5rem;
}

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

.product-gallery,
.product-content {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--surface);
  box-shadow: var(--shadow);
}

.product-gallery {
  overflow: hidden;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.product-content {
  display: grid;
  gap: 1.15rem;
  align-content: start;
  padding: 2rem;
}

.product-price {
  display: flex;
  align-items: end;
  gap: 1rem;
}

.product-stock {
  color: var(--accent);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-short,
.product-prose,
.product-meta-list p {
  color: var(--text-soft);
  line-height: 1.8;
}

.product-meta-list {
  display: grid;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-meta-list span {
  display: inline-block;
  min-width: 88px;
  color: var(--accent);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout-shell,
.status-shell {
  padding: 4.5rem 0 5rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 1.5rem;
}

.checkout-card,
.status-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--surface);
  box-shadow: var(--shadow);
}

.checkout-card {
  padding: 1.5rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.cart-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.cart-item__content {
  display: grid;
  gap: 0.6rem;
}

.cart-item__content p {
  color: var(--text-soft);
}

.cart-item__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: end;
}

.cart-item__controls label {
  display: grid;
  gap: 0.35rem;
  color: var(--text-soft);
}

.cart-item__controls input,
.shop-search input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.85rem 1rem;
  font: inherit;
}

.button-secondary-inline {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: var(--text);
  padding: 0.85rem 1rem;
  font: inherit;
  cursor: pointer;
}

.checkout-summary {
  display: grid;
  gap: 0.9rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text-soft);
}

.summary-line--total {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.1rem;
}

.payment-actions {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.status-card {
  max-width: 760px;
  padding: 2rem;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 900ms ease,
    transform 900ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(-0.2rem);
  }

  50% {
    opacity: 1;
    transform: translateY(0.4rem);
  }
}

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

  .site-header,
  .header-shell,
  .category-card,
  .service-card,
  .cta-band__image,
  .reveal {
    transition: none;
  }

  .hero-scroll::before {
    animation: none;
  }

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

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(20, 24, 21, 0.98);
    border: 1px solid var(--line);
  }

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

  .categories,
  .service-grid,
  .split-shell,
  .two-up,
  .contact-section,
  .cta-band__content,
  .featured-strip,
  .product-layout,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

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

  .align-right {
    text-align: left;
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .hero-scroll {
    bottom: 1.25rem;
    width: 3rem;
    height: 3rem;
  }

  .hero-shell,
  .page-hero .shell,
  .split-section,
  .services,
  .content-band,
  .contact-section,
  .placeholder-band,
  .page-banner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .product-gallery img {
    min-height: 340px;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .shop-card__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
