/* ═══════════════════════════════════════════════════════════════
   NATURAFRIK — Luxury Design System v3
   White & Gold Premium • African heritage • Editorial
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  /* ── White & Gold Premium Palette ── */
  --ink:        #FEFCF8;
  --ink-soft:   #F5F0E8;
  --surface:    #EDE8DC;
  --card:       #F8F4ED;
  --border:     rgba(150,110,8,0.16);
  --gold:       #9A7008;
  --gold-light: #C8920A;
  --gold-pale:  #D8A820;
  --amber:      #AD5608;
  --jade:       #1A5C38;
  --jade-light: #2A8050;
  --cream:      #0C0906;
  --cream-dim:  #2E2318;
  --text:       #2C2016;
  --text-muted: #6A5840;
  --text-dim:   #9A8870;
  --danger:     #C83020;
  --success:    #28A060;

  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'DM Sans', 'Helvetica Neue', sans-serif;
  --display: 'Bebas Neue', Impact, sans-serif;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-full: 999px;

  --shadow-gold: 0 0 40px rgba(150,110,8,0.2);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.08);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.14);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Scoped dark-section overrides ────────────────────────────── */
footer,
.stats-section,
.cta-band,
.page-hero,
.natcacao-spotlight,
.bento-card.info-card,
.bento-card.gold-card,
.hero-stats {
  --cream:      #F4EDE0;
  --cream-dim:  #D4C8B0;
  --text:       #E8E0D0;
  --text-muted: #9A8878;
  --text-dim:   #6A5C50;
  --border:     rgba(255,255,255,0.1);
  --surface:    #1A1820;
  --card:       #201E28;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink-soft); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── Page Loader ── */
#page-loader {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 100000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--serif);
  font-size: 2.8rem; font-weight: 300;
  letter-spacing: 0.35em; color: var(--cream);
  margin-bottom: 0.2rem;
}
.loader-logo span { color: var(--gold); }
.loader-tagline {
  font-size: 0.6rem; letter-spacing: 0.5em;
  color: var(--text-muted); margin-bottom: 3rem;
}
.loader-track {
  width: 180px; height: 1px;
  background: rgba(150,110,8,0.2);
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: loaderFill 2s var(--ease) forwards;
}
@keyframes loaderFill { from { width: 0; } to { width: 100%; } }

/* ── Navigation ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 0;
  border-bottom: 1px solid transparent;
  transition: padding 0.4s var(--ease), background 0.4s, border-color 0.4s;
}
#nav.scrolled {
  padding: 1rem 0;
  background: rgba(254,252,248,0.97);
  backdrop-filter: blur(24px);
  border-bottom-color: rgba(150,110,8,0.18);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  max-width: 1400px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 0.8rem; }
.nav-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--jade), var(--jade-light));
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(26,92,56,0.5);
}
.nav-logo-icon img { width: 28px; height: 28px; }
.nav-logo-text strong {
  display: block; font-family: var(--serif);
  font-size: 1.2rem; font-weight: 600;
  letter-spacing: 0.14em; color: var(--cream);
}
.nav-logo-text small {
  display: block; font-size: 0.55rem;
  letter-spacing: 0.3em; color: var(--gold); margin-top: -2px;
}
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a {
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem; letter-spacing: 0.1em; font-weight: 500;
  color: var(--text-muted); border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); background: var(--border); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 5px; left: 50%;
  transform: translateX(-50%); width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
}
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.btn-nav {
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--gold-light), var(--amber));
  color: #FEFCF8 !important; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.1em;
  border-radius: var(--r-full);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,146,10,0.45); }
#hamburger {
  display: none; width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
#hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text); border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
#hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
#mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(254,252,248,0.99); backdrop-filter: blur(30px);
  z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.8rem;
  opacity: 0; transition: opacity 0.3s;
}
#mobile-menu.open { display: flex; opacity: 1; }
#mobile-menu a {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 300;
  color: var(--cream); letter-spacing: 0.1em; transition: color 0.2s;
}
#mobile-menu a:hover { color: var(--gold); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, var(--gold-light), var(--amber));
  color: #FEFCF8; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em;
  border-radius: var(--r-full);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(200,146,10,0.5); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--cream); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em;
  border-radius: var(--r-full);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(200,146,10,0.1); }

/* ── Hero ── */
#hero {
  height: 100vh; min-height: 680px;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 9rem 4rem 6rem 5rem; position: relative; z-index: 2;
}
.hero-right { position: relative; overflow: hidden; }
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 40%);
  z-index: 1;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.58) saturate(0.85);
  opacity: 0.92;
  transform: scale(1.06); transition: transform 8s ease;
}
#hero:hover .hero-img { transform: scale(1.02); }
.hero-bg-gfx {
  position: absolute; bottom: -3rem; right: -2rem;
  font-family: var(--display);
  font-size: clamp(9rem, 18vw, 18rem);
  line-height: 1; color: rgba(0,0,0,0.04);
  pointer-events: none; z-index: 0; letter-spacing: -0.02em;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-label {
  font-size: 0.65rem; letter-spacing: 0.35em;
  color: var(--gold); font-weight: 600;
}
.hero-heading {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.5vw, 6.5rem);
  font-weight: 300; line-height: 1.0; color: var(--cream);
  margin-bottom: 0.75rem;
}
.hero-heading em { font-style: italic; color: var(--gold-pale); display: block; }
.hero-heading strong { font-weight: 700; color: white; }
.hero-desc {
  max-width: 420px; font-size: 1rem; line-height: 1.75;
  color: var(--text-muted); margin-bottom: 2.5rem;
}
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 5rem;
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.62rem; letter-spacing: 0.3em; color: var(--text-dim); z-index: 2;
}
.hero-scroll-line {
  width: 40px; height: 1px; background: var(--text-dim);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--gold);
  animation: scrollLine 2.2s ease infinite;
}
@keyframes scrollLine { 0% { left: -100%; } 100% { left: 100%; } }
.hero-stats {
  position: absolute; bottom: 0; right: 0; width: 50%;
  background: rgba(8,7,10,0.88); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(200,146,10,0.25);
  display: grid; grid-template-columns: repeat(3,1fr); z-index: 3;
}
.hero-stat {
  padding: 1.4rem; border-right: 1px solid var(--border); text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--display); font-size: 2.2rem;
  color: var(--gold-light); line-height: 1;
}
.hero-stat-label { font-size: 0.58rem; letter-spacing: 0.2em; color: var(--text-dim); margin-top: 0.2rem; }

/* ── Marquee ── */
.marquee-band {
  background: var(--gold); padding: 0.85rem 0; overflow: hidden; position: relative; z-index: 5;
}
.marquee-track {
  display: flex; animation: marqueeScroll 28s linear infinite; white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 1.5rem;
  padding: 0 1.5rem; font-family: var(--display);
  font-size: 1rem; letter-spacing: 0.18em; color: #1A1210;
}
.marquee-dot { width: 5px; height: 5px; background: rgba(20,15,8,0.38); border-radius: 50%; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Section helpers ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1600px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 8rem 0; }
.section-pad-sm { padding: 5rem 0; }
.section-eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.section-num { font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.15em; color: var(--gold); opacity: 0.7; }
.section-line { flex: 1; max-width: 60px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.t-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 400; line-height: 1.2; color: var(--cream); }
.t-subtitle { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 2rem); font-weight: 300; font-style: italic; color: var(--gold-pale); }
.t-label { font-size: 0.64rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.t-body { font-size: 1rem; line-height: 1.75; color: var(--text-muted); }

/* ── Categories ── */
.categories-section { padding: 7rem 0; background: var(--ink-soft); }
.categories-header {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3.5rem;
}
.categories-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.cat-card { position: relative; overflow: hidden; background: var(--surface); aspect-ratio: 2/3; }
.cat-card:first-child { aspect-ratio: auto; grid-row: span 2; }
.cat-card-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.45) saturate(0.8);
  transition: filter 0.6s, transform 0.6s;
}
.cat-card:hover .cat-card-img { filter: brightness(0.65) saturate(1); transform: scale(1.06); }
.cat-card-body {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
}
.cat-card-body::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s;
}
.cat-card:hover .cat-card-body::after { transform: scaleX(1); }
.cat-tag {
  display: inline-block; padding: 0.28rem 0.75rem;
  background: var(--gold-light); color: #FEFCF8;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em;
  border-radius: var(--r-full); margin-bottom: 0.6rem; width: fit-content;
}
.cat-title { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; color: white; line-height: 1.1; margin-bottom: 0.4rem; }
.cat-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 1rem; line-height: 1.4; }
.cat-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; letter-spacing: 0.15em; color: var(--gold); font-weight: 600; transition: gap 0.2s; }
.cat-card:hover .cat-link { gap: 0.8rem; }
.cat-link-arrow {
  width: 22px; height: 22px; border: 1px solid var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; transition: background 0.2s, color 0.2s;
}
.cat-card:hover .cat-link-arrow { background: var(--gold); color: var(--ink); }

/* ── Featured Products ── */
.featured-section { padding: 8rem 0; }
.featured-header { margin-bottom: 4rem; }
.featured-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto; gap: 1.5rem;
}
.product-card {
  background: var(--surface); border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(200,146,10,0.3); }
.product-card.featured { grid-column: 1; grid-row: 1 / 3; }
.product-card-img { width: 100%; overflow: hidden; aspect-ratio: 4/3; }
.product-card.featured .product-card-img { aspect-ratio: 3/4; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.product-card:hover .product-card-img img { transform: scale(1.07); }
.product-card-body { padding: 1.5rem; }
.product-card.featured .product-card-body { padding: 2rem; }
.product-badge {
  display: inline-block; padding: 0.22rem 0.6rem;
  background: rgba(150,110,8,0.1); border: 1px solid rgba(150,110,8,0.25);
  color: var(--gold); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em;
  border-radius: var(--r-full); margin-bottom: 0.6rem;
}
.product-name { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--cream); margin-bottom: 0.3rem; line-height: 1.2; }
.product-card.featured .product-name { font-size: 2rem; margin-bottom: 0.6rem; }
.product-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.product-card.featured .product-desc { font-size: 0.94rem; margin-bottom: 1.5rem; }
.product-meta { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--serif); font-size: 1.4rem; color: var(--gold-light); }
.product-card.featured .product-price { font-size: 2rem; }
.product-price small { font-family: var(--sans); font-size: 0.68rem; color: var(--text-dim); margin-left: 0.25rem; }
.btn-product {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.1rem; background: transparent;
  border: 1px solid var(--border); color: var(--text);
  font-size: 0.72rem; letter-spacing: 0.1em; border-radius: var(--r-full);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-product:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,146,10,0.08); }

/* ── Stats ── */
.stats-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--jade) 0%, #0D3A20 100%);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: 'NATURCAM'; position: absolute;
  font-family: var(--display); font-size: 18rem;
  color: rgba(255,255,255,0.025); letter-spacing: 0.1em;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; white-space: nowrap;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; z-index: 1; }
.stat-item {
  text-align: center; padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-md);
  background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
}
.stat-num { font-family: var(--display); font-size: 3.5rem; color: var(--gold-light); line-height: 1; }
.stat-suffix { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); }
.stat-label { font-size: 0.62rem; letter-spacing: 0.25em; color: rgba(255,255,255,0.45); margin-top: 0.5rem; }

/* ── Bento ── */
.bento-section { padding: 7rem 0; }
.bento-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 80px; gap: 1rem; }
.bento-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; position: relative; transition: transform 0.3s, border-color 0.3s; }
.bento-card:hover { transform: translateY(-4px); border-color: rgba(200,146,10,0.25); }
.bento-lg { grid-column: span 5; grid-row: span 5; }
.bento-md { grid-column: span 4; grid-row: span 3; }
.bento-sm { grid-column: span 3; grid-row: span 2; }
.bento-wide { grid-column: span 7; grid-row: span 3; }
.bento-tall { grid-column: span 4; grid-row: span 5; }
.bento-card-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5); transition: filter 0.4s; }
.bento-card:hover .bento-card-img { filter: brightness(0.7); }
.bento-card-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 65%);
}
.bento-icon { font-size: 1.8rem; margin-bottom: 0.4rem; }
.bento-label { font-family: var(--serif); font-size: 1.1rem; color: white; font-weight: 400; }
.bento-sub { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 0.15rem; }
.bento-card.info-card { background: linear-gradient(135deg, var(--jade), #0D3A20); border-color: rgba(26,92,56,0.5); }
.bento-card.gold-card { background: linear-gradient(135deg, #3A2A00, #1E1600); border-color: rgba(200,146,10,0.3); }
.bento-info-body { padding: 2rem; height: 100%; display: flex; flex-direction: column; justify-content: center; }

/* ── Materials ── */
.materials-section { padding: 8rem 0; background: var(--ink-soft); }
.materials-ticker { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); margin-bottom: 4rem; border-radius: var(--r-md); overflow: hidden; }
.material-tick { background: var(--surface); padding: 2rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.6rem; transition: background 0.2s; }
.material-tick:hover { background: var(--card); }
.material-icon-wrap { width: 56px; height: 56px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.material-tick-name { font-family: var(--serif); font-size: 1.4rem; color: var(--cream); }
.material-tick-formula { font-size: 0.68rem; letter-spacing: 0.2em; color: var(--text-dim); }
.badge-premium { background: rgba(200,146,10,0.15); color: var(--gold); border: 1px solid rgba(200,146,10,0.25); padding: 0.2rem 0.65rem; border-radius: var(--r-full); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; }
.badge-standard { background: rgba(255,255,255,0.06); color: var(--text-muted); border: 1px solid var(--border); padding: 0.2rem 0.65rem; border-radius: var(--r-full); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; }
.materials-detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.material-detail-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2.5rem; display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start; transition: border-color 0.4s, transform 0.4s; }
.material-detail-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.material-detail-img { width: 130px; height: 130px; border-radius: var(--r-md); object-fit: cover; flex-shrink: 0; }
.material-detail-name { font-family: var(--serif); font-size: 1.9rem; color: var(--cream); margin-bottom: 0.2rem; }
.material-detail-specs { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.75rem; }
.spec-row { display: flex; align-items: center; gap: 1rem; font-size: 0.82rem; }
.spec-key { color: var(--text-dim); min-width: 110px; }
.spec-val { color: var(--cream); font-weight: 500; }

/* ── About ── */
.about-section { padding: 8rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; border-radius: var(--r-lg); object-fit: cover; aspect-ratio: 4/5; }
.about-img-badge {
  position: absolute; bottom: 2rem; right: -2rem;
  background: var(--jade); border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md); padding: 1.5rem; width: 155px; box-shadow: var(--shadow-card);
}
.about-img-badge-num { font-family: var(--display); font-size: 2.5rem; color: var(--gold-light); line-height: 1; }
.about-img-badge-text { font-size: 0.68rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); margin-top: 0.2rem; }
.about-values { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.about-value { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.25rem; border: 1px solid var(--border); border-radius: var(--r-md); background: var(--surface); transition: border-color 0.2s; }
.about-value:hover { border-color: rgba(200,146,10,0.3); }
.about-value-icon { width: 44px; height: 44px; flex-shrink: 0; background: linear-gradient(135deg, var(--jade), #0D3A20); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.about-value-title { font-size: 0.9rem; font-weight: 600; color: var(--cream); margin-bottom: 0.15rem; }
.about-value-text { font-size: 0.8rem; color: var(--text-muted); }

/* ── Testimonials ── */
.testimonials-section { padding: 7rem 0; background: var(--ink-soft); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; transition: border-color 0.3s, transform 0.3s; }
.testi-card:hover { border-color: rgba(200,146,10,0.3); transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.75rem; letter-spacing: 0.15em; }
.testi-text { font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: var(--cream-dim); line-height: 1.65; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--jade); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1rem; color: var(--gold-light); font-weight: 600; }
.testi-name { font-size: 0.84rem; font-weight: 600; color: var(--cream); }
.testi-role { font-size: 0.7rem; color: var(--text-dim); margin-top: 1px; }

/* ── CTA Band ── */
.cta-band {
  padding: 6rem 0;
  background: linear-gradient(135deg, #F5EDD8 0%, #FFFAEF 50%, #F5EDD8 100%);
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(150,110,8,0.25);
  border-bottom: 1px solid rgba(150,110,8,0.25);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(200,146,10,0.1), transparent);
}
.cta-band-inner { position: relative; z-index: 1; text-align: center; }
.cta-band-inner .t-title { margin-bottom: 1rem; }
.cta-band-inner .t-body { max-width: 480px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
footer {
  background: #080606;
  border-top: 1px solid rgba(200,146,10,0.18);
  padding: 5rem 0 2rem;
  /* restore dark-theme vars inside footer */
  --ink: #080606;
  --ink-soft: #0F0D10;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3.5rem; padding-bottom: 4rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.footer-brand p { font-size: 0.86rem; color: var(--text-dim); line-height: 1.7; margin: 0.75rem 0 1.5rem; max-width: 270px; }
.footer-socials { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.footer-social { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--text-muted); transition: border-color 0.2s, color 0.2s, background 0.2s; }
.footer-social:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,146,10,0.1); }
.footer-col h4 { font-size: 0.62rem; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 1.2rem; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a { font-size: 0.86rem; color: var(--text-dim); transition: color 0.2s; display: flex; align-items: center; gap: 0.4rem; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-contact-item { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.7rem; }
.footer-contact-item i { width: 18px; flex-shrink: 0; color: var(--gold); font-size: 0.82rem; margin-top: 0.1rem; }
.footer-contact-item span { font-size: 0.8rem; color: var(--text-dim); line-height: 1.5; }
.footer-contact-item a { color: var(--text-dim); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-banks { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 0.7rem; margin-top: 0.6rem; font-size: 0.7rem; color: var(--text-dim); line-height: 1.6; }
.footer-banks strong { color: var(--gold); display: block; margin-bottom: 0.2rem; font-size: 0.62rem; letter-spacing: 0.1em; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-legal { font-size: 0.72rem; color: var(--text-dim); }
.footer-legal a { color: var(--text-dim); }
.footer-legal a:hover { color: var(--gold); }
.footer-logo-text { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; letter-spacing: 0.22em; color: var(--cream); margin: 0.4rem 0; }
.footer-logo-text span { color: var(--gold); }

/* ── WhatsApp FAB ── */
#whatsapp-fab { position: fixed; bottom: 2rem; right: 2rem; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; box-shadow: 0 6px 24px rgba(37,211,102,0.4); z-index: 500; transition: transform 0.3s var(--ease-bounce), box-shadow 0.2s; }
#whatsapp-fab:hover { transform: scale(1.12); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
#whatsapp-fab::before { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: waPulse 2.2s ease infinite; }
@keyframes waPulse { 0%,100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.5); opacity: 0; } }
#back-to-top { position: fixed; bottom: 2rem; left: 2rem; width: 42px; height: 42px; background: var(--surface); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.9rem; z-index: 500; opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s, border-color 0.2s; }
#back-to-top.visible { opacity: 1; pointer-events: all; }
#back-to-top:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── Toast ── */
#toast-container { position: fixed; bottom: 5rem; right: 2rem; z-index: 10000; display: flex; flex-direction: column; gap: 0.6rem; pointer-events: none; }
.toast { padding: 0.9rem 1.4rem; border-radius: var(--r-md); background: var(--card); border: 1px solid var(--border); color: var(--text); font-size: 0.86rem; display: flex; align-items: center; gap: 0.7rem; box-shadow: var(--shadow-card); transform: translateX(120%); transition: transform 0.4s var(--ease); pointer-events: all; max-width: 300px; }
.toast.show { transform: translateX(0); }
.toast.success { border-color: rgba(40,160,96,0.35); }
.toast.error { border-color: rgba(200,48,32,0.35); }
.toast-icon { font-size: 1rem; }
.toast.success .toast-icon { color: var(--success); }
.toast.error .toast-icon { color: var(--danger); }

/* ── Page Hero ── */
.page-hero { height: 42vh; min-height: 380px; position: relative; overflow: hidden; display: flex; align-items: center; }
.page-hero-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; filter: brightness(0.32); }
.page-hero-content { position: relative; z-index: 2; padding-top: 5rem; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(8,7,10,0.85) 0%, transparent 60%); z-index: 1; }

/* ── Filter Bar ── */
.filter-bar { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; padding: 2.5rem 0 1.5rem; }
.filter-btn { padding: 0.48rem 1.2rem; border: 1px solid var(--border); border-radius: var(--r-full); font-size: 0.76rem; color: var(--text-muted); letter-spacing: 0.08em; transition: border-color 0.2s, color 0.2s, background 0.2s; background: transparent; }
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(200,146,10,0.1); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; padding-bottom: 4rem; }

/* ── NATCACAO Spotlight ── */
.natcacao-spotlight { background: linear-gradient(135deg, #1A0A00, #0A0500); border: 1px solid rgba(200,146,10,0.3); border-radius: var(--r-lg); padding: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 4rem; position: relative; overflow: hidden; }
.natcacao-spotlight::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(200,146,10,0.1), transparent 70%); }
.natcacao-img { width: 100%; max-width: 300px; margin: 0 auto; border-radius: var(--r-md); box-shadow: var(--shadow-gold); }
.natcacao-title { font-family: var(--display); font-size: 4rem; letter-spacing: 0.1em; color: var(--gold-light); line-height: 1; margin-bottom: 0.4rem; }
.natcacao-subtitle { font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: var(--cream-dim); margin-bottom: 1.5rem; }
.natcacao-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 2rem; }
.natcacao-spec { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,146,10,0.15); border-radius: var(--r-sm); padding: 0.7rem 0.9rem; }
.natcacao-spec-key { font-size: 0.58rem; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 0.2rem; }
.natcacao-spec-val { font-size: 0.88rem; color: var(--cream); }

/* ── NATCAFÉ Teaser ── */
.natcafe-teaser {
  position: relative; overflow: hidden;
  min-height: 520px; display: flex; align-items: center;
}
.natcafe-teaser-img-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.natcafe-teaser-bg {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.22) saturate(0.6);
  max-width: none;
}
.natcafe-teaser::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(8,6,4,0.92) 0%, rgba(8,6,4,0.65) 55%, transparent 100%);
}
.natcafe-teaser-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding: 6rem 2rem;
}
.natcafe-teaser-content { max-width: 520px; }
.natcafe-teaser-cup {
  display: flex; align-items: center; justify-content: flex-end;
}
.natcafe-teaser-cup img {
  max-width: 280px; filter: drop-shadow(0 20px 60px rgba(200,146,10,0.3));
  animation: floatImg 5s ease-in-out infinite;
}
@keyframes floatImg {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.natcafe-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(200,146,10,0.35);
  border-radius: var(--r-full);
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--gold-pale); background: rgba(200,146,10,0.08);
}
@media (max-width: 768px) {
  .natcafe-teaser-inner { grid-template-columns: 1fr; gap: 2rem; padding: 5rem 1.25rem; }
  .natcafe-teaser-cup { justify-content: center; }
  .natcafe-teaser-cup img { max-width: 200px; }
}

/* ── Immobilier Preview ── */
.immo-preview-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.5rem;
}
.immo-preview-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); aspect-ratio: 3/4;
  transition: transform 0.4s var(--ease);
}
.immo-preview-card.immo-preview-featured { aspect-ratio: 2/3; grid-row: span 1; }
.immo-preview-card:hover { transform: translateY(-6px); }
.immo-preview-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.5); transition: filter 0.5s, transform 0.6s;
}
.immo-preview-card:hover .immo-preview-img { filter: brightness(0.7); transform: scale(1.05); }
.immo-preview-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
}
.immo-badge {
  display: inline-block; padding: 0.25rem 0.75rem; margin-bottom: 0.6rem;
  background: var(--gold-light); color: #FEFCF8;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em;
  border-radius: var(--r-full); width: fit-content;
}
.immo-preview-title {
  font-family: var(--serif); font-size: 1.5rem;
  color: white; font-weight: 400; line-height: 1.15; margin-bottom: 0.4rem;
}
.immo-preview-price {
  font-family: var(--serif); font-size: 1.1rem;
  color: var(--gold-pale); margin-bottom: 1rem;
}
.immo-preview-price small { font-family: var(--sans); font-size: 0.7rem; color: rgba(255,255,255,0.5); }
@media (max-width: 900px) {
  .immo-preview-grid { grid-template-columns: 1fr 1fr; }
  .immo-preview-card.immo-preview-featured { grid-column: 1 / -1; aspect-ratio: 16/7; }
}
@media (max-width: 600px) {
  .immo-preview-grid { grid-template-columns: 1fr; }
  .immo-preview-card { aspect-ratio: 4/3; }
  .immo-preview-card.immo-preview-featured { aspect-ratio: 4/3; }
}

/* ── Bento FA icon ── */
.bento-icon-fa {
  font-size: 1.4rem; margin-bottom: 0.4rem; color: rgba(255,255,255,0.7);
}

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; padding: 5rem 0; }
.contact-form-group { margin-bottom: 1.5rem; }
.contact-form-group label { display: block; font-size: 0.68rem; letter-spacing: 0.22em; color: var(--gold); margin-bottom: 0.45rem; }
.contact-input { width: 100%; padding: 0.9rem 1.2rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--text); font-size: 0.95rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.contact-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,146,10,0.1); }
.contact-input::placeholder { color: var(--text-dim); }
textarea.contact-input { resize: vertical; min-height: 135px; }
.contact-info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.25rem; margin-bottom: 0.8rem; display: flex; gap: 0.9rem; align-items: flex-start; transition: border-color 0.2s; }
.contact-info-card:hover { border-color: rgba(200,146,10,0.3); }
.contact-info-icon { width: 42px; height: 42px; flex-shrink: 0; background: rgba(200,146,10,0.1); border: 1px solid rgba(200,146,10,0.2); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.95rem; }
.contact-info-title { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 0.25rem; }
.contact-info-val { font-size: 0.92rem; color: var(--cream); line-height: 1.5; }

/* ══════════════════════════════════════════════════
   PRODUCT MODAL — Facebook Marketplace style
   ══════════════════════════════════════════════════ */

#product-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
#product-modal.open {
  opacity: 1; visibility: visible;
}

/* blurred backdrop */
#modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 8, 6, 0.72);
  backdrop-filter: blur(18px) saturate(0.7);
  -webkit-backdrop-filter: blur(18px) saturate(0.7);
  cursor: pointer;
}

/* panel */
#modal-panel {
  position: relative; z-index: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  width: 100%; max-width: 960px;
  max-height: 92vh;
  display: grid; grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(200,146,10,0.12);
  transform: scale(0.93) translateY(24px);
  transition: transform 0.38s var(--ease-bounce);
}
#product-modal.open #modal-panel {
  transform: scale(1) translateY(0);
}

/* close button */
#modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  width: 38px; height: 38px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  border-radius: 50%; color: white; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
#modal-close:hover { background: var(--gold); transform: scale(1.12); }

/* image side */
#modal-img-wrap {
  position: relative; background: #0C0A08;
  overflow: hidden; min-height: 420px;
}
#modal-img {
  width: 100%; height: 100%; object-fit: contain;
  max-height: 92vh;
  padding: 1rem;
  transition: opacity 0.25s;
}
#modal-img.loading { opacity: 0; }

/* nav arrows */
#modal-img-nav { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 0.75rem; pointer-events: none; }
#modal-prev, #modal-next {
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  border-radius: 50%; color: white; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  pointer-events: all; cursor: pointer;
  transition: background 0.2s, opacity 0.2s; opacity: 0;
}
#modal-img-wrap:hover #modal-prev,
#modal-img-wrap:hover #modal-next { opacity: 1; }
#modal-prev:hover, #modal-next:hover { background: var(--gold); }
#modal-prev.hidden, #modal-next.hidden { display: none; }

/* badge on image */
#modal-badge-wrap {
  position: absolute; top: 1rem; left: 1rem;
}
.modal-badge {
  display: inline-block; padding: 0.28rem 0.8rem;
  background: var(--gold-light); color: #FEFCF8;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
  border-radius: var(--r-full);
}

/* info side */
#modal-info {
  padding: 2.5rem 2.25rem;
  overflow-y: auto; display: flex; flex-direction: column; gap: 0;
  scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
}
#modal-info::-webkit-scrollbar { width: 3px; }
#modal-info::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

#modal-category {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem; font-weight: 600;
}
#modal-title {
  font-family: var(--serif); font-size: 1.9rem; font-weight: 400;
  color: var(--cream); line-height: 1.15; margin-bottom: 0.75rem;
}
#modal-price {
  font-family: var(--serif); font-size: 2rem;
  color: var(--gold-light); margin-bottom: 1.25rem; line-height: 1;
}
#modal-price small { font-family: var(--sans); font-size: 0.78rem; color: var(--text-dim); margin-left: 0.3rem; }
#modal-desc {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.72;
  margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem;
}
#modal-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem;
  margin-bottom: 1.75rem;
}
.modal-spec {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 0.6rem 0.85rem;
}
.modal-spec-key {
  font-size: 0.57rem; letter-spacing: 0.2em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 0.18rem;
}
.modal-spec-val { font-size: 0.86rem; color: var(--cream); font-weight: 500; }
#modal-actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.25rem;
}
#modal-actions .btn-primary { flex: 1; justify-content: center; font-size: 0.82rem; }
#modal-actions .btn-outline { padding: 1rem 1.2rem; }
#modal-meta-row {
  display: flex; flex-direction: column; gap: 0.45rem;
  font-size: 0.75rem; color: var(--text-dim);
  border-top: 1px solid var(--border); padding-top: 1.25rem;
}
#modal-meta-row span { display: flex; align-items: center; gap: 0.5rem; }
#modal-meta-row i { color: var(--gold); font-size: 0.7rem; width: 14px; }

/* ── Mobile modal ── */
@media (max-width: 760px) {
  #product-modal { padding: 0; align-items: flex-end; }
  #modal-panel {
    grid-template-columns: 1fr; max-height: 94vh;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    transform: translateY(40px);
  }
  #product-modal.open #modal-panel { transform: translateY(0); }
  #modal-img-wrap { min-height: 260px; max-height: 46vw; }
  #modal-img { padding: 0.5rem; }
  #modal-info { padding: 1.5rem 1.25rem; max-height: 58vh; }
  #modal-title { font-size: 1.4rem; }
  #modal-price { font-size: 1.5rem; }
}

/* product card cursor */
.product-card { cursor: pointer; }

/* ── Scroll Reveal ── */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal="left"] { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="scale"] { transform: scale(0.93); }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ── Utilities ── */
.gold { color: var(--gold); }
.cream { color: var(--cream); }
.muted { color: var(--text-muted); }
.serif { font-family: var(--serif); }
.display { font-family: var(--display); }
.text-center { text-align: center; }
.divider { height: 1px; background: var(--border); margin: 2rem 0; }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .categories-grid { grid-template-columns: repeat(2,1fr); }
  .cat-card:first-child { grid-row: auto; }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .featured-grid .product-card.featured { grid-column: 1 / -1; grid-row: auto; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right, .hero-stats { display: none; }
  .hero-left { padding: 8rem 2rem 4rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-badge { right: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .materials-ticker { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .natcacao-spotlight { grid-template-columns: 1fr; }
  .materials-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  #hamburger { display: flex; }
  .categories-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 60px; }
  .bento-lg,.bento-wide,.bento-tall { grid-column: span 2; grid-row: span 4; }
  .bento-md { grid-column: span 2; grid-row: span 3; }
  .bento-sm { grid-column: span 1; grid-row: span 3; }
  .hero-scroll { display: none; }
  .container,.container-wide { padding: 0 1.25rem; }
}
@media (max-width: 480px) {
  .materials-ticker { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .natcacao-specs { grid-template-columns: 1fr; }
  .material-detail-card { grid-template-columns: 1fr; }
}
