/**
 * privacyv1.css
 * Sama Sculpt Privacy Policy Page Styles
 * File: assets/css/privacy-policy-v1.css
 * Match with aboutv1.css tokens
 */

/* =====================================================
   TOKENS — match with aboutv1.css
===================================================== */
:root {
  --bg: #FFFFFF;
  --bg-subtle: #F9F9F9;
  --border: #EBEBEB;
  --text-dark: #1A1A1A;
  --text-mid: #5A5A5A;
  --text-light: #AAAAAA;
  --burgundy: #7A1E1E;
  --burg-hover: #921F1F;
  --burg-glow: rgba(122,30,30,0.12);
  --gold: #C8A36A;
  --gold-lt: #D9BC8F;
  --font-family: 'Montserrat', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max-w: 1240px;
  --pad-x: 32px;
  --radius: 20px;
  --radius-pill: 999px;
  --section-gap: 80px;
}

/* =====================================================
   RESET
===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-family);
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--burg-hover);
  text-decoration: underline;
}

ul {
  list-style: none;
}

.wrap {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* =====================================================
   TYPE
===================================================== */
.eyebrow {
  font-family: var(--font-family);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title em {
  font-style: normal;
  color: var(--burgundy);
}

/* =====================================================
   REVEAL
===================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}
[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}
[data-reveal-delay="3"] {
  transition-delay: 0.26s;
}
[data-reveal-delay="4"] {
  transition-delay: 0.36s;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =====================================================
   PRIVACY PAGE
===================================================== */
.privacy-section {
  padding: 80px 0 80px;
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.privacy__container {
  max-width: 820px;
  margin-inline: auto;
  width: 100%;
}

/* Header */
.privacy__header {
  margin-bottom: 56px;
  text-align: center;
}

.privacy__intro {
  font-family: var(--font-family);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 680px;
  margin-inline: auto;
}

.privacy__intro-agreement {
  font-family: var(--font-family);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 680px;
  margin: 12px auto 0;
}

/* Content */
.privacy__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.privacy__block {
  border-bottom: 1px solid var(--border);
  padding-bottom: 36px;
}

.privacy__block:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.privacy__block-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--burgundy);
  margin-bottom: 14px;
}

.privacy__block-sub {
  font-family: var(--font-family);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 12px;
}

.privacy__subheading {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  margin-top: 18px;
  margin-bottom: 8px;
}

.privacy__text {
  font-family: var(--font-family);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.9;
}

.privacy__list {
  font-family: var(--font-family);
  padding-left: 20px;
  margin: 6px 0;
}

.privacy__list li {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.9;
  position: relative;
  padding-left: 16px;
}

.privacy__list li::before {
  content: '+' !important;
  position: absolute;
  left: 0;
  color: var(--burgundy);
  font-weight: 300;
}

.privacy__list li strong {
  color: var(--text-dark);
  font-weight: 600;
}

.privacy__list li a {
  color: var(--burgundy);
  font-weight: 500;
}

.privacy__list li a:hover {
  color: var(--burg-hover);
  text-decoration: underline;
}

.privacy__block-content ul {
  font-family: var(--font-family);
  padding-left: 20px;
  margin: 6px 0;
}

.privacy__block-content ul li {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.9;
  position: relative;
  padding-left: 16px;
  list-style: none;
}

.privacy__block-content ul li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--burgundy);
  font-weight: 300;
}

.privacy__block-content ul li strong {
  color: var(--text-dark);
  font-weight: 600;
}

.privacy__block-content ul li a {
  color: var(--burgundy);
  font-weight: 500;
}

.privacy__block-content ul li a:hover {
  color: var(--burg-hover);
  text-decoration: underline;
}

.privacy__block-content h2,
.privacy__block-content h3,
.privacy__block-content h4,
.privacy__block-content h5,
.privacy__block-content h6 {
  font-family: var(--font-family);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.privacy__block-content h3 {
  font-size: 1.10rem;
  font-weight: 700;
}

.privacy__block-content p {
  font-family: var(--font-family);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 12px;
}

.privacy__footer {
  margin-top: 20px;
  padding-top: 28px;
  border-top: 2px solid var(--border);
  text-align: center;
}

.privacy__updated {
  font-family: var(--font-family);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--burgundy);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 768px) {
  .privacy-section {
    padding: 40px 0 60px;
  }
  .privacy__header {
    margin-bottom: 40px;
  }
  .privacy__content {
    gap: 32px;
  }
  .privacy__block {
    padding-bottom: 28px;
  }
  .privacy__block-title {
    font-size: 1.05rem;
  }
  .privacy__list li {
    font-size: 0.8rem;
  }
  .privacy__block-content ul li {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .privacy__list {
    padding-left: 8px;
  }
  .privacy__list li {
    padding-left: 14px;
  }
  .privacy__block-content ul {
    padding-left: 8px;
  }
  .privacy__block-content ul li {
    padding-left: 14px;
  }
}

/* =====================================================
   SCROLLBAR
===================================================== */
::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: var(--bg-subtle);
}

::-webkit-scrollbar-thumb {
  background: var(--burgundy);
  border-radius: 9px;
  border: 2px solid var(--bg-subtle);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--burg-hover);
}

::selection {
  background: var(--burgundy);
  color: #fff;
}