@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Manrope:wght@400;600;700&display=swap');

:root {
  --bg: #f3efe9;
  --ink: #1a1a1f;
  --muted: #5b5b66;
  --brand: #0f6b62;
  --brand-dark: #0b4f49;
  --accent: #ff9d3d;
  --card: #ffffff;
  --shadow: 0 20px 45px rgba(18, 24, 40, 0.12);
  --radius: 20px;
  --stroke: rgba(26, 26, 31, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 10% -10%, #dff0ea, transparent),
    radial-gradient(1200px 600px at 90% 5%, #ffe6cf, transparent),
    var(--bg);
  min-height: 100vh;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(243, 239, 233, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 26, 31, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}

.nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 14px 30px rgba(15, 107, 98, 0.22);
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--brand-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--brand-dark);
  border-color: rgba(19, 92, 82, 0.3);
  box-shadow: none;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  border: 1px solid var(--stroke);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

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

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 40px 0 20px;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin: 0 0 16px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 122, 109, 0.12);
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.status {
  padding: 10px 16px;
  background: rgba(31, 122, 109, 0.12);
  border-radius: 12px;
  color: var(--brand-dark);
  margin-bottom: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  font-family: inherit;
  background: #fff;
}

label {
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

.footer {
  padding: 32px 0 60px;
  color: var(--muted);
}

.page {
  padding-top: 32px;
}

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

  .nav-links {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px dashed rgba(17, 17, 20, 0.2);
  font-size: 0.85rem;
}
