:root {
  --black: #050505;
  --charcoal: #101010;
  --panel: #17130f;
  --gold: #d7aa55;
  --gold-bright: #f3d28a;
  --cream: #f8efe0;
  --muted: #b9b0a3;
  --line: rgba(215, 170, 85, 0.26);
  --wine: #3a1020;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid rgba(215, 170, 85, 0.18);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-mark span {
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(248, 239, 224, 0.84);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--gold-bright);
}

.header-action {
  justify-self: end;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 124px clamp(18px, 6vw, 92px) 72px;
  overflow: hidden;
  background: #050505;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.1)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0) 34%);
}

.hero-content {
  position: relative;
  width: min(680px, 100%);
}

.hero-logo {
  width: min(285px, 62vw);
  margin: 0 0 18px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.55));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(56px, 9vw, 132px);
  color: #fff9ed;
}

h2 {
  font-size: clamp(32px, 5vw, 64px);
}

h3 {
  font-size: 28px;
}

.hero-copy {
  width: min(520px, 100%);
  margin: 22px 0 30px;
  color: rgba(248, 239, 224, 0.88);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions,
.product-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gold-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.gold-button {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #140d05;
}

.ghost-button {
  background: rgba(5, 5, 5, 0.28);
  color: var(--gold-bright);
}

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

.small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090807;
}

.trust-strip div {
  padding: 26px clamp(16px, 3vw, 42px);
  border-right: 1px solid rgba(215, 170, 85, 0.16);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: 22px;
}

.trust-strip span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.section-intro {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0 38px;
  text-align: center;
}

.section-intro p:last-child {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.compact {
  padding: 0 0 34px;
}

.product-grid {
  width: min(1420px, calc(100% - 36px));
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  background: linear-gradient(180deg, #19130d, #0b0b0b);
  border: 1px solid rgba(215, 170, 85, 0.24);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #1b1620;
}

.product-info {
  padding: 22px;
}

.product-tag {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-info p:not(.product-tag) {
  min-height: 78px;
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.feature-band {
  display: grid;
  gap: clamp(30px, 5vw, 58px);
  padding: 84px clamp(18px, 6vw, 92px);
  background:
    linear-gradient(90deg, rgba(58, 16, 32, 0.34), rgba(5, 5, 5, 0.14)),
    #0b0908;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-copy {
  width: min(850px, 100%);
  margin: 0 auto;
  text-align: center;
}

.feature-copy p:not(.eyebrow) {
  margin: 24px auto 28px;
  color: var(--muted);
  font-size: 17px;
}

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

.feature-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(215, 170, 85, 0.22);
  border-radius: 6px;
}

.buy-section {
  padding: 92px clamp(18px, 6vw, 92px);
}

.buy-list {
  width: min(980px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.buy-row {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) repeat(3, minmax(90px, 130px));
  gap: 1px;
  background: rgba(215, 170, 85, 0.18);
}

.buy-row + .buy-row {
  border-top: 1px solid var(--line);
}

.buy-row span,
.buy-row a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 20px;
  background: #0b0b0b;
}

.buy-row span {
  color: var(--cream);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
}

.buy-row a {
  justify-content: center;
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 800;
}

.buy-row a:hover {
  background: rgba(215, 170, 85, 0.12);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
  padding: 92px clamp(18px, 6vw, 92px);
  background: var(--cream);
  color: #0c0a08;
}

.about-section > div:first-child {
  max-width: 560px;
}

.about-section .eyebrow {
  color: #8d6524;
}

.about-section h2 {
  max-width: 560px;
}

.about-copy {
  display: grid;
  gap: 22px;
  max-width: 620px;
  color: #43392d;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
}

.about-copy p {
  margin: 0;
}

.banner-carousel {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #070707;
}

.banner-carousel::before,
.banner-carousel::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(12vw, 150px);
  pointer-events: none;
}

.banner-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #050505, rgba(5, 5, 5, 0));
}

.banner-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #050505, rgba(5, 5, 5, 0));
}

.banner-track {
  display: flex;
  width: max-content;
  animation: scrollBanners 34s linear infinite;
}

.banner-carousel:hover .banner-track {
  animation-play-state: paused;
}

.banner-track a {
  width: min(100vw, 1680px);
  aspect-ratio: 1680 / 900;
  flex: 0 0 auto;
  display: block;
  background: #050505;
  border-right: 1px solid rgba(215, 170, 85, 0.22);
}

.banner-track img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}

.instagram-section {
  padding: 92px clamp(18px, 6vw, 92px);
  background:
    linear-gradient(180deg, rgba(58, 16, 32, 0.26), rgba(5, 5, 5, 0)),
    #090807;
  border-bottom: 1px solid var(--line);
}

.social-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.social-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(215, 170, 85, 0.24);
  border-radius: 6px;
  background: #0d0b09;
  box-shadow: var(--shadow);
}

.social-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 280ms ease;
}

.social-card:hover img {
  transform: scale(1.035);
}

.social-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.04) 54%);
}

.social-card div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.social-card span {
  display: block;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.social-card strong {
  display: block;
  margin-top: 5px;
  color: var(--cream);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
}

.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}

@keyframes scrollBanners {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.contact-section {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 28px;
  padding: 92px clamp(18px, 6vw, 92px);
}

.contact-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, #17130f, #0a0908);
  padding: clamp(24px, 4vw, 42px);
}

.contact-panel p:not(.eyebrow) {
  color: var(--muted);
}

.contact-panel p a {
  color: var(--gold-bright);
  font-weight: 800;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  color: var(--gold-bright);
  font-weight: 800;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(215, 170, 85, 0.25);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
  padding: 14px 16px;
  outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold-bright);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 6vw, 92px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: invert(1) brightness(1.3);
}

.site-footer div {
  display: flex;
  gap: 18px;
  color: var(--gold-bright);
  font-weight: 700;
}

.product-modal {
  width: min(980px, calc(100% - 30px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0a09;
  color: var(--cream);
  box-shadow: var(--shadow);
  padding: 0;
}

.product-modal::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(8px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.66);
  color: var(--cream);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.modal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 34px;
  align-items: center;
  padding: clamp(20px, 4vw, 44px);
}

.modal-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.modal-description {
  color: var(--muted);
  font-size: 17px;
}

.modal-points {
  padding-left: 18px;
  color: var(--cream);
}

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

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 7px;
    width: 42px;
    height: 42px;
    align-content: center;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: transparent;
    padding: 0 10px;
  }

  .menu-toggle span {
    height: 2px;
    background: var(--gold-bright);
  }

  .mobile-nav.is-open {
    position: fixed;
    z-index: 19;
    top: 75px;
    left: 0;
    right: 0;
    display: grid;
    gap: 1px;
    background: rgba(215, 170, 85, 0.22);
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav a {
    padding: 16px 22px;
    background: rgba(5, 5, 5, 0.94);
    color: var(--gold-bright);
    font-weight: 800;
  }

  .hero {
    min-height: 86vh;
    padding-bottom: 44px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.32)),
      linear-gradient(0deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0) 45%);
  }

  .trust-strip,
  .about-section,
  .contact-section,
  .modal-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    text-align: left;
  }

  .about-section > div:first-child,
  .about-section h2,
  .about-copy {
    max-width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .social-card,
  .social-card img {
    min-height: 320px;
  }

  .banner-track a {
    width: 100vw;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 580px) {
  .brand-mark span {
    font-size: 18px;
  }

  .product-grid,
  .feature-media {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .buy-row {
    grid-template-columns: 1fr;
  }

  .buy-row span,
  .buy-row a {
    justify-content: center;
  }
}
