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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--lavender);
  font-family: 'Jost', sans-serif;
  color: var(--ink);
  line-height: 1.75;
  overflow-x: hidden;
}

/* Typography (reused across pages) */

.page-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom:var(--sp-3); 
  opacity:0; 
  animation:fadeUp 0.7s 0.1s ease both; 
}

.page-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size:clamp(38px,6vw,66px); 
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: var(--sp-3); 
  opacity: 0; 
  animation: fadeUp 0.7s 0.2s ease both;
}

.page-title em {
  font-style: italic;
  color: var(--ink-mid);
}

.page-sub {
  font-family: 'Cormorant Garamond',Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.75;
  opacity:0; 
  animation:fadeUp 0.7s 0.3s ease both;
  max-width:500px; 
  margin:0 auto;  
}

.page-header {
    padding: 148px 52px 64px;
    text-align: center; position: relative; overflow: hidden;
    max-width:900px;margin:0 auto;
}

.page-header::before {
    content: ''; position: fixed; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(196,117,106,0.06) 0%, transparent 55%);
    pointer-events: none; z-index: -1;
}