:root {
  --canvas: #0f1215;
  --canvas-deep: #1d2328;
  --ink: #f7f3ed;
  --ink-soft: #ddd7ce;
  --panel: rgba(34, 37, 40, 0.82);
  --panel-strong: rgba(24, 27, 30, 0.94);
  --line: rgba(206, 210, 200, 0.2);
  --accent: #cf2f22;
  --accent-deep: #82170f;
  --accent-soft: rgba(207, 47, 34, 0.18);
  --blue: #b9c1bb;
  --blue-deep: #68726c;
  --shadow: 0 24px 72px rgba(0, 0, 0, 0.3);
  --radius: 28px;
  --radius-sm: 18px;
  --content: min(1200px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(121, 134, 110, 0.2), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(207, 47, 34, 0.18), transparent 20%),
    radial-gradient(circle at center bottom, rgba(110, 120, 110, 0.15), transparent 30%),
    linear-gradient(180deg, #12161a 0%, #1a2025 52%, #101419 100%);
}

body.age-gate-active {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(6, 7, 9, 0.12) 0%, rgba(6, 7, 9, 0.22) 100%);
}

.age-gate::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 12, 0.08) 0%, rgba(8, 10, 12, 0.18) 52%, rgba(8, 10, 12, 0.44) 100%),
    radial-gradient(circle at 18% 16%, rgba(240, 60, 49, 0.1), transparent 22%),
    radial-gradient(circle at 82% 76%, rgba(255, 255, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.age-gate-media {
  position: absolute;
  inset: 0;
}

.age-gate-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  filter: brightness(1.12) contrast(1.06) saturate(1.08);
}

.age-gate-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 34px;
  text-align: center;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(33, 38, 44, 0.9), rgba(16, 19, 24, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.age-gate-panel .eyebrow {
  margin-bottom: 14px;
  color: #ff8d82;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.34);
}

.age-gate-title {
  margin-bottom: 14px;
  font-size: clamp(2.3rem, 6vw, 3.4rem);
  color: #fffaf4;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.age-gate-copy {
  margin: 0 0 22px;
  color: #fff8f0;
  font-size: 1.03rem;
  line-height: 1.75;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.3);
}

.age-gate-button {
  width: 100%;
  min-height: 56px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

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

.narrow {
  max-width: 800px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(18, 21, 24, 0.86);
  border-bottom: 1px solid var(--line);
}

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

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

.brand-mark span {
  display: none;
}

.brand-mark img {
  width: clamp(180px, 18vw, 250px);
  height: auto;
  object-fit: contain;
  max-width: 100%;
  flex: none;
}

.brand-mark strong,
.footer-brand strong {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-mark em,
.footer-brand em {
  display: block;
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-style: normal;
}

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

.site-nav a {
  position: relative;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.site-nav a.is-current {
  color: var(--ink);
}

.nav-cta,
.hero-actions,
.cta-row,
.toolbar-links,
.integration-points,
.hero-proof,
.info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-toggle {
  display: none;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(3, 6, 22, 0.45);
}

.btn-primary {
  background: linear-gradient(135deg, #d23628 0%, #696c64 100%);
  color: #f5efe8;
}

.btn-secondary {
  border-color: rgba(206, 210, 200, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #f7f3ed;
}

.text-link {
  color: #ff8f7e;
  font-weight: 700;
}

.hero,
.page-main,
.showcase,
.split-section,
.trust-band,
.integration-strip,
.catalog-listing,
.catalog-toolbar,
.faq-section,
.contact-section,
.checkout-section,
.contact-panel-section,
.process-section,
.document-grid-section,
.detail-sections,
.product-hero {
  padding: 32px 0 88px;
}

.hero {
  position: relative;
  padding: 56px 0 88px;
  border-bottom: 1px solid var(--line);
  background-color: #101318;
  background:
    radial-gradient(circle at 14% 18%, rgba(207, 47, 34, 0.14), transparent 20%),
    radial-gradient(circle at 86% 12%, rgba(255, 196, 126, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(14, 17, 21, 0.98) 0%, rgba(18, 22, 27, 0.96) 100%);
}

.hero-grid,
.split-grid,
.detail-grid,
.contact-grid,
.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.checkout-grid {
  align-items: start;
}

.hero-grid {
  grid-template-columns: 1fr;
  gap: 24px;
}

.process-grid,
.faq-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

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

.catalog-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

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

.toolbar-grid,
.integration-grid,
.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.section-head,
.page-hero {
  text-align: center;
}

.eyebrow,
.product-kicker,
.mini-label {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  font-weight: 600;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 5.7rem);
}

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

h3 {
  font-size: 1.6rem;
}

.lead,
p,
li,
span,
code,
label {
  color: var(--ink-soft);
  line-height: 1.7;
}

.hero-copy .lead,
.page-hero .lead {
  font-size: 1.08rem;
  color: #f1ece4;
}

.glass-card,
.product-card,
.trust-item,
.catalog-sidebar {
  background: linear-gradient(180deg, rgba(43, 47, 50, 0.94), rgba(28, 31, 35, 0.9));
  border: 1px solid rgba(206, 210, 200, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  width: 100%;
  max-width: none;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(18, 22, 26, 0.5), rgba(18, 22, 26, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy-secondary {
  display: grid;
  gap: 18px;
}

.hero-copy-secondary h3 {
  color: var(--ink);
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.hero-copy .lead {
  font-size: 1rem;
}

.hero-card,
.statement-card,
.feature-card,
.contact-panel,
.catalog-sidebar,
.detail-visual,
.glass-card,
.inquiry-form {
  padding: 30px;
}

.hero-card h2 {
  font-size: 2.5rem;
}

.hero-card h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.hero-support-copy {
  margin: 0 0 18px;
}

.hero-visual-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(206, 210, 200, 0.16);
  background:
    radial-gradient(circle at center, rgba(207, 47, 34, 0.15), transparent 40%),
    linear-gradient(180deg, rgba(34, 38, 41, 0.96), rgba(24, 27, 30, 0.96));
}

.hero-visual-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.stat-list,
.sidebar-links,
.footer-links,
.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stat-list li,
.sidebar-links li,
.spec-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.stat-list li:last-child,
.sidebar-links li:last-child,
.spec-list li:last-child {
  border-bottom: 0;
}

.stat-list strong,
.spec-list strong,
.toolbar-grid strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.hero-proof span,
.integration-points span,
.info-chips span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(206, 210, 200, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #f4efe7;
  font-size: 0.88rem;
  font-weight: 700;
}

.trust-item,
.feature-card,
.product-card {
  padding: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-image {
  display: block;
  min-height: 240px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(207, 47, 34, 0.28), transparent 44%),
    radial-gradient(circle at bottom, rgba(125, 136, 112, 0.2), transparent 36%),
    linear-gradient(180deg, rgba(38, 41, 44, 0.96), rgba(22, 25, 28, 0.98));
  border: 1px solid rgba(206, 210, 200, 0.14);
}

.product-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  filter: none;
}

.detail-image {
  min-height: 360px;
}

.product-copy h3 a,
.feature-card a,
.footer-brand strong,
h1,
h2,
h3 {
  color: var(--ink);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.product-meta span,
.price-line strong {
  color: #f56e56;
  font-size: 1.1rem;
  font-weight: 800;
}

.product-meta a {
  color: #d7d4cc;
  font-weight: 800;
}

.center-cta {
  text-align: center;
  margin-top: 28px;
}

.feature-stack {
  display: grid;
  gap: 20px;
}

.integration-strip {
  padding-bottom: 110px;
}

.page-hero.compact-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 96px 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(207, 47, 34, 0.16), transparent 20%),
    radial-gradient(circle at 14% 80%, rgba(115, 126, 106, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(30, 34, 38, 0.92), rgba(26, 31, 35, 0.88));
}

.catalog-sidebar h2 {
  font-size: 2rem;
}

.sidebar-note {
  margin-top: 28px;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(206, 210, 200, 0.14);
}

.detail-copy,
.detail-content-grid {
  display: grid;
  gap: 24px;
}

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

.price-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 24px;
}

.image-note,
.footer-copy {
  margin-top: 18px;
}

.code-block {
  display: block;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(206, 210, 200, 0.14);
  color: #f56e56;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  overflow-x: auto;
}

.checkout-banner {
  margin-bottom: 28px;
}

.checkout-banner-success {
  border-color: rgba(96, 107, 86, 0.28);
}

.checkout-banner-warning {
  border-color: rgba(207, 47, 34, 0.32);
}

.cart-items {
  display: grid;
  gap: 18px;
}

.cart-item,
.cart-empty-state {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(206, 210, 200, 0.14);
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.cart-item h3,
.cart-empty-state h3 {
  margin-bottom: 6px;
}

.cart-item p,
.cart-empty-state p {
  margin: 0;
}

.cart-item-controls {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.cart-item-controls strong {
  color: #f56e56;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(206, 210, 200, 0.14);
}

.qty-btn,
.cart-remove {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.cart-remove {
  color: #ff8f7e;
}

.cart-total-line {
  justify-content: space-between;
}

.checkout-form .btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.checkout-form h2 {
  margin-bottom: 10px;
}

.checkout-form textarea {
  min-height: 120px;
  resize: vertical;
}

.checkout-form .btn-primary {
  min-height: 58px;
}

.policy-card {
  padding: 34px;
}

.policy-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.policy-card h2 {
  margin-top: 30px;
}

.policy-card h2:first-of-type {
  margin-top: 0;
}

.policy-list {
  margin: 0 0 20px;
  padding-left: 22px;
}

.policy-list li + li {
  margin-top: 12px;
}

.policy-list strong {
  color: var(--ink);
}

.policy-note {
  margin-top: 26px;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(206, 210, 200, 0.14);
}

.secure-note strong {
  display: block;
  margin-bottom: 6px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 700;
}

.field-help {
  display: block;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(206, 210, 200, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: var(--ink);
}

.site-footer {
  padding: 0 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
  padding: 34px;
  background: rgba(30, 34, 38, 0.9);
  border: 1px solid rgba(206, 210, 200, 0.14);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  color: #eee8df;
}

@media (max-width: 1120px) {
  .product-grid,
  .catalog-cards,
  .process-grid,
  .faq-grid,
  .trust-grid,
  .detail-content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-grid,
  .hero-grid,
  .split-grid,
  .detail-grid,
  .contact-grid,
  .checkout-grid,
  .toolbar-grid,
  .integration-grid,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

  .site-nav {
    position: absolute;
    top: 92px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 24px;
    background: rgba(26, 30, 34, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .nav-cta {
    display: none;
  }

  .product-grid,
  .catalog-cards,
  .process-grid,
  .faq-grid,
  .trust-grid,
  .detail-content-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 4.1rem);
  }

  .hero h1 {
    font-size: clamp(2.6rem, 10vw, 4rem);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .age-gate-media img {
    object-position: center 18%;
  }

  .age-gate {
    justify-content: center;
    padding: 16px;
  }

  .age-gate-panel {
    width: 100%;
    padding: 26px 20px;
  }

  .hero,
  .page-main,
  .showcase,
  .split-section,
  .trust-band,
  .integration-strip,
  .catalog-listing,
  .catalog-toolbar,
  .faq-section,
  .contact-section,
  .checkout-section,
  .contact-panel-section,
  .process-section,
  .document-grid-section,
  .detail-sections,
  .product-hero {
    padding-bottom: 64px;
  }

  .hero-card,
  .statement-card,
  .feature-card,
  .contact-panel,
  .catalog-sidebar,
  .detail-visual,
  .glass-card,
  .policy-card,
  .inquiry-form,
  .product-card,
  .trust-item {
    padding: 22px;
  }

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

  .cart-item-controls {
    justify-items: start;
  }

  .brand-mark img {
    width: 158px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-grid {
    padding: 116px 0 28px;
  }

  .hero-copy {
    padding: 24px;
  }

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