/* ═══════════════════════════════════════════════════════
   CACHAÇA JOSÉ VICENTE — style.css
   Paleta: Madeira quente #8B5A2B, Dourado #C9972B, Marfim #F5EDD8,
           Carvão #1A1208, Âmbar translúcido #D4892A
   ═══════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --wood: #7A4F28;
  --gold: #C9972B;
  --gold-lt: #E3B84A;
  --ivory: #F5EDD8;
  --cream: #FAF5EC;
  --char: #140E05;
  --char-2: #1E1508;
  --mid: #4A3218;
  --text: #2C1D0A;
  --text-lt: #6B4F2E;
  --white: #FFFFFF;

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;

  --shadow-gold: 0 4px 32px rgba(201, 151, 43, .25);
  --shadow-deep: 0 8px 48px rgba(20, 14, 5, .5);

  --font-display: 'Cinzel', 'Georgia', serif;
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--char);
  color: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── UTILITY ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── ANIMATIONS INIT ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s var(--transition), transform .7s var(--transition);
}

.reveal-fade {
  opacity: 0;
  transition: opacity .8s ease;
}

.reveal-up.visible,
.reveal-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .22s;
}

.delay-3 {
  transition-delay: .34s;
}

.delay-4 {
  transition-delay: .46s;
}

.delay-5 {
  transition-delay: .58s;
}

/* ══════════════════ HEADER ══════════════════ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#header.scrolled {
  background: rgba(20, 14, 5, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 2px 32px rgba(0, 0, 0, .4);
  padding: 12px 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-logo .logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  transition: var(--transition);
}

.logo-link:hover .logo-img {
  border-color: var(--gold-lt);
  box-shadow: 0 0 14px rgba(201, 151, 43, .5);
}

.header-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: .05em;
}

.brand-sub {
  font-size: .65rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(245, 237, 216, .8);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--ivory);
  background: rgba(201, 151, 43, .12);
}

.nav-cta {
  background: var(--gold);
  color: var(--char);
  font-weight: 600;
  border-radius: var(--r-xl);
  padding: 9px 20px;
}

.nav-cta:hover {
  background: var(--gold-lt);
  color: var(--char);
}

/* burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: var(--transition);
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════ HERO ══════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(122, 79, 40, .35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(201, 151, 43, .15) 0%, transparent 55%),
    linear-gradient(160deg, #1A1208 0%, #0D0903 55%, #1E1508 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 14, 5, .1) 0%, rgba(20, 14, 5, .5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 120px 24px 80px;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.hero-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(201, 151, 43, .6);
  box-shadow: 0 0 60px rgba(201, 151, 43, .2), 0 8px 40px rgba(0, 0, 0, .6);
}

.hero-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
  color: var(--ivory);
  margin-bottom: 16px;
}

.hero-slogan {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--gold-lt);
  margin-bottom: 20px;
  letter-spacing: .04em;
}

.hero-body {
  font-size: 1rem;
  color: rgba(245, 237, 216, .65);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: .5;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ivory);
}

.scroll-bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .3;
  }

  50% {
    opacity: 1;
  }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--char);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  padding: 14px 28px;
  border-radius: var(--r-xl);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 4px 24px rgba(201, 151, 43, .4);
}

.btn-primary:hover {
  background: var(--gold-lt);
  box-shadow: 0 6px 32px rgba(201, 151, 43, .55);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-large {
  font-size: 1rem;
  padding: 16px 36px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(245, 237, 216, .3);
  color: var(--ivory);
  font-weight: 600;
  font-size: .9rem;
  padding: 13px 26px;
  border-radius: var(--r-xl);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 151, 43, .08);
  transform: translateY(-2px);
}

/* ══════════════════ FEATURES ══════════════════ */
.features {
  background: var(--cream);
  padding: 100px 0;
}

.features .section-label,
.features .section-title {
  color: var(--text);
}

.features .section-title {
  color: var(--text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  border: 1px solid rgba(122, 79, 40, .12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(122, 79, 40, .15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #F5EDD8, #EED9AF);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--wood);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: .88rem;
  color: var(--text-lt);
  line-height: 1.65;
}

/* ══════════════════ SECTION LABELS & TITLES ══════════════════ */
.section-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-desc {
  font-size: .95rem;
  color: rgba(245, 237, 216, .6);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 60px;
}

/* ══════════════════ PRODUCTS SECTIONS ══════════════════ */
.products-section {
  padding: 100px 0;
}

.dark-section {
  background: var(--char-2);
}

.light-section {
  background: linear-gradient(180deg, #F5EDD8 0%, #EDD9B0 100%);
}

.light-section .section-title {
  color: var(--text);
}

.light-section .section-label {
  color: var(--wood);
}

.light-section .section-desc {
  color: var(--text-lt);
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* ── PRODUCT CARD ── */
.product-card {
  position: relative;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(201, 151, 43, .12);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 151, 43, .04) 0%, transparent 60%);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, .5), 0 0 0 1px rgba(201, 151, 43, .3);
  border-color: rgba(201, 151, 43, .35);
}

.product-card:hover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(201, 151, 43, .06) 0%, transparent 70%);
  pointer-events: none;
}

/* light card variant */
.light-card {
  background: var(--white);
  border: 1px solid rgba(122, 79, 40, .1);
}

.light-card:hover {
  box-shadow: 0 20px 56px rgba(122, 79, 40, .2), 0 0 0 1px rgba(201, 151, 43, .4);
}

/* badge */
.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  background: var(--gold);
  color: var(--char);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.product-badge.tropical {
  background: #E87C2A;
}

.product-badge.pink {
  background: #D94F8E;
  color: #fff;
}

.product-badge.purple {
  background: #6B2FA0;
  color: #fff;
}

/* image wrap */
.product-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(0, 0, 0, .2);
}

.light-card .product-img-wrap {
  background: #f0e8d5;
}

/* placeholder colored blocks */
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: transform var(--transition);
}

.product-card:hover .product-img-placeholder {
  transform: scale(1.06);
}

/* cachaça placeholders */
.cachaca-1 {
  background-image: url('img/cabare15anos.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.cachaca-2 {
  background-image: url('img/kitcabareextrapremium.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.cachaca-3 {
  background-image: url('img/ExtraPremiumAmericana10Anos.jpg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.cachaca-4 {
  background-image: url('img/ExtraPremiumBlend.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.cachaca-5 {
  background-image: url('img/ExtraPremium12Anos.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #E2E4E6;
  /* branco atrás da imagem */
}

.cachaca-6 {
  background-image: url('img/CachaçaPremiumAmburana.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #E2E4E6;
  /* branco atrás da imagem */
}

.cachaca-7 {
  background-image: url('img/CachaçaPremiumJequitiba.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.cachaca-8 {
  background-image: url('img/CachacaPremiumCarvalho.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.cachaca-9 {
  background-image: url('img/CachacaEnvelhecida.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.cachaca-10 {
  background-image: url('img/CachaçaBranca.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

/* coquetel placeholders */
.coq-1 {
  background-image: url('img/coquetelcaipirinha.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.coq-2 {
  background-image: url('img/coqueteltangerina.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.coq-3 {
  background-image: url('img/coquetelcabarerouge.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.coq-4 {
  background-image: url('img/coquetelkenga.jpg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.coq-5 {
  background-image: url('img/coquetelabacaxi.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.coq-6 {
  background-image: url('img/coquetelmel.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.coq-7 {
  background-image: url('img/coquetelcoco.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

/* licor placeholders */
.lic-morango {
  background-image: url('img/bebidamistamorango.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.lic-acai {
  background-image: url('img/bebidamistaacai.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.lic-pistache {
  background-image: url('img/bebidamistapistache.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.lic-cafe {
  background-image: url('img/licorcafe.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.lic-chocolate {
  background-image: url('img/licorchocolate.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.lic-doce-leite {
  background-image: url('img/licordocedeleite.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.lic-pacoca {
  background-image: url('img/licorpacoca.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.lic-banana {
  background-image: url('img/licorbanana.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.lic-cereja {
  background-image: url('img/licorcereja.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.lic-jabuticaba {
  background-image: url('img/licorjabuticaba.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.lic-menta {
  background-image: url('img/licormenta.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.lic-jenipapo {
  background-image: url('img/bebidamistajenipapo.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.lic-coco {
  background-image: url('img/licorcoco.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.lic-pessego {
  background-image: url('img/licorpessego.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.lic-amora {
  background-image: url('img/licoramora.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.lic-milho {
  background-image: url('img/licormilhoverde.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.lic-pequi {
  background-image: url('img/licorpequi.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

.lic-morango2 {
  background-image: url('img/licormorango.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  /* branco atrás da imagem */
}

/* card info */
.product-info {
  padding: 22px 22px 24px;
}

.product-category {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.light-card .product-category {
  color: var(--wood);
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 10px;
  line-height: 1.3;
}

.light-card .product-name {
  color: var(--text);
}

.product-desc {
  font-size: .82rem;
  color: rgba(245, 237, 216, .55);
  line-height: 1.6;
  margin-bottom: 16px;
}

.light-card .product-desc {
  color: var(--text-lt);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 151, 43, .12);
  flex-wrap: wrap;
  gap: 6px;
}

.light-card .product-meta {
  border-color: rgba(122, 79, 40, .15);
}

.product-vol {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
}

.light-card .product-vol {
  color: var(--wood);
}

.product-code {
  font-size: .72rem;
  color: rgba(245, 237, 216, .4);
  font-family: monospace;
  letter-spacing: .05em;
}

.light-card .product-code {
  color: var(--text-lt);
  opacity: .7;
}

/* ══════════════════ CTA ══════════════════ */
.cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #5A2E08 0%, #1A0A02 50%, #3A1E06 100%);
}

.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 151, 43, .2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(122, 79, 40, .15) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-icon {
  color: var(--gold);
  margin-bottom: 28px;
  display: inline-block;
  opacity: .9;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 20px;
  line-height: 1.15;
}

.cta-body {
  font-size: 1rem;
  color: rgba(245, 237, 216, .65);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* ══════════════════ FOOTER ══════════════════ */
.footer {
  background: #0A0703;
  padding: 60px 0 40px;
  border-top: 1px solid rgba(201, 151, 43, .1);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 151, 43, .4);
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: .06em;
}

.footer-slogan {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .85rem;
  color: var(--gold);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
}

.footer-nav a {
  font-size: .8rem;
  color: rgba(245, 237, 216, .5);
  font-weight: 500;
  letter-spacing: .04em;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-legal {
  font-size: .75rem;
  color: rgba(245, 237, 216, .3);
  letter-spacing: .04em;
}

.footer-copy {
  font-size: .75rem;
  color: rgba(245, 237, 216, .25);
}

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 768px) {

  /* nav mobile */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    background: rgba(14, 9, 3, .97);
    backdrop-filter: blur(20px);
    gap: 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 12px 24px;
  }

  .nav-cta {
    padding: 14px 32px;
    font-size: 1rem;
  }

  .burger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  /* hero */
  .hero-logo {
    width: 120px;
    height: 120px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* products */
  .products-grid {
    grid-template-columns: 1fr;
  }

  /* features */
  .features-grid {
    grid-template-columns: 1fr;
  }

  .products-section {
    padding: 72px 0;
  }

  .features {
    padding: 72px 0;
  }

  .cta-section {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .container {
    padding: 0 16px;
  }

  .product-info {
    padding: 18px 16px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: .01ms !important;
  }

  .reveal-up,
  .reveal-fade {
    opacity: 1;
    transform: none;
  }
}