h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 var(--space-4);
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }

p { margin: 0 0 var(--space-4); color: var(--text-secondary); }

a { color: inherit; }

.cta,
.text-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 200ms ease, filter 200ms ease, background-color 200ms ease;
}

.cta {
  padding: .9rem 1.2rem;
  background: var(--brand-accent);
  color: #042f2e;
  font-weight: 700;
  border: 1px solid color-mix(in srgb, var(--brand-accent) 65%, #000);
}

.cta:hover { transform: translateY(-2px) scale(1.02); filter: saturate(1.08); }

.card {
  border: 1px solid var(--border-subtle);
  background: var(--surface-raised);
  padding: var(--space-6);
}

.image-wrap {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  position: relative;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: sepia(0.4) hue-rotate(180deg) saturate(1.6);
  transition: transform 220ms ease;
}

.image-wrap:hover img { transform: scale(1.04); }

.quote {
  font-size: clamp(1.2rem, 3vw, 2rem);
  border-left: 4px solid var(--brand-accent);
  padding-left: var(--space-4);
}

.footer {
  background: var(--surface-inverse);
  color: var(--text-inverse);
  padding: var(--space-12) var(--space-8);
}
