:root {
  --bg: #faf9f6;
  --text: #1a1a1a;
  --muted: #5a5a5a;
  --border: #e5e3dd;
  --serif: "Cormorant Garamond", Garamond, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 4rem 2rem;
  background:
    linear-gradient(rgba(15, 20, 28, 0.55), rgba(15, 20, 28, 0.7)),
    url('hero.jpg') center/cover no-repeat,
    linear-gradient(135deg, #2a2f36, #14181d);
}

.hero-content { max-width: 760px; }

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  opacity: 0.92;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

section + section { margin-top: 5rem; }

h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: -0.005em;
  margin-bottom: 1.5rem;
}

.intro p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
}

.cards { display: grid; gap: 1.25rem; }

.card {
  display: block;
  padding: 1.75rem 2rem;
  background: #fff;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: #888;
  transform: translateY(-1px);
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.card-link {
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
}

.contact a {
  font-family: var(--serif);
  font-size: 1.4rem;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}
