@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");

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

body {
  font-family: "Inter", system-ui, sans-serif;
  color: #1f2933;
  background: #f8f6f2;
  line-height: 1.6;
}

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

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.container.narrow {
  width: min(720px, 92%);
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #e1e5ea;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1.5rem;
}

.logo {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nav-link {
  color: #4b5563;
  font-weight: 500;
}

.nav-link.active,
.nav-link:hover {
  color: #111827;
}

.hero {
  padding: 6rem 0 4rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #6b7280;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #111827;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: #111827;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
}

.button.primary {
  background: #2f6f6c;
  color: #fff;
}

.button.primary:hover {
  background: #285d5a;
}

.button.ghost {
  border-color: #2f6f6c;
  color: #2f6f6c;
  background: transparent;
}

.button.ghost:hover {
  background: rgba(47, 111, 108, 0.08);
}

.section {
  padding: 3.5rem 0 4.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  padding: 1.8rem;
  border-radius: 1.25rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.contact-card {
  display: grid;
  gap: 1.5rem;
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.contact-card a {
  color: #2f6f6c;
  font-weight: 600;
}

.hint {
  font-size: 0.9rem;
  color: #6b7280;
}

.note {
  margin-top: 2.5rem;
  color: #6b7280;
  font-size: 0.95rem;
}

.placeholder {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px dashed #cbd5e1;
}

.site-footer {
  padding: 2rem 0 3rem;
  color: #6b7280;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 4.5rem;
  }
}
