:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.privacy-page {
  margin: 0;
  overflow-x: clip;
  background: var(--camillo-cream, #fff6e8);
  color: var(--camillo-ink, #1a1a1a);
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
}

.privacy-skip {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--camillo-ink, #1a1a1a);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
}

.privacy-skip:focus {
  transform: translateY(0);
}

.privacy-header {
  display: grid;
  grid-template-areas:
    "brand language"
    "back back";
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px 24px;
  width: min(100% - 40px, 1440px);
  margin: 0 auto;
  padding: 24px 0;
}

.privacy-back {
  grid-area: back;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 12px 0 8px;
  border-bottom: 2px solid currentColor;
  color: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease;
}

.privacy-back:hover,
.privacy-back:focus-visible {
  border-color: var(--camillo-pink-deep, #e3869b);
  color: #9f5066;
}

.privacy-brand {
  grid-area: brand;
  display: block;
  color: var(--camillo-ink, #1a1a1a);
  line-height: 0;
}

.privacy-brand img {
  display: block;
  width: clamp(148px, 17vw, 230px);
  height: auto;
}

.privacy-language {
  grid-area: language;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.privacy-language a {
  color: inherit;
  text-underline-offset: 4px;
}

.privacy-language a[aria-current="page"] {
  color: var(--camillo-pink-deep, #e3869b);
  text-decoration-thickness: 2px;
}

.privacy-hero {
  overflow: clip;
  background: var(--camillo-pink, #faa8b5);
  border-top: 2px solid var(--camillo-ink, #1a1a1a);
  border-bottom: 2px solid var(--camillo-ink, #1a1a1a);
}

.privacy-hero__inner {
  width: min(100% - 40px, 1440px);
  margin: 0 auto;
  padding: clamp(58px, 10vw, 138px) 0 clamp(46px, 7vw, 92px);
}

.privacy-eyebrow,
.privacy-section__number,
.privacy-updated {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.privacy-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}

.privacy-eyebrow::before {
  width: 36px;
  height: 3px;
  background: currentColor;
  content: "";
}

.privacy-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display, "Inter", system-ui, sans-serif);
  font-size: clamp(2.8rem, 11vw, 9.5rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-transform: uppercase;
}

.privacy-hero h1 em {
  display: block;
  font-weight: 400;
}

.privacy-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(30px, 5vw, 62px);
}

.privacy-hero__intro {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  font-weight: 700;
  line-height: 1.35;
}

.privacy-updated {
  margin: 0;
  white-space: nowrap;
}

.privacy-layout {
  width: min(100% - 40px, 1080px);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 118px) 0;
}

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

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  padding: clamp(30px, 4vw, 54px) 0;
  border-top: 2px solid var(--camillo-ink, #1a1a1a);
  scroll-margin-top: 24px;
}

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

.privacy-section__number {
  margin: 0;
  color: var(--camillo-pink-deep, #e3869b);
}

.privacy-section h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 3.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.privacy-copy {
  max-width: 820px;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.62;
}

.privacy-copy p,
.privacy-copy ul {
  margin-top: 0;
  margin-bottom: 1em;
}

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

.privacy-copy ul {
  padding-left: 1.2em;
}

.privacy-copy li + li {
  margin-top: 0.38em;
}

.privacy-copy a {
  color: inherit;
  font-weight: 800;
  text-decoration-color: var(--camillo-pink-deep, #e3869b);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.privacy-copy a:hover,
.privacy-copy a:focus-visible {
  color: #9f5066;
}

@media (min-width: 900px) {
  .privacy-header {
    grid-template-areas: "brand back language";
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    width: min(100% - 96px, 1440px);
    padding: 30px 0;
  }

  .privacy-hero__inner {
    width: min(100% - 96px, 1440px);
  }

  .privacy-layout {
    width: min(100% - 96px, 1080px);
  }

  .privacy-section {
    grid-template-columns: 74px minmax(0, 1fr);
    column-gap: clamp(24px, 4vw, 64px);
  }

  .privacy-section h2,
  .privacy-section .privacy-copy {
    grid-column: 2;
  }

  .privacy-section__number {
    grid-row: 1 / span 2;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
