:root {
  color-scheme: light;
  --ink: #101011;
  --navy: #052134;
  --gold: #b5945a;
  --tan: #e2cda8;
  --paper: #f7f3ea;
  --white: #ffffff;
  --green: #384f37;
  --rust: #8c4a2f;
  --muted: #67655f;
  --line: rgba(16, 16, 17, 0.16);
  --shadow: 0 24px 70px rgba(16, 16, 17, 0.18);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 243, 234, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 4vw, 56px) 58px;
  overflow: hidden;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 33, 52, 0.92) 0%, rgba(5, 33, 52, 0.68) 39%, rgba(5, 33, 52, 0.2) 100%),
    linear-gradient(0deg, rgba(16, 16, 17, 0.62), rgba(16, 16, 17, 0.08) 46%),
    url("assets/larry-john-deere-sunset.jpg") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-width: calc(100vw - clamp(36px, 8vw, 112px));
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

p {
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.1rem, 10vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.1vw, 4.05rem);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-lede {
  width: min(690px, 100%);
  margin-bottom: 30px;
  font-size: clamp(1.15rem, 2.3vw, 1.55rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.connect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

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

.button-outline {
  border-color: var(--line);
  color: var(--ink);
}

.hero-proof {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 34px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: min(520px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 33, 52, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-proof div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 1.04rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.section,
.intro-band,
.partnership-section,
.principles-section,
.fbf-section,
.quote-band,
.connect-section {
  padding: clamp(56px, 7vw, 92px) clamp(18px, 4vw, 56px);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 86px;
}

.intro-band {
  background: var(--white);
}

.intro-grid,
.split,
.partnership-grid,
.fbf-grid,
.connect-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}

.intro-grid {
  grid-template-columns: minmax(130px, 0.45fr) minmax(360px, 1fr) minmax(260px, 0.82fr);
  align-items: center;
}

.intro-grid h2 {
  max-width: 840px;
}

.intro-photo {
  margin: 0;
  align-self: stretch;
  min-height: 430px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(16, 16, 17, 0.12);
}

.intro-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: 45% center;
}

.intro-grid p:not(.section-kicker),
.copy-stack p,
.fbf-grid p,
.connect-grid p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.copy-stack p {
  margin-bottom: 20px;
}

.experience-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 38px;
  background: var(--line);
  border: 1px solid var(--line);
}

.experience-notes div {
  min-height: 132px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.42);
}

.experience-notes span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.experience-notes strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.35;
}

.principles-section {
  background: var(--navy);
  color: var(--white);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 44px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.principles article {
  min-height: 260px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.principles span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-weight: 900;
}

.principles p {
  color: rgba(255, 255, 255, 0.72);
}

.fbf-section {
  background: linear-gradient(135deg, #fffaf0 0%, #e9dcc4 56%, #d5e1d2 100%);
}

.partnership-section {
  background: var(--white);
}

.partnership-grid {
  align-items: center;
  grid-template-columns: minmax(430px, 0.95fr) minmax(0, 1.45fr);
}

.partnership-grid p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.partnership-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 5vw, 46px);
  border-left: 6px solid var(--gold);
  background: linear-gradient(135deg, #f2eadb 0%, #fff8ea 100%);
}

.partnership-panel p {
  margin-bottom: 24px;
}

.partnership-portrait {
  width: min(420px, 100%);
  margin: -26px auto 22px;
  filter: drop-shadow(0 18px 34px rgba(16, 16, 17, 0.18));
}

.partnership-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fbf-grid {
  align-items: center;
  grid-template-columns: minmax(430px, 0.95fr) minmax(0, 1.35fr);
}

.fbf-panel {
  padding: clamp(26px, 5vw, 46px);
  background: var(--white);
  border: 1px solid rgba(16, 16, 17, 0.12);
  box-shadow: 0 18px 60px rgba(16, 16, 17, 0.1);
}

.fbf-panel ul {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.fbf-panel li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

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

.story-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.story-photo {
  min-height: 520px;
  background:
    linear-gradient(0deg, rgba(16, 16, 17, 0.1), rgba(16, 16, 17, 0.1)),
    url("assets/larry-john-deere-sunset.jpg") center / cover;
  box-shadow: var(--shadow);
}

.quote-band {
  background: var(--green);
  color: var(--white);
}

blockquote {
  margin: 0;
}

blockquote p {
  width: min(940px, 100%);
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.55rem);
  line-height: 1.02;
}

.connect-section {
  background: var(--white);
}

.connect-grid {
  align-items: center;
  grid-template-columns: minmax(430px, 0.95fr) minmax(0, 1.35fr);
}

.connect-actions {
  justify-content: flex-end;
}

.site-footer {
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-grid p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero {
    min-height: 820px;
    align-items: center;
    padding-bottom: 210px;
  }

  .hero-image {
    background:
      linear-gradient(90deg, rgba(5, 33, 52, 0.94) 0%, rgba(5, 33, 52, 0.74) 56%, rgba(5, 33, 52, 0.22) 100%),
      linear-gradient(0deg, rgba(16, 16, 17, 0.62), rgba(16, 16, 17, 0.04) 46%),
      url("assets/larry-john-deere-sunset.jpg") 58% center / cover;
  }

  .intro-grid,
  .split,
  .partnership-grid,
  .fbf-grid,
  .connect-grid,
  .story-layout {
    grid-template-columns: 1fr;
  }

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

  .experience-notes {
    grid-template-columns: 1fr;
  }

  .connect-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 70px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    min-height: 800px;
    padding-top: 106px;
    padding-bottom: 238px;
  }

  .section,
  .intro-band,
  .partnership-section,
  .principles-section,
  .fbf-section,
  .quote-band,
  .connect-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-inner {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  .intro-grid,
  .split,
  .partnership-grid,
  .fbf-grid,
  .connect-grid,
  .story-layout,
  .section-heading,
  .copy-stack,
  .fbf-panel,
  .partnership-panel {
    min-width: 0;
    max-width: 100%;
  }

  .experience-notes {
    width: min(330px, calc(100vw - 40px));
    max-width: min(330px, calc(100vw - 40px));
  }

  .intro-grid > *,
  .split > *,
  .partnership-grid > *,
  .fbf-grid > *,
  .connect-grid > *,
  .story-layout > *,
  .section-heading,
  .copy-stack,
  .intro-grid h2,
  .split h2,
  .partnership-grid h2,
  .fbf-grid h2,
  .connect-grid h2,
  .story-layout h2,
  .intro-grid p,
  .split p,
  .partnership-grid p,
  .fbf-grid p,
  .connect-grid p,
  .story-layout p {
    width: min(330px, calc(100vw - 40px)) !important;
    max-width: min(330px, calc(100vw - 40px)) !important;
  }

  .intro-photo {
    width: min(330px, calc(100vw - 40px)) !important;
    min-height: 330px;
  }

  .intro-photo img {
    min-height: 330px;
  }

  .partnership-portrait {
    width: min(300px, 100%) !important;
    margin-top: -10px;
  }

  .partnership-panel {
    padding: 24px 22px 30px;
  }

  .partnership-panel h3,
  .partnership-panel p,
  .partnership-actions,
  .partnership-actions .button {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-content {
    width: min(330px, calc(100vw - 58px)) !important;
    max-width: min(330px, calc(100vw - 58px));
    min-width: 0;
    align-self: flex-start;
  }

  .hero-lede {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    right: auto;
    left: 20px;
    bottom: 24px;
    width: min(330px, calc(100vw - 40px));
  }

  .hero-proof div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px 16px;
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .button {
    width: 100%;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .principles article {
    min-height: auto;
  }

  .story-photo {
    min-height: 390px;
  }

  .footer-grid {
    display: grid;
  }
}

@media (max-width: 430px) {
  .hero-content {
    width: min(300px, calc(100vw - 72px)) !important;
    max-width: min(300px, calc(100vw - 72px));
  }

  h1 {
    font-size: clamp(3.35rem, 18vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 2.7rem);
  }

  .hero-lede {
    font-size: 1.06rem;
  }
}
