:root {
  --bg: #f7f2ea;
  --panel: #fffaf4;
  --ink: #1f1d1a;
  --muted: #5e5549;
  --line: #d9cbb8;
  --brand: #0f766e;
  --brand-strong: #0b5f59;
  --sun: #e9b949;
  --shadow: 0 18px 40px rgba(30, 24, 16, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% 20%, #fff4dd 0%, var(--bg) 42%),
    radial-gradient(circle at 90% 10%, #e7f8f5 0%, transparent 40%),
    var(--bg);
  min-height: 100vh;
  line-height: 1.6;
}

.backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(110deg, rgba(15, 118, 110, 0.06) 20%, rgba(233, 185, 73, 0.06) 20%, rgba(233, 185, 73, 0.06) 24%, rgba(15, 118, 110, 0.06) 24%);
  opacity: 0.25;
}

.site-header,
main,
.site-footer {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  letter-spacing: 0.01em;
}

.top-nav {
  display: flex;
  gap: 1rem;
}

.top-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.2rem;
}

.top-nav a[aria-current="page"],
.top-nav a:hover {
  color: var(--brand-strong);
  border-color: var(--brand-strong);
}

.hero {
  margin-top: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 24px;
  animation: rise 650ms ease-out both;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--brand-strong);
  font-weight: 700;
  margin: 0;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.15;
}

h1 {
  margin: 0.6rem 0 1rem;
  font-size: clamp(2rem, 6vw, 4.2rem);
  max-width: 20ch;
}

.lead {
  color: var(--muted);
  max-width: 68ch;
  margin-bottom: 1.25rem;
}

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

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 12px;
  padding: 0.68rem 1rem;
  font-weight: 700;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

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

.btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 20px rgba(15, 118, 110, 0.25);
}

.btn.ghost {
  background: transparent;
  color: var(--brand-strong);
  border: 1px solid var(--brand-strong);
}

.features {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  animation: rise 650ms ease-out both;
}

.card:nth-child(2) { animation-delay: 70ms; }
.card:nth-child(3) { animation-delay: 130ms; }
.card:nth-child(4) { animation-delay: 180ms; }

.card h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.trust,
.policy-wrap {
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.trust h2,
.policy-wrap h1 {
  margin-top: 0.2rem;
}

.text-link {
  color: var(--brand-strong);
  font-weight: 700;
  text-underline-offset: 2px;
}

.policy-section {
  margin: 1.2rem 0;
}

.policy-section h2 {
  margin-bottom: 0.45rem;
  font-size: 1.25rem;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
}

.policy-section ul {
  margin-top: 0;
  padding-left: 1.2rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 0 1.8rem;
  color: var(--muted);
}

.site-footer a {
  color: var(--brand-strong);
  text-decoration: none;
  font-weight: 700;
}

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

@media (max-width: 900px) {
  .features {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .top-nav {
    flex-wrap: wrap;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
