/* Crestwell Labs — Premium Static Site */

:root {
  --navy: #050b16;
  --navy-soft: #0c1829;
  --navy-card: #101f35;
  --gold: #b38e5d;
  --gold-light: #d4b896;
  --gold-glow: rgba(179, 142, 93, 0.25);
  --white: #ffffff;
  --cream: #f8f6f2;
  --cream-dark: #ede9e1;
  --text: #0f172a;
  --text-muted: #64748b;
  --border: rgba(179, 142, 93, 0.2);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 8px 32px rgba(5, 11, 22, 0.08);
  --shadow-lg: 0 24px 60px rgba(5, 11, 22, 0.18);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(5, 11, 22, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.site-header .container { position: relative; }

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.logo-center {
  justify-self: center;
  text-align: center;
  display: flex;
  justify-content: center;
}

.logo img {
  height: 130px;
  width: auto;
  max-width: min(320px, 70vw);
  transition: height var(--transition);
}

.site-header.scrolled .logo img { height: 100px; }

.header-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-left { justify-self: start; }
.nav-right { gap: 28px; }

.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color var(--transition);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active { color: var(--gold-light); }

.nav-desktop a:hover::after,
.nav-desktop a.active::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #c9a06a);
  color: var(--navy);
  box-shadow: 0 8px 24px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--gold-glow);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(179, 142, 93, 0.1);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: var(--navy);
  padding: 0;
  flex-direction: column;
  z-index: 1002;
  transition: right var(--transition);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile.open { right: 0; display: flex; }

.nav-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(20px, env(safe-area-inset-top)) 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.nav-mobile-logo {
  height: 56px;
  width: auto;
  max-width: 180px;
}

.nav-mobile-close {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}

.nav-mobile-close:hover { background: rgba(179, 142, 93, 0.3); }

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  padding: 8px 24px 32px;
  flex: 1;
}

.nav-mobile a {
  padding: 18px 0;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-mobile a:hover,
.nav-mobile a.active { color: var(--gold); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1001;
}

.nav-overlay.open { display: block; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding: 180px 0 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b38e5d' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 142, 93, 0.12) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { color: var(--white); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-product-frame {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(179, 142, 93, 0.3);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.hero-product-frame img {
  max-height: 420px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.hero-badge-float {
  position: absolute;
  background: var(--white);
  color: var(--navy);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badge-float i { color: var(--gold); }

.hero-badge-float.top-right { top: -16px; right: -16px; }
.hero-badge-float.bottom-left { bottom: -16px; left: -16px; }

/* ── Stats bar ── */
.stats-bar {
  background: var(--gold);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(5, 11, 22, 0.7);
}

/* ── Sections ── */
section { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p { color: var(--text-muted); font-size: 16px; }

/* ── Pillars (from product box) ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold);
}

.pillar-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Products ── */
.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: rgba(255, 255, 255, 0.6); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--navy-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(179, 142, 93, 0.15);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(179, 142, 93, 0.2);
}

.product-image {
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 100%);
  padding: 32px 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.product-image a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.product-image img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img { transform: scale(1.05); }

.product-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-purity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 12px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 12px;
}

.product-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.product-subtitle {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.product-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 20px;
  margin-top: auto;
}

.product-price small {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.btn-info,
.btn-enquire {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-info {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-info:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-enquire {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-enquire:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Products page — light cards */
.products-page .product-card {
  background: var(--white);
  border-color: var(--border);
}

.products-page .product-card:hover {
  box-shadow: var(--shadow-lg);
}

.products-page .product-image {
  background: var(--cream);
}

.products-page .product-body h3 { color: var(--navy); }
.products-page .product-price { color: var(--navy); }
.products-page .btn-info {
  background: var(--cream);
  border-color: var(--gold);
  color: var(--navy);
}
.products-page .btn-info:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.products-page .btn-enquire { color: var(--navy); border-color: var(--navy); }
.products-page .btn-enquire:hover { background: var(--navy); color: var(--white); }

/* ── Information page ── */
.info-page { padding: 40px 0 100px; }

.info-product-image {
  text-align: center;
  max-width: 460px;
  margin: 0 auto 40px;
  padding: 0 16px;
}

.info-product-image img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(5, 11, 22, 0.15));
}

.info-content {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.info-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.25;
}

.info-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 36px 0 16px;
}

.info-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.info-content ul {
  list-style: none;
  margin: 16px 0 24px;
  padding: 0;
}

.info-content ul li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.info-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.info-faq {
  margin-top: 8px;
}

.info-faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.info-faq-item:last-child { border-bottom: none; }

.info-faq-item strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 8px;
}

.info-faq-item p {
  margin-bottom: 0;
}

.info-cta-box {
  margin-top: 40px;
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold);
}

.info-cta-box h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

@media (max-width: 768px) {
  .info-content { padding: 28px 24px; }
  .info-product-image {
    max-width: 320px;
    margin-bottom: 32px;
  }
  .info-product-image img { max-height: 280px; }
}

/* ── About band ── */
.about-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 2px solid var(--gold);
  border-radius: calc(var(--radius) + 8px);
  opacity: 0.4;
  z-index: -1;
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 16px;
}

.about-list {
  list-style: none;
  margin: 28px 0 32px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 500;
  color: var(--text);
}

.about-list li i {
  color: var(--gold);
  font-size: 18px;
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto 32px;
  position: relative;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 200px 0 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
}

.breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.breadcrumb a:hover { color: var(--gold); }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.contact-item:last-child { border-bottom: none; }

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}

.contact-item a:hover { color: var(--gold); }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  background: var(--cream);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea { min-height: 140px; resize: vertical; }

/* ── Legal ── */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.legal-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.legal-wrap h3 {
  font-size: 16px;
  color: var(--navy);
  margin: 28px 0 10px;
}

.legal-wrap p,
.legal-wrap li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 10px;
}

.legal-wrap ul { padding-left: 20px; }

.legal-wrap .updated {
  margin-top: 32px;
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  text-align: center;
}

.footer-brand img {
  height: 130px;
  width: auto;
  max-width: 280px;
  margin: 0 auto 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--gold-light); }

.footer-payments {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.footer-payments span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-payments i { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom strong { color: var(--gold); }

.disclaimer-bar {
  background: rgba(0, 0, 0, 0.35);
  text-align: center;
  padding: 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.03em;
}

/* ── WhatsApp ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.06);
  color: white;
}

.whatsapp-float i { font-size: 22px; }

.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-product-frame img { max-height: 300px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .about-band { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-left { display: none; }

  .site-header {
    padding: 14px 0;
  }

  .site-header.scrolled {
    padding: 10px 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    justify-items: center;
    gap: 0;
    min-height: 72px;
  }

  .logo-center {
    grid-column: 1;
    justify-self: center;
  }

  .logo img {
    height: 72px;
    max-width: min(220px, 62vw);
  }

  .site-header.scrolled .logo img { height: 64px; }

  .header-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }

  .hero {
    padding: 130px 0 60px;
  }

  .page-hero {
    padding: 130px 0 48px;
  }

  section { padding: 72px 0; }
  .pillars-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-badge-float { display: none; }
  .whatsapp-float span { display: none; }
  .whatsapp-float {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}
