:root {
  --ink-900: #0f1726;
  --ink-700: #2e3f57;
  --ink-500: #5a6d84;
  --paper: #f8f7f3;
  --panel: #fffcf4;
  --line: #d8d2c5;
  --teal: #1f9cae;
  --teal-dark: #147a89;
  --gold: #c9a24e;
  --shadow: 0 10px 24px rgba(20, 40, 60, 0.08);
}

* { box-sizing: border-box; }

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

body {
  color: var(--ink-900);
  background: radial-gradient(circle at 12% 18%, rgba(201, 162, 78, 0.2), transparent 32%),
              radial-gradient(circle at 85% 10%, rgba(31, 156, 174, 0.2), transparent 34%),
              linear-gradient(160deg, #f6f4ee, #f1ece1 65%, #e9e2d3 100%);
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.55;
}

.mesh {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(15, 23, 38, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(15, 23, 38, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.shell {
  width: min(1120px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stack-xl > * + * { margin-top: 20px; }

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

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink-900);
  text-decoration: none;
}

.brand-logo {
  height: 56px;
  width: auto;
  max-width: min(55vw, 320px);
  object-fit: contain;
}

.brand-fallback {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  display: inline-flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  color: var(--ink-700);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--ink-900);
  border-bottom-color: var(--teal);
}

.hero,
.panel,
.offer,
.bio-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 252, 244, 0.92));
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero,
.panel { padding: 26px; }

h1, h2, h3 {
  margin: 0 0 10px;
  font-family: "IBM Plex Serif", Georgia, serif;
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 5.2vw, 3.9rem); max-width: 15ch; }
h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); }
h3 { font-size: 1.18rem; }

.eyebrow {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.lead {
  margin: 12px 0 0;
  max-width: 66ch;
  color: var(--ink-700);
  font-size: 1.08rem;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

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

.btn-primary {
  background: var(--teal);
  color: #052f36;
  padding: 12px 16px;
}

.btn-primary:hover { background: #1691a3; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.86);
  border-color: #aab8c8;
  color: var(--ink-900);
  padding: 12px 16px;
}

.btn-mini {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
  color: var(--ink-900);
  padding: 9px 13px;
  font-size: 0.88rem;
}

.tag-row {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-row li {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #bfd0da;
  background: #f0f8fb;
  font-size: 0.84rem;
  color: #1a4152;
}

.grid-2,
.grid-3,
.steps,
.grid-contact {
  display: grid;
  gap: 14px;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-contact { grid-template-columns: 1.3fr 0.9fr; }

.tile,
.offer,
.bio-card {
  padding: 18px;
}

.offer ul,
.check-list,
.panel ul {
  margin: 0;
  padding-left: 18px;
}

.offer li,
.check-list li,
.panel li { margin: 7px 0; }

.step {
  margin: 0 0 8px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration-thickness: 2px;
}

label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--ink-700);
}

input, textarea {
  width: 100%;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid #b8c3d0;
  background: #fff;
  color: var(--ink-900);
  padding: 10px;
  font: inherit;
}

textarea { resize: vertical; }

button.btn {
  padding: 12px 16px;
  font-size: 0.95rem;
}

.site-footer {
  padding: 24px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--ink-500);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer a {
  color: var(--ink-700);
  text-decoration: none;
}

.site-footer a:hover { text-decoration: underline; }

.reveal {
  animation: rise 520ms ease both;
}

.stagger-1 { animation-delay: 110ms; }
.stagger-2 { animation-delay: 180ms; }
.stagger-3 { animation-delay: 250ms; }

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

@media (max-width: 920px) {
  .grid-3,
  .steps,
  .grid-contact { grid-template-columns: 1fr; }

  h1 { max-width: 100%; }
}

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

  .nav { gap: 14px; }

  .grid-2 { grid-template-columns: 1fr; }

  .brand-logo {
    height: 46px;
    max-width: 76vw;
  }

  .hero,
  .panel,
  .offer,
  .bio-card { padding: 18px; }
}
