/* =====================================================
   ALKONIC POLICY PAGES — policy.css
   Shared by: privacy, terms, warranty, returns, shipping
   Prefix: pl-  (no conflicts with fl- / pm- / iz- / cn-)
===================================================== */

/* ── ROOT & RESET ── */
.pl-page {
  font-family: 'DM Sans', sans-serif;
  background: #080808;
  color: #fff;
  overflow-x: hidden;
  padding-top: 80px;
}
.pl-page *, .pl-page *::before, .pl-page *::after { box-sizing: border-box; }
.pl-page h1, .pl-page h2, .pl-page h3 { font-family: 'Playfair Display', serif; margin: 0; }
.pl-page h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.12; color: #fff; }
.pl-page h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; line-height: 1.2; color: #fff; }
.pl-page p { color: rgba(255,255,255,0.62); line-height: 1.72; margin: 0; }
.pl-page strong { color: rgba(255,255,255,0.88); }
.pl-page a { text-decoration: none; }

/* ── LAYOUT ── */
.pl-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.pl-section { padding: 80px 0; }

/* ── TOKENS ── */
.pl-gold-text {
  background: linear-gradient(135deg, #E4C97A, #C9A84C, #8B6F32);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pl-section-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: #C9A84C;
  border: 1px solid rgba(201,168,76,0.3); padding: 6px 16px;
  border-radius: 100px; margin-bottom: 18px;
}
.pl-divider { width: 50px; height: 2px; background: linear-gradient(90deg, #C9A84C, transparent); margin: 18px 0 28px; }
.pl-divider.center { margin-left: auto; margin-right: auto; }

/* ── REVEAL ── */
.pl-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.pl-reveal.pl-visible { opacity: 1; transform: translateY(0); }

/* ── LINK ── */
.pl-link { color: #C9A84C; text-decoration: underline; text-decoration-color: rgba(201,168,76,0.35); transition: 0.2s; }
.pl-link:hover { color: #E4C97A; text-decoration-color: rgba(228,201,122,0.6); }

/* =====================================================
   HERO
===================================================== */
.pl-hero {
  position: relative; overflow: hidden;
  background: #080808; padding: 80px 0 64px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.pl-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?w=1400&q=70&auto=format&fit=crop');
  background-size: cover; background-position: center; opacity: 0.05;
}
.pl-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.98) 0%, rgba(8,8,8,0.88) 60%, rgba(8,8,8,0.7) 100%);
}
.pl-hero-inner {
  position: relative; z-index: 2;
  max-width: 700px;
}
.pl-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.22);
  border-radius: 100px; padding: 7px 18px; margin-bottom: 20px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: #C9A84C;
}
.pl-eyebrow-dot {
  width: 6px; height: 6px; background: #C9A84C;
  border-radius: 50%; animation: pl-pulse 2s infinite;
}
@keyframes pl-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.75)} }

.pl-hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  font-style: italic; border-left: 2px solid #8B6F32;
  padding-left: 14px; margin: 18px 0 28px; line-height: 1.6;
}
.pl-hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.pl-chip {
  background: rgba(255,255,255,0.04); border: 1px solid #1e1e1e;
  border-radius: 8px; padding: 8px 14px;
  font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.6);
}

/* =====================================================
   CONTENT GRID — sidebar TOC + body
===================================================== */
.pl-content-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

/* ── TOC sidebar ── */
.pl-toc {
  position: sticky; top: 100px;
  background: #111; border: 1px solid #1e1e1e;
  border-radius: 14px; padding: 20px;
}
.pl-toc-title {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(201,168,76,0.6); margin-bottom: 14px;
}
.pl-toc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.pl-toc-list a {
  display: block; padding: 8px 12px; border-radius: 8px;
  font-size: 0.75rem; color: rgba(255,255,255,0.45);
  transition: 0.2s ease; border: 1px solid transparent;
  line-height: 1.4;
}
.pl-toc-list a:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.04); }
.pl-toc-list a.pl-toc-active {
  color: #C9A84C; background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.2); font-weight: 600;
}

/* ── Body ── */
.pl-body { display: flex; flex-direction: column; gap: 0; }

.pl-intro-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.07), rgba(201,168,76,0.02));
  border: 1px solid rgba(201,168,76,0.18); border-radius: 14px;
  padding: 22px 24px; margin-bottom: 40px;
  font-size: 0.88rem; color: rgba(255,255,255,0.7);
  line-height: 1.72; font-style: italic;
}

.pl-section-block {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pl-section-block:last-child { border-bottom: none; padding-bottom: 0; }

.pl-block-title {
  display: flex; align-items: center; gap: 14px;
  font-size: 1.15rem; font-weight: 700;
  color: #fff; margin-bottom: 18px; font-family: 'Playfair Display', serif;
}
.pl-block-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
  font-family: 'Playfair Display', serif; font-size: 0.82rem; font-weight: 700; color: #C9A84C;
}

.pl-section-block p { font-size: 0.86rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 12px; }
.pl-section-block p:last-child { margin-bottom: 0; }

.pl-list {
  list-style: none; margin: 12px 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.pl-list li {
  padding: 10px 14px 10px 36px;
  background: rgba(255,255,255,0.025); border: 1px solid #1e1e1e;
  border-radius: 8px; font-size: 0.84rem; color: rgba(255,255,255,0.6);
  line-height: 1.6; position: relative; transition: 0.2s;
}
.pl-list li:hover { border-color: rgba(201,168,76,0.15); background: rgba(255,255,255,0.04); }
.pl-list li::before {
  content: '→';
  position: absolute; left: 13px; top: 10px;
  color: #C9A84C; font-size: 0.75rem;
}
.pl-list li strong { color: rgba(255,255,255,0.88); }

/* Contact mini block */
.pl-contact-mini {
  background: #111; border: 1px solid #1e1e1e; border-radius: 12px;
  padding: 18px 20px; margin-top: 14px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 0.84rem; color: rgba(255,255,255,0.6);
}
.pl-contact-mini div { display: flex; align-items: flex-start; gap: 8px; }

/* =====================================================
   WARRANTY CARDS (warranty page only)
===================================================== */
.pl-warranty-cards-section {
  background: #111; border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e; padding: 48px 0;
}
.pl-warranty-cards {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.pl-wcard {
  background: #141414; border: 1px solid #1e1e1e;
  border-radius: 16px; padding: 26px 20px; text-align: center;
  transition: 0.3s ease;
}
.pl-wcard:hover { border-color: rgba(201,168,76,0.22); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,0.45); }
.pl-wcard-featured { border-color: rgba(201,168,76,0.22) !important; background: linear-gradient(145deg, #1a1510, #111) !important; }
.pl-wcard-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.pl-wcard-product { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 10px; }
.pl-wcard-duration { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; line-height: 1; margin-bottom: 8px; display: block; }
.pl-wcard-note { font-size: 0.68rem; color: rgba(255,255,255,0.35); line-height: 1.45; }

/* =====================================================
   SHIPPING TIMELINE STRIP (shipping page only)
===================================================== */
.pl-timeline-strip {
  background: #111; border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e; padding: 48px 0;
}
.pl-timeline-cards {
  display: flex; align-items: center; gap: 12px;
}
.pl-tl-card {
  flex: 1; background: #141414; border: 1px solid #1e1e1e;
  border-radius: 14px; padding: 22px 18px; text-align: center; transition: 0.3s;
}
.pl-tl-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-2px); }
.pl-tl-card-featured { border-color: rgba(201,168,76,0.22) !important; background: linear-gradient(145deg, #1a1510, #111) !important; }
.pl-tl-step {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  color: rgba(201,168,76,0.4); line-height: 1; margin-bottom: 10px;
}
.pl-tl-title { font-family: 'Playfair Display', serif; font-size: 0.92rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.pl-tl-desc { font-size: 0.7rem; color: rgba(255,255,255,0.38); margin-bottom: 10px; line-height: 1.4; }
.pl-tl-time { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.55); }
.pl-tl-arrow { font-size: 1.2rem; color: rgba(201,168,76,0.3); flex-shrink: 0; }

/* =====================================================
   SECTION HEAD (regional offices / coverage)
===================================================== */
.pl-section-head { margin-bottom: 48px; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 960px) {
  .pl-content-grid { grid-template-columns: 1fr; gap: 32px; }
  .pl-toc { position: static; }
  .pl-toc-list { flex-direction: row; flex-wrap: wrap; }
  .pl-toc-list a { padding: 6px 10px; white-space: nowrap; }
  .pl-warranty-cards { grid-template-columns: repeat(2,1fr); }
  .pl-timeline-cards { flex-direction: column; }
  .pl-tl-arrow { transform: rotate(90deg); }
}

@media (max-width: 600px) {
  .pl-container { padding: 0 20px; }
  .pl-section { padding: 56px 0; }
  .pl-hero { padding: 60px 0 48px; }
  .pl-warranty-cards { grid-template-columns: 1fr 1fr; }
  .pl-hero-chips { flex-direction: column; gap: 8px; }
  .pl-hero-chips .pl-chip { width: fit-content; }
}