:root {
  --background: #f7f5f0;
  --panel: #ffffff;
  --text: #1f2326;
  --muted: #616a70;
  --line: #d9d4c9;
  --accent: #243b3a;
  --accent-soft: #e2e7e3;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 28px;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 212, 201, 0.75);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 26px;
  height: 26px;
  display: inline-block;
  border: 1.5px solid var(--accent);
  transform: rotate(45deg);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-top: 1.5px solid var(--accent);
  border-left: 1.5px solid var(--accent);
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
}

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

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 88px 28px 104px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

.hero-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.button:hover {
  opacity: 0.92;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 92px 28px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}

h2 {
  max-width: 640px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-copy p {
  margin-bottom: 22px;
}

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

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

.card h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

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

.muted-panel {
  max-width: calc(var(--max-width) - 56px);
  background: var(--accent-soft);
  border: 1px solid var(--line);
  padding: 68px;
}

.contact-section {
  padding-top: 96px;
}

.contact-card {
  display: inline-block;
  min-width: min(100%, 420px);
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--muted);
}

.contact-card strong {
  color: var(--text);
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 36px 28px 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer p {
  margin-bottom: 10px;
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav {
    width: 100%;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-inner {
    padding-top: 72px;
    padding-bottom: 80px;
  }

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

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

  .muted-panel {
    max-width: calc(100% - 32px);
    padding: 44px 24px;
  }

  .section {
    padding: 68px 24px;
  }
}
