:root {
  color-scheme: light;
  --bg: #faf9f7;
  --ink: #17150f;
  --muted: #6f6a60;
  --accent: #0f6b5c;
  --line: #e9e5dd;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

a {
  color: var(--accent);
  text-decoration: none;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 32px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent);
  padding: 8px 0;
  margin: -8px 0;
}

.wordmark:hover {
  text-decoration: none;
}

.logo-mark {
  display: block;
  width: auto;
  height: 28px;
}

.header-contact {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
  padding: 10px 12px;
}

.header-contact:hover {
  color: var(--ink);
  text-decoration: none;
}

/* Hero */
.hero {
  max-width: 960px;
  margin: 0 auto;
  padding: 88px 32px 80px;
  text-align: center;
}

.hero h1 {
  font-family: var(--sans);
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 28px;
  text-wrap: balance;
}

.hero h1 strong {
  font-weight: 700;
}

.hero-rule {
  border: none;
  border-top: 1px solid var(--line);
  width: 56px;
  margin: 0 auto 28px;
}

.hero .lede {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 44ch;
  margin: 0 auto 36px;
  text-wrap: balance;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 24px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
  color: var(--accent);
  background: transparent;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
}

.hero .inquiries {
  margin-top: 28px;
  font-size: 0.8125rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.hero .inquiries a {
  color: var(--accent);
  font-weight: 500;
}

/* Contact */
.contact {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 32px 96px;
  border-top: 1px solid var(--line);
}

.contact h2 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 20px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.contact-line a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ink);
}

.contact-line a:hover {
  color: var(--accent);
}

.copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}

.copy:hover {
  color: var(--ink);
  border-color: var(--muted);
}

.copy.copied {
  color: var(--accent);
  border-color: var(--accent);
}

.copy-icon,
.check-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  transition: opacity 0.15s, transform 0.15s;
}

.check-icon {
  opacity: 0;
  transform: scale(0.85);
}

.copy.copied .copy-icon {
  opacity: 0;
  transform: scale(0.85);
}

.copy.copied .check-icon {
  opacity: 1;
  transform: scale(1);
}

address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

address a {
  color: var(--ink);
}

address a:hover {
  color: var(--accent);
}

address p {
  margin-bottom: 16px;
}

address strong {
  color: var(--ink);
  font-weight: 600;
}

/* Footer */
footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 32px 48px;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 0;
}

.footer-nav a {
  color: var(--muted);
  padding: 11px 10px;
}

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

/* Legal pages */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

.legal-page {
  padding: 96px 0 64px;
}

.legal-page h1 {
  font-family: var(--sans);
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.legal-page .updated {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 32px 0 8px;
}

.legal-page p {
  margin-bottom: 16px;
  color: var(--ink);
}

.legal-page a {
  color: var(--accent);
}

/* Motion — one authored moment */
@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  animation: hero-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    animation: none;
  }
}

/* Responsive */
@media (max-width: 480px) {
  .site-header {
    padding: 20px 20px;
  }
  .hero {
    padding: 64px 20px 56px;
  }
  .hero h1 {
    font-size: 2rem;
    letter-spacing: -0.02em;
  }
  .hero h1 strong {
    letter-spacing: -0.01em;
  }
  .contact {
    padding: 48px 20px 72px;
  }
  footer {
    padding: 24px 20px 40px;
  }
}
