:root {
  --bg: #f7f5f1;
  --surface: #fcfbf8;
  --text: #111111;
  --muted: #5f5f5f;
  --line: #d9d4cc;
  --line-strong: #c8c1b6;
  --max-width: 760px;
  --radius: 10px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --header-height: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.68;
}

p,
ul,
ol {
  margin: 0 0 1.15rem;
}

ul,
ol {
  padding-left: 1.2rem;
}

strong {
  font-weight: 600;
}

address {
  font-style: normal;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(247, 245, 241, 0.96);
  border-bottom: 1px solid rgba(217, 212, 204, 0.8);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  font-size: 0.92rem;
}

.nav-links a {
  color: var(--muted);
}

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

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 0;
}

.hero-inner {
  max-width: 680px;
  width: 100%;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  margin-bottom: 1.4rem;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
}

.hero p {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1rem;
}

.hero-contact {
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
}

.hero-contact a {
  font-weight: 500;
}

.section {
  padding: 4.5rem 0;
  border-top: 1px solid var(--line);
}

.section h2 {
  margin: 0 0 1.4rem;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section h3 {
  margin: 2rem 0 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.section p,
.section li {
  color: var(--muted);
}

.legal-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow);
}

.legal-copy p:last-child,
.legal-copy ul:last-child,
.legal-copy ol:last-child {
  margin-bottom: 0;
}

.address {
  color: var(--muted);
  line-height: 1.75;
}

.top-space {
  margin-top: 1.2rem;
}

.stack-sm > * + * {
  margin-top: 0.6rem;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line-strong);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
  opacity: 1;
}

@media (max-width: 720px) {
  :root {
    --header-height: 92px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.75rem 0;
  }

  .nav-links {
    gap: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .hero {
    min-height: calc(100vh - var(--header-height));
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 4rem);
  }

  .section {
    padding: 3.5rem 0;
  }

  .legal-block {
    padding: 1.2rem 1rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}