* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ee;
  --text: #111111;
  --muted: #66615a;
  --line: rgba(17, 17, 17, 0.16);
  --card: rgba(255, 255, 255, 0.42);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px min(6vw, 72px);
  background: rgba(247, 244, 238, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
}

.hero {
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px min(6vw, 72px);
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.section-label {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin: 22px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 10vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 400;
}

.intro {
  max-width: 620px;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  border: 1px solid var(--text);
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
}

.text-link {
  font-size: 14px;
  border-bottom: 1px solid var(--text);
}

.section {
  padding: 92px min(6vw, 72px);
  border-bottom: 1px solid var(--line);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--card);
}

.card span {
  color: var(--muted);
  font-size: 13px;
}

.card h2,
.split h2,
.contact h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.card p,
.split p {
  color: var(--muted);
  font-size: 17px;
  max-width: 660px;
}

.split {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
}

.contact {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact h2 {
  max-width: 850px;
}

.email {
  display: inline-block;
  margin-top: 24px;
  font-size: clamp(24px, 4vw, 48px);
  font-family: Georgia, "Times New Roman", serif;
  border-bottom: 1px solid var(--text);
  width: fit-content;
}

footer {
  padding: 32px min(6vw, 72px);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }

  .nav {
    gap: 18px;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 72vh;
    padding-top: 72px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
