/* plain.css — Privacy & Terms pages */

.plain-hero {
  padding: 140px 60px 60px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.plain-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--green-pale) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.plain-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.plain-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.plain-hero .updated {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
}

.plain-body { max-width: 760px; margin: 0 auto; padding: 72px 60px 100px; }
.plain-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--green-deep);
  margin: 48px 0 16px;
  line-height: 1.2;
}
.plain-body p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.plain-body ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.plain-body ul li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-mid);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.plain-body ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 10px;
}
.plain-body a { color: var(--green-accent); text-decoration: none; }
.plain-body a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .plain-hero { padding: 110px 24px 48px; }
  .plain-body { padding: 48px 24px 80px; }
}
