/* =========================================================
   VELOURA EAST — INDUSTRY SOLUTIONS
   Dedicated stylesheet for concierge/index.php only.
   Deliberately NOT concierge.css — this page gets its own
   distinct visual language (art-tile medallions, sticky
   industry nav, animated stepper, grid-driven FAQ) while still
   pulling design tokens (--gold, --black, --muted, --border,
   --bg-2) from core.css so it stays "on brand".

   Motion note: scroll-reveal, word-stagger, and hero parallax
   are handled by the SITE-WIDE engine already loaded on every
   page — assets/css/luxury-motion.css + assets/js/luxury-motion.js.
   This file only adds the page-specific animations that engine
   doesn't cover: sticky-nav indicator, stepper draw-in, FAQ
   accordion, tile hover motion, icon micro-interactions.
========================================================= */

.ind-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.ind-container.narrow { max-width: 760px; }

.ind-gold-divider { width: 48px; height: 2px; background: var(--gold); margin: 0 auto 20px; }

.ind-section { padding: 108px 0; }
.ind-section-alt { background: var(--bg-2); }
.ind-section-dark { background: var(--black); color: #fff; }
.ind-section-dark .ind-eyebrow { color: rgba(255,255,255,.55); }
.ind-section-dark h2 { color: #fff; }
.ind-section-dark p { color: rgba(255,255,255,.72); }

.ind-section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.ind-eyebrow {
  font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px; display: block;
}
.ind-section h2 {
  font-family: 'Playfair Display', serif; font-weight: 400;
  font-size: clamp(27px, 3.2vw, 36px); color: var(--black); line-height: 1.25; margin-bottom: 8px;
}
.ind-lead { color: var(--muted); font-size: 15px; line-height: 1.9; margin-top: 16px; }


/* ===========================================================
   1. HERO
=========================================================== */
.ind-hero {
  position: relative; min-height: 780px; padding: 210px 0 140px;
  color: #fff; text-align: center; overflow: hidden; isolation: isolate;
  display: flex; align-items: center; background: #0a0a0a;
}
.ind-hero-bgimg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: .55;
}
.ind-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.78) 100%),
    radial-gradient(circle at 18% 18%, rgba(201,169,110,.22), transparent 55%),
    radial-gradient(circle at 82% 82%, rgba(201,169,110,.14), transparent 50%);
}
/* Drifting ambient particles — pure CSS, subtle, decorative only */
.ind-hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.ind-hero-particles span {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: rgba(201,169,110,.55); filter: blur(.5px);
  animation: indDrift linear infinite;
}
.ind-hero-particles span:nth-child(1) { top: 22%; left: 12%; animation-duration: 14s; animation-delay: 0s; }
.ind-hero-particles span:nth-child(2) { top: 65%; left: 24%; animation-duration: 18s; animation-delay: 2s; }
.ind-hero-particles span:nth-child(3) { top: 40%; left: 48%; animation-duration: 16s; animation-delay: 4s; }
.ind-hero-particles span:nth-child(4) { top: 78%; left: 62%; animation-duration: 20s; animation-delay: 1s; }
.ind-hero-particles span:nth-child(5) { top: 15%; left: 74%; animation-duration: 15s; animation-delay: 3s; }
.ind-hero-particles span:nth-child(6) { top: 55%; left: 88%; animation-duration: 19s; animation-delay: 5s; }
@keyframes indDrift {
  0%   { transform: translate3d(0,0,0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate3d(6px,-120px,0); opacity: 0; }
}

.ind-hero-content { position: relative; z-index: 2; max-width: 800px; width: 100%; margin: 0 auto; padding: 0 24px; }
.ind-hero .ind-tag {
  display: inline-block; color: var(--gold); font-size: 11px; letter-spacing: .35em;
  text-transform: uppercase; padding-bottom: 18px; position: relative;
}
.ind-hero .ind-tag::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 42px; height: 1px; background: var(--gold);
}
.ind-hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(36px, 5.6vw, 60px);
  font-weight: 400; line-height: 1.18; letter-spacing: .01em; margin: 26px 0 26px; color: #fff;
  text-shadow: 0 8px 40px rgba(0,0,0,.6);
}
.ind-hero-lead {
  max-width: 620px; margin: 0 auto 42px; color: rgba(255,255,255,.88);
  font-size: 17px; line-height: 1.9; font-weight: 300;
}
.ind-hero-actions { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 18px; }

/* Scroll cue */
.ind-scroll-cue {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.55); font-size: 9.5px; letter-spacing: .25em; text-transform: uppercase;
}
.ind-scroll-cue svg { width: 14px; height: 20px; animation: indScrollCue 1.8s ease-in-out infinite; }
@keyframes indScrollCue { 0%,100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(6px); opacity: 1; } }


/* ===========================================================
   2. BUTTONS (page-local — not shared with concierge.css)
=========================================================== */
.ind-btn-primary {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 17px 40px; font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; color: #1a1a1a;
  background: linear-gradient(135deg, #E4CB98 0%, var(--gold) 45%, var(--gold-2) 100%);
  border: none; border-radius: 2px; text-decoration: none; cursor: pointer;
  overflow: hidden; transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 8px 24px rgba(201,169,110,.28);
}
.ind-btn-primary::before {
  content: ''; position: absolute; inset: 0; left: -60%; width: 40%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); transition: left .6s ease;
}
.ind-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,169,110,.4); }
.ind-btn-primary:hover::before { left: 130%; }

.ind-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px;
  font-size: 11px; letter-spacing: .12em; text-decoration: none; border-radius: 2px;
  transition: all .25s ease;
}
.ind-btn-ghost-light { color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.28); }
.ind-btn-ghost-light:hover { color: #fff; border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }
.ind-btn-ghost-dark { color: var(--black); border: 1px solid rgba(17,17,17,.2); }
.ind-btn-ghost-dark:hover { border-color: var(--gold); background: rgba(201,169,110,.06); }

@media (max-width: 480px) {
  .ind-hero-actions { width: 100%; flex-direction: column; }
  .ind-btn-primary, .ind-btn-ghost { width: 100%; }
}


/* ===========================================================
   3. STICKY INDUSTRY QUICK-NAV
=========================================================== */
.ind-quicknav-wrap {
  position: sticky; top: 72px; z-index: 30; background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.ind-quicknav {
  display: flex; gap: 8px; overflow-x: auto; padding: 14px 24px; max-width: 1240px; margin: 0 auto;
  scrollbar-width: none;
}
.ind-quicknav::-webkit-scrollbar { display: none; }
.ind-quicknav a {
  flex-shrink: 0; font-size: 11.5px; letter-spacing: .04em; color: var(--muted);
  text-decoration: none; padding: 8px 16px; border: 1px solid var(--border); border-radius: 30px;
  transition: all .22s ease; white-space: nowrap;
}
.ind-quicknav a:hover { color: var(--black); border-color: var(--gold-line); }
.ind-quicknav a.active { color: #fff; background: var(--black); border-color: var(--black); }

@media (max-width: 900px) {
  .ind-quicknav-wrap { top: 64px; }
}


/* ===========================================================
   4. PHILOSOPHY PILLARS
=========================================================== */
.ind-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); max-width: 1200px; margin: 0 auto; }
.ind-pillar { background: #fff; padding: 42px 30px; transition: background .3s ease, transform .3s ease; }
.ind-pillar:hover { background: var(--bg-2); transform: translateY(-3px); }
.ind-pillar-icon {
  width: 46px; height: 46px; border-radius: 50%; background: rgba(201,169,110,.1);
  display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 20px;
  transition: transform .3s ease, background .3s ease;
}
.ind-pillar:hover .ind-pillar-icon { transform: scale(1.08) rotate(-4deg); background: rgba(201,169,110,.18); }
.ind-pillar-icon svg { width: 20px; height: 20px; }
.ind-pillar h3 { font-size: 15px; letter-spacing: .01em; color: var(--black); margin-bottom: 10px; }
.ind-pillar p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }


/* ===========================================================
   5. INDUSTRIES — editorial alternating feature rows
=========================================================== */
.ind-industries { display: flex; flex-direction: column; gap: 0; max-width: 1200px; margin: 0 auto; }
.ind-feature {
  display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: center;
  padding: 56px 0; border-bottom: 1px solid var(--border); scroll-margin-top: 150px;
}
.ind-feature:last-child { border-bottom: none; }
.ind-feature:nth-child(even) { direction: rtl; }
.ind-feature:nth-child(even) > * { direction: ltr; }

/* Art tile — generated medallion so every industry gets a strong
   visual anchor without depending on external stock photography.
   If a real photo exists at /assets/images/industries/{slug}.jpg
   the PHP template swaps this tile for an <img> automatically. */
.ind-tile {
  position: relative; width: 100%; aspect-ratio: 1 / 1; border-radius: 6px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.35);
  transition: transform .45s cubic-bezier(.16,.84,.44,1), box-shadow .45s ease;
}
.ind-feature:hover .ind-tile { transform: translateY(-6px); box-shadow: 0 28px 60px -18px rgba(0,0,0,.42); }
.ind-tile img { width: 100%; height: 100%; object-fit: cover; }
.ind-tile-art {
  position: absolute; inset: 0;
  background: var(--tile-bg, linear-gradient(145deg, #16130f 0%, #1f1a12 55%, #2a2114 100%));
}
.ind-tile-art::before {
  content: ''; position: absolute; inset: -20%; opacity: .5;
  background-image: radial-gradient(circle, rgba(201,169,110,.35) 0, transparent 2px);
  background-size: 26px 26px;
}
.ind-tile-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ind-tile-rings span {
  position: absolute; border: 1px solid rgba(201,169,110,.3); border-radius: 50%;
}
.ind-tile-rings span:nth-child(1) { width: 62%; height: 62%; }
.ind-tile-rings span:nth-child(2) { width: 80%; height: 80%; border-color: rgba(201,169,110,.16); }
.ind-tile-icon {
  position: relative; z-index: 2; width: 84px; height: 84px; border-radius: 50%;
  background: rgba(201,169,110,.14); border: 1px solid rgba(201,169,110,.4);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  transition: transform .4s ease;
}
.ind-feature:hover .ind-tile-icon { transform: scale(1.08); }
.ind-tile-icon svg { width: 34px; height: 34px; }
.ind-tile-num {
  position: absolute; top: 16px; left: 18px; z-index: 2; font-family: 'Playfair Display', serif;
  font-size: 13px; color: rgba(255,255,255,.5); letter-spacing: .08em;
}

.ind-feature-body h3 {
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 400; color: var(--black); margin-bottom: 10px;
}
.ind-feature-tagline { color: var(--gold); font-size: 13px; font-style: italic; margin-bottom: 14px; }
.ind-feature-body p { font-size: 14.5px; color: var(--muted); line-height: 1.85; margin-bottom: 20px; max-width: 620px; }
.ind-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ind-tag-chip {
  font-size: 11px; letter-spacing: .03em; color: var(--black); background: var(--bg-2);
  border: 1px solid var(--border); padding: 6px 14px; border-radius: 30px; transition: all .2s ease;
}
.ind-tag-chip:hover { border-color: var(--gold); color: var(--gold-2); background: #fff; }

@media (max-width: 900px) {
  .ind-feature { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
  .ind-feature:nth-child(even) { direction: ltr; }
  .ind-tile { max-width: 280px; margin: 0 auto; }
}


/* ===========================================================
   6. SOLUTIONS — icon tile grid
=========================================================== */
.ind-solutions-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1px;
  background: var(--border); max-width: 1200px; margin: 0 auto;
}
.ind-solution-tile {
  background: #fff; padding: 30px 24px; display: flex; align-items: center; gap: 16px;
  position: relative; overflow: hidden; transition: color .25s ease;
}
.ind-solution-tile::before {
  content: ''; position: absolute; inset: 0; background: var(--black); transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.16,.84,.44,1); z-index: 0;
}
.ind-solution-tile:hover::before { transform: translateX(0); }
.ind-solution-icon {
  position: relative; z-index: 1; width: 34px; height: 34px; flex-shrink: 0; color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.ind-solution-icon svg { width: 20px; height: 20px; }
.ind-solution-tile span { position: relative; z-index: 1; font-size: 13.5px; color: var(--black); transition: color .25s ease; line-height: 1.4; }
.ind-solution-tile:hover span { color: #fff; }


/* ===========================================================
   7. PROCESS — animated horizontal stepper
=========================================================== */
.ind-stepper { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1100px; margin: 56px auto 0; position: relative; }
.ind-stepper::before {
  content: ''; position: absolute; top: 27px; left: 12.5%; right: 12.5%; height: 1px; background: rgba(255,255,255,.14);
}
.ind-stepper-line {
  position: absolute; top: 27px; left: 12.5%; height: 1px; background: var(--gold);
  width: 0; transition: width 1.4s cubic-bezier(.16,.84,.44,1);
}
.ind-stepper-line.ind-line-in-view { width: 75%; }
.ind-step { position: relative; text-align: center; padding: 0 20px; }
.ind-step-num {
  width: 56px; height: 56px; margin: 0 auto 22px; border-radius: 50%; background: #0d0d0d;
  border: 1px solid rgba(201,169,110,.4); display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold); position: relative; z-index: 1;
  transition: transform .3s ease, background .3s ease;
}
.ind-step:hover .ind-step-num { transform: scale(1.08); background: rgba(201,169,110,.15); }
.ind-step h3 { font-size: 16px; color: #fff; margin-bottom: 8px; }
.ind-step p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.75; }

@media (max-width: 768px) {
  .ind-stepper { grid-template-columns: 1fr; gap: 40px; }
  .ind-stepper::before, .ind-stepper-line { display: none; }
}


/* ===========================================================
   8. WHY CHOOSE — animated checklist
=========================================================== */
.ind-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 56px; max-width: 900px; margin: 0 auto; }
.ind-benefit { display: flex; gap: 16px; align-items: flex-start; }
.ind-check {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.ind-check svg { width: 14px; height: 14px; }
.ind-check svg path {
  fill: none; stroke: var(--gold); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 20; stroke-dashoffset: 20; transition: stroke-dashoffset .6s ease .1s;
}
.ind-benefit.lux-revealed .ind-check svg path,
[data-reveal].lux-revealed .ind-check svg path { stroke-dashoffset: 0; }
.ind-benefit h3 { font-size: 15px; color: var(--black); font-weight: 500; line-height: 1.5; }

@media (max-width: 768px) { .ind-benefits { grid-template-columns: 1fr; gap: 24px; } }


/* ===========================================================
   9. FAQ — grid-rows accordion (smooth, no max-height hack)
=========================================================== */
.ind-faq { max-width: 780px; margin: 0 auto; }
.ind-faq-item { border-bottom: 1px solid var(--border); }
.ind-faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 4px; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; font-size: 15px; color: var(--black); font-family: inherit;
}
.ind-faq-q-text { font-weight: 500; }
.ind-faq-icon {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--gold-line); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  transition: transform .3s ease, background .3s ease;
}
.ind-faq-item.open .ind-faq-icon { transform: rotate(135deg); background: rgba(201,169,110,.12); }
.ind-faq-a {
  display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s cubic-bezier(.16,.84,.44,1);
}
.ind-faq-item.open .ind-faq-a { grid-template-rows: 1fr; }
.ind-faq-a-inner { overflow: hidden; }
.ind-faq-a-inner p { padding: 0 4px 24px; font-size: 13.5px; color: var(--muted); line-height: 1.85; max-width: 660px; }


/* ===========================================================
   10. FINAL CTA
=========================================================== */
.ind-cta {
  position: relative; text-align: center; overflow: hidden;
  background: linear-gradient(160deg, #0d0d0d 0%, #171310 60%, #1c1610 100%); color: #fff;
}
.ind-cta::before {
  content: ''; position: absolute; inset: -30%;
  background: radial-gradient(circle at 30% 20%, rgba(201,169,110,.16), transparent 55%),
              radial-gradient(circle at 75% 80%, rgba(201,169,110,.1), transparent 50%);
}
.ind-cta > .ind-container { position: relative; z-index: 1; }
.ind-cta h2 { color: #fff; margin-bottom: 18px; }
.ind-cta p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.85; margin: 0 auto 32px; max-width: 640px; }
.ind-cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; }
.ind-cta-footnote { margin-top: 24px; font-size: 12.5px; }
.ind-cta-footnote a { color: rgba(255,255,255,.6); text-decoration: underline; transition: color .2s ease; }
.ind-cta-footnote a:hover { color: var(--gold); }


/* ===========================================================
   11. RESPONSIVE
=========================================================== */
@media (max-width: 1024px) {
  .ind-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ind-hero { padding: 130px 0 84px; min-height: 640px; }
  .ind-section { padding: 72px 0; }
  .ind-pillars { grid-template-columns: 1fr; }
  .ind-section-head { margin-bottom: 40px; }
}
@media (max-width: 480px) {
  .ind-hero-lead { font-size: 14.5px; }
  .ind-section { padding: 56px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ind-hero-particles, .ind-scroll-cue svg { animation: none !important; }
  .ind-feature, .ind-tile, .ind-pillar, .ind-solution-tile, .ind-step-num { transition: none !important; }
}
