@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Sora:wght@300;400;600&display=swap');

:root {
  --bg: #f5efe4;
  --bg-2: #efe3d2;
  --paper: #fff7ed;
  --ink: #10231d;
  --muted: #4a5b55;
  --accent: #1f7a6f;
  --accent-2: #e07a5f;
  --border: rgba(16, 35, 29, 0.12);
  --shadow: 0 24px 60px rgba(16, 35, 29, 0.12);
  --content-max: 1120px;
  --content-gutter: clamp(20px, 6vw, 72px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% 10%, #fffaf3, var(--bg) 35%, var(--bg-2) 100%);
}

.bg-orbit {
  position: fixed;
  inset: -30vmax 20vmax auto auto;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 122, 111, 0.2), transparent 70%);
  filter: blur(0px);
  pointer-events: none;
  animation: orbit 16s ease-in-out infinite alternate;
}

@keyframes orbit {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-6%, 6%, 0); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 24px var(--content-gutter) 16px;
  background: linear-gradient(to bottom, rgba(245, 239, 228, 0.9), rgba(245, 239, 228, 0));
  backdrop-filter: blur(6px);
}

.logo {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}

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

.nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 24px;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

main {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-gutter) 80px;
}

.hero {
  max-width: 760px;
  padding: 72px 0 48px;
  animation: rise 0.8s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.chip {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(31, 122, 111, 0.12);
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2.8rem, 4vw, 4rem);
  margin: 18px 0 12px;
}

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

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 12px 24px rgba(31, 122, 111, 0.25);
}

.btn.ghost {
  color: var(--accent);
  border-color: rgba(31, 122, 111, 0.4);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.metrics div {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.metrics span {
  font-size: 1.2rem;
  font-weight: 600;
}

.metrics small {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}

.section {
  padding: 48px 0 12px;
  border-top: 1px solid var(--border);
}

.section h2 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 2rem;
  margin-bottom: 18px;
}

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

.cards article {
  background: var(--paper);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cards h3 {
  margin-top: 0;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.7;
}

.lead a,
.bullets a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.bullets {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.bullets li {
  margin: 8px 0;
}

.steps {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.steps div {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--border);
}

.steps span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: rgba(224, 122, 95, 0.2);
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 10px;
}

.contact {
  padding-bottom: 64px;
}

.contact-card {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--paper);
  border-radius: 20px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-actions {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.contact-actions a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.contact-actions a:hover {
  filter: brightness(0.95);
}

.contact-card a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.contact-card a:hover {
  filter: brightness(0.95);
}

.site-footer {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 24px var(--content-gutter) 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 0 var(--content-gutter);
}

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

  .nav a {
    margin-left: 0;
    margin-right: 16px;
  }

  .hero {
    padding-top: 40px;
  }
}
