:root {
  color-scheme: dark;
  --background: #120008;
  --background-raised: rgba(49, 5, 25, 0.72);
  --background-soft: rgba(83, 10, 40, 0.34);
  --border: rgba(255, 150, 188, 0.2);
  --border-strong: rgba(255, 150, 188, 0.4);
  --cream: #fff7ed;
  --muted: #d9bdc7;
  --pink: #ff4f95;
  --soft-pink: #ff9fc2;
  --coral: #ff775d;
  --wine: #78002f;
  --shadow: rgba(0, 0, 0, 0.34);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 4%, rgba(255, 70, 126, 0.17), transparent 28rem),
    radial-gradient(circle at 5% 44%, rgba(255, 107, 88, 0.1), transparent 24rem),
    linear-gradient(145deg, #260010 0%, var(--background) 42%, #1f000e 100%);
  color: var(--cream);
  line-height: 1.65;
}

a {
  color: inherit;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(255, 92, 141, 0.16);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(0.2px);
}

.ambient-one {
  top: 8rem;
  right: -17rem;
  box-shadow:
    0 0 7rem rgba(255, 60, 123, 0.12),
    inset 0 0 5rem rgba(255, 95, 139, 0.08);
}

.ambient-two {
  bottom: 10rem;
  left: -20rem;
  width: 42rem;
  height: 42rem;
  border-color: rgba(255, 119, 93, 0.12);
}

.site-header,
main,
footer {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 30px;
}

.heart {
  position: absolute;
  top: 7px;
  width: 22px;
  height: 22px;
  border: 2px solid;
  border-radius: 6px 9px 6px 9px;
  transform: rotate(45deg);
  box-shadow: 0 0 14px currentColor;
}

.heart-one {
  left: 4px;
  color: var(--pink);
}

.heart-two {
  right: 3px;
  color: var(--coral);
}

.header-label,
.eyebrow,
.trust-number,
.section-number,
.policy-nav-title {
  color: var(--soft-pink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-label {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.hero {
  max-width: 910px;
  padding: 100px 0 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
}

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

h1 {
  max-width: 830px;
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-wrap: balance;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.date-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--soft-pink);
  font-size: 0.9rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 88px;
}

.trust-card,
.policy-nav,
.policy section {
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(102, 12, 45, 0.31), transparent),
    var(--background-raised);
  box-shadow: 0 24px 70px var(--shadow);
  backdrop-filter: blur(18px);
}

.trust-card {
  min-height: 210px;
  padding: 28px;
  border-radius: 26px;
}

.trust-card h2 {
  margin: 30px 0 8px;
  font-size: 1.15rem;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
  padding-bottom: 100px;
}

.policy-nav {
  position: sticky;
  top: 22px;
  display: grid;
  gap: 4px;
  padding: 22px;
  border-radius: 24px;
}

.policy-nav-title {
  margin: 0 0 12px;
}

.policy-nav a {
  padding: 7px 10px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  text-decoration: none;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.policy-nav a:hover,
.policy-nav a:focus-visible {
  background: var(--background-soft);
  color: var(--cream);
  outline: none;
}

.policy {
  display: grid;
  gap: 16px;
}

.policy section {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  padding: 34px;
  border-radius: 28px;
  scroll-margin-top: 22px;
}

.policy section:target {
  border-color: var(--border-strong);
}

.section-number {
  padding-top: 5px;
  color: var(--coral);
}

.policy h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.policy p,
.policy li {
  color: var(--muted);
}

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

.policy strong {
  color: var(--cream);
}

.policy a {
  color: var(--soft-pink);
  text-decoration-color: rgba(255, 159, 194, 0.55);
  text-underline-offset: 0.2em;
}

.policy a:hover,
.policy a:focus-visible {
  color: var(--cream);
}

.policy ul {
  margin: 0 0 18px;
  padding-left: 1.2rem;
}

.policy li + li {
  margin-top: 8px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  background: var(--background-soft);
  color: var(--cream);
  font-weight: 700;
  text-decoration: none;
}

.action-link:hover,
.action-link:focus-visible {
  border-color: var(--soft-pink);
  background: rgba(126, 14, 55, 0.55);
  outline: none;
}

.notice {
  padding: 18px 20px;
  border-left: 3px solid var(--coral);
  border-radius: 4px 16px 16px 4px;
  background: rgba(255, 119, 93, 0.09);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 130px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer-brand {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

footer a {
  color: var(--soft-pink);
  text-decoration: none;
}

@media (max-width: 920px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .policy-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-nav-title {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-header,
  main,
  footer {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    min-height: 76px;
  }

  .header-label {
    padding: 7px 10px;
    font-size: 0.66rem;
  }

  .hero {
    padding: 72px 0 54px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .trust-grid {
    grid-template-columns: 1fr;
    margin-bottom: 56px;
  }

  .trust-card {
    min-height: auto;
  }

  .trust-card h2 {
    margin-top: 20px;
  }

  .policy-nav {
    display: none;
  }

  .policy section {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

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

  .policy-nav a {
    transition: none;
  }
}
