/* ============================================
   G-LUXURY — Policy & FAQ Page Styles
   ============================================ */

/* ---- Policy Hero ---- */
.policy-hero {
  background: var(--black);
  padding: 80px 0 64px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.policy-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.policy-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 14px 0 16px;
}
.policy-hero h1 em { color: var(--gold); font-style: italic; }
.policy-last-updated {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.policy-last-updated a { color: var(--gold); text-decoration: none; }
.policy-last-updated a:hover { text-decoration: underline; }

/* ---- Stats strip ---- */
.policy-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: var(--black-2);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.policy-stat {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.policy-stat:last-child { border-right: none; }
.pstat-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.pstat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ---- Body layout ---- */
.policy-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

/* ---- Sidebar / TOC ---- */
.policy-sidebar {
  position: sticky;
  top: 96px;
}
.policy-toc {
  background: #f7f3ee;
  border-radius: 2px;
  padding: 24px 20px;
}
.toc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
}
.policy-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.policy-toc li a {
  font-size: 12px;
  color: var(--grey-2);
  text-decoration: none;
  display: block;
  padding: 6px 8px;
  border-radius: 2px;
  line-height: 1.4;
  transition: background 0.15s, color 0.15s;
}
.policy-toc li a:hover {
  background: rgba(0,0,0,0.05);
  color: var(--black);
}

/* ---- Main content ---- */
.policy-content section {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.policy-content section:last-of-type {
  border-bottom: none;
}
.policy-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey-2);
  font-weight: 300;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.policy-content h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.policy-content p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--grey-2);
  font-weight: 300;
  margin-bottom: 16px;
}
.policy-content p:last-child { margin-bottom: 0; }
.policy-content ul {
  margin: 16px 0 16px 0;
  padding-left: 0;
  list-style: none;
}
.policy-content ul li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--grey-2);
  font-weight: 300;
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  position: relative;
}
.policy-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
  top: 10px;
}
.policy-content a {
  color: var(--gold-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  transition: border-color 0.2s, color 0.2s;
}
.policy-content a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.policy-content strong { color: var(--black); font-weight: 600; }

/* Policy steps (returns page) */
.policy-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 24px 0;
}
.policy-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-items: start;
}
.policy-step:first-child { padding-top: 0; }
.step-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}
.policy-step h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}
.policy-step p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--grey-2);
  font-weight: 300;
  margin: 0;
}

/* Policy table (shipping page) */
.policy-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.08);
}
.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.policy-table thead tr {
  background: var(--black);
}
.policy-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.policy-table td {
  padding: 14px 20px;
  color: var(--grey-2);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  line-height: 1.5;
}
.policy-table tbody tr:last-child td { border-bottom: none; }
.policy-table tbody tr:hover td { background: rgba(201,168,76,0.03); }
.highlight-row td {
  background: rgba(201,168,76,0.06) !important;
  color: var(--black) !important;
  font-weight: 600;
}

/* Contact block */
.policy-contact-block {
  background: #f7f3ee;
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 2px 2px 0;
  margin: 20px 0;
}
.policy-contact-block p { margin-bottom: 6px; color: var(--black); }
.policy-contact-block p:last-child { margin-bottom: 0; }

/* Bottom nav links */
.policy-nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.policy-nav-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.policy-nav-links a:hover { color: var(--gold-2); border-color: var(--gold); }

/* =============================================
   FAQ Page
   ============================================= */
.faq-layout {
  max-width: 880px;
  margin: 0 auto;
  padding: 64px 48px;
}

/* FAQ tabs */
.faq-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.faq-tab {
  padding: 9px 20px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  cursor: pointer;
  background: transparent;
  transition: all 0.2s ease;
}
.faq-tab:hover { border-color: rgba(0,0,0,0.25); color: var(--black); }
.faq-tab.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* FAQ group */
.faq-group-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  letter-spacing: 0.01em;
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-2); }
.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(0deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey-2);
  font-weight: 300;
  padding-bottom: 24px;
}
.faq-answer a { color: var(--gold-2); text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }

/* FAQ CTA */
.faq-cta {
  background: var(--black);
  padding: 80px 48px;
  text-align: center;
}
.faq-cta-inner { max-width: 560px; margin: 0 auto; }
.faq-cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--white);
  margin: 14px 0 16px;
  letter-spacing: -0.01em;
}
.faq-cta-inner p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
}
.faq-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .policy-hero-inner { padding: 0 24px; }
  .policy-stats { grid-template-columns: repeat(2,1fr); }
  .policy-body { grid-template-columns: 1fr; padding: 48px 24px; gap: 0; }
  .policy-sidebar { position: static; margin-bottom: 40px; }
  .faq-layout { padding: 48px 24px; }
  .faq-cta { padding: 64px 24px; }
}
@media (max-width: 600px) {
  .policy-hero { padding: 56px 0 48px; }
  .policy-hero-inner { padding: 0 20px; }
  .policy-stats { grid-template-columns: repeat(2,1fr); }
  .policy-body { padding: 40px 20px; }
  .policy-nav-links { flex-direction: column; gap: 12px; }
  .faq-layout { padding: 40px 20px; }
  .faq-cta { padding: 56px 20px; }
  .policy-step { grid-template-columns: 44px 1fr; gap: 14px; }
}
