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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

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

a { color: inherit; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 3vw, 40px);
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 44px;
}

.section-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 10px 0 44px;
}

section { padding: 80px 5%; }
