/* /css/privacy.css */

:root {
  --ink: #18384a;
  --ink-2: #255b72;
  --green: #5e9463;
  --green-deep: #47744e;
  --gold: #f1b646;
  --orange: #ef7d3c;
  --cream: #fff8ec;
  --paper: #fffdf7;
  --white: #ffffff;
  --text: #253841;
  --muted: #667982;
  --border: #eadcc8;
  --shadow: 0 18px 44px rgba(24, 56, 74, 0.11);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Nunito Sans", system-ui, sans-serif;
}

body.privacy-page {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.7;
}

/* Hero */

.privacy-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 70px;
  background:
    radial-gradient(circle at 16% 0%, rgba(241, 182, 70, 0.22), transparent 34%),
    radial-gradient(circle at 88% 22%, rgba(94, 148, 99, 0.16), transparent 30%),
    linear-gradient(180deg, #fffdf7 0%, #fff8ec 100%);
  border-bottom: 1px solid var(--border);
}

.privacy-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 248, 236, 0),
      rgba(255, 248, 236, 1)
    );
  pointer-events: none;
}

.privacy-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green-deep);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
}

.privacy-hero h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.privacy-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

/* Main Layout */

.privacy-section {
  padding: 10px 0 70px;
  background: var(--cream);
}

.privacy-white {
  background: var(--cream);
}

.privacy-content {
  position: relative;
  max-width: 920px;
  margin: -30px auto 0;
  padding: 46px 52px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

/* Blocks */

.privacy-block {
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}

.privacy-block:first-child {
  padding-top: 0;
}

.privacy-block:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.privacy-block h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.privacy-block p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.04rem;
}

.privacy-block p:last-child {
  margin-bottom: 0;
}

/* Email */

.privacy-email {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  color: var(--green-deep);
  font-size: 1rem;
  font-weight: 800;
  transition: color 0.2s ease;
}

.privacy-email:hover {
  color: var(--orange);
}

/* Updated */

.privacy-updated {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

/* Responsive */

@media (max-width: 860px) {

  .privacy-hero {
    padding: 78px 0 56px;
  }

  .privacy-content {
    margin-top: -18px;
    padding: 34px 30px;
    border-radius: 18px;
  }

}

@media (max-width: 680px) {

  .privacy-hero {
    padding: 64px 0 46px;
  }

  .privacy-section {
    padding-bottom: 44px;
  }

  .privacy-content {
    margin-top: -10px;
    padding: 26px 22px;
    border-radius: 14px;
  }

  .privacy-block {
    padding: 26px 0;
  }

  .privacy-hero p,
  .privacy-block p {
    font-size: 1rem;
  }

}