/* Base reset + typography */

*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
html.ppp-no-scroll, html.ppp-no-scroll body { overflow: hidden; }

body {
  font-family: var(--ppp-font-body);
  color: var(--ppp-fg);
  background: var(--ppp-bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.65;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

button, input, select, textarea { font-family: var(--ppp-font-body); }

::placeholder { color: var(--ppp-smoke); opacity: 0.7; }

input:focus, textarea:focus, select:focus {
  border-color: var(--ppp-terracotta) !important;
  outline: none;
}

@keyframes ppp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes ppp-fadeup {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== Typography scale ========== */

.ppp-display-xl, .ppp-h1 {
  font-family: var(--ppp-font-display);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ppp-terracotta);
  text-transform: uppercase;
  margin: 0;
}

.ppp-display-lg, .ppp-h2 {
  font-family: var(--ppp-font-display);
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.0;
  color: var(--ppp-terracotta);
  text-transform: uppercase;
  margin: 0;
}

.ppp-display-md, .ppp-h3 {
  font-family: var(--ppp-font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  color: var(--ppp-terracotta);
  text-transform: uppercase;
  margin: 0;
}

.ppp-eyebrow {
  font-family: var(--ppp-font-body);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ppp-smoke);
}

.ppp-lead {
  font-family: var(--ppp-font-body);
  font-weight: 400;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--ppp-fg);
}

.ppp-body, p {
  font-family: var(--ppp-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ppp-fg);
}

.ppp-body-sm {
  font-size: 14px;
  line-height: 1.55;
}

.ppp-caption {
  font-size: 12px;
  line-height: 1.45;
  color: var(--ppp-fg-muted);
}

.ppp-w-light { font-weight: 300; }
.ppp-w-regular { font-weight: 400; }
.ppp-w-medium { font-weight: 500; }
.ppp-w-semibold { font-weight: 600; }
.ppp-w-bold { font-weight: 700; }

.ppp-btn-label {
  font-family: var(--ppp-font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--ppp-radius-pill);
}

.ppp-link {
  color: var(--ppp-terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: color var(--ppp-dur-fast) var(--ppp-ease);
}
.ppp-link:hover { color: var(--ppp-terracotta-deep); }

/* ========== Layout helpers ========== */

.ppp-container { max-width: var(--ppp-maxw); margin: 0 auto; padding: 0 32px; }
.ppp-container-wide { max-width: var(--ppp-maxw-wide); margin: 0 auto; padding: 0 32px; }
.ppp-container-narrow { max-width: var(--ppp-maxw-narrow); margin: 0 auto; padding: 0 32px; }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* Skip link */
.skip-link {
  position: absolute; top: -40px; left: 8px;
  background: var(--ppp-clay-brown); color: var(--ppp-bone);
  padding: 8px 14px; border-radius: 6px; z-index: 10000;
}
.skip-link:focus { top: 8px; }
