:root {
  color-scheme: light;
  --ink: #221b17;
  --muted: #6e6258;
  --paper: #f5eee4;
  --paper-warm: #fbf3e7;
  --panel: #fff9f0;
  --line: #e1d0bd;
  --charcoal: #322721;
  --blue: #2d6b78;
  --green: #68785c;
  --red: #9b574c;
  --gold: #b27b3f;
  --clay: #c56b4e;
  --shadow: 0 26px 70px rgba(72, 50, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.page-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(125, 74, 56, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(251, 243, 231, 0.88);
  border-bottom: 1px solid rgba(225, 208, 189, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

nav a:hover,
footer a:hover,
.link-row a:hover,
.social-links a:hover {
  color: var(--blue);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  min-height: calc(86vh - 74px);
  padding: clamp(44px, 6vw, 76px) clamp(20px, 6vw, 84px) clamp(44px, 6vw, 72px);
  background:
    radial-gradient(circle at 82% 26%, rgba(197, 107, 78, 0.15), transparent 28%),
    linear-gradient(135deg, #fbf3e7 0%, #f6efe4 48%, #efe4d4 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(20px, 6vw, 84px);
  right: clamp(20px, 6vw, 84px);
  bottom: 0;
  height: 1px;
  background: rgba(118, 91, 66, 0.2);
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 780px;
}

.eyebrow,
.status {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 5.4vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 760px;
  margin: 34px 0 0;
  color: #3f3a35;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin-top: 28px;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(139, 100, 76, 0.35);
  background: rgba(255, 249, 240, 0.62);
  color: #684333;
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid #8a6a52;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
}

.button.primary {
  background: #7d4a38;
  border-color: #7d4a38;
  color: #fff8ed;
}

.portrait-wrap {
  position: relative;
  margin: 0;
  justify-self: center;
  width: min(100%, 460px);
  aspect-ratio: 1024 / 1536;
  background: #0c0b0b;
  border-radius: 18px;
  outline: 0;
  box-shadow: 0 28px 80px rgba(68, 44, 27, 0.22);
  overflow: hidden;
}

.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 249, 240, 0.18);
  pointer-events: none;
  z-index: 1;
}

.portrait-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
  opacity: 1;
}

.path-grid,
.section {
  padding-inline: clamp(20px, 6vw, 84px);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(72px, 9vw, 116px);
}

.path-card,
.offer-grid article,
.product-feature,
.writing-layout article,
.life-grid article,
.contact-panel {
  border: 1px solid var(--line);
  background: rgba(255, 249, 240, 0.86);
  box-shadow: 0 8px 28px rgba(79, 56, 38, 0.06);
}

.path-card {
  min-height: 230px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.path-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(79, 56, 38, 0.13);
}

.path-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.path-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.04;
}

.path-card p,
.section-heading p,
.offer-grid p,
.product-feature p,
.writing-layout p,
.life-grid p,
.contact-panel p,
footer {
  color: var(--muted);
}

.work-card {
  border-top: 5px solid var(--blue);
}

.product-card {
  border-top: 5px solid var(--green);
}

.writing-card {
  border-top: 5px solid var(--red);
}

.life-card {
  border-top: 5px solid var(--gold);
}

.section {
  padding-top: clamp(76px, 10vw, 128px);
  padding-bottom: clamp(76px, 10vw, 128px);
  border-top: 1px solid var(--line);
  background: var(--paper-warm);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p:last-child {
  margin: 0;
  font-size: 1.05rem;
}

.offer-grid,
.life-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.offer-grid article,
.life-grid article,
.writing-layout article {
  padding: 30px;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  line-height: 1.15;
}

.offer-grid p,
.life-grid p,
.writing-layout p,
.product-feature p {
  margin: 0;
}

.proof-band {
  margin-top: 24px;
  padding: 34px;
  background: #704636;
  color: #fff5e8;
}

.proof-band p {
  max-width: 980px;
  margin: 0;
  color: #fff5e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.18;
}

.products-section {
  background: #f1eadc;
}

.product-list {
  display: grid;
  gap: 22px;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 34px;
}

.product-feature.quiet {
  grid-template-columns: minmax(0, 1fr);
}

.link-row,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-row a,
.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.92rem;
}

.writing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 22px;
}

.writing-layout article:nth-child(2) {
  background: #fff6e8;
  color: var(--ink);
  border-color: #d6bfa5;
}

.writing-layout article:nth-child(2) p {
  color: #51463e;
}

.fiction-card {
  display: grid;
  gap: 22px;
  padding: clamp(32px, 5vw, 48px);
}

.fiction-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.fiction-card p {
  max-width: 74ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.fiction-card .link-row {
  margin-top: 4px;
}

.beyond-section {
  background: #f3e5d6;
}

.contact-section {
  background: #eadfce;
}

.contact-panel {
  padding: 34px;
}

.contact-panel p {
  max-width: 880px;
  margin: 0 0 22px;
  font-size: 1.05rem;
}

.resume-request {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 8px 0 28px;
  padding: 26px;
  border: 1px solid #d6bfa5;
  background: #fff6e8;
}

.resume-request h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.resume-request p {
  margin: 0;
}

.resume-request .button {
  justify-self: start;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

footer p {
  margin: 0;
}

footer a {
  font-weight: 800;
}

.back-top {
  cursor: pointer;
}

@media (max-width: 1080px) {
  .hero,
  .section-heading,
  .writing-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 760px;
  }

  .portrait-wrap {
    justify-self: start;
    max-width: 360px;
  }

  .path-grid,
  .offer-grid,
  .life-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  nav {
    justify-content: flex-start;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11vw, 3.2rem);
    line-height: 1;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    overflow-x: hidden;
  }

  .hero-copy,
  .hero-lede {
    max-width: 100%;
  }

  .hero-lede {
    max-width: 31ch;
  }

  .path-grid,
  .offer-grid,
  .life-grid,
  .product-feature {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 0;
  }

  .portrait-wrap {
    width: min(100%, 330px);
  }

  footer {
    flex-direction: column;
  }
}
