@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;1,400&family=Inter:wght@300;400&display=swap');

:root {
  color-scheme: light;
}

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

body {
  margin: 0;
  padding: 0 0 64px;
  font-family:
    'Inter',
    'Segoe UI',
    -apple-system,
    BlinkMacSystemFont,
    Arial,
    sans-serif;
  background: #f7f4ef;
  color: #35364a;
  line-height: 1.7;
  font-weight: 300;
}

/* Brand bar */
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 32px;
  text-decoration: none;
  border-bottom: 1px solid #e8e4de;
  background: #fdfcfb;
}

.brand-logo {
  height: 28px;
  width: auto;
}

.brand-tagline {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #58595c;
  opacity: 0.75;
}

/* Main content */
main {
  max-width: 640px;
  margin: 48px auto 0;
  padding: 0 24px;
}

header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e8e4de;
}

.label {
  font-size: 10px !important;
  font-weight: 300 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #b0ada6 !important;
  margin: 0 0 16px !important;
}

h1 {
  margin: 0 0 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: #35364a;
}

.subtitle {
  font-size: 12px !important;
  color: #b0ada6 !important;
  margin: 0 !important;
  letter-spacing: 0.04em !important;
}

h2 {
  margin: 32px 0 10px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b0ada6;
}

p {
  margin: 8px 0;
  font-size: 15px;
  color: #58595c;
}

ul {
  margin: 8px 0 12px;
  padding-left: 20px;
}

li {
  margin: 6px 0;
  font-size: 15px;
  color: #58595c;
}

section {
  padding-bottom: 24px;
  border-bottom: 1px solid #f0ece6;
}

section:last-child {
  border-bottom: none;
}

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

a:hover {
  text-decoration: underline;
}
