/* ==========================================================================
   Privacy Policy Page - Complete CSS
   ========================================================================== */

/* ============================================
   Hero
   ============================================ */

.privacy-hero {
  position: relative;
  padding: 140px 0 80px;
  background-size: cover;
  background-position: center;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.6) 60%, rgba(10, 22, 40, 0.4) 100%);
  z-index: 1;
}

.privacy-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C9A668 0%, transparent 100%);
  z-index: 2;
  opacity: 0.4;
}

.privacy-hero .container {
  position: relative;
  z-index: 2;
}

.privacy-hero__content {
  max-width: 60%;
}

.privacy-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #C9A668;
  display: block;
  margin-bottom: 0.5rem;
}

.privacy-hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 0.5rem;
}

.privacy-hero__title span {
  color: #C9A668;
}

.privacy-hero__subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: 0.75rem;
}

.privacy-hero__meta {
  margin-bottom: 0.75rem;
}

.privacy-hero__date {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  padding: 0.2rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}

.privacy-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
}

.privacy-hero__breadcrumb a {
  color: #C9A668;
  text-decoration: none;
  transition: color 0.2s ease;
}

.privacy-hero__breadcrumb a:hover {
  color: #fff;
}

.privacy-hero__breadcrumb-separator {
  opacity: 0.3;
}

.privacy-hero__accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse at bottom right, rgba(201, 166, 104, 0.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* ============================================
   Privacy Content Layout
   ============================================ */

.privacy-content {
  padding: 3rem 0 4rem;
  background: #f5f3ef;
}

.privacy-content__layout {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 2.5rem;
  align-items: start;
}

/* ============================================
   Sidebar
   ============================================ */

.privacy-sidebar {
  position: sticky;
  top: 2rem;
}

.privacy-sidebar__inner {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
  border: 1px solid rgba(10, 22, 40, 0.04);
}

.privacy-sidebar__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0A1628;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(10, 22, 40, 0.04);
}

.privacy-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.privacy-sidebar__list li {
  margin-bottom: 0.25rem;
}

.privacy-sidebar__list a {
  font-size: 0.8125rem;
  color: #8896a8;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  line-height: 1.4;
}

.privacy-sidebar__list a:hover {
  color: #0A1628;
  background: #f5f3ef;
}

.privacy-sidebar__list a:focus {
  color: #C9A668;
  background: rgba(201, 166, 104, 0.06);
}

.privacy-sidebar__contact {
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 22, 40, 0.04);
}

.privacy-sidebar__contact h5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0A1628;
  margin-bottom: 0.25rem;
}

.privacy-sidebar__contact p {
  font-size: 0.8125rem;
  color: #8896a8;
  margin-bottom: 0.75rem;
}

.privacy-sidebar__contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  background: #0A1628;
  padding: 0.4rem 1rem 0.4rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.privacy-sidebar__contact-btn:hover {
  background: #1a2a3e;
  gap: 0.75rem;
  color: #fff;
}

.privacy-sidebar__contact-btn svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   Main Content
   ============================================ */

.privacy-main {
  background: #fff;
  border-radius: 8px;
  padding: 2.5rem 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
  border: 1px solid rgba(10, 22, 40, 0.04);
}

/* Privacy Section */
.privacy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(10, 22, 40, 0.04);
}

.privacy-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-section__number {
  font-family: 'Fraunces', serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #C9A668;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.25rem;
  opacity: 0.6;
}

.privacy-section__title {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: #0A1628;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.privacy-section__divider {
  width: 40px;
  height: 2px;
  background: #C9A668;
  margin: 0.5rem 0 1rem;
  opacity: 0.5;
}

.privacy-section__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #8896a8;
  margin-bottom: 0.75rem;
}

.privacy-section__text a {
  color: #C9A668;
  text-decoration: none;
  transition: color 0.2s ease;
}

.privacy-section__text a:hover {
  color: #0A1628;
  text-decoration: underline;
}

.privacy-section__text--muted {
  color: #aab3c0;
  font-size: 0.875rem;
}

.privacy-section__subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #0A1628;
  margin: 1.25rem 0 0.5rem;
}

.privacy-section__subtitle:first-of-type {
  margin-top: 0;
}

.privacy-section__list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
}

.privacy-section__list li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #8896a8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.4rem;
}

.privacy-section__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: #C9A668;
  border-radius: 50%;
  opacity: 0.5;
}

.privacy-section__list li strong {
  color: #0A1628;
  font-weight: 600;
}

.privacy-section__contact-box {
  background: #f5f3ef;
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin-top: 0.75rem;
  border-left: 3px solid #C9A668;
}

.privacy-section__contact-box p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #0A1628;
  margin-bottom: 0.25rem;
}

.privacy-section__contact-box p:last-child {
  margin-bottom: 0;
}

.privacy-section__contact-box a {
  color: #C9A668;
  text-decoration: none;
  transition: color 0.2s ease;
}

.privacy-section__contact-box a:hover {
  color: #0A1628;
  text-decoration: underline;
}

/* Back to Top */
.privacy-main__back {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(10, 22, 40, 0.04);
  text-align: center;
}

.privacy-main__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #8896a8;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(10, 22, 40, 0.04);
}

.privacy-main__back-btn:hover {
  color: #0A1628;
  border-color: rgba(10, 22, 40, 0.1);
  transform: translateY(-2px);
}

.privacy-main__back-btn svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .privacy-hero__content {
    max-width: 80%;
  }

  .privacy-content__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .privacy-sidebar {
    position: static;
  }

  .privacy-sidebar__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.25rem 0.5rem;
  }

  .privacy-sidebar__list li {
    margin-bottom: 0;
  }

  .privacy-sidebar__contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .privacy-sidebar__contact h5 {
    margin-bottom: 0;
  }

  .privacy-sidebar__contact p {
    margin-bottom: 0;
  }
}

@media (max-width: 720px) {
  .privacy-hero {
    padding: 120px 0 50px;
    min-height: 280px;
  }

  .privacy-hero__content {
    max-width: 100%;
  }

  .privacy-hero__title {
    font-size: 1.8rem;
  }

  .privacy-hero__subtitle {
    font-size: 0.9375rem;
  }

  .privacy-hero__date {
    font-size: 0.75rem;
  }

  .privacy-content {
    padding: 2rem 0 2.5rem;
  }

  .privacy-main {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .privacy-section {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .privacy-section__title {
    font-size: 1.1rem;
  }

  .privacy-section__text {
    font-size: 0.875rem;
  }

  .privacy-section__list li {
    font-size: 0.875rem;
  }

  .privacy-section__contact-box {
    padding: 1rem 1.25rem;
  }

  .privacy-section__contact-box p {
    font-size: 0.875rem;
  }

  .privacy-sidebar__list {
    grid-template-columns: 1fr 1fr;
  }

  .privacy-sidebar__contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .privacy-main__back-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .privacy-sidebar__list {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Dark Mode Support
   ============================================ */

@media (prefers-color-scheme: dark) {
  .privacy-content {
    background: #0A1628;
  }

  .privacy-sidebar__inner {
    background: #1a2a3e;
    border-color: rgba(255, 255, 255, 0.04);
  }

  .privacy-sidebar__title {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.04);
  }

  .privacy-sidebar__list a {
    color: rgba(255, 255, 255, 0.6);
  }

  .privacy-sidebar__list a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
  }

  .privacy-sidebar__contact {
    border-top-color: rgba(255, 255, 255, 0.04);
  }

  .privacy-sidebar__contact h5 {
    color: #fff;
  }

  .privacy-sidebar__contact p {
    color: rgba(255, 255, 255, 0.6);
  }

  .privacy-sidebar__contact-btn {
    background: #C9A668;
  }

  .privacy-sidebar__contact-btn:hover {
    background: #b8974a;
  }

  .privacy-main {
    background: #1a2a3e;
    border-color: rgba(255, 255, 255, 0.04);
  }

  .privacy-section {
    border-bottom-color: rgba(255, 255, 255, 0.04);
  }

  .privacy-section__title {
    color: #fff;
  }

  .privacy-section__text {
    color: rgba(255, 255, 255, 0.6);
  }

  .privacy-section__text a:hover {
    color: #fff;
  }

  .privacy-section__text--muted {
    color: rgba(255, 255, 255, 0.4);
  }

  .privacy-section__subtitle {
    color: #fff;
  }

  .privacy-section__list li {
    color: rgba(255, 255, 255, 0.6);
  }

  .privacy-section__list li strong {
    color: #fff;
  }

  .privacy-section__contact-box {
    background: #0A1628;
  }

  .privacy-section__contact-box p {
    color: rgba(255, 255, 255, 0.8);
  }

  .privacy-section__contact-box a:hover {
    color: #fff;
  }

  .privacy-main__back {
    border-top-color: rgba(255, 255, 255, 0.04);
  }

  .privacy-main__back-btn {
    color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.04);
  }

  .privacy-main__back-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
  }
}