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

:root {
  --ink: #151513;
  --muted: #5f625f;
  --subtle: #8c908a;
  --paper: #ffffff;
  --soft: #f6f7f4;
  --line: #dedfd9;
  --accent: #2f6f61;
  --accent-dark: #235549;
  --warm: #9b6f36;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

nav {
  max-width: 1120px;
  min-height: 64px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

nav ul {
  margin-left: auto;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.16s ease;
}

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

main {
  max-width: 1120px;
  margin: 0 auto;
}

.hero {
  padding: 96px 28px 76px;
  border-bottom: 1px solid var(--line);
}

.hero-eyebrow,
.section-label,
.work-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
}

.hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.72;
}

.overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 28px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.overview-item {
  min-height: 180px;
  padding: 34px 30px;
  background: var(--paper);
}

.overview-item h2 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.overview-item p {
  color: var(--muted);
  font-size: 0.98rem;
}

#work,
#support,
#contact {
  padding: 76px 28px;
  border-bottom: 1px solid var(--line);
}

.section-label {
  color: var(--subtle);
  margin-bottom: 28px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.work-card {
  min-height: 300px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.work-kicker {
  margin-bottom: 14px;
  color: var(--warm);
}

.work-card h2 {
  margin-bottom: 16px;
  font-size: 1.55rem;
  line-height: 1.25;
}

.work-card p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.btn-primary {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 6px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.16s ease, transform 0.16s ease;
}

.btn-primary:hover {
  background: #2a2b27;
  transform: translateY(-1px);
}

.support-body,
.contact-list {
  max-width: 740px;
}

.support-body p,
.contact-list p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.support-body p {
  margin-bottom: 20px;
}

.contact-email {
  display: inline-block;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
}

.contact-email:hover { color: var(--accent-dark); }

.contact-list {
  display: grid;
  gap: 8px;
}

.contact-list strong {
  color: var(--ink);
}

.contact-list a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

footer p,
footer a {
  color: var(--subtle);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

footer a {
  text-decoration: none;
}

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

.privacy-hero {
  padding-bottom: 62px;
}

.policy-content {
  max-width: 820px;
  padding: 70px 28px;
}

.policy-content h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.policy-content a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.policy-content a:hover {
  text-decoration: underline;
}

.policy-updated {
  margin-top: 36px;
  color: var(--subtle);
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  nav {
    padding: 14px 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  nav ul {
    width: 100%;
    margin-left: 0;
    gap: 18px;
    flex-wrap: wrap;
  }

  .hero {
    padding: 68px 20px 58px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero p {
    font-size: 1.06rem;
  }

  .overview {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .overview-item {
    min-height: 0;
    padding: 28px 0;
  }

  #work,
  #support,
  #contact {
    padding: 58px 20px;
  }

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

  .work-card {
    min-height: 0;
    padding: 28px;
  }

  .btn-primary {
    margin-top: 26px;
  }

  footer {
    padding: 24px 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .policy-content {
    padding: 54px 20px;
  }
}
