:root {
  --ink: #17211d;
  --muted: #5f6d66;
  --paper: #f8f5ed;
  --paper-2: #ebe4d7;
  --leaf: #315f4a;
  --moss: #8a9b68;
  --gold: #c49a43;
  --sky: #d9e7e4;
  --white: #ffffff;
  --line: rgba(23, 33, 29, 0.16);
  --shadow: 0 18px 50px rgba(23, 33, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(248, 245, 237, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header.consulting {
  background: rgba(255, 255, 255, 0.94);
}

.brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
  font-size: 0.94rem;
}

nav a {
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
}

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

main {
  overflow: hidden;
}

.hero,
.video-section,
.poem-section,
.facts-strip,
.consulting-callout,
.consulting-hero,
.two-column,
.service-grid,
.content-page {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 5rem 0 4rem;
}

.hero-copy h1,
.consulting-hero h1,
.page-title h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p,
.consulting-hero p,
.consulting-callout p,
.two-column p,
.prose p,
.contact-panel p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  background: var(--leaf);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(49, 95, 74, 0.22);
}

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

.button.dark {
  color: var(--paper);
  background: var(--ink);
}

.specimen-panel {
  min-height: 300px;
  padding: 1.25rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(217, 231, 228, 0.72)),
    repeating-linear-gradient(0deg, transparent 0 35px, rgba(23, 33, 29, 0.08) 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.specimen-panel span {
  display: block;
  margin-bottom: 5rem;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.specimen-panel strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1.15;
}

.video-section,
.poem-section,
.consulting-callout {
  padding: 4rem 0;
}

.first-section {
  padding-top: 2rem;
}

.section-heading {
  margin-bottom: 1.25rem;
}

.section-heading h2,
.consulting-callout h2,
.two-column h2 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #101712;
  border: 8px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.poem {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 2rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.poem p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.facts-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.facts-strip div {
  min-height: 120px;
  padding: 1.25rem;
  background: var(--sky);
}

.facts-strip span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.facts-strip strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.25;
}

.consulting-callout {
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--paper);
  background: var(--leaf);
  border-radius: 8px;
}

.consulting-callout .eyebrow,
.consulting-callout p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 2rem 1rem;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.consulting-page {
  background: #f6f8f5;
}

.consulting-hero {
  min-height: 66vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.consulting-hero h1,
.page-title h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 4rem 0;
  border-top: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 5rem;
}

.service-grid article,
.service-list article,
.contact-panel {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-grid h3,
.service-list h2 {
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.service-grid p,
.service-list p {
  margin: 0;
  color: var(--muted);
}

.content-page {
  padding: 5rem 0;
}

.page-title {
  margin-bottom: 2rem;
}

.prose,
.service-list,
.contact-panel {
  max-width: 860px;
}

.service-list {
  display: grid;
  gap: 1rem;
}

.contact-panel a:not(.button) {
  color: var(--leaf);
  font-weight: 800;
}

.consulting-footer a {
  color: var(--leaf);
  font-weight: 800;
  text-decoration: none;
}

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

  nav {
    justify-content: flex-start;
  }

  .hero,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .poem,
  .facts-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }
}
