:root {
  --bg: #0f0a09;
  --bg-soft: #17110f;
  --surface: rgba(32, 23, 20, 0.82);
  --surface-strong: rgba(24, 17, 14, 0.96);
  --card: #1a1311;
  --card-2: #241a17;
  --text: #f8f2ec;
  --muted: #c7b7ab;
  --gold: #d7b36a;
  --gold-strong: #f1cb7a;
  --red: #9b1d20;
  --red-strong: #d83c3c;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.22);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(215, 179, 106, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(155, 29, 32, 0.18), transparent 26%),
    linear-gradient(180deg, #100b0a 0%, #0d0908 38%, #140d0c 100%);
}

body.is-loading {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #1c120d;
}

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

.site-shell {
  overflow: clip;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(215, 179, 106, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(13, 9, 8, 0.98), rgba(16, 10, 9, 1));
  opacity: 1;
  visibility: visible;
  transition: opacity 600ms ease, visibility 600ms ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 172px;
  height: 172px;
}

.page-loader-mark img {
  width: 116px;
  height: 116px;
  border-radius: 26px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  animation: loaderPulse 1.6s ease-in-out infinite;
}

.page-loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(215, 179, 106, 0.16);
}

.page-loader-ring::before,
.page-loader-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.page-loader-ring::before {
  border: 1px solid rgba(215, 179, 106, 0.24);
  transform: scale(1.08);
  animation: loaderOrbit 2.1s linear infinite;
}

.page-loader-ring::after {
  border-top: 2px solid var(--gold-strong);
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  animation: loaderSpin 1.45s linear infinite;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(15, 10, 9, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.04);
}

.brand strong,
.footer h3,
.section-head h2,
.hero h1,
.about-copy h2,
.contact-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.02em;
}

.brand span {
  display: grid;
  gap: 4px;
}

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

.brand small {
  color: var(--muted);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: transform var(--transition), color var(--transition), border-color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
  border-color: rgba(215, 179, 106, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 60px 0 48px;
  background:
    linear-gradient(120deg, rgba(15, 10, 9, 0.92), rgba(15, 10, 9, 0.58)),
    url("../img/hero.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(215, 179, 106, 0.18), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(155, 29, 32, 0.24), transparent 24%),
    linear-gradient(180deg, rgba(15, 10, 9, 0.16), rgba(15, 10, 9, 0.28));
  pointer-events: none;
}

.hero-grid,
.about-grid,
.contact-grid,
.catalog-layout,
.footer-grid,
.trust-band-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.95;
  max-width: 10ch;
}

.hero-text,
.trust-band p,
.about-copy p,
.reason-card p,
.featured-description,
.product-description,
.contact-card p,
.footer p,
.hours-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 60ch;
  margin: 24px 0 0;
  font-size: 1.05rem;
}

.hero-actions,
.panel-top,
.filter-bar,
.carousel-controls,
.trust-pill-list,
.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

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

.button-primary {
  color: #1b110d;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: 0 14px 30px rgba(215, 179, 106, 0.25);
}

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

.button-tertiary {
  color: var(--gold-strong);
  border-color: rgba(215, 179, 106, 0.26);
  background: rgba(255, 255, 255, 0.03);
}

.pulse-on-click.is-pressed {
  transform: scale(0.97);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.hero-trust article,
.panel-card,
.reason-card,
.contact-card,
.map-card,
.hours-card,
.trust-band,
.about-media,
.about-copy,
.featured-card,
.product-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-trust article {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.hero-trust strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold-strong);
}

.hero-trust span {
  color: var(--muted);
}

.hero-panel {
  justify-self: end;
  width: min(100%, 420px);
}

.carousel-controls {
  align-items: center;
  justify-content: flex-end;
}

.carousel-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(215, 179, 106, 0.22);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(215, 179, 106, 0.06), rgba(155, 29, 32, 0.08));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  letter-spacing: 0.04em;
  font-weight: 700;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.carousel-btn span[aria-hidden="true"] {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #20140d;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(215, 179, 106, 0.42);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
}

.panel-chip {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-chip-accent {
  color: var(--gold-strong);
  border-color: rgba(215, 179, 106, 0.24);
}

.panel-card {
  margin-top: 16px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(31, 23, 20, 0.95), rgba(19, 13, 11, 0.98));
}

.panel-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.panel-card-body,
.contact-card,
.about-copy,
.hours-card,
.reason-card {
  padding: 28px;
}

.panel-card-body p {
  margin: 0;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.panel-card-body h2 {
  margin: 10px 0 14px;
  font-size: 1.8rem;
}

.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.price-line strong,
.featured-note {
  color: var(--gold-strong);
  font-size: 1.1rem;
}

.section {
  padding: 96px 0;
}

.trust-band {
  margin: -26px auto 0;
  width: min(var(--container), calc(100% - 32px));
  padding: 26px 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(29, 20, 17, 0.92), rgba(22, 15, 13, 0.96));
  position: relative;
  z-index: 2;
}

.trust-band-grid {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.trust-label {
  display: block;
  color: var(--gold-strong);
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-pill-list {
  justify-content: flex-end;
}

.trust-pill-list span,
.filter-chip,
.product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.trust-pill-list span,
.filter-chip {
  min-height: 42px;
  padding: 0 16px;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.filter-chip.is-active {
  color: #1b110d;
  border-color: rgba(215, 179, 106, 0.42);
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head h2,
.about-copy h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  max-width: 14ch;
}

.featured-carousel {
  overflow: hidden;
}

.featured-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 16px);
  gap: 24px;
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-card {
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #231916, #17110f);
}

.featured-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.featured-content,
.product-body {
  padding: 22px;
}

.featured-title,
.product-name,
.reason-card h3 {
  margin: 8px 0 10px;
  font-size: 1.35rem;
}

.featured-footer,
.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

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

.product-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(33, 24, 21, 0.95), rgba(18, 13, 11, 1));
  transform: translateY(0);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.42);
  border-color: rgba(215, 179, 106, 0.22);
}

.product-image-wrap {
  position: relative;
}

.product-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  min-height: 34px;
  padding: 0 12px;
  background: rgba(10, 8, 8, 0.72);
  color: var(--gold-strong);
  border: 1px solid rgba(215, 179, 106, 0.22);
  backdrop-filter: blur(10px);
}

.product-topline {
  align-items: start;
}

.product-category {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

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

.about-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 100%;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.about-copy {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(32, 23, 20, 0.94), rgba(18, 13, 11, 1));
}

.about-points {
  margin-top: 26px;
  flex-direction: column;
}

.about-points article {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.about-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-strong);
}

.about-points span,
.contact-info span,
.footer a,
.footer-bottom,
.form-status {
  color: var(--muted);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.reason-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(31, 23, 20, 0.96), rgba(18, 13, 11, 1));
}

.reason-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  margin-bottom: 20px;
  color: #23160d;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  font-weight: 800;
}

.contact-card,
.hours-card {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(31, 23, 20, 0.96), rgba(18, 13, 11, 1));
}

.contact-info {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.contact-info article {
  display: grid;
  gap: 4px;
}

.contact-info strong {
  color: var(--gold-strong);
}

.contact-info a,
.footer a {
  transition: color var(--transition);
}

.contact-info a:hover,
.footer a:hover {
  color: var(--gold-strong);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(215, 179, 106, 0.42);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(215, 179, 106, 0.08);
}

.contact-side {
  display: grid;
  gap: 22px;
}

.map-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 420px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.hours-card h3 {
  margin: 0 0 10px;
}

.hours-card p {
  margin: 0 0 18px;
}

.hours-list {
  display: grid;
  gap: 10px;
}

.hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer {
  padding: 40px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: start;
}

.footer-grid > div {
  display: grid;
  gap: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  min-width: 240px;
  max-width: calc(100% - 36px);
  padding: 14px 16px;
  border-radius: 18px;
  color: #1b110d;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: 0 20px 40px rgba(215, 179, 106, 0.25);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

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

.skeleton-card {
  min-height: 370px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.04) 8%, rgba(255, 255, 255, 0.08) 18%, rgba(255, 255, 255, 0.04) 33%),
    linear-gradient(180deg, rgba(31, 23, 20, 0.96), rgba(18, 13, 11, 1));
  background-size: 200% 100%, auto;
  animation: shimmer 1.2s linear infinite;
  border: 1px solid var(--line);
}

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

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

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 260ms;
}

@keyframes shimmer {
  to {
    background-position: -200% 0, 0 0;
  }
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderOrbit {
  0%,
  100% {
    transform: scale(1.08);
    opacity: 0.55;
  }

  50% {
    transform: scale(1.18);
    opacity: 0.2;
  }
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .trust-band-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .featured-track {
    grid-auto-columns: calc(50% - 12px);
  }

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

  .hero-panel {
    justify-self: start;
  }

  .section-head h2,
  .about-copy h2,
  .contact-card h2 {
    max-width: none;
  }

  .carousel-controls {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .nav {
    min-height: 76px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 88px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 22px;
    background: rgba(18, 13, 11, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-trust,
  .catalog-grid,
  .catalog-grid-wide,
  .reasons-grid,
  .featured-track {
    grid-template-columns: 1fr;
  }

  .featured-track {
    grid-auto-columns: 100%;
  }

  .section {
    padding: 78px 0;
  }
}

@media (max-width: 560px) {
  .container,
  .trust-band {
    width: min(var(--container), calc(100% - 20px));
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .button,
  .filter-chip {
    width: 100%;
  }

  .section-head,
  .price-line,
  .featured-footer,
  .footer-bottom,
  .hero-actions,
  .carousel-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .panel-card-body,
  .contact-card,
  .about-copy,
  .hours-card,
  .reason-card {
    padding: 22px;
  }
}

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

  .page-loader,
  .page-loader.is-hidden {
    transition: none;
  }
}
