*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* --ink: #0a0a0a;
  --paper: #f5f2ee;
  --gold: #b8933a;
  --gold-lt: #d4ac5a;
  --mist: #e8e4de;
  --grey: #888078;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", sans-serif; */

    --ink: #111827;
  --paper: #f6f6f6;
  --gold: #005bb5;
  --gold-lt: #d4ac5a;
  --mist: #f5f5f5;
  --grey: #111827;
  --textcolor: #111827;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", sans-serif;

  --primary-color: #2baaa9;
  --background-dark: #ffffff;
  --text-lightt: #132743;
  --text-faded: #000000;
  --nav-bar-dark: #1b2a49;
  --slide-x: 0;
}

html {
  scroll-behavior: smooth;
}
body {
 
  /* font-weight: 300; */
  overflow-x: hidden;
  /* cursor: none; */
}

/* ── CURSOR ── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
  opacity: 0.6;
}
.cursor-ring.expand {
  width: 58px;
  height: 58px;
  opacity: 0.25;
}



/* ── PAGE HERO ── */
.page-hero {
  background: var(--gold);
  padding: 80px 60px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "PRIVACY";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 14rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: -0.02em;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}
.hero-eyebrow {
  font-size: 0.80rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
  background-color: var(--primary-color);
  display: inline-block;
}
.page-hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  line-height: 1.06;
  color: var(--paper);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}
.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}
.hero-date {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  color: rgba(245, 242, 238, 0.35);
}
.hero-date strong {
  color: var(--paper);
}
.hero-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
}
.hero-desc {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(245, 242, 238, 0.45);
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
  max-width: 420px;
}

/* ── LAYOUT ── */
.policy-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px 120px;
  align-items: start;
}

/* ── SIDEBAR TOC ── */
.toc {
  position: sticky;
  top: 110px;
  padding: 48px 0 48px 0;
  border-right: 1px solid var(--mist);
  padding-right: 40px;
  margin-top: 64px;
}
.toc-label {
  font-size: 0.90rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background-color: var(--gold);
  color: white;
  margin-bottom: 24px;
  display: inline-block;

}
.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.toc-list a {
  font-size: 1rem;
  color: var(--grey);
  text-decoration: none;
  padding: 8px 12px;
  display: block;
  border-left: 2px solid transparent;
  transition:
    color 0.3s,
    border-color 0.3s,
    background 0.3s;
  line-height: 1.5;
}
.toc-list a:hover,
.toc-list a.active {
  color: var(--ink);
  border-left-color: var(--gold);
  background: rgba(184, 147, 58, 0.04);
}
.toc-divider {
  height: 1px;
  background: var(--mist);
  margin: 20px 0;
}
.toc-contact {
  margin-top: 8px;
}
.toc-contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background-color: var(--gold);
  color: var(--paper);
  margin-bottom: 12px;
  display: inline-block;
}
.toc-tel {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 4px;
  transition: color 0.3s;
}
.toc-tel:hover {
  color: var(--gold);
}
.toc-email {
  font-size: 1rem;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.3s;
}
.toc-email:hover {
  color: var(--gold);
}

/* ── MAIN CONTENT ── */
.policy-content {
  padding: 64px 0 0 64px;
}

.policy-section {
  padding-bottom: 64px;
  border-bottom: 1px solid var(--mist);
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.policy-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.section-num {
  font-size: 0.90rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.policy-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--ink);
}
.policy-h2 em {
  font-style: italic;
  color: var(--gold);
}
.policy-h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 16px;
  margin-top: 32px;
  color: var(--ink);
}
.policy-p {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--grey);
  margin-bottom: 18px;
}
.policy-p:last-child {
  margin-bottom: 0;
}

/* lists */
.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0;
}
.policy-list li {
  font-size: 0.90rem;
  line-height: 1.85;
  color: var(--grey);
  padding-left: 22px;
  position: relative;
}
.policy-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.90rem;
  top: 1px;
}

/* highlight box */
.policy-note {
  border-left: 2px solid var(--gold);
  padding: 20px 24px;
  background: rgba(184, 147, 58, 0.05);
  margin: 28px 0;
}
.policy-note p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink);
  margin: 0;
}
.policy-note strong {
  color: var(--gold);
  font-weight: 400;
}

/* inline bold / strong */
.policy-p strong {
  color: var(--ink);
  font-weight: 400;
}

/* countries grid */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--mist);
  border: 1px solid var(--mist);
  margin: 24px 0;
}
.country-item {
  background: var(--paper);
  padding: 16px 20px;
  font-size: 1rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    background 0.3s,
    color 0.3s;
}
.country-item:hover {
  background: #f0ece5;
  color: var(--ink);
}
.country-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* rights grid */
.rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--mist);
  border: 1px solid var(--mist);
  margin: 28px 0;
}
.right-item {
  background: var(--paper);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.right-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.right-item:hover::before {
  transform: scaleX(1);
}
.right-item:hover {
  background: #f0ece5;
}
.right-icon {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.right-name {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.right-desc {
  font-size: 0.90rem;
  color: var(--grey);
  line-height: 1.7;
}

/* contact card */
.contact-card {
  border: 1px solid var(--mist);
  padding: 40px;
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.cc-label {
  font-size: 0.90rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background-color: var(--gold);
  color: var(--paper);
  margin-bottom: 14px;
  display: inline-block;
}
.cc-company {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 16px;
}
.cc-address {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--grey);
}
.cc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.cc-link:hover {
  color: var(--gold);
}
.cc-link-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* last updated banner */
.updated-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
  padding: 20px 32px;
  margin-bottom: 48px;
}
.ub-label {
  font-size: 0.90rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.ub-date {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
}
.ub-tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--paper);
  padding: 6px 14px;
  border: 1px solid rgba(184, 147, 58, 0.3);
}


/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
 

  .page-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 60px 24px;
  }
  .policy-layout {
    grid-template-columns: 1fr;
    padding: 0 24px 80px;
  }
  .toc {
    position: static;
    border-right: none;
    border-bottom: 1px solid var(--mist);
    padding: 32px 0;
    margin-top: 40px;
  }
  .policy-content {
    padding: 40px 0 0;
  }
  .countries-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rights-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
 
  .page-hero::before {
    font-size: 6rem;
  }
}
