/* ═══════════════════════════════════════════
   OWN360 BASE STYLES
   Reset, body, html, scroll behavior
═══════════════════════════════════════════ */

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

/* --- HTML --- */
html {
  scroll-behavior: smooth;
}

/* --- Body --- */
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* --- Headings --- */
h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -.015em;
  line-height: 1.15;
}

/* --- Body text --- */
p {
  line-height: 1.75;
}

/* --- Bold --- */
strong, b {
  font-weight: 600;
}

/* --- Main content --- */
main {
  position: relative;
  z-index: 1;
  padding-top: 72px;
}

/* --- Page wrapper --- */
.page-wrap {
  max-width: 1160px;
  margin: 0 auto;
}

/* --- Page hero --- */
.page-hero {
  padding: 64px 60px 52px;
  border-bottom: 2px solid var(--rule);
  max-width: 1160px;
  margin: 0 auto;
}

/* --- Page body --- */
.page-body {
  max-width: 1160px;
  margin: 0 auto;
  padding: 56px 60px 80px;
}
