.privacy-page {
  background: var(--kitaki-background);
}

.privacy-container {
  width: min(calc(100% - 48px), var(--kitaki-wide));
  margin-inline: auto;
}

.privacy-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  padding: 132px 0 84px;
  background: #f7f6f0;
}

.privacy-hero-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 32%, rgba(168, 196, 154, 0.36), transparent 25%),
    radial-gradient(circle at 69% 52%, rgba(190, 220, 219, 0.3), transparent 31%),
    linear-gradient(112deg, rgba(255, 255, 255, 0.9) 0 52%, rgba(247, 246, 240, 0.3) 78%);
  pointer-events: none;
}

.privacy-hero-wash::after {
  position: absolute;
  right: 2%;
  bottom: -44%;
  width: 45vw;
  height: 45vw;
  border: 1px solid rgba(85, 122, 90, 0.15);
  border-radius: 46% 54% 58% 42%;
  content: "";
  transform: rotate(-12deg);
}

.privacy-breadcrumb,
.privacy-hero-copy {
  position: relative;
  z-index: 1;
}

.privacy-breadcrumb ol {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 10px;
  color: var(--kitaki-muted-foreground);
  font-size: 12px;
  list-style: none;
}

.privacy-breadcrumb a:hover {
  color: var(--kitaki-primary);
}

.privacy-hero-copy {
  max-width: 760px;
  margin-top: 86px;
}

.privacy-hero-copy .section-kicker,
.privacy-summary .section-kicker {
  margin: 0 0 22px;
  color: var(--kitaki-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.privacy-hero-copy h1 {
  margin: 0;
  font-family: var(--kitaki-serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.45;
}

.privacy-hero-copy > p:last-child {
  max-width: 660px;
  margin: 28px 0 0;
  color: #4e5d54;
  line-height: 2;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(56px, 8vw, 116px);
  padding-block: 110px 130px;
}

.privacy-summary {
  position: sticky;
  top: 36px;
}

.privacy-summary h2 {
  margin: 0;
  font-family: var(--kitaki-serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.privacy-summary > p:not(.section-kicker) {
  margin: 24px 0 0;
  color: var(--kitaki-muted-foreground);
  line-height: 2;
}

.privacy-summary dl {
  margin: 34px 0 0;
  border-top: 1px solid var(--kitaki-border);
}

.privacy-summary dl div {
  display: grid;
  grid-template-columns: 70px 1fr;
  border-bottom: 1px solid var(--kitaki-border);
  padding: 14px 0;
  gap: 14px;
  font-size: 13px;
}

.privacy-summary dt {
  color: var(--kitaki-primary);
  font-weight: 700;
}

.privacy-summary dd {
  margin: 0;
}

.privacy-content {
  min-width: 0;
}

.privacy-introduction {
  margin: 0;
  border-left: 3px solid var(--kitaki-primary-light);
  background: #fff;
  padding: 26px 28px;
  line-height: 2;
}

.privacy-content > section {
  position: relative;
  margin-top: 64px;
  border-top: 1px solid var(--kitaki-border);
  padding-top: 38px;
}

.privacy-number {
  position: absolute;
  top: 40px;
  left: 0;
  margin: 0;
  color: var(--kitaki-primary);
  font-family: var(--kitaki-serif);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.privacy-content h2,
.privacy-content > section > p:not(.privacy-number),
.privacy-content ul,
.privacy-content address,
.privacy-content .button {
  margin-left: 54px;
}

.privacy-content h2 {
  margin-top: 0;
  margin-bottom: 22px;
  font-family: var(--kitaki-serif);
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.privacy-content > section > p:not(.privacy-number),
.privacy-content li {
  color: #536158;
  line-height: 2;
}

.privacy-content > section > p:not(.privacy-number) {
  margin-top: 0;
  margin-bottom: 0;
}

.privacy-content > section > p:not(.privacy-number) + p,
.privacy-content ul + p {
  margin-top: 18px;
}

.privacy-content ul {
  margin-top: 18px;
  margin-bottom: 0;
  padding-left: 1.3em;
}

.privacy-contact {
  border-radius: 8px;
  background: var(--kitaki-secondary);
  padding: 42px 36px 38px;
}

.privacy-contact .privacy-number {
  top: 44px;
  left: 36px;
}

.privacy-contact address {
  display: grid;
  margin-top: 0;
  gap: 4px;
  font-style: normal;
  line-height: 1.9;
}

.privacy-contact address strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.privacy-contact address a {
  color: var(--kitaki-primary-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-contact .button {
  margin-top: 28px;
}

.privacy-effective-date {
  margin: 46px 0 0;
  color: var(--kitaki-muted-foreground);
  font-size: 13px;
  text-align: right;
}

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

  .privacy-summary {
    position: static;
    max-width: 660px;
  }
}

@media (max-width: 767px) {
  .privacy-container {
    width: calc(100% - 40px);
  }

  .privacy-hero {
    min-height: 430px;
    padding: 110px 0 64px;
  }

  .privacy-hero-wash::after {
    right: -28%;
    bottom: -18%;
    width: 86vw;
    height: 86vw;
  }

  .privacy-hero-copy {
    margin-top: 68px;
  }

  .privacy-hero-copy .section-kicker,
  .privacy-summary .section-kicker {
    margin-bottom: 16px;
  }

  .privacy-hero-copy h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .privacy-hero-copy > p:last-child {
    margin-top: 20px;
    font-size: 14px;
  }

  .privacy-layout {
    gap: 62px;
    padding-block: 76px 88px;
  }

  .privacy-introduction {
    padding: 22px 20px;
  }

  .privacy-content > section {
    margin-top: 50px;
    padding-top: 30px;
  }

  .privacy-number {
    position: static;
    margin-bottom: 8px;
  }

  .privacy-content h2,
  .privacy-content > section > p:not(.privacy-number),
  .privacy-content ul,
  .privacy-content address,
  .privacy-content .button {
    margin-left: 0;
  }

  .privacy-content h2 {
    margin-bottom: 16px;
  }

  .privacy-contact {
    padding: 30px 22px;
  }

  .privacy-contact .privacy-number {
    position: static;
  }

  .privacy-effective-date {
    text-align: left;
  }
}
