:root {
  color-scheme: light;
  --ink: #141613;
  --muted: #5f645b;
  --paper: #ffffff;
  --paper-deep: #ffffff;
  --charcoal: #101410;
  --line: rgba(20, 22, 19, 0.16);
  --green: #1f4f3b;
  --brass: #a98342;
  --white: #fffaf0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.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: 22px clamp(20px, 4vw, 64px);
  color: var(--ink);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

nav a {
  opacity: 0.84;
  transition: opacity 160ms ease;
}

nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center top, rgba(169, 131, 66, 0.12), transparent 34rem),
    var(--paper);
}

.hero::after {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: 0;
  left: clamp(20px, 4vw, 64px);
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(20, 22, 19, 0.24), transparent);
  content: "";
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100% - 40px));
  padding: 136px 0 clamp(54px, 9vh, 92px);
  margin: 0 auto;
  color: var(--ink);
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__logo-title {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.hero__logo {
  display: block;
  width: min(460px, 82vw);
  max-height: 180px;
  object-fit: contain;
}

.hero__lead {
  max-width: 680px;
  margin-right: auto;
  margin-bottom: 34px;
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(1.16rem, 2vw, 1.5rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--green);
  border-color: var(--green);
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.statement {
  padding: clamp(70px, 10vw, 124px) 0;
  background: var(--paper);
}

.statement .section-inner {
  max-width: 980px;
  margin: 0 auto;
}

.statement h2,
.approach h2,
.faq h2,
.cta h2 {
  max-width: 900px;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.statement p:not(.section-kicker),
.approach__copy,
.cta a {
  max-width: 690px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.3rem);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}

.principle {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
  padding: clamp(28px, 4vw, 50px);
  border-right: 1px solid var(--line);
  text-align: center;
}

.principle:last-child {
  border-right: 0;
}

.principle span {
  display: block;
  margin-bottom: 58px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.principle h3 {
  margin-bottom: 14px;
  font-size: 1.18rem;
}

.principle p {
  max-width: 340px;
  margin-bottom: 0;
  color: var(--muted);
}

.approach {
  padding: clamp(70px, 10vw, 128px) 0;
  background: var(--paper);
}

.section-inner--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
  justify-items: center;
}

.approach__copy {
  padding-top: 0;
}

.approach__copy p {
  margin-bottom: 22px;
}

.faq {
  padding: clamp(70px, 10vw, 124px) 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.faq .section-inner {
  max-width: 880px;
}

.faq__list {
  display: grid;
  gap: 12px;
  margin-top: 40px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  text-align: left;
}

.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 22px 58px 22px 24px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--brass);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  content: "+";
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  max-width: 680px;
  margin: -4px 0 0;
  padding: 0 24px 26px;
  color: var(--muted);
  text-align: left;
}

.cta {
  padding: clamp(64px, 9vw, 106px) 0;
  background: var(--charcoal);
  color: var(--white);
}

.cta .section-inner {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.cta h2 {
  margin-bottom: 0;
}

.cta a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(169, 131, 66, 0.8);
  text-underline-offset: 8px;
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding: 18px 20px;
  }

  nav {
    gap: 14px;
    font-size: 0.7rem;
  }

  nav a:nth-child(1),
  nav a:nth-child(2) {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .hero__content {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding-top: 132px;
  }

  .principles,
  .section-inner--split,
  .cta .section-inner {
    grid-template-columns: 1fr;
  }

  .principles {
    display: block;
  }

  .principle {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .principle span {
    margin-bottom: 32px;
  }

  .statement .section-inner {
    margin: 0 auto;
  }

  .cta .section-inner {
    display: grid;
    align-items: start;
  }
}
