/* ================================================
   HOME PAGE CSS
   ================================================ */

/* ── Hero ── */
.hero { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; background: var(--espresso); padding-bottom: 100px; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.hero-parallax { position: absolute; inset: -20%; background-size: cover; background-position: center 30%; opacity: 0.18; z-index: 0; }
.hero-gradient-bg { background: linear-gradient(160deg, #3A2A1E 0%, var(--brown-mid) 45%, #1C1008 100%) !important; opacity: 0.6 !important; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(28,20,16,0.92) 0%, rgba(74,55,40,0.75) 50%, rgba(28,20,16,0.88) 100%); z-index: 2; }

.hero-inner { position: relative; z-index: 3; padding: 140px 80px 0; max-width: 660px; }
.hero-content { width: 100%; }

.hero-img-wrap { position: absolute; right: 0; top: 0; bottom: 0; width: 58%; z-index: 3; overflow: hidden; }
.hero-img-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero-img-fade { position: absolute; inset: 0; background: linear-gradient(to right, rgba(28,20,16,1.0) 0%, rgba(28,20,16,0.92) 12%, rgba(50,35,22,0.70) 30%, rgba(74,55,40,0.35) 50%, rgba(74,55,40,0.10) 68%, transparent 82%), linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.10) 25%, transparent 45%); pointer-events: none; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border: 1px solid rgba(154,123,79,0.4); border-radius: 30px; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 32px; background: rgba(154,123,79,0.08); backdrop-filter: blur(10px); }
.badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }

.hero-title { display: flex; flex-direction: column; margin-bottom: 28px; }
.hero-title span { font-family: var(--font-display); font-weight: 300; color: var(--white); line-height: 1.05; text-transform: uppercase; letter-spacing: 0.05em; }
.hero-line-1 { font-size: clamp(1.3rem, 2.2vw, 2rem); color: rgba(255,255,255,0.7) !important; }
.hero-line-2 { font-size: clamp(1.8rem, 3.6vw, 3.5rem); }
.hero-line-2 em { font-style: italic; color: var(--gold-light) !important; font-weight: 300; }
.hero-line-3 { font-size: clamp(1.8rem, 3.6vw, 3.5rem); }

.hero-sub { font-size: 0.95rem; line-height: 1.75; color: rgba(255,255,255,0.55); margin-bottom: 40px; max-width: 680px; white-space: normal; word-break: normal; overflow-wrap: break-word; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats { display: flex; align-items: center; gap: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: 2.4rem; font-weight: 300; color: var(--white); line-height: 1; }
.stat-label { display: block; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

.hero-scroll-indicator { position: absolute; bottom: 40px; left: 80px; display: flex; align-items: center; gap: 16px; z-index: 3; }
.scroll-line { width: 60px; height: 1px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--gold); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0% { left: -100%; } 100% { left: 100%; } }
.hero-scroll-indicator span { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.35); }

/* ── Marquee Strip ── */
.marquee-strip { background: var(--gold); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; align-items: center; gap: 32px; animation: marquee 28s linear infinite; }
.marquee-track span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--white); opacity: 0.9; }
.marquee-dot { font-size: 0.6rem !important; opacity: 0.5 !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── About Intro ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-visual { position: relative; }
.about-img-wrap { position: relative; margin-bottom: 20px; }
.about-img-deco-frame { position: absolute; top: 16px; left: -14px; right: 14px; bottom: -14px; border: 2px solid var(--gold-pale); border-radius: 6px; z-index: 0; pointer-events: none; }
.about-img-deco-dots { position: absolute; bottom: -28px; right: -24px; width: 96px; height: 96px; background-image: radial-gradient(var(--gold-light) 1.5px, transparent 1.5px); background-size: 14px 14px; opacity: 0.45; z-index: 0; pointer-events: none; }
.about-img-main { position: relative; z-index: 1; border-radius: 6px; overflow: hidden; height: 420px; box-shadow: var(--shadow-deep); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; transition: transform 0.6s var(--ease-smooth); }
.about-img-main:hover img { transform: scale(1.03); }
.img-card-badge { position: absolute; bottom: 16px; left: 16px; background: rgba(28,20,16,0.85); backdrop-filter: blur(10px); color: var(--gold-light); padding: 8px 14px; border-radius: 4px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; display: flex; align-items: center; gap: 6px; border: 1px solid rgba(154,123,79,0.3); }
.about-stats-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.about-mini-stat { display: flex; align-items: center; gap: 12px; background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: 4px; padding: 14px 16px; transition: all 0.3s var(--ease-smooth); }
.about-mini-stat:hover { box-shadow: var(--shadow-gold); transform: translateY(-2px); }
.mini-stat-icon { width: 36px; height: 36px; min-width: 36px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mini-stat-icon svg { width: 16px; height: 16px; stroke: var(--gold); }
.mini-stat-num { display: block; font-family: var(--font-display); font-size: 1.55rem; font-weight: 300; color: var(--espresso); line-height: 1; }
.mini-stat-label { display: block; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 3px; }

.about-pillars { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.pillar { display: flex; align-items: flex-start; gap: 16px; padding: 20px 24px; background: var(--ivory-warm); border: 1px solid var(--border); border-radius: 4px; border-left: 3px solid var(--gold); transition: all 0.3s var(--ease-smooth); }
.pillar:hover { box-shadow: var(--shadow-gold); transform: translateX(4px); }
.pillar-icon { width: 40px; height: 40px; min-width: 40px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.pillar-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.pillar-title { font-size: 0.88rem; font-weight: 600; color: var(--espresso); margin-bottom: 4px; }
.pillar-body { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ── Feature Cards ── */
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card { background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: 0 2px 16px rgba(28,20,16,0.05); transition: box-shadow 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth); border: 1px solid var(--border); position: relative; }
.feature-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease-smooth); }
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(28,20,16,0.1); border-color: rgba(154,123,79,0.22); }
.feature-card:hover::after { transform: scaleX(1); }
.card-img-wrap { position: relative; height: 240px; overflow: hidden; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-smooth); }
.feature-card:hover .card-img-wrap img { transform: scale(1.04); }
.card-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(28,20,16,0.22) 100%); opacity: 0; transition: opacity 0.4s var(--ease-smooth); }
.feature-card:hover .card-img-wrap::after { opacity: 1; }
.card-category { position: absolute; top: 14px; left: 14px; background: rgba(28,20,16,0.72); backdrop-filter: blur(8px); color: var(--gold-light); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 5px 13px; border-radius: 20px; border: 1px solid rgba(154,123,79,0.3); }
.card-body { padding: 28px 28px 34px; }
.card-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--espresso); margin-bottom: 10px; line-height: 1.3; }
.card-title em { font-style: italic; color: var(--gold); }
.card-text { font-size: 0.84rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 22px; }
.card-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); transition: gap 0.3s var(--ease-smooth); padding-bottom: 2px; border-bottom: 1px solid rgba(154,123,79,0.3); }
.card-link:hover { gap: 14px; border-bottom-color: var(--gold); }
.feature-card-dark { background: var(--espresso); border-color: transparent; }
.feature-card-dark .card-title { color: var(--white); }
.feature-card-dark .card-text { color: rgba(255,255,255,0.55); }
.feature-card-dark .card-link { color: var(--gold-light); border-bottom-color: rgba(154,123,79,0.25); }
.feature-card-dark:hover { border-color: rgba(154,123,79,0.25); }

/* ── Quote ── */
.quote-section { background: var(--ivory-warm); padding: 80px 48px; }
.quote-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; }
.quote-mark { font-family: var(--font-display); font-size: 8rem; color: var(--gold-pale); line-height: 0.5; margin-bottom: 24px; }
.quote-text { font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-style: italic; font-weight: 300; color: var(--espresso); line-height: 1.6; margin-bottom: 32px; }
.quote-author { display: flex; align-items: center; justify-content: center; gap: 16px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.quote-line { width: 40px; height: 1px; background: var(--gold); }

/* ── Stats Band ── */
.stats-band { background: var(--brown-mid); padding: 64px 48px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-big { display: block; font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 300; color: var(--white); line-height: 1; }
.stat-lbl { display: block; font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); margin-top: 8px; }

/* ── CTA Band ── */
.cta-band { padding: 100px 48px; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--espresso) 0%, var(--brown-mid) 100%); }
.cta-bg::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239A7B4F' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ── About Gutter Decorations ── */
.about-intro { position: relative; overflow: hidden; }
.about-deco { position: absolute; top: 50%; transform: translateY(-50%); pointer-events: none; display: none; }
.about-deco-l { left: 8px; width: 48px; height: 600px; }
.about-deco-r { right: 8px; width: 80px; height: 600px; }
/* ── About Cert Strip ── */
.about-cert-strip { display: flex; align-items: center; margin-top: 20px; padding: 14px 0; border-top: 1px solid var(--border); }
.about-cert-item { display: flex; align-items: center; gap: 7px; flex: 1; padding: 0 10px; }
.about-cert-item:first-child { padding-left: 0; }
.about-cert-item svg { width: 15px; height: 15px; stroke: var(--gold); flex-shrink: 0; }
.about-cert-item span { font-size: 0.6rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-muted); line-height: 1.3; white-space: nowrap; }
.about-cert-sep { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }
/* ── Video Showcase ── */
.video-showcase { position: relative; background: var(--espresso); padding: 100px 0; overflow: hidden; }
.vsh-bg-word { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-display); font-size: clamp(9rem, 20vw, 24rem); font-weight: 700; letter-spacing: 0.35em; color: rgba(255,255,255,0.022); pointer-events: none; white-space: nowrap; user-select: none; }
.vsh-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: center; }
.vsh-eyebrow { color: var(--gold-light) !important; }
.vsh-title { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.vsh-title em { font-style: italic; color: var(--gold-light); }
.vsh-body { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.5); margin-bottom: 36px; max-width: 420px; }
.vsh-credentials { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.vsh-cred { display: flex; align-items: center; gap: 14px; font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.vsh-cred-icon { width: 32px; height: 32px; min-width: 32px; border: 1px solid rgba(154,123,79,0.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(154,123,79,0.1); }
.vsh-cred-icon svg { width: 14px; height: 14px; stroke: var(--gold-light); }
.vsh-player-wrap { position: relative; }
.vsh-player { position: relative; border-radius: 6px; overflow: hidden; aspect-ratio: 16/9; background: #0a0806; cursor: pointer; }
.vsh-video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease-smooth); }
.vsh-player:hover .vsh-video { transform: scale(1.02); }
.vsh-corner { position: absolute; width: 24px; height: 24px; z-index: 5; }
.vsh-tl { top: 14px; left: 14px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); border-radius: 2px 0 0 0; }
.vsh-tr { top: 14px; right: 14px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); border-radius: 0 2px 0 0; }
.vsh-bl { bottom: 18px; left: 14px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); border-radius: 0 0 0 2px; }
.vsh-br { bottom: 18px; right: 14px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); border-radius: 0 0 2px 0; }
.vsh-play-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; background: rgba(28,20,16,0.42); backdrop-filter: blur(2px); z-index: 4; transition: opacity 0.4s, visibility 0.4s; }
.vsh-play-overlay.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.vsh-play-pulse { position: absolute; width: 84px; height: 84px; border-radius: 50%; border: 1px solid rgba(154,123,79,0.45); animation: vshPulse 2.2s ease-in-out infinite; }
@keyframes vshPulse { 0% { transform: scale(0.92); opacity: 0.8; } 50% { transform: scale(1.18); opacity: 0.2; } 100% { transform: scale(0.92); opacity: 0.8; } }
.vsh-play-btn { width: 64px; height: 64px; border-radius: 50%; background: var(--gold); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; transition: all 0.3s var(--ease-smooth); box-shadow: 0 8px 40px rgba(154,123,79,0.45); }
.vsh-play-btn:hover { transform: scale(1.08); background: #b8965e; }
.vsh-play-btn svg { width: 22px; height: 22px; margin-left: 3px; }
.vsh-play-label { font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.55); position: relative; z-index: 2; }
.vsh-mute-btn { position: absolute; top: 50px; right: 50px; z-index: 6; width: 36px; height: 36px; border-radius: 50%; background: rgba(28,20,16,0.72); border: 1px solid rgba(154,123,79,0.3); cursor: pointer; display: none; align-items: center; justify-content: center; transition: background 0.3s; }
.vsh-mute-btn:hover { background: rgba(28,20,16,0.92); }
.vsh-mute-btn svg { width: 13px; height: 13px; stroke: var(--gold-light); }
.vsh-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.08); z-index: 5; }
.vsh-progress-fill { height: 100%; width: 0%; background: var(--gold); transition: width 0.25s linear; }
.vsh-deco-dots { position: absolute; bottom: -18px; left: -18px; width: 72px; height: 72px; background-image: radial-gradient(rgba(154,123,79,0.38) 1.5px, transparent 1.5px); background-size: 11px 11px; pointer-events: none; z-index: -1; }
.vsh-now-playing { position: absolute; top: -18px; left: 20px; display: flex; align-items: center; gap: 8px; background: rgba(28,20,16,0.9); border: 1px solid rgba(154,123,79,0.3); padding: 6px 14px; border-radius: 20px; opacity: 0; transform: translateY(5px); transition: all 0.35s var(--ease-smooth); pointer-events: none; }
.vsh-now-playing.is-visible { opacity: 1; transform: translateY(0); }
.vsh-np-dot { width: 6px; height: 6px; border-radius: 50%; background: #ef4444; animation: npBlink 1s ease-in-out infinite; }
@keyframes npBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.vsh-now-playing span { font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-main { height: 340px; }
  .about-stats-strip { grid-template-columns: repeat(4, 1fr); }
  .feature-cards { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .vsh-inner { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 768px) {
  .hero-inner { padding: 100px 24px 0; max-width: 100%; }
  .hero-img-wrap { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat-divider { display: none; }
  .hero-scroll-indicator { left: 24px; bottom: 24px; }
  .about-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-cards { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; flex-wrap: wrap; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .quote-section { padding: 60px 24px; }
  .stats-band { padding: 48px 24px; }
  .video-showcase { padding: 72px 0; }
  .vsh-title { font-size: 2rem; }
  .vsh-mute-btn { top: 14px; right: 14px; }
  .about-cert-strip { flex-wrap: wrap; gap: 8px; }
  .about-cert-item span { white-space: normal; }
  .about-cert-sep { display: none; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .about-stats-strip { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1320px) {
  .about-deco { display: block; }
}
