/* ============================================
   ORVINIEL — Base Styles
   Reset, Body, Typography Defaults
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background-color: var(--ivory);
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* 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;
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.hero-headline {
  font-weight: 800;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ivory);
}

.section-h2 {
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.sub-h3 {
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.card-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.body-large {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.75;
}

.body-regular {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: var(--mid-grey);
}

.label, .eyebrow {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
}

.label--dark {
  color: rgba(248, 247, 244, 0.50);
}

/* Selection */
::selection {
  background: var(--indigo-pale);
  color: var(--ink);
}
