*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--pink-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--pink-dark);
}

ul, ol {
  list-style: none;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }

p {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--light {
  background: var(--bg-section);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-sm);
}

.section__subtitle {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.page-hero {
  background: linear-gradient(160deg, var(--black) 0%, var(--black-soft) 60%, oklch(18% 0.06 350) 100%);
  color: var(--white);
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, oklch(62% 0.24 350 / 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-sm);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-lg);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb__sep {
  opacity: 0.5;
}

main {
  min-height: calc(100vh - var(--header-height) - 300px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 768px) {
  h1 { font-size: var(--fs-3xl); }
  h2, .section__title { font-size: var(--fs-2xl); }
  .section { padding: var(--space-3xl) 0; }
  .page-hero h1 { font-size: var(--fs-3xl); }
}
