:root{
  --bg-main: #F6F3EE;
  --bg-secondary: #F1E6EB;
  --accent: #B7B0D9;
  --accent-2: #B7CEC2;
  --text: #4A4F55;
  --text-2: #6A7077;

  --container: 1120px;
  --radius-lg: 22px;
  --radius-md: 16px;

  --shadow: 0 18px 60px rgba(74,79,85,.10);
  --border: rgba(74,79,85,.12);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg-main);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

h1,h2,h3,h4{
  font-family:"Playfair Display", serif;
  margin:0 0 .6rem 0;
  letter-spacing:.2px;
}
p{ margin:0 0 1rem 0; color: var(--text); }
.lead{ font-size: 1.08rem; color: var(--text-2); }

.site-main{ padding: 0px 0 70px; }

/* Pull first section up under the nav */
.site-main > .section:first-of-type{
  padding-top: 0px; /* was likely 60–100px */
}


.section{
  padding: 54px 0;
}
.section.alt{
  background: var(--bg-secondary);
}

.divider{
  height: 18px;
  border-radius: 999px;
  margin: 0px 0;
  background: radial-gradient(120% 120% at 50% 0%, rgba(183,176,217,.38) 0%, rgba(183,176,217,0) 60%);
}
