/* ============================================================
   Variables — shared with hotz.css
   ============================================================ */

:root {
  --bg:         #f7f4ef;
  --bg2:        #ece7e0;
  --fg:         #1e1a16;
  --bright:     #0e0a08;
  --dim:        #6a6058;
  --accent:     #9e4820;
  --accent-bg:  #fdf4ee;
  --accent-dim: #b06030;
  --border:     #cdc8c0;

  --font-mono: 'Fira Code', 'Courier New', Courier, monospace;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --size:    15px;
  --measure: 860px;
  --pad:     1.5rem;
}

/* ============================================================
   Reset
   ============================================================ */

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

html {
  font-size: var(--size);
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

p { margin-bottom: 0.9rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   Utilities
   ============================================================ */

.dim { color: var(--dim); }
.mono { font-family: var(--font-mono); }

/* ============================================================
   Layout
   ============================================================ */

main {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.rule {
  border-top: 1px solid var(--border);
  max-width: var(--measure);
  margin: 0 auto;
}

/* ============================================================
   Topbar
   ============================================================ */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.topbar__inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0.65rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-mono);
}

.topbar__back {
  color: var(--dim);
  font-size: 0.8rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.topbar__back:hover {
  color: var(--fg);
  text-decoration: none;
}

.topbar__contact {
  color: var(--accent);
  font-size: 0.8rem;
  text-decoration: none;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.hero__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--bright);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--dim);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero__intro {
  font-size: 0.975rem;
  max-width: 660px;
  line-height: 1.8;
  color: var(--fg);
}

/* ============================================================
   Section
   ============================================================ */

.section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.section:last-of-type {
  border-bottom: none;
}

.section__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--dim);
  margin-bottom: 2rem;
}

/* ============================================================
   Service pillars
   ============================================================ */

.pillar {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.pillar:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pillar__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--dim);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.pillar__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bright);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.pillar__body {
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 1rem;
  max-width: 640px;
}

.pillar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pillar__list li {
  font-size: 0.9rem;
  color: var(--dim);
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
  border-top: 1px solid var(--border);
}

.pillar__list li:last-child {
  border-bottom: 1px solid var(--border);
}

.pillar__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent-dim);
}

/* ============================================================
   Regulatory strip
   ============================================================ */

.reg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}

.reg-card {
  background: var(--bg);
  padding: 1.25rem 1.5rem;
}

.reg-card__name {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.reg-card__desc {
  font-size: 0.85rem;
  color: var(--dim);
  line-height: 1.55;
}

/* ============================================================
   Credentials
   ============================================================ */

.cred-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 1.75rem;
  margin-top: 1.5rem;
}

.cred-block p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.cred-block p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   CTA
   ============================================================ */

.cta-block {
  padding: 3rem 0;
}

.cta-block__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bright);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.cta-block__body {
  font-size: 0.95rem;
  color: var(--fg);
  max-width: 560px;
  margin-bottom: 1.5rem;
}

.cta-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 0.6rem 1.25rem;
  text-decoration: none;
  transition: background 0.15s;
}

.cta-link:hover {
  background: var(--accent-bg);
  text-decoration: none;
}

/* ============================================================
   Footer
   ============================================================ */

.foot {
  border-top: 1px solid var(--border);
}

.foot__inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 1.1rem var(--pad);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--dim);
}

.foot__inner a {
  color: var(--dim);
}

/* ============================================================
   Mobile
   ============================================================ */

@media (max-width: 640px) {
  :root {
    --size: 14px;
    --pad:  1rem;
  }

  .hero { padding: 2.5rem 0 2rem; }
  .hero__title { font-size: 1.75rem; }

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