:root {
  --ink: #181714;
  --muted: #5e5a51;
  --paper: #f7f2e8;
  --paper-soft: #fbf8f1;
  --moss: #415846;
  --copper: #9f5b3f;
  --blue: #c9d8df;
  --line: rgba(24, 23, 20, 0.16);
  --shadow: 0 24px 80px rgba(24, 23, 20, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-soft);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: #fffdf7;
  background: linear-gradient(rgba(24, 23, 20, 0.66), rgba(24, 23, 20, 0));
}

.brand {
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(12px, 2.4vw, 28px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #191813;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: brightness(1.28) contrast(1.04) saturate(1.12);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 14, 11, 0.64) 0%, rgba(15, 14, 11, 0.28) 42%, rgba(15, 14, 11, 0.03) 100%),
    linear-gradient(0deg, rgba(15, 14, 11, 0.14), rgba(15, 14, 11, 0.02) 44%, rgba(15, 14, 11, 0.14));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 64px;
  color: #fffdf7;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.kicker,
.section-label {
  margin: 0 0 14px;
  color: var(--copper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .kicker {
  color: #d7e4df;
}

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

h1 {
  margin: 0;
  font-size: clamp(4.2rem, 10vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: clamp(1.35rem, 2.5vw, 2.05rem);
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.button.primary {
  color: #fffdf7;
  background: var(--moss);
  border-color: var(--moss);
}

.button.secondary {
  color: #fffdf7;
  background: rgba(255, 253, 247, 0.12);
  border-color: rgba(255, 253, 247, 0.55);
}

.intro,
.split-section,
.feature-band,
.blog-section,
.inquiry,
.book-section {
  padding: clamp(58px, 9vw, 116px) clamp(20px, 6vw, 84px);
}

.intro {
  background: var(--paper);
}

.intro p {
  width: min(1040px, 100%);
  margin: 0 auto;
  font-size: clamp(1.5rem, 3vw, 2.55rem);
  line-height: 1.18;
}

.split-section,
.book-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

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

.split-section > div:first-child p:not(.section-label),
.feature-copy p,
.book-section p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.poem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.poem-list a {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: #fffdf7;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.poem-list a:hover,
.poem-list a:focus-visible {
  color: #fffdf7;
  background: var(--moss);
}

.poem-list a:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.poem-list span {
  font-size: 1.28rem;
  line-height: 1.12;
}

.poem-list small,
.text-link {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 7vw, 86px);
  background: #eef3f1;
  border-block: 1px solid var(--line);
}

.blog-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
  background: var(--paper);
}

.blog-heading p:not(.section-label) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.blog-post {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: #fffdf7;
  box-shadow: var(--shadow);
}

.blog-post h3 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 3vw, 2.75rem);
  line-height: 1;
}

.blog-post p:not(.post-meta) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.blog-post p:not(.post-meta):not(:last-child) {
  margin-bottom: 18px;
}

.post-meta {
  margin: 0 0 14px;
  color: var(--copper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-grid,
.inquiry-grid {
  display: grid;
  gap: 16px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid article,
.inquiry-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 253, 247, 0.62);
  box-shadow: var(--shadow);
}

.service-grid p,
.inquiry-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.inquiry {
  background: var(--paper-soft);
}

.inquiry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.book-section {
  align-items: center;
  background: var(--ink);
  color: #fffdf7;
}

.book-section p,
.book-section .section-label {
  color: #d8d0c1;
}

.text-link {
  justify-self: start;
  color: #fffdf7;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-block: 16px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    margin-inline: 20px;
  }

  .split-section,
  .feature-band,
  .blog-section,
  .book-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  nav {
    font-size: 0.72rem;
    gap: 8px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-inline: 16px;
  }

  .hero-copy {
    font-size: 1.28rem;
  }

  .poem-list {
    grid-template-columns: 1fr;
  }

  .poem-list a {
    min-height: 92px;
  }

  .button {
    width: 100%;
  }
}
