@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ================================================
   DESIGN SYSTEM — POLSO NAPOLETANO
   Art Direction: Premium Italian Artisan Jewelry
   Visual: Warm editorial luxury / craft heritage
   ================================================ */

:root {
  /* Primary palette — warm, rich, artisanal */
  --bg-primary: #faf7f2;
  --bg-warm: #f3ede4;
  --bg-cream: #ede6da;
  --bg-dark: #1c1814;
  --bg-dark-elevated: #252019;
  --bg-card: #ffffff;

  /* Accent — antique gold, not template gold */
  --accent: #b08d57;
  --accent-hover: #9a7a48;
  --accent-light: #d4b88a;
  --accent-glow: rgba(176, 141, 87, 0.15);

  /* Text hierarchy */
  --text-primary: #1c1814;
  --text-secondary: #4a4540;
  --text-tertiary: #857e74;
  --text-muted: #a9a29a;
  --text-on-dark: #e8e2d8;
  --text-on-dark-muted: rgba(232, 226, 216, 0.55);

  /* Borders & surfaces */
  --border: #e3ddd4;
  --border-subtle: #ece7df;
  --border-on-dark: rgba(255,255,255,0.08);

  /* Shadows — warm, not cold gray */
  --shadow-xs: 0 1px 3px rgba(28,24,20,0.04);
  --shadow-sm: 0 2px 8px rgba(28,24,20,0.06);
  --shadow-md: 0 4px 16px rgba(28,24,20,0.08);
  --shadow-lg: 0 8px 32px rgba(28,24,20,0.1);
  --shadow-xl: 0 20px 50px rgba(28,24,20,0.14);
  --shadow-glow: 0 0 40px rgba(176,141,87,0.12);

  /* Radii — organic, not harsh */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Spacing */
  --space-section: clamp(5rem, 8vw, 8rem);
  --space-block: clamp(3rem, 5vw, 5rem);

  /* Type */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.4s;
  --duration-fast: 0.2s;
  --duration-slow: 0.6s;
}

/* ── Reset ── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--duration) var(--ease-smooth); }
ul, ol { list-style: none; }
button { cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }

h2 em, h1 em {
  font-style: italic;
  color: var(--accent);
}

p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
}

.section-padding {
  padding: var(--space-section) 0;
}

.section-padding-lg {
  padding: calc(var(--space-section) * 1.3) 0;
}

.text-center { text-align: center; }

/* Section label — refined pill eyebrow */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  padding: 0.4rem 1rem;
  background: var(--accent-glow);
  border-radius: var(--radius-full);
  border: 1px solid rgba(176,141,87,0.15);
}

.section-label.text-left {
  margin-left: 0;
}

.section-title {
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-tertiary);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  font-weight: 400;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(176,141,87,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--text-primary);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--bg-primary);
  border: 2px solid var(--bg-dark);
}

.btn-dark:hover {
  background: var(--bg-dark-elevated);
  border-color: var(--bg-dark-elevated);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 1.5rem auto;
  border-radius: 1px;
}

.divider-left { margin-left: 0; }

/* ================================================
   HEADER — Premium brand header
   ================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all var(--duration) var(--ease-smooth);
}

.site-header.scrolled {
  background: rgba(250, 247, 242, 0.98);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo — brand wordmark with icon hint */
.header-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1;
  position: relative;
}

.header-logo::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  position: relative;
}

.header-logo::after {
  content: 'PN';
  position: absolute;
  left: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  pointer-events: none;
}

.header-logo .logo-accent {
  color: var(--accent);
  font-weight: 400;
  font-style: italic;
}

/* Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--duration-fast) ease;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width var(--duration) var(--ease-out);
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--text-primary);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-cta .btn {
  padding: 0.55rem 1.4rem;
  font-size: 0.72rem;
  border-radius: var(--radius-full);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  display: block;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-primary);
  z-index: 999;
  transition: right 0.5s var(--ease-out);
  padding: 100px 2rem 2rem;
  overflow-y: auto;
}

.mobile-nav.open { right: 0; }

.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  padding: 0.7rem 0;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--duration) var(--ease-out);
}

.mobile-nav a:hover {
  color: var(--accent);
  padding-left: 0.8rem;
}

/* ================================================
   HERO — Cinematic split layout
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: brightness(0.55) saturate(1.1);
  transition: transform 15s linear;
}

.hero:hover .hero-bg {
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28,24,20,0.6) 0%, rgba(28,24,20,0.3) 40%, rgba(28,24,20,0.7) 100%),
    linear-gradient(90deg, rgba(28,24,20,0.8) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 140px 0 100px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  background: rgba(176,141,87,0.12);
  border-radius: var(--radius-full);
  border: 1px solid rgba(176,141,87,0.2);
  opacity: 0;
  animation: heroReveal 0.8s var(--ease-out) 0.2s forwards;
}

.hero h1 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: heroReveal 0.8s var(--ease-out) 0.35s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
  font-weight: 500;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
  font-weight: 400;
  opacity: 0;
  animation: heroReveal 0.8s var(--ease-out) 0.5s forwards;
}

.hero .btn-group {
  opacity: 0;
  animation: heroReveal 0.8s var(--ease-out) 0.65s forwards;
}

/* Hero floating badges */
.hero-badges {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 2rem;
  opacity: 0;
  animation: heroReveal 0.8s var(--ease-out) 0.8s forwards;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

.hero-badge i {
  color: var(--accent-light);
  font-size: 0.85rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.hero-scroll i { font-size: 0.9rem; }

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--accent-light);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

.particle:nth-child(1) { left: 12%; animation-duration: 14s; animation-delay: 0s; }
.particle:nth-child(2) { left: 28%; animation-duration: 18s; animation-delay: 3s; }
.particle:nth-child(3) { left: 45%; animation-duration: 12s; animation-delay: 6s; }
.particle:nth-child(4) { left: 62%; animation-duration: 16s; animation-delay: 1s; }
.particle:nth-child(5) { left: 78%; animation-duration: 13s; animation-delay: 4s; }
.particle:nth-child(6) { left: 88%; animation-duration: 15s; animation-delay: 7s; }
.particle:nth-child(7) { left: 18%; animation-duration: 19s; animation-delay: 8s; }
.particle:nth-child(8) { left: 55%; animation-duration: 11s; animation-delay: 9s; }

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(8px); opacity: 0.7; }
}

@keyframes particleFloat {
  0% { transform: translateY(100vh); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-80px); opacity: 0; }
}

/* ================================================
   EDITORIAL SPLIT SECTION
   ================================================ */
.editorial-section {
  position: relative;
  overflow: hidden;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}

.editorial-image {
  position: relative;
  overflow: hidden;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.editorial-image:hover img {
  transform: scale(1.04);
}

.editorial-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem);
  background: var(--bg-warm);
}

.editorial-text h2 {
  margin-bottom: 1.5rem;
}

.editorial-text p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

/* ================================================
   BENTO BENEFITS GRID
   ================================================ */
.benefits-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(176,141,87,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(176,141,87,0.04) 0%, transparent 40%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-on-dark);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(176,141,87,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(176,141,87,0.12);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  color: var(--accent-light);
  margin-bottom: 1.2rem;
}

.benefit-card h4 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.benefit-card p {
  color: var(--text-on-dark-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

/* ================================================
   PRODUCT CARDS — Editorial commerce
   ================================================ */
.product-cards-section {
  background: var(--bg-primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--duration) var(--ease-out);
  position: relative;
}

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

.product-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,24,20,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration) var(--ease-smooth);
}

.product-card:hover .product-card-overlay {
  opacity: 1;
}

.product-card-body {
  padding: 1.4rem;
}

.product-card-body h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
  font-weight: 500;
}

.product-card-body p {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-card-body .btn {
  width: 100%;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  font-size: 0.7rem;
}

.product-card-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.product-card-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  z-index: 2;
}

/* ================================================
   CTA BLOCK — Warm immersive
   ================================================ */
.cta-block {
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(176,141,87,0.1) 0%, transparent 60%);
}

.cta-block h2 {
  color: #fff;
  margin-bottom: 1.2rem;
  position: relative;
}

.cta-block p {
  color: var(--text-on-dark-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  position: relative;
}

.cta-block .btn { position: relative; }

/* ================================================
   USE CASES SECTION — Photo-backed cards
   ================================================ */
.use-cases-section {
  background: var(--bg-warm);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.use-case-card {
  text-align: center;
  padding: 2rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease-out);
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.use-case-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: var(--accent-glow);
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  color: var(--accent);
}

.use-case-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.use-case-card p {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  line-height: 1.55;
  margin: 0;
}

/* ================================================
   ABOUT SELLER — Trust builder
   ================================================ */
.about-seller-section {
  background: var(--bg-card);
}

.about-seller-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-seller-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.about-seller-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-seller-text h2 {
  margin-bottom: 1.2rem;
}

.about-seller-text p {
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* ================================================
   TRUST SECTION — Horizontal strip
   ================================================ */
.trust-section {
  background: var(--bg-primary);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.trust-card {
  text-align: center;
  padding: 2rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease-out);
}

.trust-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.trust-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: var(--accent-glow);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  color: var(--accent);
}

.trust-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.trust-card p {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  margin: 0;
  line-height: 1.55;
}

/* ================================================
   FINAL CTA — Warm dark panel
   ================================================ */
.final-cta {
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(176,141,87,0.08);
  filter: blur(80px);
}

.final-cta h2 {
  color: #fff;
  margin-bottom: 1.2rem;
}

.final-cta p {
  color: var(--text-on-dark-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section {
  background: var(--bg-warm);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color var(--duration-fast) ease;
}

.faq-question:hover { color: var(--accent); }

.faq-question i {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: transform var(--duration) var(--ease-out);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration) var(--ease-out), padding var(--duration) var(--ease-out);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

/* ================================================
   BENTO VISUAL GRID — Asymmetric image showcase
   ================================================ */
.bento-section {
  background: var(--bg-primary);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.2rem;
}

.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 260px;
}

.bento-item.bento-wide {
  grid-column: span 2;
  min-height: 340px;
}

.bento-item.bento-tall {
  grid-row: span 2;
  min-height: 540px;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.bento-item:hover img {
  transform: scale(1.04);
}

.bento-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(28,24,20,0.75) 0%, transparent 100%);
  color: #fff;
}

.bento-caption h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.bento-caption p {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.5;
}

/* ================================================
   FOOTER — Brand-level footer
   ================================================ */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 0;
}

/* Footer pre-CTA strip */
.footer-cta {
  padding: var(--space-block) 0;
  border-bottom: 1px solid var(--border-on-dark);
  text-align: center;
}

.footer-cta h3 {
  color: #fff;
  margin-bottom: 0.6rem;
  font-size: 1.6rem;
}

.footer-cta p {
  color: var(--text-on-dark-muted);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border-on-dark);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand .logo-accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  padding: 0.28rem 0;
  transition: all var(--duration-fast) ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 0.4rem;
}

.footer-company-info {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-sm);
  padding: 1.5rem 2rem;
  margin-top: 2rem;
}

.footer-company-grid {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-company-col {
  flex: 1;
  min-width: 220px;
}

.footer-company-col h5 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.footer-company-col p {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  margin-bottom: 0.2rem;
}

.footer-disclaimer {
  padding: 1rem 0;
  margin-top: 1.5rem;
  text-align: center;
}

.footer-disclaimer p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  margin: 0;
  line-height: 1.6;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-on-dark);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.back-to-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--duration-fast) ease;
}

.back-to-top:hover { color: var(--accent-light); }

/* ================================================
   SUB-PAGES: page-hero, catalog, blog, cart, etc.
   ================================================ */
.page-hero {
  padding: 140px 0 70px;
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(176,141,87,0.08) 0%, transparent 50%);
}

.page-hero h1 {
  color: #fff;
  position: relative;
  margin-bottom: 0.8rem;
}

.page-hero p {
  color: var(--text-on-dark-muted);
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

/* Catalog filters */
.catalog-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 24, 20, 0.75);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.modal-overlay.active { display: flex; }

.modal-content {
  background: var(--bg-card);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border-radius: var(--radius-lg);
  animation: modalSlide 0.4s var(--ease-out);
}

@keyframes modalSlide {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  border: none;
  border-radius: var(--radius-full);
  font-size: 1rem;
  cursor: pointer;
  color: var(--text-primary);
  transition: all var(--duration-fast) ease;
  z-index: 10;
}

.modal-close:hover {
  background: var(--accent);
  color: #fff;
}

.modal-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-body {
  padding: 2.5rem;
}

.modal-body h2 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.modal-body .price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.modal-body .description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--duration) var(--ease-out);
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-date {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.blog-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  line-height: 1.35;
  font-weight: 500;
}

.blog-card-body p {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  line-height: 1.65;
  margin: 0;
}

/* Cart */
.cart-section { min-height: 60vh; }

.cart-empty {
  text-align: center;
  padding: 4rem 0;
}

.cart-empty i {
  font-size: 3.5rem;
  color: var(--border);
  margin-bottom: 1.5rem;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.cart-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-item-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-xs);
}

.cart-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-qty button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: none;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) ease;
}

.cart-qty button:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cart-qty span {
  min-width: 28px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.95rem;
  transition: color var(--duration-fast) ease;
}

.cart-remove:hover { color: #c0392b; }

.cart-summary {
  max-width: 380px;
  margin-left: auto;
  padding: 1.8rem;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-top: 2rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.cart-summary-row:last-of-type {
  border-bottom: none;
  font-weight: 600;
  font-size: 1.15rem;
  padding-top: 1rem;
}

/* Checkout */
.checkout-form { max-width: 580px; }

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.form-group { margin-bottom: 1.3rem; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--bg-card);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.order-summary {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
}

#card-element {
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--bg-card);
}

/* Legal pages */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 0.8rem;
  color: var(--text-primary);
}

.legal-content h3 {
  font-size: 1.3rem;
  margin: 1.8rem 0 0.6rem;
}

.legal-content p {
  line-height: 1.85;
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-info-card i {
  font-size: 1.2rem;
  color: var(--accent);
  margin-top: 0.15rem;
}

.contact-info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.contact-info-card p {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin: 0;
}

/* ================================================
   ANIMATIONS & SCROLL REVEALS
   ================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: all 0.7s var(--ease-out);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: all 0.7s var(--ease-out);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Cookie & Notification ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-dark);
  color: #fff;
  padding: 1.2rem 2rem;
  z-index: 3000;
  display: none;
  border-top: 1px solid var(--border-on-dark);
}

.cookie-banner.show { display: block; }

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-banner p {
  color: var(--text-on-dark-muted);
  font-size: 0.82rem;
  margin: 0;
}

.cookie-banner p a {
  color: var(--accent-light);
  text-decoration: underline;
}

.cookie-banner .btn { white-space: nowrap; }

.notification {
  position: fixed;
  top: 90px;
  right: 2rem;
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 1.8rem;
  z-index: 3000;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transform: translateX(120%);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-lg);
}

.notification.show {
  transform: translateX(0);
}

/* ================================================
   RESPONSIVE BREAKPOINTS
   ================================================ */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-text { padding: 3rem 2rem; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .use-cases-grid { grid-template-columns: repeat(3, 1fr); }
  .about-seller-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-item.bento-wide { grid-column: span 2; min-height: 280px; }
  .bento-item.bento-tall { grid-row: span 1; min-height: 280px; }

  .hero-badges { flex-wrap: wrap; justify-content: center; gap: 0.8rem; }
}

@media (max-width: 768px) {
  .section-padding { padding: 4rem 0; }
  .section-padding-lg { padding: 5rem 0; }

  .hero-content { padding: 120px 0 80px; }
  .hero-badges { display: none; }
  .hero-scroll { display: none; }

  .benefits-grid { grid-template-columns: 1fr; }
  .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }

  .footer-company-grid { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }

  .product-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-item.bento-wide { grid-column: span 1; }
  .bento-item.bento-tall { grid-row: span 1; min-height: 260px; }

  .modal-content { max-height: 95vh; }
  .modal-image { height: 220px; }

  .cookie-banner-inner { flex-direction: column; text-align: center; }

  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .use-cases-grid { grid-template-columns: 1fr; }

  h1 { font-size: 2.2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .editorial-text { padding: 2.5rem 1.5rem; }
  .product-card-image { height: 220px; }
  .trust-grid { grid-template-columns: 1fr; }

  .header-logo { font-size: 1.15rem; }
  .header-logo::before { width: 28px; height: 28px; border-radius: 6px; }
  .header-logo::after { width: 28px; height: 28px; font-size: 0.6rem; }
}
