:root {
  --background: #f7f0e6;
  --foreground: #24211d;
  --muted-text: #69615a;
  --accent: #b9663e;
  --border: rgba(36, 33, 29, 0.16);
  --spacing: clamp(5rem, 11vw, 10rem);
  --content-width: 1160px;
  --narrow-width: 740px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(185, 102, 62, 0.08), transparent 28rem),
    var(--background);
  color: var(--foreground);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: rgba(185, 102, 62, 0.22);
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-140%);
  background: var(--foreground);
  color: var(--background);
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--content-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(247, 240, 230, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: var(--border);
}

.header-inner {
  width: min(calc(100% - 2rem), var(--content-width));
  min-height: 74px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand,
.nav a,
.eyebrow,
.footer-name {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand {
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  color: var(--muted-text);
  font-size: 0.92rem;
}

.nav a {
  position: relative;
  padding-block: 0.4rem;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: 0.18rem;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

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

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.section {
  padding-block: var(--spacing);
  border-top: 1px solid var(--border);
}

.hero {
  min-height: calc(100svh - 74px);
  padding-top: clamp(4rem, 10vw, 8rem);
  border-top: 0;
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.hero-copy {
  max-width: 980px;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 930px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.05rem, 7.2vw, 7.4rem);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

h2 {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.7vw, 5.25rem);
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-body {
  max-width: var(--narrow-width);
  margin-top: clamp(2rem, 4vw, 3.5rem);
  color: var(--muted-text);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.hero-body p + p,
.section-content p + p {
  margin-top: 1.1rem;
}

.connection-mark {
  width: min(100%, 520px);
  min-height: 80px;
  display: grid;
  grid-template-columns: 16px minmax(120px, 1fr) 16px;
  align-items: center;
  gap: 0.8rem;
}

.connection-line {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(36, 33, 29, 0.18);
}

.connection-line::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-100%);
  animation: travel 7s var(--ease) infinite;
}

.connection-dot {
  width: 12px;
  height: 12px;
  border: 1px solid var(--accent);
  border-radius: 999px;
}

.dot-one {
  background: var(--accent);
}

.dot-two {
  background: transparent;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(130px, 0.38fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
}

.section-kicker {
  color: var(--accent);
}

.eyebrow {
  position: sticky;
  top: 96px;
}

.section-content {
  max-width: var(--narrow-width);
  color: var(--muted-text);
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
}

.section-content h2 {
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
  color: var(--foreground);
}

.rhythm-list,
.compressed-lines,
.question-stack {
  display: grid;
  margin-block: clamp(2rem, 4vw, 3.25rem);
}

.rhythm-list {
  gap: 0.7rem;
}

.rhythm-list p {
  width: fit-content;
  color: var(--foreground);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 3rem);
  line-height: 1.06;
}

.rhythm-list p:nth-child(2) {
  margin-left: clamp(1rem, 6vw, 4rem);
}

.rhythm-list p:nth-child(3) {
  margin-left: clamp(0.5rem, 3vw, 2rem);
}

.rhythm-list p:nth-child(4) {
  margin-left: clamp(1.5rem, 9vw, 6rem);
}

.question-stack {
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.question-stack p {
  margin: 0;
  padding-block: clamp(1rem, 2.2vw, 1.45rem);
  color: var(--foreground);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.8vw, 2.55rem);
  line-height: 1.12;
}

.question-stack p + p {
  border-top: 1px solid var(--border);
}

.compressed-lines {
  gap: 0.35rem;
  color: var(--foreground);
  font-size: clamp(1.16rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.closing-statement {
  margin-top: clamp(2.2rem, 5vw, 4rem) !important;
  color: var(--foreground);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.4vw, 4.5rem);
  line-height: 1.04;
  text-wrap: balance;
}

.final-section {
  padding-block: clamp(7rem, 17vw, 15rem);
  border-top: 1px solid var(--border);
}

.final-section p {
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.98;
  text-wrap: balance;
}

.site-footer {
  padding-block: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  color: var(--muted-text);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-name {
  margin-bottom: 0.3rem;
  color: var(--foreground);
}

.footer-contact a {
  color: var(--foreground);
}

.footer-contact p {
  margin-top: 0.4rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes travel {
  0%,
  16% {
    transform: translateX(-100%);
  }

  54%,
  100% {
    transform: translateX(100%);
  }
}

@media (min-width: 760px) {
  .container {
    width: min(calc(100% - 4rem), var(--content-width));
  }

  .header-inner {
    width: min(calc(100% - 4rem), var(--content-width));
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .footer-contact {
    text-align: right;
  }
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.36fr);
    align-items: end;
  }

  .connection-mark {
    margin-bottom: clamp(1rem, 5vw, 4rem);
  }
}

@media (max-width: 699px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    min-height: 66px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.15rem;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.6rem;
    font-size: 0.78rem;
  }

  .nav a {
    letter-spacing: 0.06em;
  }

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

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .eyebrow {
    position: static;
  }

  .section-content {
    max-width: none;
  }

  .rhythm-list p:nth-child(n) {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
