@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;0,6..96,800;0,6..96,900;1,6..96,400;1,6..96,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-deep: #0b1520;
  --bg-navy: #0f1d2e;
  --bg-card: #15243a;
  --bg-warm: #f8f5f0;
  --bg-cream: #f1ece5;
  --bg-alt: #e9e3db;

  --text-light: #e4ddd4;
  --text-body-light: #a8b0bc;
  --text-dark: #1c2130;
  --text-body: #4a5568;
  --text-muted: #8a9199;

  --accent: #c49a6c;
  --accent-hover: #d4ab80;
  --accent-dark: #a37d52;
  --accent-glow: rgba(196, 154, 108, 0.2);
  --accent-subtle: rgba(196, 154, 108, 0.08);

  --whatsapp: #25d366;

  --border-light: rgba(255, 255, 255, 0.08);
  --border-warm: rgba(196, 154, 108, 0.18);
  --border-dark: rgba(28, 33, 48, 0.08);

  --shadow-sm: 0 4px 20px rgba(11, 21, 32, 0.08);
  --shadow-md: 0 12px 40px rgba(11, 21, 32, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 21, 32, 0.18);
  --shadow-xl: 0 32px 80px rgba(11, 21, 32, 0.25);
  --shadow-glow: 0 0 60px rgba(196, 154, 108, 0.15);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --font-display: 'Bodoni Moda', 'Georgia', serif;
  --font-body: 'Outfit', system-ui, -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--bg-warm);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(1200px, 90vw);
  margin-inline: auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--bg-deep);
  color: var(--text-light);
}

.section-alt {
  background: var(--bg-cream);
}

.accent {
  color: var(--accent);
}

.text-muted {
  color: var(--text-muted);
}

/* ── GRAIN OVERLAY ── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 7.5vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
}

p {
  margin: 0 0 16px;
}

.overline {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

.section-label {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-label.center {
  text-align: center;
  margin-inline: auto;
}

.section-desc {
  color: var(--text-body);
  font-size: 1.1rem;
  max-width: 580px;
}

.section-dark .section-desc {
  color: var(--text-body-light);
}

.optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85em;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-accent {
  background: var(--accent);
  color: #1a1008;
}

.btn-accent:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-glow);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-dark {
  background: var(--bg-deep);
  color: var(--text-light);
}

.btn-dark:hover {
  background: var(--bg-navy);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #042c0f;
}

.btn-whatsapp:hover {
  background: #2be36f;
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.2);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.82rem;
}

.btn-full {
  width: 100%;
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: all 0.4s var(--ease-smooth);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 21, 32, 0.6);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border-light);
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.header.scrolled::before {
  opacity: 1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 clamp(20px, 4vw, 48px);
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  flex-shrink: 0;
}

.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-text small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-body-light);
  font-weight: 500;
}

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

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(0.8) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(196, 154, 108, 0.12) 0%, transparent 50%),
    linear-gradient(100deg, rgba(11, 21, 32, 0.97) 0%, rgba(11, 21, 32, 0.85) 40%, rgba(11, 21, 32, 0.4) 100%);
}

.hero-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 108, 0.1) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: orbFloat 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 40px) scale(1.05); }
  66% { transform: translate(20px, -20px) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.75fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-body-light);
  max-width: 560px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 0;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.signal {
  display: inline-flex;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-body-light);
  letter-spacing: 0.02em;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: var(--shadow-xl);
  transform: rotate(1.5deg);
  transition: transform 0.6s var(--ease-out);
  animation: cardFloat 6s ease-in-out infinite;
}

.hero-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-card img {
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 380px;
}

.hero-card-label {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--accent);
  color: #1a1008;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

@keyframes cardFloat {
  0%, 100% { transform: rotate(1.5deg) translateY(0); }
  50% { transform: rotate(1.5deg) translateY(-12px); }
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); transform-origin: top; }
}

/* ── STATS ── */
.stats {
  padding: 60px 0;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border-dark);
}

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

.stat-item {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-warm);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  margin: 10px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── PRODUCTS ── */
.products {
  background: var(--bg-warm);
}

.product-showcase {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  background: white;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.5s var(--ease-out);
}

.product:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.product.featured {
  border-color: var(--border-warm);
}

.product.featured::before {
  content: '';
  display: none;
}

.product-media {
  background: linear-gradient(145deg, var(--bg-deep), var(--bg-navy));
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-media::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(196, 154, 108, 0.08) 0%, transparent 50%);
  animation: orbFloat 20s ease-in-out infinite;
}

.product-media img {
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  transition: transform 0.5s var(--ease-out);
  max-width: 320px;
  width: 100%;
}

.product:hover .product-media img {
  transform: scale(1.03) rotate(-0.5deg);
}

.product-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.product-tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 14px;
  background: var(--accent-subtle);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-warm);
  margin-bottom: 16px;
}

.tag-alt {
  background: rgba(28, 33, 48, 0.05);
  color: var(--text-dark);
  border-color: var(--border-dark);
}

.product-edition {
  font-weight: 700;
  color: var(--bg-navy);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.product-info > p:not(.product-edition) {
  color: var(--text-body);
  font-size: 0.95rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 1.5px solid var(--accent);
}

.feature-list li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.feature-list.light li {
  color: var(--text-body-light);
}

.feature-list.light li::before {
  background: rgba(196, 154, 108, 0.1);
}

.product-cta {
  margin-top: auto;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-badge svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ── DOCTRINE ── */
.doctrine {
  background: linear-gradient(160deg, var(--bg-deep) 0%, #0d1e30 100%);
  overflow: hidden;
}

.doctrine::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(196, 154, 108, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.doctrine-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  position: relative;
}

.doctrine-header {
  position: sticky;
  top: calc(var(--header-h) + 40px);
}

.doctrine-lead {
  font-size: 1.1rem;
  color: var(--text-body-light);
  font-weight: 500;
}

.doctrine-header > p:last-child {
  color: var(--text-body-light);
  font-size: 0.95rem;
}

.doctrine-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.doctrine-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.4s var(--ease-out);
}

.doctrine-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-warm);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.dc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #1a1008;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.doctrine-card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.doctrine-card p {
  color: var(--text-body-light);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* ── PROOF ── */
.proof {
  background: var(--bg-warm);
}

.proof-header {
  max-width: 640px;
  margin-bottom: 48px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: 20px;
  min-height: 460px;
}

.proof-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-dark);
}

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

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

/* ── RESOURCE ── */
.resource-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.resource-text p {
  color: var(--text-body);
}

.resource-quote {
  background: var(--bg-deep);
  color: var(--text-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.resource-quote::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 108, 0.08) 0%, transparent 60%);
}

.resource-quote blockquote {
  margin: 0;
}

.resource-quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  color: #fff;
}

.quote-note {
  font-size: 0.9rem;
  color: var(--text-body-light);
  margin: 0;
}

/* ── GALLERY ── */
.gallery {
  background: var(--bg-warm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 260px;
  position: relative;
}

.gallery-item.gi-span2 {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 21, 32, 0.2) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ── JOURNAL ── */
.journal {
  background: linear-gradient(170deg, var(--bg-deep) 0%, #0e1f32 100%);
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.journal-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.journal-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-warm);
  transform: translateY(-4px);
}

.jc-featured {
  grid-row: span 2;
  padding: 36px;
}

.jc-featured h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.jc-tag {
  display: inline-flex;
  width: fit-content;
  padding: 5px 12px;
  background: var(--accent-subtle);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.tag-interview { background: rgba(99, 179, 237, 0.1); color: #63b3ed; }
.tag-doctrine { background: rgba(236, 201, 75, 0.1); color: #ecc94b; }
.tag-ph { background: rgba(72, 187, 120, 0.1); color: #48bb78; }
.tag-cc { background: rgba(245, 101, 101, 0.1); color: #fc8181; }
.tag-lead { background: rgba(183, 148, 244, 0.1); color: #b794f4; }

.journal-card h3 {
  color: #fff;
}

.journal-card p {
  color: var(--text-body-light);
  font-size: 0.9rem;
  flex-grow: 1;
}

.jc-link {
  display: inline-flex;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
  transition: color 0.3s;
  margin-top: auto;
}

.jc-link:hover {
  color: var(--accent-hover);
}

.comments-panel {
  margin-top: 48px;
  background: white;
  color: var(--text-dark);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.comments-panel h3 {
  font-family: var(--font-display);
  color: var(--text-dark);
}

.comments-panel p {
  color: var(--text-body);
}

/* ── FORMS ── */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.section-dark .form-group label {
  color: var(--text-body-light);
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: white;
  color: var(--text-dark);
  transition: all 0.3s var(--ease-out);
  outline: none;
}

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

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

.section-dark .form input,
.section-dark .form textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-light);
  color: var(--text-light);
}

.section-dark .form input::placeholder,
.section-dark .form textarea::placeholder {
  color: var(--text-body-light);
}

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--bg-warm);
  padding: 80px 0;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: white;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow-md);
}

.nl-content h2 {
  margin-bottom: 12px;
}

.nl-content p {
  color: var(--text-body);
  margin: 0;
}

.nl-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nl-input-wrap {
  display: flex;
  gap: 10px;
}

.nl-input-wrap input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg-warm);
  color: var(--text-dark);
  outline: none;
  transition: all 0.3s var(--ease-out);
}

.nl-input-wrap input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: white;
}

.nl-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── SHARE ── */
.share-section {
  padding: 72px 0;
}

.share-inner {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.share-inner h2 {
  margin-bottom: 10px;
}

.share-inner > p {
  color: var(--text-body);
  margin-bottom: 28px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-dark);
  background: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.share-twitter:hover {
  border-color: #1da1f2;
  color: #1da1f2;
  background: rgba(29, 161, 242, 0.05);
}

.share-linkedin:hover {
  border-color: #0077b5;
  color: #0077b5;
  background: rgba(0, 119, 181, 0.05);
}

.share-wa:hover {
  border-color: #25d366;
  color: #128c42;
  background: rgba(37, 211, 102, 0.05);
}

.share-copy:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: var(--accent-subtle);
}

/* ── ABOUT ── */
.about {
  background: var(--bg-warm);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 56px;
  align-items: center;
}

.about-photo img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-dark);
  width: 100%;
}

.about-role {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.about-text p:not(.about-role):not(.overline) {
  color: var(--text-body);
}

/* ── CONTACT ── */
.contact {
  background: linear-gradient(160deg, var(--bg-deep), #0e1e30);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.contact-form {
  gap: 18px;
}

/* ── FINAL CTA ── */
.final-cta {
  text-align: center;
  padding: 120px 0;
  background: linear-gradient(160deg, var(--bg-deep), var(--bg-navy));
  color: #fff;
  overflow: hidden;
  position: relative;
}

.final-orb {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 108, 0.06) 0%, transparent 60%);
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  animation: orbFloat 18s ease-in-out infinite;
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.final-cta p {
  color: var(--text-body-light);
  max-width: 620px;
  margin-inline: auto;
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.final-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── FOOTER ── */
.footer {
  background: #070e17;
  color: var(--text-body-light);
  padding-top: 60px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 0.6fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-body-light);
  margin-top: 12px;
  max-width: 320px;
}

.footer-nav,
.footer-contact,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer strong {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer a {
  font-size: 0.88rem;
  color: var(--text-body-light);
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--accent);
}

.footer-legal p {
  font-size: 0.82rem;
  color: var(--text-body-light);
  line-height: 1.6;
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #1a1008;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

/* ── SCROLL REVEAL ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal="up"] {
  transform: translateY(40px);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="scale"] {
  transform: scale(0.92);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-sub {
    margin-inline: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-signals {
    justify-content: center;
  }

  .hero-card {
    max-width: 340px;
    margin-inline: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .product-media {
    padding: 32px;
  }

  .doctrine-layout {
    grid-template-columns: 1fr;
  }

  .doctrine-header {
    position: static;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .proof-img {
    height: 320px;
  }

  .resource-layout {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.gi-span2 {
    grid-column: span 1;
  }

  .journal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .jc-featured {
    grid-row: span 1;
    grid-column: span 2;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo {
    max-width: 400px;
    margin-inline: auto;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .section {
    padding: 72px 0;
  }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 21, 32, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 99;
  }

  .nav.open {
    display: flex;
  }

  .nav-link {
    font-size: 1.3rem;
    font-family: var(--font-display);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions .btn {
    display: none;
  }

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

  .hero-content {
    padding: 100px 0 60px;
  }

  .scroll-hint {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-item {
    padding: 18px;
  }

  .product-info {
    padding: 28px;
  }

  .doctrine-cards {
    grid-template-columns: 1fr;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .jc-featured {
    grid-column: span 1;
  }

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

  .share-buttons {
    flex-direction: column;
    align-items: center;
  }

  .share-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .final-btns {
    flex-direction: column;
    align-items: center;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 56px 0;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .hero-card {
    max-width: 280px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 200px;
  }

  .nl-input-wrap {
    flex-direction: column;
  }

  .nl-input-wrap .btn {
    width: 100%;
  }

  .contact-btns {
    flex-direction: column;
  }

  .contact-btns .btn {
    width: 100%;
  }

  .newsletter-inner {
    padding: 28px;
  }
}

/* ── PRINT ── */
@media print {
  .grain,
  .header,
  .scroll-hint,
  .back-to-top,
  .hero-orb,
  .final-orb {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section-dark,
  .section-alt {
    background: #fff;
    color: #000;
  }
}
