﻿:root {
  --bg: #f6f3ee;
  --surface: #fffdf9;
  --surface-soft: #faf5ec;
  --text: #211d19;
  --muted: #6f655a;
  --line: #e6dccd;
  --accent: #9b5a28;
  --accent-dark: #6f3817;
  --shadow: 0 24px 70px rgba(90, 61, 38, 0.13);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.68;
  background:
    radial-gradient(circle at 18% 0%, rgba(155, 90, 40, 0.18), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(225, 191, 140, 0.22), transparent 24rem),
    linear-gradient(180deg, #fffaf3 0%, var(--bg) 48%, #ffffff 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), transparent 52%);
}

a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

a:focus-visible {
  outline: 3px solid rgba(155, 90, 40, 0.28);
  outline-offset: 4px;
}

.privacy-page {
  width: min(calc(100% - 32px), 960px);
  margin: clamp(20px, 5vw, 62px) auto clamp(36px, 8vw, 92px);
}

.privacy-card {
  overflow: hidden;
  border: 1px solid rgba(230, 220, 205, 0.95);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

section {
  padding: clamp(24px, 4.5vw, 54px);
  border-top: 1px solid var(--line);
}

section:first-child {
  border-top: 0;
}

.intro {
  background:
    linear-gradient(135deg, rgba(155, 90, 40, 0.1), transparent 42%),
    var(--surface-soft);
}

.date {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 800;
  background: #f1dfc7;
}

h1,
h2,
p,
ul {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 7vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 16px;
  color: #2a2119;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

p {
  max-width: 850px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

ul {
  max-width: 850px;
  padding-left: 1.2rem;
  color: var(--muted);
}

li + li {
  margin-top: 10px;
}

.contact-section {
  color: #ffffff;
  background: #2b2119;
}

.contact-section h2,
.contact-section p,
.contact-section a {
  color: #ffffff;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .privacy-page {
    width: min(calc(100% - 24px), 960px);
  }

  .privacy-card {
    border-radius: 24px;
  }
}

@media (max-width: 430px) {
  body {
    line-height: 1.62;
  }

  section {
    padding: 22px 18px;
  }

  .date {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
