:root {
  --maroon: #7a0808;
  --maroon-dark: #4f0505;
  --maroon-soft: #9d1717;
  --yellow: #ffd200;
  --yellow-soft: #fff2a8;
  --cream: #fff8df;
  --gold: #d39b26;
  --ink: #280707;
  --muted: #735454;
  --white: #fffdf4;
  --shadow: 0 24px 80px rgba(42, 5, 5, 0.18);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(255, 210, 0, 0.35), transparent 35%),
    radial-gradient(circle at 90% 10%, rgba(122, 8, 8, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(255, 210, 0, 0.08), transparent 45%);
  z-index: -1;
}

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

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

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

.section { padding: 96px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(79, 5, 5, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 210, 0, 0.25);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand img { width: 150px; height: auto; }

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

.nav a {
  color: var(--yellow-soft);
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav a:hover, .nav a:focus-visible {
  background: var(--yellow);
  color: var(--maroon-dark);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  gap: 5px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--yellow);
  border-radius: 4px;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(122, 8, 8, 0.96) 0%, rgba(122, 8, 8, 0.92) 47%, rgba(255, 210, 0, 0.92) 47%, rgba(255, 210, 0, 0.9) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "✣";
  font-size: 1rem;
}

h1, h2, h3 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-family: 'Poppins', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1 {
  margin-top: 18px;
  font-size: clamp(4rem, 10vw, 8.4rem);
  text-transform: uppercase;
  color: var(--yellow);
  text-shadow: 0 12px 18px rgba(0,0,0,0.36), 0 4px 6px rgba(0,0,0,0.18);
  -webkit-text-stroke: 0.5px rgba(0,0,0,0.12);
}

h2 {
  margin: 16px 0 22px;
  font-size: clamp(2.7rem, 6.5vw, 5.8rem);
  color: var(--maroon);
  text-transform: uppercase;
}

h3 { font-size: clamp(1.5rem, 2.5vw, 2.3rem); }

.lead {
  max-width: 610px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--yellow-soft);
  font-weight: 700;
}

/* Improve readability of hero paragraph on the dark gradient */
.hero .lead {
  color: var(--white);
  font-weight: 800;
  text-shadow: 0 6px 10px rgba(0,0,0,0.24);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

/* Make hero tags readable over both maroon and yellow background */
.hero-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  background: rgba(0,0,0,0.30);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  text-shadow: 0 2px 6px rgba(0,0,0,0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  backdrop-filter: blur(4px);
}

.hero-tags span:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.36);
}

/* Keep cert-badges styling lighter (used in light section) */
.cert-badges span {
  display: inline-flex;
  border: 1px solid rgba(122,122,122,0.12);
  background: rgba(255,255,255,0.12);
  color: var(--maroon);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
}

.hero-actions, .modal-content .btn { margin-top: 26px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--yellow);
  color: var(--maroon-dark);
  box-shadow: 0 14px 34px rgba(255, 210, 0, 0.28);
}

.btn-ghost {
  margin-left: 10px;
  color: var(--yellow-soft);
  border: 1px solid rgba(255,255,255,0.36);
}

.hero-media { position: relative; }

.image-frame {
  position: relative;
  border: 10px solid var(--maroon);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  background: var(--maroon);
}

.image-frame img { aspect-ratio: 4 / 5; object-fit: cover; }

.floating-card {
  position: absolute;
  right: -16px;
  bottom: 34px;
  background: var(--maroon);
  color: var(--yellow-soft);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 2px solid var(--yellow);
}

.floating-card strong { display: block; color: var(--yellow); }

.quick-info { margin-top: -50px; position: relative; z-index: 3; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  background: var(--white);
  border: 1px solid rgba(122, 8, 8, 0.12);
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.info-card span {
  color: var(--gold);
  font-weight: 1000;
}

.info-card strong {
  display: block;
  margin: 6px 0 8px;
  color: var(--maroon);
  font-size: 1.2rem;
}

.two-col, .cert-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.section-copy p, .section-head p {
  color: var(--muted);
  font-weight: 650;
  font-size: 1.05rem;
}

.check-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  background: rgba(122, 8, 8, 0.06);
  border-left: 5px solid var(--yellow);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-weight: 900;
  color: var(--maroon);
}

.about-card, .store-card {
  overflow: hidden;
  background: var(--maroon);
  color: var(--yellow-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-card img { aspect-ratio: 16 / 10; object-fit: cover; }

.about-card div, .store-info { padding: 28px; }

.about-card strong { color: var(--yellow); font-size: 1.35rem; }

.products { background: linear-gradient(180deg, rgba(122,8,8,0.06), transparent); }

.section-head { text-align: center; max-width: 780px; margin: 0 auto 38px; }

.product-toolbar {
  max-width: 560px;
  margin: 0 auto 28px;
  display: grid;
  gap: 8px;
}

.product-toolbar label { font-weight: 900; color: var(--maroon); }

.product-toolbar input {
  width: 100%;
  border: 2px solid rgba(122, 8, 8, 0.18);
  border-radius: 999px;
  padding: 16px 20px;
  font: inherit;
  background: var(--white);
  outline: none;
}

.product-toolbar input:focus { border-color: var(--maroon); box-shadow: 0 0 0 5px rgba(255, 210, 0, 0.24); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(122, 8, 8, 0.12);
  box-shadow: 0 18px 55px rgba(54, 8, 8, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

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

.product-body { padding: 22px; }

.product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.product-top h3 {
  font-size: 1.55rem;
  color: var(--maroon);
  letter-spacing: -0.03em;
}

.price {
  color: var(--maroon);
  background: var(--yellow);
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 1000;
  white-space: nowrap;
}

.product-card p { color: var(--muted); margin: 10px 0 18px; }

.product-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.product-actions .btn { min-height: 42px; padding: 10px 14px; font-size: 0.92rem; }

.btn-detail {
  border: 1px solid rgba(122,8,8,0.22);
  color: var(--maroon);
  background: transparent;
  cursor: pointer;
}

.certificates {
  background: var(--maroon);
  color: var(--yellow-soft);
}

.certificates h2 { color: var(--yellow); }
.certificates .section-copy p { color: var(--yellow-soft); }
.certificates .eyebrow { color: var(--yellow); }

.cert-badges { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0; }
.cert-badges span { border-color: rgba(255,210,0,0.45); }

.logo-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.logo-row img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
  padding: 8px;
}

.awards-panel {
  background: var(--yellow);
  color: var(--maroon-dark);
  padding: 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.awards-panel h3 { margin-bottom: 16px; }
.awards-panel li { margin: 10px 0; font-weight: 850; }

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

.catalog-grid a {
  background: var(--white);
  padding: 10px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.catalog-grid a:hover { transform: translateY(-4px); }
.catalog-grid img { border-radius: 15px; }

.contact { background: linear-gradient(135deg, rgba(255,210,0,0.2), rgba(122,8,8,0.05)); }

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--maroon);
  color: var(--yellow-soft);
  border-radius: 999px;
  padding: 14px 18px;
  transition: 0.2s ease;
}

.contact-list a:hover { background: var(--maroon-dark); transform: translateX(4px); }
.contact-list strong { color: var(--yellow); }
.contact-list span { text-align: right; font-weight: 750; }

.store-card img { aspect-ratio: 3 / 2; object-fit: cover; }
.store-info h3 { color: var(--yellow); }
.store-info p { color: var(--yellow-soft); }
.store-info .btn { margin-top: 12px; }

.site-footer {
  background: var(--maroon-dark);
  color: var(--yellow-soft);
  padding: 34px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid img { width: 130px; }
.footer-grid p { margin: 8px 0 0; }
.back-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  color: var(--maroon-dark);
  border-radius: 999px;
  font-weight: 1000;
  font-size: 1.4rem;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}

.modal.is-open { display: grid; place-items: center; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 3, 3, 0.76);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 34px));
  max-height: calc(100vh - 34px);
  overflow: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  box-shadow: var(--shadow);
}

.modal-card img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.modal-content { padding: 36px; }
.modal-content h3 { margin-top: 12px; color: var(--maroon); }
.modal-content p:not(.price) { color: var(--muted); font-size: 1.05rem; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--maroon);
  color: var(--yellow);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.reveal { opacity: 0; transform: translateY(18px); transition: 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.12s; }

@media (max-width: 920px) {
  .hero { background: linear-gradient(180deg, var(--maroon) 0%, var(--maroon) 66%, var(--yellow) 66%); }
  .hero-grid, .two-col, .cert-grid, .contact-grid { grid-template-columns: 1fr; }
  .info-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: 1fr; }
  .modal-card { grid-template-columns: 1fr; }
  .modal-card img { min-height: 300px; max-height: 420px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 70px 0; }
  .menu-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 82px;
    left: 14px;
    right: 14px;
    background: var(--maroon-dark);
    border: 1px solid rgba(255,210,0,0.2);
    border-radius: 22px;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav.is-open { display: flex; }
  .nav a { text-align: center; }
  .hero { min-height: auto; padding-top: 40px; }
  .hero-grid { gap: 34px; }
  .hero-actions { display: grid; gap: 12px; }
  .btn-ghost { margin-left: 0; }
  .floating-card { right: 10px; bottom: 20px; }
  .quick-info { margin-top: 0; padding: 28px 0 0; }
  .info-grid, .product-grid { grid-template-columns: 1fr; }
  .product-top { flex-direction: column; }
  .contact-list a { align-items: flex-start; border-radius: var(--radius-md); flex-direction: column; }
  .contact-list span { text-align: left; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}
