:root {
  --bg: #fff8fa;
  --primary: #ffb5c0;
  --primary-strong: #ff8fa3;
  --card: #ffffff;
  --text: #444444;
  --muted: #777777;
  --success: #8fd694;
  --line: #f4dfe5;
  --shadow: 0 18px 45px rgba(255, 143, 163, 0.16);
  --shadow-soft: 0 12px 28px rgba(68, 68, 68, 0.08);
  --radius: 24px;
  --radius-small: 14px;
  --header-height: 76px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 181, 192, 0.28), transparent 24rem),
    linear-gradient(180deg, #fff8fa 0%, #fffdfd 64%, #fff8fa 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(135deg, rgba(255, 143, 163, 0.09) 25%, transparent 25%),
    linear-gradient(225deg, rgba(143, 214, 148, 0.08) 25%, transparent 25%);
  background-size: 76px 76px;
  opacity: 0.35;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

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

h1,
h2,
h3 {
  color: #353535;
  font-family: Poppins, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 6vw, 4.75rem);
  line-height: 1.02;
}

h2 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(244, 223, 229, 0.8);
  background: rgba(255, 248, 250, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Poppins, Inter, sans-serif;
  font-weight: 700;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 84px;
}

.surface {
  border: 1px solid rgba(244, 223, 229, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--primary-strong);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  padding: 0 16px 28px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.page-intro {
  max-width: 720px;
  margin-bottom: 28px;
}

.page-intro p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin-bottom: 0;
}
