/* Turtle Wealth — slow and steady, by design */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600&family=Albert+Sans:wght@300;400;500;600&display=swap');

:root {
  --ink: #16302a;          /* deep sea green */
  --ink-soft: #2e4a42;
  --mist: #eef1ec;         /* pale celadon background */
  --shell: #e3e9e1;
  --jade: #3e7c5f;
  --sand: #b3905f;         /* muted bronze accent */
  --line: rgba(22, 48, 42, 0.16);
  --slow: 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 400; line-height: 1.15; }

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

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

/* ---------- header ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(238, 241, 236, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { width: 38px; height: 38px; }
.brand-name {
  font-family: 'Fraunces', serif; font-size: 21px; letter-spacing: 0.02em;
}
.brand-name span { color: var(--jade); }
nav.links { display: flex; gap: 34px; font-size: 14.5px; font-weight: 400; letter-spacing: 0.04em; }
nav.links a { position: relative; padding-bottom: 4px; transition: color 0.4s; }
nav.links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--jade); transition: width var(--slow);
}
nav.links a:hover::after, nav.links a.active::after { width: 100%; }
nav.links a.active { color: var(--jade); }
.nav-cta {
  border: 1px solid var(--ink); border-radius: 999px; padding: 9px 22px;
  font-size: 14px; letter-spacing: 0.04em; transition: background var(--slow), color var(--slow);
}
.nav-cta:hover { background: var(--ink); color: var(--mist); }

/* ---------- hero ---------- */
.hero { padding: 110px 0 90px; position: relative; overflow: hidden; }
.hero .eyebrow { margin-bottom: 28px; }
.eyebrow {
  font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sand); font-weight: 500;
}
.hero h1 {
  font-size: clamp(44px, 6.2vw, 76px);
  max-width: 14ch;
  letter-spacing: -0.015em;
}
.hero h1 em { font-style: italic; color: var(--jade); }
.hero p.lead {
  margin-top: 32px; max-width: 54ch; font-size: 19px; color: var(--ink-soft);
}
.hero-actions { margin-top: 44px; display: flex; gap: 18px; flex-wrap: wrap; }
.btn {
  display: inline-block; border-radius: 999px; padding: 14px 32px;
  font-size: 15px; font-weight: 400; letter-spacing: 0.03em;
  transition: all var(--slow);
}
.btn-solid { background: var(--ink); color: var(--mist); border: 1px solid var(--ink); }
.btn-solid:hover { background: var(--jade); border-color: var(--jade); }
.btn-ghost { border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); }

/* hexagon field behind hero */
.hexfield {
  position: absolute; right: -120px; top: 40px; width: 560px; opacity: 0.5;
  pointer-events: none;
}

/* ---------- sections ---------- */
section.band { padding: 96px 0; }
section.band.alt { background: var(--shell); }
.band h2 { font-size: clamp(30px, 3.6vw, 44px); max-width: 22ch; letter-spacing: -0.01em; }
.band .eyebrow { margin-bottom: 20px; }
.band p.body { max-width: 62ch; margin-top: 24px; color: var(--ink-soft); }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 64px; }
.card {
  border-top: 1px solid var(--line); padding-top: 28px;
  transition: border-color var(--slow);
}
.card:hover { border-top-color: var(--jade); }
.card h3 { font-size: 22px; margin-bottom: 14px; }
.card p { font-size: 15.5px; color: var(--ink-soft); }
.card .hex { width: 26px; height: 26px; margin-bottom: 22px; }

/* statement block */
.statement {
  font-family: 'Fraunces', serif; font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.35; max-width: 28ch; letter-spacing: -0.01em;
}
.statement em { font-style: italic; color: var(--jade); }

/* two column */
.twocol { display: grid; grid-template-columns: 5fr 7fr; gap: 72px; align-items: start; margin-top: 8px; }
.twocol .sticky { position: sticky; top: 120px; }

/* bias list */
.bias-list { margin-top: 8px; }
.bias { border-bottom: 1px solid var(--line); padding: 30px 0; }
.bias h3 { font-size: 21px; display: flex; align-items: baseline; gap: 16px; }
.bias h3 .tag {
  font-family: 'Albert Sans', sans-serif; font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sand); font-weight: 500;
}
.bias p { margin-top: 10px; font-size: 15.5px; color: var(--ink-soft); max-width: 58ch; }

/* CTA band */
.cta-band { background: var(--ink); color: var(--mist); padding: 110px 0; text-align: center; }
.cta-band h2 { font-size: clamp(32px, 4.2vw, 52px); margin: 0 auto; max-width: 20ch; }
.cta-band p { margin: 26px auto 0; max-width: 50ch; color: rgba(238,241,236,0.75); }
.cta-band .btn-solid { background: var(--mist); color: var(--ink); border-color: var(--mist); margin-top: 44px; }
.cta-band .btn-solid:hover { background: var(--sand); border-color: var(--sand); color: var(--ink); }

/* footer */
footer { padding: 64px 0 48px; border-top: 1px solid var(--line); }
.foot { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot .brand svg { width: 30px; height: 30px; }
.foot small { display: block; margin-top: 18px; color: var(--ink-soft); font-size: 12.5px; max-width: 64ch; line-height: 1.6; }
.foot nav { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }

/* page hero (inner pages) */
.page-hero { padding: 90px 0 70px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(38px, 5vw, 62px); max-width: 16ch; letter-spacing: -0.015em; }
.page-hero h1 em { font-style: italic; color: var(--jade); }
.page-hero p { margin-top: 26px; max-width: 56ch; font-size: 18px; color: var(--ink-soft); }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.contact-item { border-top: 1px solid var(--line); padding: 26px 0; }
.contact-item .eyebrow { margin-bottom: 8px; }
.contact-item a { font-family: 'Fraunces', serif; font-size: 22px; transition: color 0.5s; }
.contact-item a:hover { color: var(--jade); }

/* slow reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1.2s ease, transform 1.2s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* responsive */
@media (max-width: 900px) {
  .grid3 { grid-template-columns: 1fr; gap: 28px; }
  .twocol { grid-template-columns: 1fr; gap: 40px; }
  .twocol .sticky { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  nav.links { display: none; }
  .hexfield { display: none; }
}
