:root {
  --ink: #18130d;
  --muted: #786856;
  --cream: #fff8ec;
  --gold: #d6ad2d;
  --gold-dark: #a77b08;
  --line: rgba(24, 19, 13, 0.12);
  --shadow: 0 28px 80px rgba(24, 19, 13, 0.12);
  --max: 1120px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body.policy-page {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(214, 173, 45, 0.16), transparent 34rem),
    linear-gradient(135deg, #fffaf1 0%, #f5ecdd 100%);
}

a {
  color: inherit;
}

.policy-top {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 236, 0.92);
  backdrop-filter: blur(16px);
}

.policy-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
}

.policy-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.policy-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 19, 13, 0.08);
}

.policy-brand strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
}

.policy-brand small {
  display: block;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.policy-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1rem;
  font-weight: 800;
}

.policy-links a {
  color: var(--muted);
  text-decoration: none;
}

.policy-links a:hover,
.policy-links a.active {
  color: var(--ink);
}

.policy-hero,
.policy-content,
.policy-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.policy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: end;
  padding: 5rem 0 3rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.policy-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.policy-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.policy-card,
.policy-section {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.policy-card {
  border-radius: 34px;
  padding: 1.4rem;
}

.policy-card strong,
.mini-card strong {
  display: block;
}

.policy-card span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
}

.policy-content {
  display: grid;
  gap: 1rem;
  padding: 0 0 4rem;
}

.policy-section {
  border-radius: 28px;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.policy-section h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.04em;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  line-height: 1.8;
}

.policy-section p:last-child,
.policy-section ul:last-child,
.policy-section ol:last-child {
  margin-bottom: 0;
}

.policy-section ul,
.policy-section ol {
  padding-left: 1.2rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mini-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
  padding: 1rem;
}

.mini-card strong {
  margin-bottom: 0.35rem;
}

.contact-box {
  border-color: rgba(214, 173, 45, 0.45);
  background: linear-gradient(135deg, rgba(214, 173, 45, 0.16), rgba(255, 255, 255, 0.86));
}

.contact-box a {
  color: var(--ink);
  font-weight: 900;
}

.policy-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 2rem 0 3rem;
  color: var(--muted);
}

.policy-footer a {
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 820px) {
  .policy-nav,
  .policy-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-links {
    justify-content: flex-start;
  }

  .policy-hero {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .policy-brand img {
    width: 54px;
    height: 54px;
  }

  .policy-hero h1 {
    font-size: 3.2rem;
  }
}
