:root {
  --coral: #ef9a76;
  --coral-strong: #e98a60;
  --coral-soft: #fce9df;
  --peach: #fbe7dd;
  --peach-deep: #f7ddd0;
  --ink: #1c1c1c;
  --ink-soft: #444;
  --muted: #8c8c8c;
  --muted-light: #a9a9a9;
  --line: #e6e3df;
  --line-strong: #d8d4ce;
  --ph: #f1efec;
  --field: #f3f2f0;
  --white: #fff;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --maxw: 1280px;
}

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

html { -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll { overflow: hidden; }

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

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

button {
  font: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

input, select { font: inherit; color: inherit; }

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, p { margin: 0; }

.icon { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.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;
}

.wrap { width: 100%; margin: 0 auto; }

.section { padding: 38px 0; }
.section--tight { padding: 26px 0; }

.shead { text-align: center; padding: 0 24px; margin-bottom: 24px; }
.shead__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.shead__sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.shead__rule {
  width: 52px;
  height: 1px;
  background: var(--ink);
  margin: 16px auto 0;
}

.link-underline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
}
