:root {
  --ink: #14201c;
  --paper: #f3efe6;
  --sea: #0e6b5d;
  --sea-deep: #0a4f45;
  --sand: #d8cfc0;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
.bg {
  position: fixed; inset: 0; z-index: 0;
  background:
    linear-gradient(160deg, rgba(14,107,93,0.18), transparent 45%),
    linear-gradient(340deg, rgba(216,207,192,0.9), transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60L60 0H30L0 30M60 60V30L30 60' fill='none' stroke='%230e6b5d' stroke-opacity='0.06'/%3E%3C/svg%3E"),
    var(--paper);
}
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem);
  max-width: 720px;
}
.brand {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sea);
  margin: 0 0 0.75rem;
}
h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(3.2rem, 9vw, 5.5rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}
.lead {
  font-size: 1.2rem;
  max-width: 28rem;
  margin: 0 0 2rem;
  opacity: 0.85;
}
.cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.cta a:hover { transform: translateY(-2px); }
.cta .primary { background: var(--sea); color: #f7faf8; }
.cta .primary:hover { background: var(--sea-deep); }
.cta .secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(20,32,28,0.25);
}
.meta {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  opacity: 0.55;
}
@media (prefers-reduced-motion: reduce) {
  .cta a { transition: none; }
}
