
:root {
  --charcoal: #1C1C1C;
  --soft-beige: #D8C9A8;
  --bg: #FAFAFA;
  --text: #1C1C1C;
  --muted: #4A4A4A;
  --max-width: 1120px;
  --sidebar: #D8C9A8;
  --paper: #F5F1EB;
  --accent-light: #EFE9E3;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

a:hover {
  text-decoration: underline;
}

.wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: #FFFFFFCC;
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 26px;
  height: 2px;
  background: var(--charcoal);
  position: relative;
  border-radius: 999px;
}

.logo-mark::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--charcoal);
  transform: translate(50%, -50%);
}

.brand-name {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

nav li {
  opacity: 0.85;
}

nav a.active {
  opacity: 1;
  font-weight: 600;
}

main {
  flex: 1;
}

.hero {
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at top left, #EFE9E3 0, #F9F7F3 45%, #FFFFFF 100%);
}

.hero-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-tagline {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 2.2rem;
}

.btn-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--soft-beige);
  color: var(--charcoal);
  border-color: var(--soft-beige);
}

.btn-primary:hover {
  background: #C9B89A;
  border-color: #C9B89A;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(0,0,0,0.12);
}

.btn-secondary:hover {
  background: rgba(0,0,0,0.03);
  text-decoration: none;
}

.hero-micro {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background: var(--paper);
}

.section-title {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  opacity: 0.7;
}

.section h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.6rem;
  margin: 0 0 1.2rem;
}

.section p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.columns-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.4rem;
  margin-top: 2.2rem;
}

.pillar h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.pillar .divider {
  width: 32px;
  height: 2px;
  background: rgba(0,0,0,0.2);
  border-radius: 999px;
  margin: 0.4rem 0 0.6rem;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.method-step span.label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}

.method-step h3 {
  font-size: 1rem;
  margin: 0.4rem 0 0.6rem;
}

.card {
  padding: 2.5rem 2rem;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.04);
}

.card + .card {
  margin-top: 1.6rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 3rem;
  align-items: center;
}

.guide-mock {
  border-radius: 18px;
  background: linear-gradient(145deg, #EDE7DD, #F6F2EB);
  padding: 2rem;
  text-align: left;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.guide-mock h3 {
  font-family: "Georgia", "Times New Roman", serif;
  margin: 0 0 0.6rem;
}

.guide-mock p {
  font-size: 0.85rem;
}

.bullets {
  margin: 1.2rem 0 1.8rem;
  padding-left: 1.2rem;
}

.bullets li {
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.quote-block blockquote {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.2rem;
  margin: 0 0 1rem;
}

.quote-block p {
  margin: 0 0 1.5rem;
}

.text-link {
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

footer {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 1.8rem 0 2.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}

footer .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

/* About */

.lede {
  max-width: 760px;
  margin: 0 auto 2.8rem;
}

.stack {
  max-width: 780px;
  margin: 0 auto;
}

.stack h3 {
  font-size: 1.05rem;
  margin-top: 2rem;
  margin-bottom: 0.4rem;
}

.stack p {
  margin: 0 0 0.8rem;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 2.5rem;
}

/* Work with me */

.service-grid {
  display: grid;
  gap: 2rem;
  max-width: 880px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.service-meta {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.8rem;
}

.service-outcomes {
  margin: 0.8rem 0 1.2rem;
  padding-left: 1.2rem;
}

.service-outcomes li {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

/* Guide landing */

.hero-guide {
  padding: 4.5rem 0 4rem;
}

.hero-guide .split {
  align-items: flex-start;
}

.hero-guide h1 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.hero-guide p {
  font-size: 0.95rem;
}

/* Responsive */

@media (max-width: 900px) {
  nav ul {
    display: none;
  }
  .hero, .hero-guide {
    padding: 3.4rem 0 3rem;
  }
  .columns-3 {
    grid-template-columns: 1fr;
  }
  .method-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .method-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 3rem 0;
  }
}
