@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&family=Work+Sans:wght@300;400;500;600&display=swap");

.privacy-page {
  --cream-1: #f7f2ea;
  --cream-2: #efe6d8;
  --ink: #2f2f2b;
  --slate: #5b5b55;
  --brand-blue: #104060;
  --brand-blue-dark: #0b2f4a;
  --brand-olive: #607040;
  --brand-rust: #a05030;
  --brand-orange: #d07a2b;
  --line: rgba(16, 64, 96, 0.2);
  --shadow: 0 18px 40px rgba(16, 64, 96, 0.15);
  margin: 0;
  font-family: "Work Sans", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: var(--cream-1);
}

.privacy-page * {
  box-sizing: border-box;
}

.privacy-hero {
  position: relative;
  padding: 72px 24px 56px;
  background:
    radial-gradient(circle at 12% 18%, rgba(208, 122, 43, 0.2), transparent 46%),
    radial-gradient(circle at 85% 10%, rgba(96, 112, 64, 0.25), transparent 50%),
    linear-gradient(160deg, var(--cream-1) 0%, var(--cream-2) 100%);
  overflow: hidden;
}

.privacy-hero::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 20px;
  width: clamp(180px, 28vw, 320px);
  height: clamp(180px, 28vw, 320px);
  background: url("logo.jpeg") no-repeat center / contain;
  opacity: 0.06;
  pointer-events: none;
}

.privacy-shell {
  max-width: 1080px;
  margin: 0 auto;
}

.eyebrow {
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-olive);
  margin: 0 0 14px;
}

.privacy-hero h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  color: var(--brand-blue);
  margin: 0 0 16px;
}

.lead {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 700px;
  line-height: 1.7;
  margin: 0 0 22px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--brand-blue-dark);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2.4fr);
  gap: 40px;
  padding: 52px 24px 40px;
  background: var(--cream-1);
}

.toc {
  position: sticky;
  top: 24px;
  align-self: start;
  border-left: 2px solid var(--brand-olive);
  padding-left: 18px;
}

.toc h2 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.2rem;
  color: var(--brand-blue-dark);
  margin: 0 0 12px;
}

.toc ol {
  margin: 0;
  padding-left: 18px;
  color: var(--slate);
  display: grid;
  gap: 10px;
}

.toc a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 500;
}

.toc a:hover {
  color: var(--brand-rust);
}

.privacy-content {
  display: grid;
  gap: 28px;
}

.privacy-section {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.privacy-section:last-child {
  border-bottom: none;
}

.privacy-section h2 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.35rem;
  color: var(--brand-blue-dark);
  margin: 0 0 10px;
}

.privacy-section p {
  margin: 0;
  color: var(--slate);
  line-height: 1.7;
}

.privacy-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--slate);
  display: grid;
  gap: 8px;
}

.privacy-list li {
  line-height: 1.6;
}

.privacy-section a {
  color: var(--brand-rust);
  text-decoration: none;
  border-bottom: 1px solid rgba(160, 80, 48, 0.4);
}

.privacy-section a:hover {
  color: var(--brand-orange);
}

@media (max-width: 900px) {
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
    border-left: none;
    border-top: 2px solid var(--brand-olive);
    padding: 18px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .privacy-hero {
    background-attachment: initial;
  }
}
