
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

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


:root {
  
  --color-surface: #ffffff;
  --color-surface-alt: #f0fdfa;
  --color-surface-deep: #ccfbf1;
  --color-night: #042f2e;
  --color-night-soft: #0b3b38;

  
  --color-accent: #0d9488;
  --color-accent-strong: #0f766e;
  --color-gilt: #c8a35a;

  
  --color-ink: #042f2e;
  --color-ink-soft: #334e4c;
  --color-ink-muted: #6b8a87;
  --color-ink-invert: #ffffff;

  
  --line-hair: #d4e9e6;
  --line-fine: #e2e8f0;
  --shade-low: 0 0.125rem 0.5rem rgba(4, 47, 46, 0.06);
  --shade-mid: 0 0.5rem 1.5rem rgba(4, 47, 46, 0.1);
  --shade-high: 0 1.25rem 3rem rgba(4, 47, 46, 0.16);

  
  --face-display: 'Cormorant Garamond', 'Georgia', serif;
  --face-body: 'Montserrat', 'Segoe UI', sans-serif;
  --type-xs: 0.8125rem;
  --type-sm: 0.9375rem;
  --type-md: 1rem;
  --type-lg: 1.25rem;
  --type-xl: 1.5rem;
  --type-2xl: 2.125rem;
  --type-3xl: 4rem;

  
  --step-1: 0.5rem;
  --step-2: 1rem;
  --step-3: 1.5rem;
  --step-4: 2rem;
  --step-5: 2.5rem;
  --step-6: 3rem;
  --step-8: 4rem;

  
  --round-sm: 0.375rem;
  --round-md: 0.625rem;
  --round-lg: 0.75rem;
  --round-card: 0.875rem;
  --rule-width: 0.0625rem;
  --shell-width: 75rem;
  --masthead-height: 4.5rem;

  
  --hero-photo: none;
  --hero-veil-opacity: 0.55;
  --hero-min-height: 80vh;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--face-body);
  font-weight: 400;
  font-size: var(--type-md);
  line-height: 1.7;
  color: var(--color-ink);
  background: var(--color-surface);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--face-display);
  font-weight: 600;
  color: var(--color-ink);
}

h1 {
  font-size: var(--type-3xl);
  line-height: 1.12;
}

h2 {
  font-size: var(--type-2xl);
  line-height: 1.2;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.3;
}

p {
  font-size: var(--type-md);
  line-height: 1.7;
}

a {
  color: var(--color-accent-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

strong {
  font-weight: 600;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

:focus-visible {
  outline: 0.1875rem solid var(--color-gilt);
  outline-offset: 0.125rem;
}
