:root {
  --ink: #14171D;         /* primary text / headings */
  --body: #454B54;        /* body copy */
  --muted: #565B62;       /* captions, labels — darkened for AA contrast */
  --paper: #ffffff;
  --paper-alt: #F6F5F1;   /* warm off-white for alternating sections */
  --line: #E3E1DA;        /* hairline borders */
  --charcoal: #12151B;    /* dark sections */
  --charcoal-soft: #1B1F27;
  --accent: #0B6E5B;      /* single restrained accent — deep emerald */
  --accent-soft: #DCEAE6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding-bottom: 76px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  color: var(--body);
  background: var(--paper-alt);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, .logo-text, .quote {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--ink);
}

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(246, 245, 241, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  height: 32px;
  width: auto;
  display: block;
}

.logo-text {
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.logo-text span { color: var(--accent); }

.nav {
  display: flex;
  gap: 36px;
}

.nav a {
  color: var(--body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a:hover { color: var(--ink); }

/* Hero */
.hero {
  background-color: var(--charcoal);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 170px 0 130px;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.98rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.7);
  margin: 0 0 24px;
}

.hero h1 {
  font-size: clamp(2rem, 4.1vw, 3.3rem);
  font-weight: 500;
  margin: 0 0 28px;
  letter-spacing: -0.015em;
  color: #fff;
  line-height: 1.18;
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
}

.hero-credit {
  margin: 64px 0 0;
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.58);
}

.btn {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  transition: background 0.2s ease;
  border: none;
}

.btn:hover { background: var(--accent); color: #fff; }

/* Content */
.content-block {
  padding: 128px 0;
}

.single-col {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}


.section-icon {
  display: flex;
  justify-content: center;
  margin: 0 0 22px;
}

.section-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  opacity: 0.85;
}

.content-block h2 {
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-align: center;
  margin: 0 0 40px;
}

.content-block h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 20px auto 0;
}

.content-block p {
  color: var(--body);
  font-size: 1.03rem;
  margin: 0 0 18px;
}

/* Quotes band */
.quotes-block {
  padding: 96px 0;
}

.quotes-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 620px;
  margin: 0 auto;
}

.quote {
  font-weight: 400;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink);
  text-align: center;
  margin: 0;
}

/* CTA / Contact */
.cta-block {
  padding: 128px 0;
  text-align: center;
}

.cta-block h2 {
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 40px;
}

.cta-block h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 20px auto 0;
}

.cta-block p {
  color: var(--body);
  font-size: 1.03rem;
  margin: 0 0 18px;
}

.cta-block .single-col {
  margin: 0 auto 28px;
}

/* Contact form */
.contact-form {
  max-width: 460px;
  margin: 0 auto;
  text-align: left;
}

.cf-row { margin-bottom: 14px; }

.cf-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.cf-input {
  width: 100%;
  padding: 8px 2px;
  border: none;
  border-bottom: 1px solid #918D82;
  border-radius: 0;
  font-size: 1.08rem;
  font-family: 'Inter', inherit;
  color: var(--ink);
  background: transparent;
}

.cf-input:focus {
  outline: none;
  border-bottom-color: var(--ink);
}

.cf-textarea { resize: vertical; }

/* Honeypot — hidden from real visitors, present for bots */
.cf-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.cf-submit {
  display: block;
  width: fit-content;
  cursor: pointer;
  font-size: 0.95rem;
  margin: 8px auto 0;
}

.cf-submit:disabled { opacity: 0.6; cursor: default; }

.cf-note {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  margin: 12px 0 0;
}

.cf-status {
  display: none;
  font-size: 0.95rem;
  color: var(--accent);
  text-align: center;
  font-weight: 500;
  margin: 12px 0 0;
}

.linkedin-link {
  display: inline-block;
  margin-top: 22px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.linkedin-link:hover { color: var(--accent); }

/* Footer — sticky, always visible at the bottom of the viewport */
.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  background: rgba(246, 245, 241, 0.94);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  z-index: 20;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.footer-links a:hover { color: var(--accent); }

@media (max-width: 720px) {
  .nav { gap: 20px; }
  .hero { padding: 120px 0 90px; }
  .content-block { padding: 88px 0; }
  .cta-block { padding: 88px 0; }
  .content-block p { max-width: none; }
}
